summaryrefslogtreecommitdiffstats
path: root/pod/urpmihowto.8.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.com>2006-08-11 08:41:31 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.com>2006-08-11 08:41:31 +0000
commit631d1555596c82094401ecef01985628dd477eb0 (patch)
treebccb415bb74abe3512a150ac8ad627885400adf5 /pod/urpmihowto.8.pod
parentfa716facde448ab23d02df4a44910a919b6cc55b (diff)
downloadurpmi-631d1555596c82094401ecef01985628dd477eb0.tar
urpmi-631d1555596c82094401ecef01985628dd477eb0.tar.gz
urpmi-631d1555596c82094401ecef01985628dd477eb0.tar.bz2
urpmi-631d1555596c82094401ecef01985628dd477eb0.tar.xz
urpmi-631d1555596c82094401ecef01985628dd477eb0.zip
Correctly rename the new urpmihowto manpage4.8.23
Diffstat (limited to 'pod/urpmihowto.8.pod')
-rw-r--r--pod/urpmihowto.8.pod402
1 files changed, 402 insertions, 0 deletions
diff --git a/pod/urpmihowto.8.pod b/pod/urpmihowto.8.pod
new file mode 100644
index 00000000..992188a1
--- /dev/null
+++ b/pod/urpmihowto.8.pod
@@ -0,0 +1,402 @@
+=head1 NAME
+
+urpmihowto - urpmi Advanced How-To
+
+=head1 Basic notions
+
+=head2 Packages and media
+
+The urpmi suite of tools has for main purpose to download and to install
+RPM packages easily.
+
+Software packages often depend on each other; urpmi is able to recognize
+those dependencies, to download missing required packages as needed, and
+to remove conflicting packages if it needs to.
+
+urpmi gets the list of available RPMs, and the RPMs themselves, from a
+B<media>. Roughly speaking, a media is described by a name and by a
+location, specified by an URL. Currently supported media types are: local
+drives, removable drives (such as CDs), ISO images, and networked media
+via different protocols (http, ftp, ssh and rsync). NFS mounted
+directories are treated like local drives.
+
+=head2 Installing and updating RPMs
+
+The tool used to install RPMs is urpmi. Its basic usage is as follows:
+
+ urpmi <list of package names>
+
+That prompts urpmi to fetch and install all packages and their unmet
+dependencies from the media you have configured. In the process, urpmi
+might ask a few questions. Notably, if some packages need to be upgraded,
+or if some new (unspecified) packages should be installed, it will ask for
+confirmation. If some packages need to be removed (due to conflicts with
+the requested packages), urpmi will ask for confirmation as well. In some
+cases, urpmi will also propose a choice between different alternatives,
+usually proposing the "best" package as a default.
+
+Another very useful mode of action for urpmi is to ask it to upgrade all
+packages to the latest version found on the media. This is done by
+
+ urpmi --auto-update
+
+urpmi can also help installing RPM files directly. Instead of using
+C<rpm -i foobar.rpm>, you can pass the path to the rpm file to urpmi: it
+will then try to resolve the needed dependencies.
+
+Useful options to urpmi include :
+
+=over 4
+
+=item --auto
+
+automatic mode: urpmi will not ask questions and always select the default
+choice.
+
+=item --test
+
+tests the installation of packages, but do not actually install anything or
+modify the system.
+
+=item --media I<media1,...,mediaN>
+
+Use only the specified media, instead of defaulting to all available
+media. You can also specify a substring of media names, and urpmi will
+select all media that contain this substring. (For example,
+
+ urpmi --auto-update --media updates
+
+will search updates from all media that have "updates" in their name.)
+
+=back
+
+See the urpmi(8) manpage for the complete reference of all options that
+urpmi supports.
+
+=head2 Removing RPMs
+
+The tool used to deinstall RPMs is urpme. The command
+
+ urpme <list of package names>
+
+will attempt to remove all listed packages, plus the packages that depend
+on them. It will refuse to uninstall "important" packages (that is, the
+ones that are part of the base system.)
+
+See the urpme(8) manpage for the reference of all options urpme supports.
+
+urpme isn't able to detect packages that are no longer used: for example,
+libraries that no application requires. To clean them up, a handy tool is
+B<rpm-find-leaves>. It will list all RPMs on your system that no other
+package requires.
+
+=head1 Media management
+
+=head2 Adding media
+
+urpmi is usable only when you have defined some media. Usually the OS
+installation procedure configures a predefined set of media, which
+correspond to the installation method you've selected: that might be
+installation CDs, or an HTTP or FTP server if you installed from a
+networked mirror, and so on. But you might want to add media yourself.
+For that, you should use the urpmi.addmedia program. Its usage is as
+follows:
+
+ urpmi.addmedia [options] <name> <url> [with <hdlist>]
+
+In this synopsis, C<< <name> >> is the name of the new media,
+C<< <url> >> the URL where the RPMs are to be found, and the C<with>
+parameter optionnally specifies where to find the information file that
+describes the media's contents.
+
+Supported URLs can be C<http://>, C<ftp://>, C<rsync://>, C<ssh://> (this
+will use rsync over ssh), C<file://>, and C<removable://> (C<removable://>
+works like C<file://>, but instructs urpmi that the directory is mounted
+from a removable media, such as a CD or a DVD.) If the media requires
+authentication, you can use the usual URL syntax:
+
+ <scheme>://<login>:<pass>@host/path
+
+Those credentials won't be stored in any world-readable file.
+
+In some cases, if your media points at an external HTTP or FTP server, you
+might want to use a proxy to access it. This is possible by using the
+C<--proxy> and C<--proxy-user> options (the second one in case of your
+proxy requires authentication.)
+
+=head2 Removing media
+
+This is straightforward; to remove a media C<foo>, simply use the
+command:
+
+ urpmi.removemedia foo
+
+=head2 Updating media
+
+Some media never change; this is the case, for example, for CD-ROMs and
+the like. However, some other ones -- typically updates -- grow; new RPMs
+are added to them, and old ones are removed. Thus, before using them, from
+time to time, you should instruct urpmi that their contents might have
+changed.
+
+To do this, use the urpmi.update program. You can either update all media:
+
+ urpmi.update -a
+
+or update only media specifically named:
+
+ urpmi.update updates-one updates-two
+
+=head2 Creating your own media
+
+The easiest way to create your own media is to let urpmi.addmedia do it.
+However, this will work well only if you have a small number of rpms,
+stored on disk or on a shared NFS mount. To do that, assuming that your
+RPMs are under a directory /var/my-rpms, simply enter the command:
+
+ urpmi.addmedia my-media /var/my-rpms
+
+However, to create media containing a large number of RPMs, or to be put
+on a shared server, you'll need to use the gendistrib tool. It comes in
+the C<rpmtools> package. It is able to generate a mirror tree for one or
+several media.
+
+A typical media repository, under a root directory F</ROOT/>, has the
+following structure: (here, we have two media, named C<first> and
+C<second>)
+
+ ROOT/ - media/
+ |- first/
+ | `- media_info/
+ |- second/
+ | `- media_info/
+ `- media_info/
+
+The RPMs are place in the C<first> and C<second> subdirectories.
+Repository metadata is contained in the top-level F<media_info> directory.
+Per-media metadata are contained in the F<first/media_info> and
+F<second/media_info> subdirectories.
+
+Per-media metadata consists in an C<hdlist.cz> file, that contains the
+gzipped headers of the RPMs in the media, a C<synthesis.hdlist.cz> file,
+much smaller than the hdlist and that contains only the information
+necessary to urpmi to resolve dependencies, and optionnally a C<pubkey>
+file if the RPMs are signed (so urpmi can check that the RPMs it downloads
+are signed with the key associated to this media.)
+
+Before using F<gendistrib>, you must create a file F<media_info/media.cfg>
+to describe this media repository. The syntax of this file is reminiscent
+of F<.ini> files. It contains one section per media: for example,
+
+ [first]
+ hdlist=hdlist_first.cz
+ name=First supplementary media
+
+Here, C<first> is the directory name, C<hdlist_first.cz> is the name of
+the hdlist file that will be created (it must end with C<.cz>), and
+C<name=> gives a human-readable descriptive name for the media.
+
+Then, you can run gendistrib. It should be passed the F</ROOT/> directory as
+parameter. It will then generate the hdlist and synthesis files and all
+other files needed for proper repository operation.
+
+For further information, see the gendistrib(1) manpage.
+
+=head1 Searching for packages
+
+=head2 urpmf
+
+urpmf is a grep-like tool for the urpmi database (the database of all RPMs
+in the media). By default, it will search through the file names contained
+in packages, but a variety of options allows to search through package
+names, provides, requires, RPM descriptions, etc. (or several of those at
+once.)
+
+For example, to find all packages that begin with "apache-" :
+
+ urpmf --name '^apache-'
+
+(the ^ being the beginning-of-line anchor used in standard regular
+expressions.)
+
+To find all packages that contain files whose pathname includes
+/etc/httpd.conf.d :
+
+ urpmf /etc/httpd.conf.d
+
+To find all packages that provide "mail-server", with their version and
+release number (-f) :
+
+ urpmf --provides -f mail-server
+
+See the urpmf(8) manpage for more examples and the list of all options.
+
+=head2 urpmq
+
+urpmq is a tool to query the urpmi database. It has several modes of
+operation. Here are a couple of useful uses.
+
+ urpmq -i package
+
+will list the information for that package (like C<rpm -qi> would do for
+installed packages.) The C<--summary> option is similar, but gives only
+one-line concise information.
+
+ urpmq --source package
+
+will give the URL from which the package can be retrieved.
+
+ urpmq -d package
+
+will give the list of all RPMs that are required by the specified package
+(recursively).
+
+Inversely, the command
+
+ urpmq -R package
+
+will give the list of all RPMs that require the specified package.
+
+See the urpmq(8) manpage for the list of all options.
+
+=head1 urpmi-parallel
+
+urpmi-parallel is an add-on to urpmi that is useful to install packages on
+a network: it will run an urpmi command in parallel on a specified number
+of hosts. In more detail, the machine you run the command on (the
+"server") tests its result on each machine in the group in turn (the
+"clients"), downloads all necessary packages for all machines in the
+group, distributes the appropriate packages to each machine, then calls
+urpmi on the machine to do the actual installation.
+
+urpmi must be installed on all client machines, but it is not necessary to
+have media defined on these.
+
+To use it, follow those steps :
+
+=over 4
+
+=item *
+
+make sure you can ssh from the server to each client machine as root (you
+can use ssh-add on the server host to avoid entering your passphrase
+and/or password many times).
+
+=item *
+
+install urpmi-parallel-ssh and/or urpmi-parallel-ka-run on the server
+machine. The first plugin uses plain ssh to distribute commands to other
+hosts, the second one uses ka-run, an efficient parallelization method on
+top of any remote shell (rsh or ssh), adapted to clusters.
+
+=item *
+
+Edit /etc/urpmi/parallel.cfg to look something like this:
+
+ mynetwork:ssh:host1:host2:host3
+
+On this line, C<mynetwork> is the name of the alias you'll use to specify
+the network to urpmi, C<ssh> is the install method (to use C<ka-run>, look
+up the entry for /etc/urpmi/parallel.cfg in urpmi.files(5)), and hostN are
+the hostnames of all clients on your network. You can put C<localhost> in
+this list.
+
+=item *
+
+Run the urpmi command : for example, to install "package_name" :
+
+ urpmi --parallel mynetwork package_name
+
+=back
+
+=head1 urpmi.recover
+
+urpmi.recover is a tool to help management of RPM rollbacks. One rarely
+used feature of RPM is that it can "repackage" the RPMs it deinstalls
+(either because they are upgraded to a newer version, or because they are
+plainly erased), and then reinstall the repackaged RPMs, thereby restoring
+the system to a previous (hopefully more stable) state.
+
+urpmi.recover has three main functions:
+
+=over 4
+
+=item define a checkpoint
+
+C<urpmi.recover --checkpoint> is used to define a point in your system
+that you consider stable, and to start storing info that will enable you
+to rollback to this state (or to any later state).
+
+=item list installations you've done
+
+C<urpmi.recover --list date> is used to list chronologically all
+installations and upgrades on your system up to the specified date. The
+output format gives them grouped by installation transactions. (This
+option has two variants, C<--list-all> and C<--list-safe>.) Here are some
+examples :
+
+List all installations made during the last day :
+
+ urpmi.recover --list '1 day ago'
+
+List all installations since 7th february 2006 :
+
+ urpmi.recover --list 2006-02-07
+
+List all installations since the checkpoint :
+
+ urpmi.recover --list-safe
+
+Lists all installations and upgrades known to the RPM database :
+
+ urpmi.recover --list-all
+
+=item perform rollbacks
+
+C<urpmi.recover --rollback> is used to roll back installations and
+upgrades to a previous point in the past (at most until your checkpoint.)
+It has two variants :
+
+To roll back until a specified date :
+
+ urpmi.recover --rollback <date>
+
+The date can be a duration (for example "2 hours ago") or a date given
+in YYYY-MM-SS hh:mm format.
+
+To roll back a specified number of transactions :
+
+ urpmi.recover --rollback <number of transactions>
+
+In both cases, be careful not to rollback beyond the checkpoint!
+
+=back
+
+Once you've defined a checkpoint, when you use urpmi, urpme or directly
+rpm to install or remove packages, the older packages will be stored in
+/var/spool/repackage. You thus must make sure you have enough space on
+this partition to store all repackaged RPMs.
+
+Technically, defining a checkpoint is equivalent to writing a file
+/etc/rpm/macros.d/urpmi.recover.macros that overrides the rpm macros
+used to set up the repackaging functionalities of rpm. You can change
+C<%_repackage_dir> there if you want to, if you don't want to store
+repackaged RPMs in /var/spool/repackage.
+
+If you want to disable the repackaging functionality and clean up the
+repackage spool, use C<urpmi.recover --disable>. Warning: rollbacks won't
+be possible anymore.
+
+=head1 Restricted urpmi
+
+urpmi has a "restricted" counterpart: rurpmi. It is similar to urpmi, but
+has a stripped-down set of features. It's intended to be used by users
+without root privileges, but with sudo rights on it, preventing any abuse
+of this tool to compromise the system.
+
+Its syntax is similar to the one of urpmi, but it disallows installing
+arbitrary RPMs: those are forcibly downloaded from a registered media.
+A number of dangerous options, listed in the rurpmi(8) manpage, are also
+forbidden.
+
+=cut
ff/zarb-ml/mageia-webteam/2010-November/000038.html'>zarb-ml/mageia-webteam/2010-November/000038.html63
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000039.html68
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000040.html75
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000041.html76
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000042.html64
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000043.html66
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000044.html78
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000045.html65
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000046.html70
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000047.html60
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000048.html87
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000049.html110
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000050.html123
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000051.html73
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000052.html64
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000053.html71
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000054.html74
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000055.html83
-rw-r--r--zarb-ml/mageia-webteam/2010-November/000056.html91
-rw-r--r--zarb-ml/mageia-webteam/2010-November/author.html307
-rw-r--r--zarb-ml/mageia-webteam/2010-November/date.html307
l---------zarb-ml/mageia-webteam/2010-November/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2010-November/subject.html307
-rw-r--r--zarb-ml/mageia-webteam/2010-November/thread.html407
-rw-r--r--zarb-ml/mageia-webteam/2010-October.txt.gzbin0 -> 1019 bytes-rw-r--r--zarb-ml/mageia-webteam/2010-October/000000.html62
-rw-r--r--zarb-ml/mageia-webteam/2010-October/000001.html63
-rw-r--r--zarb-ml/mageia-webteam/2010-October/000002.html66
-rw-r--r--zarb-ml/mageia-webteam/2010-October/000003.html60
-rw-r--r--zarb-ml/mageia-webteam/2010-October/000004.html60
-rw-r--r--zarb-ml/mageia-webteam/2010-October/author.html72
-rw-r--r--zarb-ml/mageia-webteam/2010-October/date.html72
l---------zarb-ml/mageia-webteam/2010-October/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2010-October/subject.html72
-rw-r--r--zarb-ml/mageia-webteam/2010-October/thread.html79
-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></li>
+ <LI>Next message: <A HREF="000759.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#753">[ date ]</a>
+ <a href="thread.html#753">[ thread ]</a>
+ <a href="subject.html#753">[ subject ]</a>
+ <a href="author.html#753">[ 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>
+
+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 22:46:10 CEST ---
+We have a few choice :
+ - do a bzr checkout
+ - import the code in our svn
+
+It should be easy to get it going.
+
+--
+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="000752.html">[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="000759.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#753">[ date ]</a>
+ <a href="thread.html#753">[ thread ]</a>
+ <a href="subject.html#753">[ subject ]</a>
+ <a href="author.html#753">[ 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/000754.html b/zarb-ml/mageia-webteam/2011-April/000754.html
new file mode 100644
index 000000000..1bece2230
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000754.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 910] [New] Add a check box for security issue
+ </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%20910%5D%20%5BNew%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3Cbug-910-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="000759.html">
+ <LINK REL="Next" HREF="000755.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 910] [New] Add a check box for security issue</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20910%5D%20%5BNew%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3Cbug-910-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 910] [New] Add a check box for security issue">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 22:44:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000759.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="000755.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#754">[ date ]</a>
+ <a href="thread.html#754">[ thread ]</a>
+ <a href="subject.html#754">[ subject ]</a>
+ <a href="author.html#754">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=910">https://bugs.mageia.org/show_bug.cgi?id=910</A>
+
+ Summary: Add a check box for security issue
+ 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">mageia-sysadm at 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>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+
+
+We should have a way to restrict bug to security officer, based on a group
+member ship
+
+--
+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="000759.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="000755.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#754">[ date ]</a>
+ <a href="thread.html#754">[ thread ]</a>
+ <a href="subject.html#754">[ subject ]</a>
+ <a href="author.html#754">[ 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/000755.html b/zarb-ml/mageia-webteam/2011-April/000755.html
new file mode 100644
index 000000000..9a59c9335
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000755.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 910] Add a check box for security issue
+ </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%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20110420204542.71CC5429AB%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="000754.html">
+ <LINK REL="Next" HREF="000757.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 910] Add a check box for security issue</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20110420204542.71CC5429AB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 910] Add a check box for security issue">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 22:45:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000754.html">[Mageia-webteam] [Bug 910] [New] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="000757.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#755">[ date ]</a>
+ <a href="thread.html#755">[ thread ]</a>
+ <a href="subject.html#755">[ subject ]</a>
+ <a href="author.html#755">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=910">https://bugs.mageia.org/show_bug.cgi?id=910</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| |899
+
+--
+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="000754.html">[Mageia-webteam] [Bug 910] [New] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="000757.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#755">[ date ]</a>
+ <a href="thread.html#755">[ thread ]</a>
+ <a href="subject.html#755">[ subject ]</a>
+ <a href="author.html#755">[ 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/000756.html b/zarb-ml/mageia-webteam/2011-April/000756.html
new file mode 100644
index 000000000..fd97e8cbe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000756.html
@@ -0,0 +1,72 @@
+<!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=%3C20110420204542.E9D75429B7%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="000750.html">
+ <LINK REL="Next" HREF="000760.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=%3C20110420204542.E9D75429B7%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 22:45:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000750.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000760.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#756">[ date ]</a>
+ <a href="thread.html#756">[ thread ]</a>
+ <a href="subject.html#756">[ subject ]</a>
+ <a href="author.html#756">[ 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
+----------------------------------------------------------------------------
+ Blocks| |910
+
+--
+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="000750.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000760.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#756">[ date ]</a>
+ <a href="thread.html#756">[ thread ]</a>
+ <a href="subject.html#756">[ subject ]</a>
+ <a href="author.html#756">[ 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/000757.html b/zarb-ml/mageia-webteam/2011-April/000757.html
new file mode 100644
index 000000000..2aa62de21
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000757.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 910] Add a check box for security issue
+ </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%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20110420204634.835CC429A4%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="000755.html">
+ <LINK REL="Next" HREF="000758.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 910] Add a check box for security issue</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20110420204634.835CC429A4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 910] Add a check box for security issue">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 22:46:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000755.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="000758.html">[Mageia-webteam] [Bug 912] [New] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#757">[ date ]</a>
+ <a href="thread.html#757">[ thread ]</a>
+ <a href="subject.html#757">[ subject ]</a>
+ <a href="author.html#757">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=910">https://bugs.mageia.org/show_bug.cgi?id=910</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| |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="000755.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="000758.html">[Mageia-webteam] [Bug 912] [New] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#757">[ date ]</a>
+ <a href="thread.html#757">[ thread ]</a>
+ <a href="subject.html#757">[ subject ]</a>
+ <a href="author.html#757">[ 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/000758.html b/zarb-ml/mageia-webteam/2011-April/000758.html
new file mode 100644
index 000000000..e8e1d8cb6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000758.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 912] [New] Custom field for CVE
+ </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%20912%5D%20%5BNew%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3Cbug-912-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="000757.html">
+ <LINK REL="Next" HREF="000763.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 912] [New] Custom field for CVE</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20912%5D%20%5BNew%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3Cbug-912-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 912] [New] Custom field for CVE">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 22:53:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000757.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="000763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#758">[ date ]</a>
+ <a href="thread.html#758">[ thread ]</a>
+ <a href="subject.html#758">[ subject ]</a>
+ <a href="author.html#758">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=912">https://bugs.mageia.org/show_bug.cgi?id=912</A>
+
+ Summary: Custom field for CVE
+ 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">mageia-sysadm at 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>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+
+
+We should add a custom field in bugzilla when the security categroy is used on
+a package, to add the CVE identifier. The field should not be present by
+default.
+
+--
+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="000757.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="000763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#758">[ date ]</a>
+ <a href="thread.html#758">[ thread ]</a>
+ <a href="subject.html#758">[ subject ]</a>
+ <a href="author.html#758">[ 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/000759.html b/zarb-ml/mageia-webteam/2011-April/000759.html
new file mode 100644
index 000000000..627a3aa6c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000759.html
@@ -0,0 +1,70 @@
+<!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=%3C20110420205422.A7802429B0%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="000753.html">
+ <LINK REL="Next" HREF="000754.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain</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%20907%5D%20text/x-log%20attachments%20aren%27t%20opened%20in%0A%20Firefox%20like%20text/plain&In-Reply-To=%3C20110420205422.A7802429B0%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 22:54:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000753.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="000754.html">[Mageia-webteam] [Bug 910] [New] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#759">[ date ]</a>
+ <a href="thread.html#759">[ thread ]</a>
+ <a href="subject.html#759">[ subject ]</a>
+ <a href="author.html#759">[ 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>
+
+--- 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-21 00:54:22 CEST ---
+Note that the extension would need to be modified a bit, but it's trivial to
+do.
+
+--
+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="000753.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="000754.html">[Mageia-webteam] [Bug 910] [New] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#759">[ date ]</a>
+ <a href="thread.html#759">[ thread ]</a>
+ <a href="subject.html#759">[ subject ]</a>
+ <a href="author.html#759">[ 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/000760.html b/zarb-ml/mageia-webteam/2011-April/000760.html
new file mode 100644
index 000000000..f25a25a83
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000760.html
@@ -0,0 +1,69 @@
+<!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=%3C20110420205611.1406F429B6%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="000756.html">
+ <LINK REL="Next" HREF="000737.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=%3C20110420205611.1406F429B6%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 22:56:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000756.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000737.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#760">[ date ]</a>
+ <a href="thread.html#760">[ thread ]</a>
+ <a href="subject.html#760">[ subject ]</a>
+ <a href="author.html#760">[ 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 #12 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-04-20 22:56:11 CEST ---
+If too complicate to do it now, maybe we can update bugzilla groups manually,
+until the methods to edit user membership are available.
+
+--
+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="000756.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000737.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#760">[ date ]</a>
+ <a href="thread.html#760">[ thread ]</a>
+ <a href="subject.html#760">[ subject ]</a>
+ <a href="author.html#760">[ 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/000761.html b/zarb-ml/mageia-webteam/2011-April/000761.html
new file mode 100644
index 000000000..dd41fcc57
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000761.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=%3C20110420220002.77460429BA%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="000817.html">
+ <LINK REL="Next" HREF="000762.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=%3C20110420220002.77460429BA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 21 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000817.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000762.html">[Mageia-webteam] Request on behalf of secteam for a website for security update
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#761">[ date ]</a>
+ <a href="thread.html#761">[ thread ]</a>
+ <a href="subject.html#761">[ subject ]</a>
+ <a href="author.html#761">[ 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="000817.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000762.html">[Mageia-webteam] Request on behalf of secteam for a website for security update
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#761">[ date ]</a>
+ <a href="thread.html#761">[ thread ]</a>
+ <a href="subject.html#761">[ subject ]</a>
+ <a href="author.html#761">[ 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/000762.html b/zarb-ml/mageia-webteam/2011-April/000762.html
new file mode 100644
index 000000000..0a2b669f5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000762.html
@@ -0,0 +1,113 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request on behalf of secteam for a website for security update
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20on%20behalf%20of%20secteam%20for%20a%20website%20for%0A%09security%20update&In-Reply-To=%3C1303336807.10561.272.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000761.html">
+ <LINK REL="Next" HREF="000766.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request on behalf of secteam for a website for security update</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20on%20behalf%20of%20secteam%20for%20a%20website%20for%0A%09security%20update&In-Reply-To=%3C1303336807.10561.272.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Request on behalf of secteam for a website for security update">misc at zarb.org
+ </A><BR>
+ <I>Thu Apr 21 00:00:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000761.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000766.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#762">[ date ]</a>
+ <a href="thread.html#762">[ thread ]</a>
+ <a href="subject.html#762">[ subject ]</a>
+ <a href="author.html#762">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+as said on -dev, in order to manage security update, the (future)
+security team would like to have a website ( or part of the website ) to
+present security advisories
+( <A HREF="http://meetbot.mageia.org/mageia-dev/2011/mageia-dev.2011-04-19-19.10.html">http://meetbot.mageia.org/mageia-dev/2011/mageia-dev.2011-04-19-19.10.html</A> ).
+
+
+To give 2 examples, something like :
+<A HREF="http://www.mandriva.com/fr/support/security/advisories/?dis=2010.1">http://www.mandriva.com/fr/support/security/advisories/?dis=2010.1</A>
+or :
+<A HREF="http://www.debian.org/security/2011/">http://www.debian.org/security/2011/</A>
+
+Nothing fancy is required, a simple CRUD application should do the trick
+( I will be of course partial but I think a simple django application +
+theming would be enough ) . The various usability requirements are to be
+discussed and proposed here, as well as the data model but nothing
+complex is needed.
+
+Now, if I could add some requirements, we ( sysadmins ) would prefer to
+have it based on postgresql rather than mysql ( if choosing the sql
+way ). If using a specific stack ( which again would be recommended ),
+please try to stick to one of those that we already support ( django
+1.1, catalyst, or rails 2.3, with update to newer version in less than 1
+year but not now ), using fastcgi ( but we will take care of
+deployment ).
+
+
+
+The exact workflow is not decided yet, so I would suggest to keep it
+simple for now ( like simply someone using xmlrpc to publish and to push
+on a ml ). If someone has a application already written for that, this
+could be considered as well I guess.
+
+The data should be ideally managed remotely ( xml-rpc, whatever ), and
+should ( if possible ) have some backend to modify it that can be used
+connected to ldap ( and so we could say that people must be in some
+group to connect ).
+
+
+The goal is not to replicate mageia-app-db or do something like that :
+<A HREF="https://admin.fedoraproject.org/updates/">https://admin.fedoraproject.org/updates/</A> , just to provide a simple
+frontend for security announce. ( kinda like a blog, without comments,
+and with a different presentation, and without all the various
+features ).
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000761.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000766.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#762">[ date ]</a>
+ <a href="thread.html#762">[ thread ]</a>
+ <a href="subject.html#762">[ subject ]</a>
+ <a href="author.html#762">[ 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/000763.html b/zarb-ml/mageia-webteam/2011-April/000763.html
new file mode 100644
index 000000000..0b7817ed9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000763.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 912] Custom field for CVE
+ </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%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20110420233852.4D390429B6%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="000758.html">
+ <LINK REL="Next" HREF="000764.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 912] Custom field for CVE</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20110420233852.4D390429B6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 912] Custom field for CVE">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 21 01:38:52 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000758.html">[Mageia-webteam] [Bug 912] [New] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000764.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#763">[ date ]</a>
+ <a href="thread.html#763">[ thread ]</a>
+ <a href="subject.html#763">[ subject ]</a>
+ <a href="author.html#763">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=912">https://bugs.mageia.org/show_bug.cgi?id=912</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">boklm at mars-attacks.org</A>
+
+--- 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-21 03:38:52 CEST ---
+I have looked at how to do that. It's possible to do it from this page :
+<A HREF="https://bugs.mageia.org/editfields.cgi?action=add">https://bugs.mageia.org/editfields.cgi?action=add</A>
+
+We can select &quot;Field only appears when&quot; to show it only in some cases. However,
+it is only possible to make the field present based on the value of :
+- Product
+- Platform
+- OS/Version
+- Status
+- Resolution
+- Severity
+- Priority
+
+In our case, we would like to show it or not based on value of Component (only
+show it if it's a bug on Security component). But it looks like it's not
+possible.
+
+So if we cannot do it based on component, I think there is two solutions :
+ - add a new severity value, &quot;security issue&quot; (set by default for bugs in
+components Security). And add the custom field only when severity is &quot;security
+issue&quot;.
+ - add the custom field in all cases
+
+--
+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="000758.html">[Mageia-webteam] [Bug 912] [New] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000764.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#763">[ date ]</a>
+ <a href="thread.html#763">[ thread ]</a>
+ <a href="subject.html#763">[ subject ]</a>
+ <a href="author.html#763">[ 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/000764.html b/zarb-ml/mageia-webteam/2011-April/000764.html
new file mode 100644
index 000000000..aac841184
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000764.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 912] Custom field for CVE
+ </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%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20110421001511.22A52429B3%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="000763.html">
+ <LINK REL="Next" HREF="000812.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 912] Custom field for CVE</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20110421001511.22A52429B3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 912] Custom field for CVE">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 21 02:15:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000812.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#764">[ date ]</a>
+ <a href="thread.html#764">[ thread ]</a>
+ <a href="subject.html#764">[ subject ]</a>
+ <a href="author.html#764">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=912">https://bugs.mageia.org/show_bug.cgi?id=912</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-21 04:15:10 CEST ---
+Well, a CVE would be linked to a rpm, so the component should be Rpm packages,
+no ?
+
+However, security is not a severity, if we decide to use it , we will not be
+able to see if a security bug is urgent or not ( I would rate a potential dos
+on some obscure erlang application less severe than a remote root on openssh,
+for example ).
+
+That's quite bad that the only filed we would want to use is the one that
+cannot :)
+
+--
+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="000763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000812.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#764">[ date ]</a>
+ <a href="thread.html#764">[ thread ]</a>
+ <a href="subject.html#764">[ subject ]</a>
+ <a href="author.html#764">[ 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/000765.html b/zarb-ml/mageia-webteam/2011-April/000765.html
new file mode 100644
index 000000000..476f38019
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000765.html
@@ -0,0 +1,70 @@
+<!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=%3C20110421002014.E0B6E429AB%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="000751.html">
+ <LINK REL="Next" HREF="000806.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=%3C20110421002014.E0B6E429AB%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 21 02:20:14 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000751.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000806.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#765">[ date ]</a>
+ <a href="thread.html#765">[ thread ]</a>
+ <a href="subject.html#765">[ subject ]</a>
+ <a href="author.html#765">[ 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 #13 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-21 04:20:15 CEST ---
+[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">apache at alamut</A> root]$ perl -MDateTime::TimeZone -we 'print
+DateTime::TimeZone-&gt;new(name =&gt; &quot;local&quot;) . &quot;\n&quot;;' ; id
+DateTime::TimeZone::Europe::Paris=HASH(0x13f46b0)
+uid=485(apache) gid=480(apache) groups=480(apache)
+
+But maybe the process is running in a different env due to mod_perl ?
+
+--
+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="000751.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000806.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#765">[ date ]</a>
+ <a href="thread.html#765">[ thread ]</a>
+ <a href="subject.html#765">[ subject ]</a>
+ <a href="author.html#765">[ 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/000766.html b/zarb-ml/mageia-webteam/2011-April/000766.html
new file mode 100644
index 000000000..3314c2963
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000766.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110421182618.43C784291C%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="000762.html">
+ <LINK REL="Next" HREF="000767.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110421182618.43C784291C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 21 20:26:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000762.html">[Mageia-webteam] Request on behalf of secteam for a website for security update
+</A></li>
+ <LI>Next message: <A HREF="000767.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#766">[ date ]</a>
+ <a href="thread.html#766">[ thread ]</a>
+ <a href="subject.html#766">[ subject ]</a>
+ <a href="author.html#766">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #3 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-04-21 22:26:18 CEST ---
+any news? we don't have neither voting system, so we can't keep trace of the
+bugs that we want to monitor.
+
+--
+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="000762.html">[Mageia-webteam] Request on behalf of secteam for a website for security update
+</A></li>
+ <LI>Next message: <A HREF="000767.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#766">[ date ]</a>
+ <a href="thread.html#766">[ thread ]</a>
+ <a href="subject.html#766">[ subject ]</a>
+ <a href="author.html#766">[ 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/000767.html b/zarb-ml/mageia-webteam/2011-April/000767.html
new file mode 100644
index 000000000..78a4ec78c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000767.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110421210514.05ADF429B7%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="000766.html">
+ <LINK REL="Next" HREF="000768.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110421210514.05ADF429B7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 21 23:05:14 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000766.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000768.html">[Mageia-webteam] Web team in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#767">[ date ]</a>
+ <a href="thread.html#767">[ thread ]</a>
+ <a href="subject.html#767">[ subject ]</a>
+ <a href="author.html#767">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #4 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-22 01:05:14 CEST ---
+(In reply to comment #3)
+&gt;<i> we don't have neither voting system, so we can't keep trace of the
+</I>&gt;<i> bugs that we want to monitor.
+</I>
+If you're in CC in a bug report, you get an email for most changes in that
+report (you can fine tune it in <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+). So you can add yourself to CC to the bugs you're interested in (there's an
+&quot;Add me to CC list&quot; check box in each report).
+
+--
+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="000766.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000768.html">[Mageia-webteam] Web team in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#767">[ date ]</a>
+ <a href="thread.html#767">[ thread ]</a>
+ <a href="subject.html#767">[ subject ]</a>
+ <a href="author.html#767">[ 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/000768.html b/zarb-ml/mageia-webteam/2011-April/000768.html
new file mode 100644
index 000000000..27e2f5aee
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000768.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Web team in ldap
+ </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%20in%20ldap&In-Reply-To=%3C1303422918.2307.189.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000767.html">
+ <LINK REL="Next" HREF="000795.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Web team in ldap</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Web%20team%20in%20ldap&In-Reply-To=%3C1303422918.2307.189.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Web team in ldap">misc at zarb.org
+ </A><BR>
+ <I>Thu Apr 21 23:55:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000767.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000795.html">[Mageia-webteam] Web team in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#768">[ date ]</a>
+ <a href="thread.html#768">[ thread ]</a>
+ <a href="subject.html#768">[ subject ]</a>
+ <a href="author.html#768">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+While redoing the ldap stuff for svn access, I created a group web in
+ldap, for peers in the team. For now, that is used for the web access,
+but could be used later for shell access ( to see logs, etc ), for mail
+aliases and maybe others ( like some web access ).
+
+The group only contain rda for now, but that mainly because I do not
+know who should be added as peers in this group ( there was a email
+somewhere, but I prefer to check before ). Please warn if it prevent you
+to do something that you could do before ( ie, if I dropped access too
+fast ).
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000767.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000795.html">[Mageia-webteam] Web team in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#768">[ date ]</a>
+ <a href="thread.html#768">[ thread ]</a>
+ <a href="subject.html#768">[ subject ]</a>
+ <a href="author.html#768">[ 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/000769.html b/zarb-ml/mageia-webteam/2011-April/000769.html
new file mode 100644
index 000000000..614337429
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000769.html
@@ -0,0 +1,120 @@
+<!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=%3C20110421220002.AE7F5429BF%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="000795.html">
+ <LINK REL="Next" HREF="000770.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=%3C20110421220002.AE7F5429BF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 22 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000795.html">[Mageia-webteam] Web team in ldap
+</A></li>
+ <LI>Next message: <A HREF="000770.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#769">[ date ]</a>
+ <a href="thread.html#769">[ thread ]</a>
+ <a href="subject.html#769">[ subject ]</a>
+ <a href="author.html#769">[ 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>
+ 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="000795.html">[Mageia-webteam] Web team in ldap
+</A></li>
+ <LI>Next message: <A HREF="000770.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#769">[ date ]</a>
+ <a href="thread.html#769">[ thread ]</a>
+ <a href="subject.html#769">[ subject ]</a>
+ <a href="author.html#769">[ 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/000770.html b/zarb-ml/mageia-webteam/2011-April/000770.html
new file mode 100644
index 000000000..4835e7c8b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000770.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110421224121.6D7D8429C0%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="000769.html">
+ <LINK REL="Next" HREF="000771.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110421224121.6D7D8429C0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 22 00:41:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000769.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000771.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#770">[ date ]</a>
+ <a href="thread.html#770">[ thread ]</a>
+ <a href="subject.html#770">[ subject ]</a>
+ <a href="author.html#770">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #5 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-04-22 02:41:21 CEST ---
+yes, but i don't mean see what changes happen, but i think about pinging the
+bug in case it is forget by everyone. for istance, this bug is opened to me but
+i forget about it, a user that is added to CC list noted in his list and add a
+new comment to &quot;revamp&quot; it.
+
+in plus, it needs only to add a button that makes:
+
+cc:e-mail adress
+
+what disadvantages can bring in the worst case?
+
+--
+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="000769.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000771.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#770">[ date ]</a>
+ <a href="thread.html#770">[ thread ]</a>
+ <a href="subject.html#770">[ subject ]</a>
+ <a href="author.html#770">[ 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/000771.html b/zarb-ml/mageia-webteam/2011-April/000771.html
new file mode 100644
index 000000000..00af41fc4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000771.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422014732.5DCDC429B7%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="000770.html">
+ <LINK REL="Next" HREF="000772.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422014732.5DCDC429B7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 22 03:47:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000770.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000772.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#771">[ date ]</a>
+ <a href="thread.html#771">[ thread ]</a>
+ <a href="subject.html#771">[ subject ]</a>
+ <a href="author.html#771">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #6 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-22 05:47:32 CEST ---
+(In reply to comment #5)
+&gt;<i> yes, but i don't mean see what changes happen, but i think about pinging the
+</I>&gt;<i> bug in case it is forget by everyone. for istance, this bug is opened to me but
+</I>&gt;<i> i forget about it, a user that is added to CC list noted in his list and add a
+</I>&gt;<i> new comment to &quot;revamp&quot; it.
+</I>&gt;<i>
+</I>&gt;<i> in plus, it needs only to add a button that makes:
+</I>&gt;<i>
+</I>&gt;<i> cc:e-mail adress
+</I>&gt;<i>
+</I>&gt;<i> what disadvantages can bring in the worst case?
+</I>
+Did I say anything about not-adding-that-feature?
+
+--
+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="000770.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000772.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#771">[ date ]</a>
+ <a href="thread.html#771">[ thread ]</a>
+ <a href="subject.html#771">[ subject ]</a>
+ <a href="author.html#771">[ 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/000772.html b/zarb-ml/mageia-webteam/2011-April/000772.html
new file mode 100644
index 000000000..fb34c6194
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000772.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422103531.EFAA7429B7%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="000771.html">
+ <LINK REL="Next" HREF="000773.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422103531.EFAA7429B7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 22 12:35:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000771.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000773.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#772">[ date ]</a>
+ <a href="thread.html#772">[ thread ]</a>
+ <a href="subject.html#772">[ subject ]</a>
+ <a href="author.html#772">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #7 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-04-22 14:35:32 CEST ---
+in reply to comment #6:
+
+i don't see a really costructive comment...
+
+--
+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="000771.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000773.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#772">[ date ]</a>
+ <a href="thread.html#772">[ thread ]</a>
+ <a href="subject.html#772">[ subject ]</a>
+ <a href="author.html#772">[ 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/000773.html b/zarb-ml/mageia-webteam/2011-April/000773.html
new file mode 100644
index 000000000..c6ce59423
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000773.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422181259.A474A429BE%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="000772.html">
+ <LINK REL="Next" HREF="000774.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422181259.A474A429BE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 22 20:12:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000772.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000774.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#773">[ date ]</a>
+ <a href="thread.html#773">[ thread ]</a>
+ <a href="subject.html#773">[ subject ]</a>
+ <a href="author.html#773">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</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-22 22:12:59 CEST ---
+In comment#4 I was pointing out a fact, nothing constructive or destructive,
+the same goes for comment#6, in which, again, I was point out the fact that &quot;I
+didn't say anything about not-adding-that-feature&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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000772.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000774.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#773">[ date ]</a>
+ <a href="thread.html#773">[ thread ]</a>
+ <a href="subject.html#773">[ subject ]</a>
+ <a href="author.html#773">[ 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/000774.html b/zarb-ml/mageia-webteam/2011-April/000774.html
new file mode 100644
index 000000000..f2faf8f87
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000774.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422192306.CCC1E429BC%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="000773.html">
+ <LINK REL="Next" HREF="000775.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422192306.CCC1E429BC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 22 21:23:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000773.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000775.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#774">[ date ]</a>
+ <a href="thread.html#774">[ thread ]</a>
+ <a href="subject.html#774">[ subject ]</a>
+ <a href="author.html#774">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #9 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-04-22 21:23:07 CEST ---
+ok, being a not native english speaker can bring some issues : ) about the
+comment 6, i've misunderstood, about comment 4 i try to change the title to
+better understand my proposal.
+
+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="000773.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000775.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#774">[ date ]</a>
+ <a href="thread.html#774">[ thread ]</a>
+ <a href="subject.html#774">[ subject ]</a>
+ <a href="author.html#774">[ 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/000775.html b/zarb-ml/mageia-webteam/2011-April/000775.html
new file mode 100644
index 000000000..bfabcfbd2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000775.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422192454.40ED8429BB%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="000774.html">
+ <LINK REL="Next" HREF="000776.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110422192454.40ED8429BB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 22 21:24:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000774.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000776.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#775">[ date ]</a>
+ <a href="thread.html#775">[ thread ]</a>
+ <a href="subject.html#775">[ subject ]</a>
+ <a href="author.html#775">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</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
+----------------------------------------------------------------------------
+ Summary|add a option in bugzilla |add a link in Home to
+ |profile to show the bugs |monitor all the bugs which
+ |which a person is CC'ed to |a person is CC'ed to
+
+--
+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="000774.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000776.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#775">[ date ]</a>
+ <a href="thread.html#775">[ thread ]</a>
+ <a href="subject.html#775">[ subject ]</a>
+ <a href="author.html#775">[ 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/000776.html b/zarb-ml/mageia-webteam/2011-April/000776.html
new file mode 100644
index 000000000..7d5e31a33
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000776.html
@@ -0,0 +1,120 @@
+<!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=%3C20110422220002.4057C429C3%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="000775.html">
+ <LINK REL="Next" HREF="000779.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=%3C20110422220002.4057C429C3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 23 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000775.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000779.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#776">[ date ]</a>
+ <a href="thread.html#776">[ thread ]</a>
+ <a href="subject.html#776">[ subject ]</a>
+ <a href="author.html#776">[ 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>
+ 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="000775.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000779.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#776">[ date ]</a>
+ <a href="thread.html#776">[ thread ]</a>
+ <a href="subject.html#776">[ subject ]</a>
+ <a href="author.html#776">[ 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/000777.html b/zarb-ml/mageia-webteam/2011-April/000777.html
new file mode 100644
index 000000000..f4a90f92a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000777.html
@@ -0,0 +1,66 @@
+<!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=%3C20110423005433.E380F429BF%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="000747.html">
+ <LINK REL="Next" HREF="000778.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>Ahmad Samir</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=%3C20110423005433.E380F429BF%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>Sat Apr 23 02:54:33 CEST 2011</I>
+ <P><UL>
+ <LI>Previous 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>Next 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> <B>Messages sorted by:</B>
+ <a href="date.html#777">[ date ]</a>
+ <a href="thread.html#777">[ thread ]</a>
+ <a href="subject.html#777">[ subject ]</a>
+ <a href="author.html#777">[ 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>
+
+--- Comment #2 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-23 04:54:33 CEST ---
+Fixed in SVN, should be OK in the next drakxtools roll out.
+
+--
+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="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>Next 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> <B>Messages sorted by:</B>
+ <a href="date.html#777">[ date ]</a>
+ <a href="thread.html#777">[ thread ]</a>
+ <a href="subject.html#777">[ subject ]</a>
+ <a href="author.html#777">[ 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/000778.html b/zarb-ml/mageia-webteam/2011-April/000778.html
new file mode 100644
index 000000000..4b5bfe60a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000778.html
@@ -0,0 +1,72 @@
+<!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=%3C20110423005502.C32ED429B9%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="000777.html">
+ <LINK REL="Next" HREF="000713.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>Ahmad Samir</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=%3C20110423005502.C32ED429B9%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>Sat Apr 23 02:55:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous 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>Next message: <A HREF="000713.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#778">[ date ]</a>
+ <a href="thread.html#778">[ thread ]</a>
+ <a href="subject.html#778">[ subject ]</a>
+ <a href="author.html#778">[ 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>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Mageia
+ Version|unspecified |Cauldron
+ Component|Bugzilla |RPM Packages
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+ RPM Package| |drakxtools
+
+--
+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="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>Next message: <A HREF="000713.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#778">[ date ]</a>
+ <a href="thread.html#778">[ thread ]</a>
+ <a href="subject.html#778">[ subject ]</a>
+ <a href="author.html#778">[ 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/000779.html b/zarb-ml/mageia-webteam/2011-April/000779.html
new file mode 100644
index 000000000..b9c666267
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000779.html
@@ -0,0 +1,118 @@
+<!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=%3C20110423220002.2EB6842975%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="000776.html">
+ <LINK REL="Next" HREF="000780.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=%3C20110423220002.2EB6842975%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 24 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000776.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000780.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#779">[ date ]</a>
+ <a href="thread.html#779">[ thread ]</a>
+ <a href="subject.html#779">[ subject ]</a>
+ <a href="author.html#779">[ 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>
+ 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="000776.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000780.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#779">[ date ]</a>
+ <a href="thread.html#779">[ thread ]</a>
+ <a href="subject.html#779">[ subject ]</a>
+ <a href="author.html#779">[ 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/000780.html b/zarb-ml/mageia-webteam/2011-April/000780.html
new file mode 100644
index 000000000..7ffd66657
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000780.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 966] Name check on identity should be more open
+ </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%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20110424162925.B20E2428A9%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="000779.html">
+ <LINK REL="Next" HREF="000781.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 966] Name check on identity should be more open</H1>
+ <B>Pascal Terjan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20110424162925.B20E2428A9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 966] Name check on identity should be more open">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 24 18:29:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000779.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000781.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#780">[ date ]</a>
+ <a href="thread.html#780">[ thread ]</a>
+ <a href="subject.html#780">[ subject ]</a>
+ <a href="author.html#780">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+
+Pascal Terjan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pterjan at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Websites
+ Version|unspecified |trunk
+ Component|Others |identity.mageia.org
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="000779.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000781.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#780">[ date ]</a>
+ <a href="thread.html#780">[ thread ]</a>
+ <a href="subject.html#780">[ subject ]</a>
+ <a href="author.html#780">[ 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/000781.html b/zarb-ml/mageia-webteam/2011-April/000781.html
new file mode 100644
index 000000000..0f3bfd6fc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000781.html
@@ -0,0 +1,118 @@
+<!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=%3C20110424220003.46E8E429C1%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="000780.html">
+ <LINK REL="Next" HREF="000782.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=%3C20110424220003.46E8E429C1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 25 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000780.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="000782.html">[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#781">[ date ]</a>
+ <a href="thread.html#781">[ thread ]</a>
+ <a href="subject.html#781">[ subject ]</a>
+ <a href="author.html#781">[ 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>
+ 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="000780.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="000782.html">[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#781">[ date ]</a>
+ <a href="thread.html#781">[ thread ]</a>
+ <a href="subject.html#781">[ subject ]</a>
+ <a href="author.html#781">[ 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/000782.html b/zarb-ml/mageia-webteam/2011-April/000782.html
new file mode 100644
index 000000000..34b9f7e05
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000782.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english 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%20975%5D%20%5BNew%5D%20http%3A//blog.mageia.org/et%20is%20not%0A%20exist.%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3Cbug-975-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="000781.html">
+ <LINK REL="Next" HREF="000783.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page</H1>
+ <B>Jaanus Ojangu</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20975%5D%20%5BNew%5D%20http%3A//blog.mageia.org/et%20is%20not%0A%20exist.%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3Cbug-975-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 25 12:55:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000781.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000783.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#782">[ date ]</a>
+ <a href="thread.html#782">[ thread ]</a>
+ <a href="subject.html#782">[ subject ]</a>
+ <a href="author.html#782">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=975">https://bugs.mageia.org/show_bug.cgi?id=975</A>
+
+ Summary: <A HREF="http://blog.mageia.org/et">http://blog.mageia.org/et</A> is not exist. Please foward
+ it to english page
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://blog.mageia.org/et">http://blog.mageia.org/et</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: blog.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">jaanus.ojangu at gmail.com</A>
+
+
+<A HREF="http://blog.mageia.org/et">http://blog.mageia.org/et</A> is not exist.
+
+Please foward it to english page on <A HREF="http://www.mageia.org/et/">http://www.mageia.org/et/</A> page.
+
+--
+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="000781.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000783.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#782">[ date ]</a>
+ <a href="thread.html#782">[ thread ]</a>
+ <a href="subject.html#782">[ subject ]</a>
+ <a href="author.html#782">[ 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/000783.html b/zarb-ml/mageia-webteam/2011-April/000783.html
new file mode 100644
index 000000000..1134be1a6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000783.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english 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%20975%5D%20http%3A//blog.mageia.org/et%20is%20not%20exist.%0A%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3C20110425150440.8D052429B0%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="000782.html">
+ <LINK REL="Next" HREF="000784.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20975%5D%20http%3A//blog.mageia.org/et%20is%20not%20exist.%0A%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3C20110425150440.8D052429B0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 25 17:04:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000782.html">[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000784.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#783">[ date ]</a>
+ <a href="thread.html#783">[ thread ]</a>
+ <a href="subject.html#783">[ subject ]</a>
+ <a href="author.html#783">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=975">https://bugs.mageia.org/show_bug.cgi?id=975</A>
+
+--- Comment #1 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-25 17:04:40 CEST ---
+Well, the point is &quot;Estonian&quot; doesn't exist in the header in the blog
+<A HREF="http://blog.mageia.org">http://blog.mageia.org</A> , so why would a non-<A HREF="existinghttp://blog.mageia.org/et">existinghttp://blog.mageia.org/et</A>
+redirect anywhere?
+
+--
+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="000782.html">[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000784.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#783">[ date ]</a>
+ <a href="thread.html#783">[ thread ]</a>
+ <a href="subject.html#783">[ subject ]</a>
+ <a href="author.html#783">[ 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/000784.html b/zarb-ml/mageia-webteam/2011-April/000784.html
new file mode 100644
index 000000000..4e63de775
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000784.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english 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%20975%5D%20http%3A//blog.mageia.org/et%20is%20not%20exist.%0A%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3C20110425150819.0571C429C1%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="000783.html">
+ <LINK REL="Next" HREF="000785.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page</H1>
+ <B>Marek Laane</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20975%5D%20http%3A//blog.mageia.org/et%20is%20not%20exist.%0A%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3C20110425150819.0571C429C1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 25 17:08:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000783.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000785.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#784">[ date ]</a>
+ <a href="thread.html#784">[ thread ]</a>
+ <a href="subject.html#784">[ subject ]</a>
+ <a href="author.html#784">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=975">https://bugs.mageia.org/show_bug.cgi?id=975</A>
+
+Marek Laane &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bald at smail.ee</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bald at smail.ee</A>
+
+--- Comment #2 from Marek Laane &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bald at smail.ee</A>&gt; 2011-04-25 19:08:19 CEST ---
+But there is &quot;Ajaveeb&quot; (=Blog) on <A HREF="http://www.mageia.org/et/">http://www.mageia.org/et/</A> which directs to
+non-existing <A HREF="http://blog.mageia.org/et">http://blog.mageia.org/et</A> - and if clicked, of course, &quot;404 Not
+found&quot; happens...
+
+--
+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="000783.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000785.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#784">[ date ]</a>
+ <a href="thread.html#784">[ thread ]</a>
+ <a href="subject.html#784">[ subject ]</a>
+ <a href="author.html#784">[ 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/000785.html b/zarb-ml/mageia-webteam/2011-April/000785.html
new file mode 100644
index 000000000..d4f306516
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000785.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english 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%20975%5D%20http%3A//blog.mageia.org/et%20is%20not%20exist.%0A%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3C20110425155918.5B359429C4%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="000784.html">
+ <LINK REL="Next" HREF="000788.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20975%5D%20http%3A//blog.mageia.org/et%20is%20not%20exist.%0A%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3C20110425155918.5B359429C4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 25 17:59:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000784.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000788.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#785">[ date ]</a>
+ <a href="thread.html#785">[ thread ]</a>
+ <a href="subject.html#785">[ subject ]</a>
+ <a href="author.html#785">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=975">https://bugs.mageia.org/show_bug.cgi?id=975</A>
+
+--- Comment #3 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-25 19:59:18 CEST ---
+I see what you mean now. Sorry for the noise :)
+
+--
+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="000784.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000788.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#785">[ date ]</a>
+ <a href="thread.html#785">[ thread ]</a>
+ <a href="subject.html#785">[ subject ]</a>
+ <a href="author.html#785">[ 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/000786.html b/zarb-ml/mageia-webteam/2011-April/000786.html
new file mode 100644
index 000000000..1c0e78aea
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000786.html
@@ -0,0 +1,121 @@
+<!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=%3C20110425220003.309C3429D9%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="000788.html">
+ <LINK REL="Next" HREF="000787.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=%3C20110425220003.309C3429D9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000788.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000787.html">[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#786">[ date ]</a>
+ <a href="thread.html#786">[ thread ]</a>
+ <a href="subject.html#786">[ subject ]</a>
+ <a href="author.html#786">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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="000788.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000787.html">[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#786">[ date ]</a>
+ <a href="thread.html#786">[ thread ]</a>
+ <a href="subject.html#786">[ subject ]</a>
+ <a href="author.html#786">[ 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/000787.html b/zarb-ml/mageia-webteam/2011-April/000787.html
new file mode 100644
index 000000000..d82f8b59c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000787.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
+ </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%20991%5D%20%5BNew%5D%20Incorrect%20links%20on%20download%20pages&In-Reply-To=%3Cbug-991-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="000786.html">
+ <LINK REL="Next" HREF="000789.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20991%5D%20%5BNew%5D%20Incorrect%20links%20on%20download%20pages&In-Reply-To=%3Cbug-991-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 02:12:01 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000786.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000789.html">[Mageia-webteam] [Bug 991] Incorrect links on download pages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#787">[ date ]</a>
+ <a href="thread.html#787">[ thread ]</a>
+ <a href="subject.html#787">[ subject ]</a>
+ <a href="author.html#787">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=991">https://bugs.mageia.org/show_bug.cgi?id=991</A>
+
+ Summary: Incorrect links on download pages
+ 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">boklm at mars-attacks.org</A>
+
+
+In the download page on <A HREF="http://www.mageia.org/en/downloads/">http://www.mageia.org/en/downloads/</A> after selecting
+32/64 Bit DVD or Dual Arch CD, the link to the default mirror is working.
+However after selecting &quot;check out these other mirrors&quot; it provides a list of
+mirrors with incorrect links to the ISOs (error in the ISO filenames).
+
+--
+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="000786.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000789.html">[Mageia-webteam] [Bug 991] Incorrect links on download pages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#787">[ date ]</a>
+ <a href="thread.html#787">[ thread ]</a>
+ <a href="subject.html#787">[ subject ]</a>
+ <a href="author.html#787">[ 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/000788.html b/zarb-ml/mageia-webteam/2011-April/000788.html
new file mode 100644
index 000000000..321e3c5b3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000788.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english 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%20975%5D%20http%3A//blog.mageia.org/et%20is%20not%20exist.%0A%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3C20110426073402.0E4DC429CF%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="000785.html">
+ <LINK REL="Next" HREF="000786.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20975%5D%20http%3A//blog.mageia.org/et%20is%20not%20exist.%0A%20Please%20foward%20it%20to%20english%20page&In-Reply-To=%3C20110426073402.0E4DC429CF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 09:34:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000785.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000786.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#788">[ date ]</a>
+ <a href="thread.html#788">[ thread ]</a>
+ <a href="subject.html#788">[ subject ]</a>
+ <a href="author.html#788">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=975">https://bugs.mageia.org/show_bug.cgi?id=975</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-26 09:33:59 CEST ---
+That's more the global navigation links 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000785.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A></li>
+ <LI>Next message: <A HREF="000786.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#788">[ date ]</a>
+ <a href="thread.html#788">[ thread ]</a>
+ <a href="subject.html#788">[ subject ]</a>
+ <a href="author.html#788">[ 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/000789.html b/zarb-ml/mageia-webteam/2011-April/000789.html
new file mode 100644
index 000000000..2798593ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000789.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 991] Incorrect links on download pages
+ </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%20991%5D%20Incorrect%20links%20on%20download%20pages&In-Reply-To=%3C20110426075547.B7BFD429CF%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="000787.html">
+ <LINK REL="Next" HREF="000790.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 991] Incorrect links on download pages</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20991%5D%20Incorrect%20links%20on%20download%20pages&In-Reply-To=%3C20110426075547.B7BFD429CF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 991] Incorrect links on download pages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 09:55:47 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000787.html">[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
+</A></li>
+ <LI>Next message: <A HREF="000790.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#789">[ date ]</a>
+ <a href="thread.html#789">[ thread ]</a>
+ <a href="subject.html#789">[ subject ]</a>
+ <a href="author.html#789">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=991">https://bugs.mageia.org/show_bug.cgi?id=991</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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-26 11:55:44 CEST ---
+Thanks. Fixed in SVN, will be pushed in production for Beta2 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000787.html">[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
+</A></li>
+ <LI>Next message: <A HREF="000790.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#789">[ date ]</a>
+ <a href="thread.html#789">[ thread ]</a>
+ <a href="subject.html#789">[ subject ]</a>
+ <a href="author.html#789">[ 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/000790.html b/zarb-ml/mageia-webteam/2011-April/000790.html
new file mode 100644
index 000000000..54bcc2eac
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000790.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 966] Name check on identity should be more open
+ </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%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20110426120827.80316429F4%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="000789.html">
+ <LINK REL="Next" HREF="000791.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 966] Name check on identity should be more open</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20110426120827.80316429F4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 966] Name check on identity should be more open">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 14:08:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000789.html">[Mageia-webteam] [Bug 991] Incorrect links on download pages
+</A></li>
+ <LI>Next message: <A HREF="000791.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#790">[ date ]</a>
+ <a href="thread.html#790">[ thread ]</a>
+ <a href="subject.html#790">[ subject ]</a>
+ <a href="author.html#790">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</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-26 16:08:27 CEST ---
+I releaxed the check in trunk.
+
+--
+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="000789.html">[Mageia-webteam] [Bug 991] Incorrect links on download pages
+</A></li>
+ <LI>Next message: <A HREF="000791.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#790">[ date ]</a>
+ <a href="thread.html#790">[ thread ]</a>
+ <a href="subject.html#790">[ subject ]</a>
+ <a href="author.html#790">[ 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/000791.html b/zarb-ml/mageia-webteam/2011-April/000791.html
new file mode 100644
index 000000000..8d3497290
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000791.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 17 review 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%2017%20review%20meeting&In-Reply-To=%3CBANLkTinu4BqXfY%3D6TjAzm8yPNFaATtf%2BeQ%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="000790.html">
+ <LINK REL="Next" HREF="000794.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 17 review meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2017%20review%20meeting&In-Reply-To=%3CBANLkTinu4BqXfY%3D6TjAzm8yPNFaATtf%2BeQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 17 review meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Apr 26 14:51:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000790.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="000794.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#791">[ date ]</a>
+ <a href="thread.html#791">[ thread ]</a>
+ <a href="subject.html#791">[ subject ]</a>
+ <a href="author.html#791">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+usual place (#mageia-web), usual time (13:00 UTC, 15:00 Paris time);
+we'll need a status for each of these _before_ the meeting to see what
+gets discussed then:
+ * wiki
+ * maintdb
+ * bugzilla (4.0 or other)
+ * forums
+ * blogs, planets
+ * identity
+ * calendar
+ * website globally
+ * other?
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000790.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="000794.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#791">[ date ]</a>
+ <a href="thread.html#791">[ thread ]</a>
+ <a href="subject.html#791">[ subject ]</a>
+ <a href="author.html#791">[ 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/000792.html b/zarb-ml/mageia-webteam/2011-April/000792.html
new file mode 100644
index 000000000..de1a69523
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000792.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
+ </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%20998%5D%20%5BNew%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3Cbug-998-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="000810.html">
+ <LINK REL="Next" HREF="000793.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20%5BNew%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3Cbug-998-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 17:18:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000810.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI>Next message: <A HREF="000793.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#792">[ date ]</a>
+ <a href="thread.html#792">[ thread ]</a>
+ <a href="subject.html#792">[ subject ]</a>
+ <a href="author.html#792">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+ Summary: O Brother, Where Art Thou?
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">rdalverny at gmail.com</A>
+
+
+Description of problem:
+We don't know where we are - this would help identifying meeting/working
+opportunities.
+
+Potential solution:
+Have people locate themselves by their account or a distinct way into a
+community map - with an opt-in/out of course + custom level of detail
+(city/country/other).
+
+--
+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="000810.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI>Next message: <A HREF="000793.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#792">[ date ]</a>
+ <a href="thread.html#792">[ thread ]</a>
+ <a href="subject.html#792">[ subject ]</a>
+ <a href="author.html#792">[ 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/000793.html b/zarb-ml/mageia-webteam/2011-April/000793.html
new file mode 100644
index 000000000..00290120e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000793.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426155701.DC4E842A0A%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="000792.html">
+ <LINK REL="Next" HREF="000797.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426155701.DC4E842A0A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 17:57:01 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000792.html">[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000797.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#793">[ date ]</a>
+ <a href="thread.html#793">[ thread ]</a>
+ <a href="subject.html#793">[ subject ]</a>
+ <a href="author.html#793">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</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-26 19:57:00 CEST ---
+Slightly old, but a friend of mine started this :
+<A HREF="https://fedorahosted.org/shomyu/">https://fedorahosted.org/shomyu/</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="000792.html">[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000797.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#793">[ date ]</a>
+ <a href="thread.html#793">[ thread ]</a>
+ <a href="subject.html#793">[ subject ]</a>
+ <a href="author.html#793">[ 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/000794.html b/zarb-ml/mageia-webteam/2011-April/000794.html
new file mode 100644
index 000000000..5602b3f05
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000794.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 17 review 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%2017%20review%20meeting&In-Reply-To=%3C1303834491.16679.20.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000791.html">
+ <LINK REL="Next" HREF="000796.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 17 review meeting</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2017%20review%20meeting&In-Reply-To=%3C1303834491.16679.20.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] 2011/week 17 review meeting">misc at zarb.org
+ </A><BR>
+ <I>Tue Apr 26 18:14:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000791.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI>Next message: <A HREF="000796.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#794">[ date ]</a>
+ <a href="thread.html#794">[ thread ]</a>
+ <a href="subject.html#794">[ subject ]</a>
+ <a href="author.html#794">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 26 avril 2011 &#224; 14:51 +0200, Romain d'Alverny a &#233;crit :
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> usual place (#mageia-web), usual time (13:00 UTC, 15:00 Paris time);
+</I>&gt;<i> we'll need a status for each of these _before_ the meeting to see what
+</I>&gt;<i> gets discussed then:
+</I>&gt;<i> * wiki
+</I>&gt;<i> * maintdb
+</I>&gt;<i> * bugzilla (4.0 or other)
+</I>&gt;<i> * forums
+</I>&gt;<i> * blogs, planets
+</I>&gt;<i> * identity
+</I>&gt;<i> * calendar
+</I>&gt;<i> * website globally
+</I>&gt;<i> * other?
+</I>
+* members of the web team ( peers ) so I can fill the proper ldap group
+( for now, would be used for @mageia.org aliases ).
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000791.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI>Next message: <A HREF="000796.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#794">[ date ]</a>
+ <a href="thread.html#794">[ thread ]</a>
+ <a href="subject.html#794">[ subject ]</a>
+ <a href="author.html#794">[ 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/000795.html b/zarb-ml/mageia-webteam/2011-April/000795.html
new file mode 100644
index 000000000..368bf73a5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000795.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Web team in ldap
+ </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%20in%20ldap&In-Reply-To=%3CBANLkTikeVxiw66potP%2B2u1Rr3jK_JFNPxw%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="000768.html">
+ <LINK REL="Next" HREF="000769.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Web team in ldap</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Web%20team%20in%20ldap&In-Reply-To=%3CBANLkTikeVxiw66potP%2B2u1Rr3jK_JFNPxw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Web team in ldap">rda at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 18:21:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000768.html">[Mageia-webteam] Web team in ldap
+</A></li>
+ <LI>Next message: <A HREF="000769.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#795">[ date ]</a>
+ <a href="thread.html#795">[ thread ]</a>
+ <a href="subject.html#795">[ subject ]</a>
+ <a href="author.html#795">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi misc, all,
+
+On Thu, Apr 21, 2011 at 23:55, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> While redoing the ldap stuff for svn access, I created a group web in
+</I>&gt;<i> ldap, for peers in the team. For now, that is used for the web access,
+</I>&gt;<i> but could be used later for shell access ( to see logs, etc ), for mail
+</I>&gt;<i> aliases and maybe others ( like some web access ).
+</I>
+Thanks!
+
+&gt;<i> The group only contain rda for now, but that mainly because I do not
+</I>&gt;<i> know who should be added as peers in this group ( there was a email
+</I>&gt;<i> somewhere, but I prefer to check before ). Please warn if it prevent you
+</I>&gt;<i> to do something that you could do before ( ie, if I dropped access too
+</I>&gt;<i> fast ).
+</I>
+Current list of team peers is here:
+<A HREF="http://mageia.org/wiki/doku.php?id=web#team_peers_roles">http://mageia.org/wiki/doku.php?id=web#team_peers_roles</A> but it may
+need to be maintained (are all persons in it still ok, should there be
+someone else?).
+
+To recap here the list, Web team peers are:
+ - Buchan Milne (blingme): catdap
+ - Damien Lallement (damsweb/coincoin): infra, blog, planet, website
+ - Kosmas Chatzimichalis (kosmas): maint-db
+ - Oliver Burger (obgr): team deputy leader; wiki, calendar, catdap
+ - Olivier Thauvin (nanar): epoll
+ - Pascal Villarem (ma&#226;t): forum
+ - Rapha&#235;l Jadot (ash): forum
+ - Samuel Verschelde (stormi): mageia-app-db
+ - Toni Korpela (TMKCodes): secretary
+
+I am not sure everyone here has a Mageia account, so please register
+it on <A HREF="https://identity.mageia.org">https://identity.mageia.org</A> if you don't already - and make sure
+your uid is the one I provided above, as {uid}@mageia.org will be your
+mageia.org email alias. :)
+
+Misc, I'll sum it up at the team meeting tomorrow and let you know of
+any update about it then - so maybe don't take action on this list
+already.
+
+Cheers,
+
+Romain
+--
+Romain d'Alverny
+<A HREF="http://mageia.org/">http://mageia.org/</A> board &amp; council member
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000768.html">[Mageia-webteam] Web team in ldap
+</A></li>
+ <LI>Next message: <A HREF="000769.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#795">[ date ]</a>
+ <a href="thread.html#795">[ thread ]</a>
+ <a href="subject.html#795">[ subject ]</a>
+ <a href="author.html#795">[ 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/000796.html b/zarb-ml/mageia-webteam/2011-April/000796.html
new file mode 100644
index 000000000..49546d256
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000796.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 17 review 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%2017%20review%20meeting&In-Reply-To=%3CBANLkTin8a9S4AbZKjWy-JCsvnHmxL5VLFQ%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="000794.html">
+ <LINK REL="Next" HREF="000810.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 17 review meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2017%20review%20meeting&In-Reply-To=%3CBANLkTin8a9S4AbZKjWy-JCsvnHmxL5VLFQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 17 review meeting">rda at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 18:25:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000794.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI>Next message: <A HREF="000810.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#796">[ date ]</a>
+ <a href="thread.html#796">[ thread ]</a>
+ <a href="subject.html#796">[ subject ]</a>
+ <a href="author.html#796">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Apr 26, 2011 at 18:14, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Le mardi 26 avril 2011 &#224; 14:51 +0200, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i> &#160;* wiki
+</I>&gt;&gt;<i> &#160;* maintdb
+</I>&gt;&gt;<i> &#160;* bugzilla (4.0 or other)
+</I>&gt;&gt;<i> &#160;* forums
+</I>&gt;&gt;<i> &#160;* blogs, planets
+</I>&gt;&gt;<i> &#160;* identity
+</I>&gt;&gt;<i> &#160;* calendar
+</I>&gt;&gt;<i> &#160;* website globally
+</I>&gt;&gt;<i> &#160;* other?
+</I>&gt;<i>
+</I>&gt;<i> * members of the web team ( peers ) so I can fill the proper ldap group
+</I>&gt;<i> ( for now, would be used for @mageia.org aliases ).
+</I>
+ * secteam web app (seeing your previous mail about it)
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000794.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI>Next message: <A HREF="000810.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#796">[ date ]</a>
+ <a href="thread.html#796">[ thread ]</a>
+ <a href="subject.html#796">[ subject ]</a>
+ <a href="author.html#796">[ 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/000797.html b/zarb-ml/mageia-webteam/2011-April/000797.html
new file mode 100644
index 000000000..6c1d8160b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000797.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426164217.7B72E42A0A%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="000793.html">
+ <LINK REL="Next" HREF="000798.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426164217.7B72E42A0A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 18:42:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000793.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000798.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#797">[ date ]</a>
+ <a href="thread.html#797">[ thread ]</a>
+ <a href="subject.html#797">[ subject ]</a>
+ <a href="author.html#797">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>
+
+--- Comment #2 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-04-26 20:42:14 CEST ---
+This looks promising - could probably be automated.
+<A HREF="http://www.aardvarkmap.net/">http://www.aardvarkmap.net/</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="000793.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000798.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#797">[ date ]</a>
+ <a href="thread.html#797">[ thread ]</a>
+ <a href="subject.html#797">[ subject ]</a>
+ <a href="author.html#797">[ 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/000798.html b/zarb-ml/mageia-webteam/2011-April/000798.html
new file mode 100644
index 000000000..431658674
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000798.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426164840.8DB8442A0A%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="000797.html">
+ <LINK REL="Next" HREF="000799.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426164840.8DB8442A0A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 18:48:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000797.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000799.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#798">[ date ]</a>
+ <a href="thread.html#798">[ thread ]</a>
+ <a href="subject.html#798">[ subject ]</a>
+ <a href="author.html#798">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</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-26 20:48:38 CEST ---
+I wondered about having this info (Country/City) into our LDAP? or better have
+it separate?
+
+--
+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="000797.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000799.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#798">[ date ]</a>
+ <a href="thread.html#798">[ thread ]</a>
+ <a href="subject.html#798">[ subject ]</a>
+ <a href="author.html#798">[ 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/000799.html b/zarb-ml/mageia-webteam/2011-April/000799.html
new file mode 100644
index 000000000..2a4069d24
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000799.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426172003.55DE7429EC%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="000798.html">
+ <LINK REL="Next" HREF="000800.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426172003.55DE7429EC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 19:20:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000798.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000800.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#799">[ date ]</a>
+ <a href="thread.html#799">[ thread ]</a>
+ <a href="subject.html#799">[ subject ]</a>
+ <a href="author.html#799">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</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-26 21:20:01 CEST ---
+Country/city can already be done with localityName and countryName, but no
+schema seems to use it so far.
+
+Having in ldap would be convenient as this permit us to manage from identity.
+But I think a country/city is maybe not the most convenient to store
+information about location as we may have hard time to convert this to spatial
+coordinates. And there is no ( AFAIK ) schema to store coordinate.
+
+Storing this in postgres would be nicer from a dev point of view, as postgis is
+a quite powerful extension to postgres. Spatialite could be used for sqlite
+too.
+
+Using some nosql db would also be a option, but I do not know what exist for
+that.
+
+--
+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="000798.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000800.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#799">[ date ]</a>
+ <a href="thread.html#799">[ thread ]</a>
+ <a href="subject.html#799">[ subject ]</a>
+ <a href="author.html#799">[ 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/000800.html b/zarb-ml/mageia-webteam/2011-April/000800.html
new file mode 100644
index 000000000..8932b08c0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000800.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426172513.C3AD2429EF%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="000799.html">
+ <LINK REL="Next" HREF="000807.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110426172513.C3AD2429EF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 26 19:25:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000799.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000807.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#800">[ date ]</a>
+ <a href="thread.html#800">[ thread ]</a>
+ <a href="subject.html#800">[ subject ]</a>
+ <a href="author.html#800">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #5 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-04-26 21:25:12 CEST ---
+There is &quot;geocouch&quot; and &quot;mapquery&quot; (at FosGiss I listened to a presentation by
+geocoach's main developer), perhaps we could build a simple application arround
+this.
+But my colleagues from work whose main work is in the webgis development meant
+it couldn't replace postgres/postgis.
+
+I'll have a look into 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000799.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000807.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#800">[ date ]</a>
+ <a href="thread.html#800">[ thread ]</a>
+ <a href="subject.html#800">[ subject ]</a>
+ <a href="author.html#800">[ 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/000801.html b/zarb-ml/mageia-webteam/2011-April/000801.html
new file mode 100644
index 000000000..be2d8c0c1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000801.html
@@ -0,0 +1,125 @@
+<!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=%3C20110426220003.0D26C42A09%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="000809.html">
+ <LINK REL="Next" HREF="000802.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=%3C20110426220003.0D26C42A09%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 27 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000809.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000802.html">[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#801">[ date ]</a>
+ <a href="thread.html#801">[ thread ]</a>
+ <a href="subject.html#801">[ subject ]</a>
+ <a href="author.html#801">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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="000809.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000802.html">[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#801">[ date ]</a>
+ <a href="thread.html#801">[ thread ]</a>
+ <a href="subject.html#801">[ subject ]</a>
+ <a href="author.html#801">[ 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/000802.html b/zarb-ml/mageia-webteam/2011-April/000802.html
new file mode 100644
index 000000000..27e63d3e4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000802.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
+ </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%201001%5D%20%5BNew%5D%20Wrong%20instructions%20to%20check%20that%0A%20the%20signatures%20of%20ISO%20match&In-Reply-To=%3Cbug-1001-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="000801.html">
+ <LINK REL="Next" HREF="000803.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match</H1>
+ <B>Gerald</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201001%5D%20%5BNew%5D%20Wrong%20instructions%20to%20check%20that%0A%20the%20signatures%20of%20ISO%20match&In-Reply-To=%3Cbug-1001-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 27 00:32:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000801.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000803.html">[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#802">[ date ]</a>
+ <a href="thread.html#802">[ thread ]</a>
+ <a href="subject.html#802">[ subject ]</a>
+ <a href="author.html#802">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1001">https://bugs.mageia.org/show_bug.cgi?id=1001</A>
+
+ Summary: Wrong instructions to check that the signatures of ISO
+ match
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://mageia.org/en/downloads/dl.php?product=mageia-1">http://mageia.org/en/downloads/dl.php?product=mageia-1</A>
+ -beta2-dvd-i586#om
+ 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">g.sprik at hccnet.nl</A>
+
+
+Description of problem:
+
+The Mageia website suggests to check that the signatures match as soon as the
+download of the Mageia Beta2 ISO is complete.
+
+1. In the instructions the name of the ISO-file is not correct
+ website: mageia-1-beta2-dvd-i586.iso
+ mirror: mageia-dvd-1-Beta2-i586.iso
+
+2. The second check should be: sha1sum (not sha1) ?
+
+Version-Release number of selected component (if applicable):
+
+Beta2
+
+--
+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="000801.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000803.html">[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#802">[ date ]</a>
+ <a href="thread.html#802">[ thread ]</a>
+ <a href="subject.html#802">[ subject ]</a>
+ <a href="author.html#802">[ 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/000803.html b/zarb-ml/mageia-webteam/2011-April/000803.html
new file mode 100644
index 000000000..f6fd34873
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000803.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
+ </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%201001%5D%20Wrong%20instructions%20to%20check%20that%20the%0A%20signatures%20of%20ISO%20match&In-Reply-To=%3C20110427010125.821E1429E4%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="000802.html">
+ <LINK REL="Next" HREF="000804.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201001%5D%20Wrong%20instructions%20to%20check%20that%20the%0A%20signatures%20of%20ISO%20match&In-Reply-To=%3C20110427010125.821E1429E4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 27 03:01:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000802.html">[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
+</A></li>
+ <LI>Next message: <A HREF="000804.html">[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#803">[ date ]</a>
+ <a href="thread.html#803">[ thread ]</a>
+ <a href="subject.html#803">[ subject ]</a>
+ <a href="author.html#803">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1001">https://bugs.mageia.org/show_bug.cgi?id=1001</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<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">bugsquad at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #1 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-27 05:01:25 CEST ---
+@Romain, maybe the file name of the ISO should be generic, so that it works for
+all ISO releases.
+
+--
+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="000802.html">[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
+</A></li>
+ <LI>Next message: <A HREF="000804.html">[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#803">[ date ]</a>
+ <a href="thread.html#803">[ thread ]</a>
+ <a href="subject.html#803">[ subject ]</a>
+ <a href="author.html#803">[ 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/000804.html b/zarb-ml/mageia-webteam/2011-April/000804.html
new file mode 100644
index 000000000..d63c4c679
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000804.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
+ </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%201004%5D%20%5BNew%5D%20When%20reporting%20new%20bugs%2C%0A%20the%20wrong%20time%20is%20displayed.&In-Reply-To=%3Cbug-1004-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="000803.html">
+ <LINK REL="Next" HREF="000805.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201004%5D%20%5BNew%5D%20When%20reporting%20new%20bugs%2C%0A%20the%20wrong%20time%20is%20displayed.&In-Reply-To=%3Cbug-1004-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 27 08:30:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000803.html">[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
+</A></li>
+ <LI>Next message: <A HREF="000805.html">[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#804">[ date ]</a>
+ <a href="thread.html#804">[ thread ]</a>
+ <a href="subject.html#804">[ subject ]</a>
+ <a href="author.html#804">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1004">https://bugs.mageia.org/show_bug.cgi?id=1004</A>
+
+ Summary: When reporting new bugs, the wrong time is displayed.
+ 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">remco at webconquest.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>
+
+
+Newly reported bugs (and possibly changes to bugs too) have the wrong timestamp
+recorded. For example, this bug report is posted at 8:30 CEST, but displays
+with a two hour difference while still claiming to be in 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="000803.html">[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
+</A></li>
+ <LI>Next message: <A HREF="000805.html">[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#804">[ date ]</a>
+ <a href="thread.html#804">[ thread ]</a>
+ <a href="subject.html#804">[ subject ]</a>
+ <a href="author.html#804">[ 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/000805.html b/zarb-ml/mageia-webteam/2011-April/000805.html
new file mode 100644
index 000000000..755298397
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000805.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.
+ </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%201004%5D%20When%20reporting%20new%20bugs%2C%0A%09the%20wrong%20time%20is%20displayed.&In-Reply-To=%3C20110427073229.AADA642A09%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="000804.html">
+ <LINK REL="Next" HREF="000811.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201004%5D%20When%20reporting%20new%20bugs%2C%0A%09the%20wrong%20time%20is%20displayed.&In-Reply-To=%3C20110427073229.AADA642A09%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 27 09:32:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000804.html">[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
+</A></li>
+ <LI>Next message: <A HREF="000811.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#805">[ date ]</a>
+ <a href="thread.html#805">[ thread ]</a>
+ <a href="subject.html#805">[ subject ]</a>
+ <a href="author.html#805">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1004">https://bugs.mageia.org/show_bug.cgi?id=1004</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| |DUPLICATE
+
+--- Comment #1 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-27 11:32:28 CEST ---
+A duplicate.
+
+*** This bug has been marked as a duplicate of bug 813 ***
+
+--
+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="000804.html">[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
+</A></li>
+ <LI>Next message: <A HREF="000811.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#805">[ date ]</a>
+ <a href="thread.html#805">[ thread ]</a>
+ <a href="subject.html#805">[ subject ]</a>
+ <a href="author.html#805">[ 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/000806.html b/zarb-ml/mageia-webteam/2011-April/000806.html
new file mode 100644
index 000000000..c5f4e0e5c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000806.html
@@ -0,0 +1,70 @@
+<!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=%3C20110427073230.E5D6842A1A%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="000765.html">
+ <LINK REL="Next" HREF="000696.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Ahmad Samir</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=%3C20110427073230.E5D6842A1A%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 27 09:32:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000765.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000696.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#806">[ date ]</a>
+ <a href="thread.html#806">[ thread ]</a>
+ <a href="subject.html#806">[ subject ]</a>
+ <a href="author.html#806">[ 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>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>
+
+--- Comment #14 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-27 11:32:28 CEST ---
+*** Bug 1004 has been marked as a duplicate of this bug. ***
+
+--
+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="000765.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000696.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#806">[ date ]</a>
+ <a href="thread.html#806">[ thread ]</a>
+ <a href="subject.html#806">[ subject ]</a>
+ <a href="author.html#806">[ 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/000807.html b/zarb-ml/mageia-webteam/2011-April/000807.html
new file mode 100644
index 000000000..d1f05d22e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000807.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110427111837.1321142A07%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="000800.html">
+ <LINK REL="Next" HREF="000808.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Dimitrios Glentadakis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110427111837.1321142A07%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 27 13:18:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000800.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000808.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#807">[ date ]</a>
+ <a href="thread.html#807">[ thread ]</a>
+ <a href="subject.html#807">[ subject ]</a>
+ <a href="author.html#807">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #6 from Dimitrios Glentadakis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dglent at gmail.com</A>&gt; 2011-04-27 13:18:35 CEST ---
+Another solution would be to add a field for Country in mageia phpbb3 forum
+like kde forum <A HREF="http://forum.kde.org/index.php">http://forum.kde.org/index.php</A>
+In the KDE forum there are the options &quot;Country&quot; and &quot;Location&quot;
+In the location i putted &quot;France&quot; as i live in France and i want to meet people
+from France but in the &quot;Country&quot; i putted Greece because i am Greek and i want
+to meet people from Greece too, as the community that i am active is the Greek
+
+--
+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="000800.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000808.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#807">[ date ]</a>
+ <a href="thread.html#807">[ thread ]</a>
+ <a href="subject.html#807">[ subject ]</a>
+ <a href="author.html#807">[ 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/000808.html b/zarb-ml/mageia-webteam/2011-April/000808.html
new file mode 100644
index 000000000..31bcb11c2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000808.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110427122129.41F6D429F4%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="000807.html">
+ <LINK REL="Next" HREF="000809.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110427122129.41F6D429F4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 27 14:21:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000807.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000809.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#808">[ date ]</a>
+ <a href="thread.html#808">[ thread ]</a>
+ <a href="subject.html#808">[ subject ]</a>
+ <a href="author.html#808">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-27 16:21:29 CEST ---
+(In reply to comment #4)
+&gt;<i> Country/city can already be done with localityName and countryName, but no
+</I>&gt;<i> schema seems to use it so far.
+</I>
+Is this complex to add
+
+&gt;<i> Having in ldap would be convenient as this permit us to manage from identity.
+</I>&gt;<i> But I think a country/city is maybe not the most convenient to store
+</I>&gt;<i> information about location as we may have hard time to convert this to spatial
+</I>&gt;<i> coordinates. And there is no ( AFAIK ) schema to store coordinate.
+</I>
+We could centralize the Country/City info in LDAP and have a separate db to map
+this to coordinates (there are geocoding services that we could cache the
+result from - it's only about cities, so that's not hugely extensive data to
+store).
+
+Otherwise, yes, having a dedicated small db for this would make it. Do we need
+more than these two relationships?
+ * user lives in place (or even places but that makes it out of LDAP I think,
+let's keep it simple)
+ * place has coordinates
+
+&gt;<i> Storing this in postgres would be nicer from a dev point of view, as postgis is
+</I>&gt;<i> a quite powerful extension to postgres. Spatialite could be used for sqlite
+</I>&gt;<i> too.
+</I>&gt;<i>
+</I>&gt;<i> Using some nosql db would also be a option, but I do not know what exist for
+</I>&gt;<i> that.
+</I>
+I don't have specific knowledge about the best backend for this. So far, I can
+just envision the end-result (interactive map + find my neighbours query by
+group) and the user info filling.
+
+(In reply to comment #6)
+&gt;<i> Another solution would be to add a field for Country in mageia phpbb3 forum
+</I>
+I would keep this out of the forum:
+ * doesn't require a user to sign in the forum to record this info;
+ * so we can have simpler, dedicated/optimized queries for extraction.
+
+A small separate app can make 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000807.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000809.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#808">[ date ]</a>
+ <a href="thread.html#808">[ thread ]</a>
+ <a href="subject.html#808">[ subject ]</a>
+ <a href="author.html#808">[ 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/000809.html b/zarb-ml/mageia-webteam/2011-April/000809.html
new file mode 100644
index 000000000..88b654ea4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000809.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110427122209.13FF5429B0%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="000808.html">
+ <LINK REL="Next" HREF="000801.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110427122209.13FF5429B0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 27 14:22:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000808.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000801.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#809">[ date ]</a>
+ <a href="thread.html#809">[ thread ]</a>
+ <a href="subject.html#809">[ subject ]</a>
+ <a href="author.html#809">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #8 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-27 16:22:08 CEST ---
+(In reply to comment #7)
+&gt;<i> (In reply to comment #4)
+</I>&gt;<i> &gt; Country/city can already be done with localityName and countryName, but no
+</I>&gt;<i> &gt; schema seems to use it so far.
+</I>&gt;<i>
+</I>&gt;<i> Is this complex to add
+</I>
+into our setup?
+
+--
+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="000808.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000801.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#809">[ date ]</a>
+ <a href="thread.html#809">[ thread ]</a>
+ <a href="subject.html#809">[ subject ]</a>
+ <a href="author.html#809">[ 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/000810.html b/zarb-ml/mageia-webteam/2011-April/000810.html
new file mode 100644
index 000000000..f201000a3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000810.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 17 review 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%2017%20review%20meeting&In-Reply-To=%3CBANLkTi%3DLctveTk19jcjNJ8V4G9NPugFcaA%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="000796.html">
+ <LINK REL="Next" HREF="000792.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 17 review meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2017%20review%20meeting&In-Reply-To=%3CBANLkTi%3DLctveTk19jcjNJ8V4G9NPugFcaA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 17 review meeting">rda at mageia.org
+ </A><BR>
+ <I>Wed Apr 27 15:37:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000796.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI>Next message: <A HREF="000792.html">[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#810">[ date ]</a>
+ <a href="thread.html#810">[ thread ]</a>
+ <a href="subject.html#810">[ subject ]</a>
+ <a href="author.html#810">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Apr 26, 2011 at 18:25, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt; wrote:
+&gt;<i> [...]
+</I>
+Notes here: <A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-04-27-13.06.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-04-27-13.06.html</A>
+
+It's been... well, very quiet. Please add your updates regarding your
+app/taks list in this thread if possible so we gather more info.
+
+Misc: about the list of team peers, you can use the one I sent yesterday.
+
+Thanks!
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000796.html">[Mageia-webteam] 2011/week 17 review meeting
+</A></li>
+ <LI>Next message: <A HREF="000792.html">[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#810">[ date ]</a>
+ <a href="thread.html#810">[ thread ]</a>
+ <a href="subject.html#810">[ subject ]</a>
+ <a href="author.html#810">[ 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/000811.html b/zarb-ml/mageia-webteam/2011-April/000811.html
new file mode 100644
index 000000000..fb07af951
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000811.html
@@ -0,0 +1,120 @@
+<!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=%3C20110427220003.68E7242A0D%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="000805.html">
+ <LINK REL="Next" HREF="000813.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=%3C20110427220003.68E7242A0D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 28 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000805.html">[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.
+</A></li>
+ <LI>Next message: <A HREF="000813.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#811">[ date ]</a>
+ <a href="thread.html#811">[ thread ]</a>
+ <a href="subject.html#811">[ subject ]</a>
+ <a href="author.html#811">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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="000805.html">[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.
+</A></li>
+ <LI>Next message: <A HREF="000813.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#811">[ date ]</a>
+ <a href="thread.html#811">[ thread ]</a>
+ <a href="subject.html#811">[ subject ]</a>
+ <a href="author.html#811">[ 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/000812.html b/zarb-ml/mageia-webteam/2011-April/000812.html
new file mode 100644
index 000000000..b60964ed2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000812.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 912] Custom field for CVE
+ </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%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20110428204716.58C2B42A7C%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="000764.html">
+ <LINK REL="Next" HREF="000817.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 912] Custom field for CVE</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%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20110428204716.58C2B42A7C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 912] Custom field for CVE">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 28 22:47:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000764.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000817.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#812">[ date ]</a>
+ <a href="thread.html#812">[ thread ]</a>
+ <a href="subject.html#812">[ subject ]</a>
+ <a href="author.html#812">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=912">https://bugs.mageia.org/show_bug.cgi?id=912</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 #3 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-29 00:47:16 CEST ---
+bugs.mageia.org runs Bugzilla 3.6.4. Upgrade to 4.0 as proposed in bug 40, and
+you will be able to use the Component field. ;)
+
+--
+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="000764.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000817.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#812">[ date ]</a>
+ <a href="thread.html#812">[ thread ]</a>
+ <a href="subject.html#812">[ subject ]</a>
+ <a href="author.html#812">[ 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/000813.html b/zarb-ml/mageia-webteam/2011-April/000813.html
new file mode 100644
index 000000000..172a30e02
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000813.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110428204757.7DDB742A7E%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="000811.html">
+ <LINK REL="Next" HREF="000814.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</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.1&In-Reply-To=%3C20110428204757.7DDB742A7E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 28 22:47:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000811.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000814.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#813">[ date ]</a>
+ <a href="thread.html#813">[ thread ]</a>
+ <a href="subject.html#813">[ subject ]</a>
+ <a href="author.html#813">[ 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>
+
+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
+----------------------------------------------------------------------------
+ Summary|Upgrade to Bugzilla 4.0 |Upgrade to Bugzilla 4.0.1
+
+--- Comment #7 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-28 22:47:57 CEST ---
+We released Bugzilla 4.0.1 last night.
+
+--
+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="000811.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000814.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#813">[ date ]</a>
+ <a href="thread.html#813">[ thread ]</a>
+ <a href="subject.html#813">[ subject ]</a>
+ <a href="author.html#813">[ 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/000814.html b/zarb-ml/mageia-webteam/2011-April/000814.html
new file mode 100644
index 000000000..0b5056c6c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000814.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+ </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%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110428210750.BC3BD42A88%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="000813.html">
+ <LINK REL="Next" HREF="000815.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects</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%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110428210750.BC3BD42A88%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 28 23:07:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000813.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000815.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#814">[ date ]</a>
+ <a href="thread.html#814">[ thread ]</a>
+ <a href="subject.html#814">[ subject ]</a>
+ <a href="author.html#814">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=13">https://bugs.mageia.org/show_bug.cgi?id=13</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 #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-29 01:07:50 CEST ---
+Not hard to do. I wrote such an extension for GCC Bugzilla.
+
+--
+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="000813.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000815.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#814">[ date ]</a>
+ <a href="thread.html#814">[ thread ]</a>
+ <a href="subject.html#814">[ subject ]</a>
+ <a href="author.html#814">[ 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/000815.html b/zarb-ml/mageia-webteam/2011-April/000815.html
new file mode 100644
index 000000000..e04e0068e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000815.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110428210941.CE77242A83%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="000814.html">
+ <LINK REL="Next" HREF="000816.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0.1&In-Reply-To=%3C20110428210941.CE77242A83%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 28 23:09:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000814.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000816.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#815">[ date ]</a>
+ <a href="thread.html#815">[ thread ]</a>
+ <a href="subject.html#815">[ subject ]</a>
+ <a href="author.html#815">[ 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 #8 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2011-04-28 23:09:42 CEST ---
+Not according to bugs.mageia.org
+
+--
+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="000814.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000816.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#815">[ date ]</a>
+ <a href="thread.html#815">[ thread ]</a>
+ <a href="subject.html#815">[ subject ]</a>
+ <a href="author.html#815">[ 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/000816.html b/zarb-ml/mageia-webteam/2011-April/000816.html
new file mode 100644
index 000000000..5f8475542
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000816.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110428211206.D874B42A76%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="000815.html">
+ <LINK REL="Next" HREF="000818.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</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.1&In-Reply-To=%3C20110428211206.D874B42A76%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 28 23:12:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000815.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000818.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#816">[ date ]</a>
+ <a href="thread.html#816">[ thread ]</a>
+ <a href="subject.html#816">[ subject ]</a>
+ <a href="author.html#816">[ 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 #9 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-04-29 01:12:07 CEST ---
+for comment #8, Fr&#233;d&#233;ric doesn't tell in mageia but that the last version of
+bugzilla is 4.0.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="000815.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000818.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#816">[ date ]</a>
+ <a href="thread.html#816">[ thread ]</a>
+ <a href="subject.html#816">[ subject ]</a>
+ <a href="author.html#816">[ 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/000817.html b/zarb-ml/mageia-webteam/2011-April/000817.html
new file mode 100644
index 000000000..d2b590178
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000817.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 912] Custom field for CVE
+ </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%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20110428211324.2BF9542A9D%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="000812.html">
+ <LINK REL="Next" HREF="000761.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 912] Custom field for CVE</H1>
+ <B>D Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20110428211324.2BF9542A9D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 912] Custom field for CVE">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 28 23:13:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000812.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000761.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#817">[ date ]</a>
+ <a href="thread.html#817">[ thread ]</a>
+ <a href="subject.html#817">[ subject ]</a>
+ <a href="author.html#817">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=912">https://bugs.mageia.org/show_bug.cgi?id=912</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+
+--- Comment #4 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-04-29 01:13:24 CEST ---
+i really need to push this on the top of my todo.
+
+--
+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="000812.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="000761.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#817">[ date ]</a>
+ <a href="thread.html#817">[ thread ]</a>
+ <a href="subject.html#817">[ subject ]</a>
+ <a href="author.html#817">[ 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/000818.html b/zarb-ml/mageia-webteam/2011-April/000818.html
new file mode 100644
index 000000000..ecad4d7db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000818.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110428211609.A724442AA0%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="000816.html">
+ <LINK REL="Next" HREF="000819.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0.1&In-Reply-To=%3C20110428211609.A724442AA0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 28 23:16:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000816.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000819.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#818">[ date ]</a>
+ <a href="thread.html#818">[ thread ]</a>
+ <a href="subject.html#818">[ subject ]</a>
+ <a href="author.html#818">[ 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 #10 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2011-04-29 01:16:10 CEST ---
+<A HREF="http://bugs.mageia.org">http://bugs.mageia.org</A> says: version 3.6.4
+
+--
+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="000816.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000819.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#818">[ date ]</a>
+ <a href="thread.html#818">[ thread ]</a>
+ <a href="subject.html#818">[ subject ]</a>
+ <a href="author.html#818">[ 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/000819.html b/zarb-ml/mageia-webteam/2011-April/000819.html
new file mode 100644
index 000000000..8414f63a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000819.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110428211759.A96E542AB3%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="000818.html">
+ <LINK REL="Next" HREF="000820.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</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.1&In-Reply-To=%3C20110428211759.A96E542AB3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 28 23:17:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000818.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000820.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#819">[ date ]</a>
+ <a href="thread.html#819">[ thread ]</a>
+ <a href="subject.html#819">[ subject ]</a>
+ <a href="author.html#819">[ 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 #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-29 01:17:59 CEST ---
+bugs.mageia.org runs 3.6.4, yes. And this bug is about upgrading
+bugs.mageia.org to 4.0.1, which has been released last night:
+<A HREF="http://www.bugzilla.org/news/#release401.">http://www.bugzilla.org/news/#release401.</A> I used &quot;we&quot; in comment 7 because I'm
+in the team which released 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="000818.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000820.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#819">[ date ]</a>
+ <a href="thread.html#819">[ thread ]</a>
+ <a href="subject.html#819">[ subject ]</a>
+ <a href="author.html#819">[ 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/000820.html b/zarb-ml/mageia-webteam/2011-April/000820.html
new file mode 100644
index 000000000..ca7288159
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000820.html
@@ -0,0 +1,120 @@
+<!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=%3C20110428220002.5805942AC8%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="000819.html">
+ <LINK REL="Next" HREF="000821.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=%3C20110428220002.5805942AC8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 29 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000819.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000821.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#820">[ date ]</a>
+ <a href="thread.html#820">[ thread ]</a>
+ <a href="subject.html#820">[ subject ]</a>
+ <a href="author.html#820">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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="000819.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000821.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#820">[ date ]</a>
+ <a href="thread.html#820">[ thread ]</a>
+ <a href="subject.html#820">[ subject ]</a>
+ <a href="author.html#820">[ 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/000821.html b/zarb-ml/mageia-webteam/2011-April/000821.html
new file mode 100644
index 000000000..8f9407f97
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000821.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 452] Privacy policy is still a draft
+ </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%20452%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3C20110428230313.6B91F42AC8%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="000820.html">
+ <LINK REL="Next" HREF="000822.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 452] Privacy policy is still a draft</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20452%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3C20110428230313.6B91F42AC8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 452] Privacy policy is still a draft">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 29 01:03:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000820.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000822.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#821">[ date ]</a>
+ <a href="thread.html#821">[ thread ]</a>
+ <a href="subject.html#821">[ subject ]</a>
+ <a href="author.html#821">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |1045
+
+--
+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="000820.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000822.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#821">[ date ]</a>
+ <a href="thread.html#821">[ thread ]</a>
+ <a href="subject.html#821">[ subject ]</a>
+ <a href="author.html#821">[ 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/000822.html b/zarb-ml/mageia-webteam/2011-April/000822.html
new file mode 100644
index 000000000..c20c1ed56
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000822.html
@@ -0,0 +1,115 @@
+<!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=%3C20110429220002.75B4042B0F%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="000821.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=%3C20110429220002.75B4042B0F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 30 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000821.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#822">[ date ]</a>
+ <a href="thread.html#822">[ thread ]</a>
+ <a href="subject.html#822">[ subject ]</a>
+ <a href="author.html#822">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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="000821.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#822">[ date ]</a>
+ <a href="thread.html#822">[ thread ]</a>
+ <a href="subject.html#822">[ subject ]</a>
+ <a href="author.html#822">[ 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/author.html b/zarb-ml/mageia-webteam/2011-April/author.html
new file mode 100644
index 000000000..fc939972e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/author.html
@@ -0,0 +1,1052 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2011 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>April 2011 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>Fri Apr 1 00:00:02 CEST 2011</i><br>
+ <b>Ending:</b> <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
+ <b>Messages:</b> 201<p>
+ <ul>
+
+<LI><A HREF="000648.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="648">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000650.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="650">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000654.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="654">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000668.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="668">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000669.html">[Mageia-webteam] [Bug 690] [New] language redirection problem
+</A><A NAME="669">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000716.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="716">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000632.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="632">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000692.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="692">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000697.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="697">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000714.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="714">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000766.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="766">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000770.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="770">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000772.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="772">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000774.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="774">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000775.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="775">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000627.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="627">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000629.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="629">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000638.html">[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
+</A><A NAME="638">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000656.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="656">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000657.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="657">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000659.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="659">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000661.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="661">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000663.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="663">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000635.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="635">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000641.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="641">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000695.html">[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong
+</A><A NAME="695">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000699.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="699">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000701.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="701">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000703.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="703">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000705.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="705">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000708.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="708">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000741.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="741">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000745.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="745">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000746.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="746">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><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><A NAME="747">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000750.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="750">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000751.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="751">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000759.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="759">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000812.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="812">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000813.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="813">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000814.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="814">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000819.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="819">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000688.html">[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
+</A><A NAME="688">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000800.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="800">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000690.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="690">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000712.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="712">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000802.html">[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
+</A><A NAME="802">&nbsp;</A>
+<I>Gerald
+</I>
+
+<LI><A HREF="000807.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="807">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="000702.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="702">&nbsp;</A>
+<I>Frank Griffin
+</I>
+
+<LI><A HREF="000815.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="815">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000818.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="818">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000797.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="797">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000628.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="628">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<LI><A HREF="000679.html">[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
+</A><A NAME="679">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<LI><A HREF="000722.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="722">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<LI><A HREF="000784.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="784">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="000624.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="624">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000625.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="625">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000626.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="626">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000652.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="652">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000658.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="658">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000660.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="660">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000721.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="721">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<LI><A HREF="000633.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="633">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000637.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="637">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000816.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="816">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000817.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="817">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000782.html">[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="782">&nbsp;</A>
+<I>Jaanus Ojangu
+</I>
+
+<LI><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><A NAME="711">&nbsp;</A>
+<I>Johan Pirlouit
+</I>
+
+<LI><A HREF="000804.html">[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
+</A><A NAME="804">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="000640.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A><A NAME="640">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000647.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="647">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000649.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="649">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000651.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="651">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000664.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="664">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000667.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="667">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000673.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="673">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000681.html">[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
+</A><A NAME="681">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000713.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="713">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000729.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="729">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000752.html">[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="752">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000767.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="767">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000771.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="771">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000773.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="773">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><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><A NAME="777">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><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><A NAME="778">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000783.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="783">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000785.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="785">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000803.html">[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
+</A><A NAME="803">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000805.html">[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.
+</A><A NAME="805">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000806.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="806">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000821.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="821">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000666.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="666">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000698.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="698">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000700.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="700">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000704.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="704">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000706.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="706">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000707.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="707">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000709.html">[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default
+</A><A NAME="709">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000724.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="724">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000730.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="730">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000731.html">[Mageia-webteam] [Bug 655] Open German forum
+</A><A NAME="731">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000732.html">[Mageia-webteam] [Bug 655] Open German forum
+</A><A NAME="732">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000733.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="733">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000734.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="734">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000738.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="738">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000739.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="739">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000740.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="740">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000742.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="742">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000743.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="743">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000744.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="744">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000748.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="748">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000749.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="749">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000753.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="753">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000754.html">[Mageia-webteam] [Bug 910] [New] Add a check box for security issue
+</A><A NAME="754">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000755.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="755">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000756.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="756">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000757.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="757">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000758.html">[Mageia-webteam] [Bug 912] [New] Custom field for CVE
+</A><A NAME="758">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000762.html">[Mageia-webteam] Request on behalf of secteam for a website for security update
+</A><A NAME="762">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000764.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="764">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000765.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="765">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000768.html">[Mageia-webteam] Web team in ldap
+</A><A NAME="768">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000790.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="790">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000793.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="793">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000794.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="794">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000799.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="799">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000682.html">[Mageia-webteam] [Bug 767] [New] Strange notice on the download page
+</A><A NAME="682">&nbsp;</A>
+<I>Egor Suldin
+</I>
+
+<LI><A HREF="000686.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="686">&nbsp;</A>
+<I>Egor Suldin
+</I>
+
+<LI><A HREF="000780.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="780">&nbsp;</A>
+<I>Pascal Terjan
+</I>
+
+<LI><A HREF="000676.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A><A NAME="676">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000696.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="696">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000719.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="719">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000725.html">[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.
+</A><A NAME="725">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000726.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="726">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000727.html">[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.
+</A><A NAME="727">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000735.html">[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups
+</A><A NAME="735">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000736.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="736">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000760.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="760">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="763">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000787.html">[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
+</A><A NAME="787">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000623.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A><A NAME="623">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000643.html">[Mageia-webteam] 2011/week 14 meeting
+</A><A NAME="643">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000644.html">[Mageia-webteam] [Bug 655] [New] Open German forum
+</A><A NAME="644">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000645.html">[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
+</A><A NAME="645">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000655.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="655">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000665.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="665">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000671.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="671">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000672.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="672">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000685.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="685">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000717.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="717">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000723.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="723">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000788.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="788">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000789.html">[Mageia-webteam] [Bug 991] Incorrect links on download pages
+</A><A NAME="789">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000791.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="791">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000792.html">[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
+</A><A NAME="792">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000795.html">[Mageia-webteam] Web team in ldap
+</A><A NAME="795">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000796.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="796">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000798.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="798">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000808.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="808">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000809.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="809">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000810.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="810">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000646.html">[Mageia-webteam] 2011/week 14 meeting
+</A><A NAME="646">&nbsp;</A>
+<I>kosmasc at gmail.com
+</I>
+
+<LI><A HREF="000622.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="622">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000631.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="631">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000634.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="634">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000636.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="636">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000639.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="639">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000642.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="642">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000653.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="653">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000670.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="670">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000677.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="677">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000680.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="680">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000683.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="683">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000684.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="684">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000687.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="687">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000694.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="694">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000710.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="710">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000715.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="715">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000718.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="718">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000720.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="720">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000728.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="728">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000737.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="737">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000761.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="761">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000769.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="769">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000776.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="776">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000779.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="779">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000781.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="781">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000786.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="786">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000801.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="801">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000811.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="811">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000820.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="820">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000822.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="822">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000674.html">[Mageia-webteam] [Bug 723] [New] incorrect suggested command
+</A><A NAME="674">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<LI><A HREF="000675.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A><A NAME="675">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<LI><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><A NAME="678">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<LI><A HREF="000693.html">[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="693">&nbsp;</A>
+<I>Anne nicolas
+</I>
+
+<LI><A HREF="000630.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="630">&nbsp;</A>
+<I>planas
+</I>
+
+<LI><A HREF="000662.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="662">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000689.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="689">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000691.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="691">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Sat Apr 30 00:00:08 CEST 2011</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/2011-April/date.html b/zarb-ml/mageia-webteam/2011-April/date.html
new file mode 100644
index 000000000..95aae34df
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/date.html
@@ -0,0 +1,1052 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2011 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>April 2011 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>Fri Apr 1 00:00:02 CEST 2011</i><br>
+ <b>Ending:</b> <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
+ <b>Messages:</b> 201<p>
+ <ul>
+
+<LI><A HREF="000622.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="622">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000623.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A><A NAME="623">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000624.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="624">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000625.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="625">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000626.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="626">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000627.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="627">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000628.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="628">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<LI><A HREF="000629.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="629">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000630.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="630">&nbsp;</A>
+<I>planas
+</I>
+
+<LI><A HREF="000631.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="631">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000632.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="632">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000633.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="633">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000634.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="634">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000635.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="635">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000636.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="636">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000637.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="637">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000638.html">[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
+</A><A NAME="638">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000639.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="639">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000640.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A><A NAME="640">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000641.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="641">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000642.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="642">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000643.html">[Mageia-webteam] 2011/week 14 meeting
+</A><A NAME="643">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000644.html">[Mageia-webteam] [Bug 655] [New] Open German forum
+</A><A NAME="644">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000645.html">[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
+</A><A NAME="645">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000646.html">[Mageia-webteam] 2011/week 14 meeting
+</A><A NAME="646">&nbsp;</A>
+<I>kosmasc at gmail.com
+</I>
+
+<LI><A HREF="000647.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="647">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000648.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="648">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000649.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="649">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000650.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="650">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000651.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="651">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000652.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="652">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000653.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="653">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000654.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="654">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000655.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="655">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000656.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="656">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000657.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="657">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000658.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="658">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000659.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="659">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000660.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="660">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000661.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="661">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000662.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="662">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000663.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="663">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000664.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="664">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000665.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="665">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000666.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="666">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000667.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="667">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000668.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="668">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000669.html">[Mageia-webteam] [Bug 690] [New] language redirection problem
+</A><A NAME="669">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000670.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="670">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000671.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="671">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000672.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="672">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000673.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="673">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000674.html">[Mageia-webteam] [Bug 723] [New] incorrect suggested command
+</A><A NAME="674">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<LI><A HREF="000675.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A><A NAME="675">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<LI><A HREF="000676.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A><A NAME="676">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000677.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="677">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><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><A NAME="678">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<LI><A HREF="000679.html">[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
+</A><A NAME="679">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<LI><A HREF="000680.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="680">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000681.html">[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
+</A><A NAME="681">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000682.html">[Mageia-webteam] [Bug 767] [New] Strange notice on the download page
+</A><A NAME="682">&nbsp;</A>
+<I>Egor Suldin
+</I>
+
+<LI><A HREF="000683.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="683">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000684.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="684">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000685.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="685">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000686.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="686">&nbsp;</A>
+<I>Egor Suldin
+</I>
+
+<LI><A HREF="000687.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="687">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000688.html">[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
+</A><A NAME="688">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000689.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="689">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000690.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="690">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000691.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="691">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000692.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="692">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000693.html">[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="693">&nbsp;</A>
+<I>Anne nicolas
+</I>
+
+<LI><A HREF="000694.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="694">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000695.html">[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong
+</A><A NAME="695">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000696.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="696">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000697.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="697">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000698.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="698">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000699.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="699">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000700.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="700">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000701.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="701">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000702.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="702">&nbsp;</A>
+<I>Frank Griffin
+</I>
+
+<LI><A HREF="000703.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="703">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000704.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="704">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000705.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="705">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000706.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="706">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000707.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="707">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000708.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="708">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000709.html">[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default
+</A><A NAME="709">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000710.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="710">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><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><A NAME="711">&nbsp;</A>
+<I>Johan Pirlouit
+</I>
+
+<LI><A HREF="000712.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="712">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000713.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="713">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000714.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="714">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000715.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="715">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000716.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="716">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000717.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="717">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000718.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="718">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000719.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="719">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000720.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="720">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000721.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="721">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<LI><A HREF="000722.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="722">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<LI><A HREF="000723.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="723">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000724.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="724">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000725.html">[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.
+</A><A NAME="725">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000726.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="726">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000727.html">[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.
+</A><A NAME="727">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000728.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="728">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000729.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="729">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000730.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="730">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000731.html">[Mageia-webteam] [Bug 655] Open German forum
+</A><A NAME="731">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000732.html">[Mageia-webteam] [Bug 655] Open German forum
+</A><A NAME="732">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000733.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="733">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000734.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="734">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000735.html">[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups
+</A><A NAME="735">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000736.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="736">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000737.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="737">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000738.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="738">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000739.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="739">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000740.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="740">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000741.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="741">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000742.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="742">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000743.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="743">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000744.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="744">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000745.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="745">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000746.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="746">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><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><A NAME="747">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000748.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="748">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000749.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="749">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000750.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="750">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000751.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="751">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000752.html">[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="752">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000753.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="753">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000754.html">[Mageia-webteam] [Bug 910] [New] Add a check box for security issue
+</A><A NAME="754">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000755.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="755">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000756.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="756">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000757.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="757">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000758.html">[Mageia-webteam] [Bug 912] [New] Custom field for CVE
+</A><A NAME="758">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000759.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="759">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000760.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="760">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000761.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="761">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000762.html">[Mageia-webteam] Request on behalf of secteam for a website for security update
+</A><A NAME="762">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="763">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000764.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="764">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000765.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="765">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000766.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="766">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000767.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="767">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000768.html">[Mageia-webteam] Web team in ldap
+</A><A NAME="768">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000769.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="769">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000770.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="770">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000771.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="771">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000772.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="772">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000773.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="773">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000774.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="774">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000775.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="775">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000776.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="776">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><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><A NAME="777">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><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><A NAME="778">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000779.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="779">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000780.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="780">&nbsp;</A>
+<I>Pascal Terjan
+</I>
+
+<LI><A HREF="000781.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="781">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000782.html">[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="782">&nbsp;</A>
+<I>Jaanus Ojangu
+</I>
+
+<LI><A HREF="000783.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="783">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000784.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="784">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="000785.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="785">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000786.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="786">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000787.html">[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
+</A><A NAME="787">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000788.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="788">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000789.html">[Mageia-webteam] [Bug 991] Incorrect links on download pages
+</A><A NAME="789">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000790.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="790">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000791.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="791">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000792.html">[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
+</A><A NAME="792">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000793.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="793">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000794.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="794">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000795.html">[Mageia-webteam] Web team in ldap
+</A><A NAME="795">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000796.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="796">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000797.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="797">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000798.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="798">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000799.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="799">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000800.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="800">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000801.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="801">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000802.html">[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
+</A><A NAME="802">&nbsp;</A>
+<I>Gerald
+</I>
+
+<LI><A HREF="000803.html">[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
+</A><A NAME="803">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000804.html">[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
+</A><A NAME="804">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="000805.html">[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.
+</A><A NAME="805">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000806.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="806">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000807.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="807">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="000808.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="808">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000809.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="809">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000810.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="810">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000811.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="811">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000812.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="812">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000813.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="813">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000814.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="814">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000815.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="815">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000816.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="816">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000817.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="817">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000818.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="818">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000819.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="819">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000820.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="820">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000821.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="821">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000822.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="822">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Sat Apr 30 00:00:08 CEST 2011</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/2011-April/index.html b/zarb-ml/mageia-webteam/2011-April/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-April/subject.html b/zarb-ml/mageia-webteam/2011-April/subject.html
new file mode 100644
index 000000000..de2480693
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/subject.html
@@ -0,0 +1,1052 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2011 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>April 2011 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>Fri Apr 1 00:00:02 CEST 2011</i><br>
+ <b>Ending:</b> <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
+ <b>Messages:</b> 201<p>
+ <ul>
+
+<LI><A HREF="000643.html">[Mageia-webteam] 2011/week 14 meeting
+</A><A NAME="643">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000646.html">[Mageia-webteam] 2011/week 14 meeting
+</A><A NAME="646">&nbsp;</A>
+<I>kosmasc at gmail.com
+</I>
+
+<LI><A HREF="000791.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="791">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000794.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="794">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000796.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="796">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000810.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="810">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000802.html">[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
+</A><A NAME="802">&nbsp;</A>
+<I>Gerald
+</I>
+
+<LI><A HREF="000803.html">[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
+</A><A NAME="803">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000804.html">[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
+</A><A NAME="804">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="000805.html">[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.
+</A><A NAME="805">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000814.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="814">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000775.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="775">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000766.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="766">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000767.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="767">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000770.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="770">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000771.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="771">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000772.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="772">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000773.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="773">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000774.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="774">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000635.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="635">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000637.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="637">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000696.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="696">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000713.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="713">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000719.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="719">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000632.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="632">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000633.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="633">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000641.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="641">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000813.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="813">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000815.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="815">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000816.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="816">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000818.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="818">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000819.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="819">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000821.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="821">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000726.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="726">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000623.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A><A NAME="623">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000640.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A><A NAME="640">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000644.html">[Mageia-webteam] [Bug 655] [New] Open German forum
+</A><A NAME="644">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000731.html">[Mageia-webteam] [Bug 655] Open German forum
+</A><A NAME="731">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000732.html">[Mageia-webteam] [Bug 655] Open German forum
+</A><A NAME="732">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000645.html">[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
+</A><A NAME="645">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000730.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="730">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000733.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="733">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000734.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="734">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000671.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="671">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000716.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="716">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000717.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="717">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000669.html">[Mageia-webteam] [Bug 690] [New] language redirection problem
+</A><A NAME="669">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000674.html">[Mageia-webteam] [Bug 723] [New] incorrect suggested command
+</A><A NAME="674">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<LI><A HREF="000675.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A><A NAME="675">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<LI><A HREF="000676.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A><A NAME="676">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000647.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="647">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000648.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="648">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000649.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="649">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000650.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="650">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000651.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="651">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000654.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="654">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000655.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="655">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000664.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="664">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000665.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="665">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000666.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="666">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000667.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="667">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000668.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="668">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000672.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="672">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000673.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="673">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><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><A NAME="678">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<LI><A HREF="000681.html">[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
+</A><A NAME="681">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000679.html">[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
+</A><A NAME="679">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<LI><A HREF="000721.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="721">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<LI><A HREF="000722.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="722">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<LI><A HREF="000723.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="723">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000724.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="724">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000682.html">[Mageia-webteam] [Bug 767] [New] Strange notice on the download page
+</A><A NAME="682">&nbsp;</A>
+<I>Egor Suldin
+</I>
+
+<LI><A HREF="000685.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="685">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000686.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="686">&nbsp;</A>
+<I>Egor Suldin
+</I>
+
+<LI><A HREF="000695.html">[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong
+</A><A NAME="695">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000698.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="698">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000699.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="699">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000700.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="700">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000701.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="701">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000702.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="702">&nbsp;</A>
+<I>Frank Griffin
+</I>
+
+<LI><A HREF="000703.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="703">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000704.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="704">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000705.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="705">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000706.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="706">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000707.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="707">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000708.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="708">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000751.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="751">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000765.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="765">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000806.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="806">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000709.html">[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default
+</A><A NAME="709">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000714.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="714">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000746.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="746">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><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><A NAME="711">&nbsp;</A>
+<I>Johan Pirlouit
+</I>
+
+<LI><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><A NAME="747">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><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><A NAME="777">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><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><A NAME="778">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000725.html">[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.
+</A><A NAME="725">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000727.html">[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.
+</A><A NAME="727">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000735.html">[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups
+</A><A NAME="735">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000736.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="736">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000738.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="738">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000739.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="739">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000740.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="740">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000741.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="741">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000742.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="742">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000743.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="743">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000744.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="744">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000745.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="745">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000748.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="748">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000749.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="749">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000750.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="750">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000756.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="756">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000760.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="760">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000752.html">[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="752">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000753.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="753">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000759.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="759">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000754.html">[Mageia-webteam] [Bug 910] [New] Add a check box for security issue
+</A><A NAME="754">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000755.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="755">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000757.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="757">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000758.html">[Mageia-webteam] [Bug 912] [New] Custom field for CVE
+</A><A NAME="758">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="763">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000764.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="764">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000812.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="812">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000817.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="817">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000780.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="780">&nbsp;</A>
+<I>Pascal Terjan
+</I>
+
+<LI><A HREF="000790.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="790">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000782.html">[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="782">&nbsp;</A>
+<I>Jaanus Ojangu
+</I>
+
+<LI><A HREF="000783.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="783">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000784.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="784">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="000785.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="785">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000788.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="788">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000787.html">[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
+</A><A NAME="787">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000789.html">[Mageia-webteam] [Bug 991] Incorrect links on download pages
+</A><A NAME="789">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000792.html">[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
+</A><A NAME="792">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000793.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="793">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000797.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="797">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000798.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="798">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000799.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="799">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000800.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="800">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000807.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="807">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="000808.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="808">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000809.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="809">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000626.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="626">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000693.html">[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="693">&nbsp;</A>
+<I>Anne nicolas
+</I>
+
+<LI><A HREF="000624.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="624">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000638.html">[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
+</A><A NAME="638">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000689.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="689">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000690.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="690">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000691.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="691">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000712.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="712">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000692.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="692">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000697.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="697">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000625.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="625">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000627.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="627">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000628.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="628">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<LI><A HREF="000629.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="629">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000630.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="630">&nbsp;</A>
+<I>planas
+</I>
+
+<LI><A HREF="000652.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="652">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000656.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="656">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000657.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="657">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000658.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="658">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000659.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="659">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000660.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="660">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000661.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="661">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000662.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="662">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000663.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="663">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000729.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="729">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000762.html">[Mageia-webteam] Request on behalf of secteam for a website for security update
+</A><A NAME="762">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000688.html">[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
+</A><A NAME="688">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000768.html">[Mageia-webteam] Web team in ldap
+</A><A NAME="768">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000795.html">[Mageia-webteam] Web team in ldap
+</A><A NAME="795">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000622.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="622">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000631.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="631">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000634.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="634">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000636.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="636">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000639.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="639">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000642.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="642">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000653.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="653">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000670.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="670">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000677.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="677">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000680.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="680">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000683.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="683">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000684.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="684">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000687.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="687">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000694.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="694">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000710.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="710">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000715.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="715">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000718.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="718">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000720.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="720">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000728.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="728">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000737.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="737">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000761.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="761">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000769.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="769">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000776.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="776">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000779.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="779">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000781.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="781">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000786.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="786">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000801.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="801">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000811.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="811">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000820.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="820">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000822.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="822">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Sat Apr 30 00:00:08 CEST 2011</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/2011-April/thread.html b/zarb-ml/mageia-webteam/2011-April/thread.html
new file mode 100644
index 000000000..902d872fe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/thread.html
@@ -0,0 +1,1317 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2011 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>April 2011 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>Fri Apr 1 00:00:02 CEST 2011</i><br>
+ <b>Ending:</b> <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
+ <b>Messages:</b> 201<p>
+ <ul>
+
+<!--0 01301608802- -->
+<LI><A HREF="000622.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="622">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301650156- -->
+<LI><A HREF="000623.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A><A NAME="623">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--0 01301677868- -->
+<LI><A HREF="000624.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="624">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--0 01301678117- -->
+<LI><A HREF="000625.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="625">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--1 01301678117-01301681306- -->
+<LI><A HREF="000627.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="627">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--2 01301678117-01301681306-01301681439- -->
+<LI><A HREF="000628.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="628">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<UL>
+<!--3 01301678117-01301681306-01301681439-01301681704- -->
+<LI><A HREF="000629.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="629">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01301678117-01301681306-01301681439-01301681704-01301687291- -->
+<LI><A HREF="000630.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="630">&nbsp;</A>
+<I>planas
+</I>
+
+</UL>
+<!--2 01301678117-01301681306-01302125562- -->
+<LI><A HREF="000652.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="652">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--3 01301678117-01301681306-01302125562-01302166147- -->
+<LI><A HREF="000656.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="656">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01301678117-01301681306-01302125562-01302166147-01302171726- -->
+<LI><A HREF="000657.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="657">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01301678117-01301681306-01302125562-01302166147-01302171726-01302180294- -->
+<LI><A HREF="000660.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="660">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01301678117-01301681306-01302125562-01302166147-01302171726-01302180294-01302180713- -->
+<LI><A HREF="000661.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="661">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01301678117-01301681306-01302125562-01302166147-01302171726-01302180294-01302182480- -->
+<LI><A HREF="000662.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="662">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<!--3 01301678117-01301681306-01302125562-01302166147-01302171726-01302180294-01302182480-01302183331- -->
+<LI><A HREF="000663.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="663">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01301678117-01301681306-01302125562-01302166147-01302171726-01302180294-01302182480-01302183331-01303167164- -->
+<LI><A HREF="000729.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="729">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--3 01301678117-01301681306-01302125562-01302166147-01302179800- -->
+<LI><A HREF="000658.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="658">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01301678117-01301681306-01302125562-01302166147-01302179800-01302180260- -->
+<LI><A HREF="000659.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="659">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01301679317- -->
+<LI><A HREF="000626.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="626">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--0 01301695202- -->
+<LI><A HREF="000631.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="631">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301742751- -->
+<LI><A HREF="000632.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="632">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01301757437- -->
+<LI><A HREF="000633.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="633">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--0 01301781602- -->
+<LI><A HREF="000634.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="634">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301827855- -->
+<LI><A HREF="000635.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="635">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01301868002- -->
+<LI><A HREF="000636.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="636">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301908150- -->
+<LI><A HREF="000637.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="637">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--0 01301925041- -->
+<LI><A HREF="000638.html">[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
+</A><A NAME="638">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--0 01301954403- -->
+<LI><A HREF="000639.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="639">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301973832- -->
+<LI><A HREF="000640.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A><A NAME="640">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01302030277- -->
+<LI><A HREF="000641.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="641">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01302040802- -->
+<LI><A HREF="000642.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="642">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302085127- -->
+<LI><A HREF="000643.html">[Mageia-webteam] 2011/week 14 meeting
+</A><A NAME="643">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01302085205- -->
+<LI><A HREF="000644.html">[Mageia-webteam] [Bug 655] [New] Open German forum
+</A><A NAME="644">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01302085205-01303207011- -->
+<LI><A HREF="000731.html">[Mageia-webteam] [Bug 655] Open German forum
+</A><A NAME="731">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01302085205-01303216340- -->
+<LI><A HREF="000732.html">[Mageia-webteam] [Bug 655] Open German forum
+</A><A NAME="732">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01302085402- -->
+<LI><A HREF="000645.html">[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
+</A><A NAME="645">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01302085402-01303207010- -->
+<LI><A HREF="000730.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="730">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01302085402-01303216341- -->
+<LI><A HREF="000733.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="733">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01302085402-01303216357- -->
+<LI><A HREF="000734.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="734">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01302087909- -->
+<LI><A HREF="000646.html">[Mageia-webteam] 2011/week 14 meeting
+</A><A NAME="646">&nbsp;</A>
+<I>kosmasc at gmail.com
+</I>
+
+<!--0 01302111343- -->
+<LI><A HREF="000647.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="647">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01302115438- -->
+<LI><A HREF="000648.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="648">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01302116181- -->
+<LI><A HREF="000649.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="649">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01302118595- -->
+<LI><A HREF="000650.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="650">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01302125489- -->
+<LI><A HREF="000651.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="651">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01302127202- -->
+<LI><A HREF="000653.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="653">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302158536- -->
+<LI><A HREF="000654.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="654">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01302163989- -->
+<LI><A HREF="000655.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="655">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01302189666- -->
+<LI><A HREF="000664.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="664">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01302190181- -->
+<LI><A HREF="000665.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="665">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01302191417- -->
+<LI><A HREF="000666.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="666">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01302199936- -->
+<LI><A HREF="000667.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="667">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01302203552- -->
+<LI><A HREF="000668.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="668">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01302206007- -->
+<LI><A HREF="000669.html">[Mageia-webteam] [Bug 690] [New] language redirection problem
+</A><A NAME="669">&nbsp;</A>
+<I>AL13N
+</I>
+
+<UL>
+<!--1 01302206007-01302247705- -->
+<LI><A HREF="000671.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="671">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01302206007-01302905206- -->
+<LI><A HREF="000716.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="716">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--1 01302206007-01302942540- -->
+<LI><A HREF="000717.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A><A NAME="717">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01302213602- -->
+<LI><A HREF="000670.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="670">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302250508- -->
+<LI><A HREF="000672.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="672">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01302277259- -->
+<LI><A HREF="000673.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="673">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01302295544- -->
+<LI><A HREF="000674.html">[Mageia-webteam] [Bug 723] [New] incorrect suggested command
+</A><A NAME="674">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<UL>
+<!--1 01302295544-01302295599- -->
+<LI><A HREF="000675.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A><A NAME="675">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<!--1 01302295544-01302296181- -->
+<LI><A HREF="000676.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A><A NAME="676">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+</UL>
+<!--0 01302300003- -->
+<LI><A HREF="000677.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="677">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302345937- -->
+<LI><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><A NAME="678">&nbsp;</A>
+<I>robert marshall
+</I>
+
+<UL>
+<!--1 01302345937-01302389446- -->
+<LI><A HREF="000681.html">[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
+</A><A NAME="681">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+</UL>
+<!--0 01302364943- -->
+<LI><A HREF="000679.html">[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
+</A><A NAME="679">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<UL>
+<!--1 01302364943-01303107529- -->
+<LI><A HREF="000721.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="721">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<!--1 01302364943-01303112797- -->
+<LI><A HREF="000722.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="722">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<!--1 01302364943-01303116570- -->
+<LI><A HREF="000723.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="723">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01302364943-01303118061- -->
+<LI><A HREF="000724.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="724">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01302386402- -->
+<LI><A HREF="000680.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="680">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302471013- -->
+<LI><A HREF="000682.html">[Mageia-webteam] [Bug 767] [New] Strange notice on the download page
+</A><A NAME="682">&nbsp;</A>
+<I>Egor Suldin
+</I>
+
+<UL>
+<!--1 01302471013-01302615492- -->
+<LI><A HREF="000685.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="685">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01302471013-01302618597- -->
+<LI><A HREF="000686.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="686">&nbsp;</A>
+<I>Egor Suldin
+</I>
+
+</UL>
+<!--0 01302472802- -->
+<LI><A HREF="000683.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="683">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302559203- -->
+<LI><A HREF="000684.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="684">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302645602- -->
+<LI><A HREF="000687.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="687">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302685310- -->
+<LI><A HREF="000688.html">[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
+</A><A NAME="688">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01302695787- -->
+<LI><A HREF="000689.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="689">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<UL>
+<!--1 01302695787-01302696672- -->
+<LI><A HREF="000690.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="690">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--2 01302695787-01302696672-01302698624- -->
+<LI><A HREF="000691.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="691">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<UL>
+<!--3 01302695787-01302696672-01302698624-01302888615- -->
+<LI><A HREF="000712.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A><A NAME="712">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01302719598- -->
+<LI><A HREF="000692.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="692">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<UL>
+<!--1 01302719598-01302720317- -->
+<LI><A HREF="000693.html">[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="693">&nbsp;</A>
+<I>Anne nicolas
+</I>
+
+</UL>
+<!--0 01302732002- -->
+<LI><A HREF="000694.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="694">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302741589- -->
+<LI><A HREF="000695.html">[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong
+</A><A NAME="695">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<UL>
+<!--1 01302741589-01302792496- -->
+<LI><A HREF="000698.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="698">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01302741589-01302792591- -->
+<LI><A HREF="000699.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="699">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01302741589-01302792860- -->
+<LI><A HREF="000700.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="700">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01302741589-01302792971- -->
+<LI><A HREF="000701.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="701">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01302741589-01302793345- -->
+<LI><A HREF="000702.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="702">&nbsp;</A>
+<I>Frank Griffin
+</I>
+
+<!--1 01302741589-01302793580- -->
+<LI><A HREF="000703.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="703">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01302741589-01302795495- -->
+<LI><A HREF="000704.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="704">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01302741589-01302795810- -->
+<LI><A HREF="000705.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="705">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01302741589-01302796881- -->
+<LI><A HREF="000706.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="706">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01302741589-01302797517- -->
+<LI><A HREF="000707.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="707">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01302741589-01302798003- -->
+<LI><A HREF="000708.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="708">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01302741589-01303303125- -->
+<LI><A HREF="000751.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="751">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01302741589-01303345214- -->
+<LI><A HREF="000765.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="765">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01302741589-01303889550- -->
+<LI><A HREF="000806.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="806">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+</UL>
+<!--0 01302786424- -->
+<LI><A HREF="000696.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="696">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01302790090- -->
+<LI><A HREF="000697.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A><A NAME="697">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01302803831- -->
+<LI><A HREF="000709.html">[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default
+</A><A NAME="709">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01302803831-01302896969- -->
+<LI><A HREF="000714.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="714">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--1 01302803831-01303255286- -->
+<LI><A HREF="000746.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="746">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+</UL>
+<!--0 01302818403- -->
+<LI><A HREF="000710.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="710">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302820682- -->
+<LI><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><A NAME="711">&nbsp;</A>
+<I>Johan Pirlouit
+</I>
+
+<UL>
+<!--1 01302820682-01303255520- -->
+<LI><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><A NAME="747">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01302820682-01303520073- -->
+<LI><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><A NAME="777">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01302820682-01303520102- -->
+<LI><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><A NAME="778">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+</UL>
+<!--0 01302893039- -->
+<LI><A HREF="000713.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="713">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01302904803- -->
+<LI><A HREF="000715.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="715">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01302991203- -->
+<LI><A HREF="000718.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="718">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303057702- -->
+<LI><A HREF="000719.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="719">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01303077604- -->
+<LI><A HREF="000720.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="720">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303147676- -->
+<LI><A HREF="000725.html">[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.
+</A><A NAME="725">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<UL>
+<!--1 01303147676-01303147940- -->
+<LI><A HREF="000727.html">[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.
+</A><A NAME="727">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+</UL>
+<!--0 01303147862- -->
+<LI><A HREF="000726.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="726">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01303164004- -->
+<LI><A HREF="000728.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="728">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303249146- -->
+<LI><A HREF="000735.html">[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups
+</A><A NAME="735">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<UL>
+<!--1 01303249146-01303249385- -->
+<LI><A HREF="000736.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="736">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01303249146-01303252258- -->
+<LI><A HREF="000738.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="738">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303249146-01303252765- -->
+<LI><A HREF="000739.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="739">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303249146-01303253086- -->
+<LI><A HREF="000740.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="740">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303249146-01303253869- -->
+<LI><A HREF="000741.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="741">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01303249146-01303253930- -->
+<LI><A HREF="000742.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="742">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303249146-01303254133- -->
+<LI><A HREF="000743.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="743">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303249146-01303254717- -->
+<LI><A HREF="000744.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="744">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303249146-01303254997- -->
+<LI><A HREF="000745.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="745">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01303249146-01303257979- -->
+<LI><A HREF="000748.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="748">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303249146-01303258479- -->
+<LI><A HREF="000749.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="749">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303249146-01303258924- -->
+<LI><A HREF="000750.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="750">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01303249146-01303332342- -->
+<LI><A HREF="000756.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="756">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303249146-01303332971- -->
+<LI><A HREF="000760.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="760">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+</UL>
+<!--0 01303250402- -->
+<LI><A HREF="000737.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="737">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303323382- -->
+<LI><A HREF="000752.html">[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="752">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<UL>
+<!--1 01303323382-01303325170- -->
+<LI><A HREF="000753.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="753">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303323382-01303332862- -->
+<LI><A HREF="000759.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="759">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+</UL>
+<!--0 01303332250- -->
+<LI><A HREF="000754.html">[Mageia-webteam] [Bug 910] [New] Add a check box for security issue
+</A><A NAME="754">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01303332250-01303332342- -->
+<LI><A HREF="000755.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="755">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303332250-01303332394- -->
+<LI><A HREF="000757.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="757">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01303332816- -->
+<LI><A HREF="000758.html">[Mageia-webteam] [Bug 912] [New] Custom field for CVE
+</A><A NAME="758">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01303332816-01303342732- -->
+<LI><A HREF="000763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="763">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01303332816-01303344911- -->
+<LI><A HREF="000764.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="764">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303332816-01304023636- -->
+<LI><A HREF="000812.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="812">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01303332816-01304025204- -->
+<LI><A HREF="000817.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="817">&nbsp;</A>
+<I>D Morgan
+</I>
+
+</UL>
+<!--0 01303336802- -->
+<LI><A HREF="000761.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="761">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303336807- -->
+<LI><A HREF="000762.html">[Mageia-webteam] Request on behalf of secteam for a website for security update
+</A><A NAME="762">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01303410378- -->
+<LI><A HREF="000766.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="766">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01303419914- -->
+<LI><A HREF="000767.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="767">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01303422918- -->
+<LI><A HREF="000768.html">[Mageia-webteam] Web team in ldap
+</A><A NAME="768">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01303422918-01303834880- -->
+<LI><A HREF="000795.html">[Mageia-webteam] Web team in ldap
+</A><A NAME="795">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01303423202- -->
+<LI><A HREF="000769.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="769">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303425681- -->
+<LI><A HREF="000770.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="770">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01303436852- -->
+<LI><A HREF="000771.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="771">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01303468531- -->
+<LI><A HREF="000772.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="772">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01303495979- -->
+<LI><A HREF="000773.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="773">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01303500186- -->
+<LI><A HREF="000774.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="774">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01303500294- -->
+<LI><A HREF="000775.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="775">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01303509602- -->
+<LI><A HREF="000776.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="776">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303596002- -->
+<LI><A HREF="000779.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="779">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303662565- -->
+<LI><A HREF="000780.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="780">&nbsp;</A>
+<I>Pascal Terjan
+</I>
+
+<!--0 01303682403- -->
+<LI><A HREF="000781.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="781">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303728940- -->
+<LI><A HREF="000782.html">[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="782">&nbsp;</A>
+<I>Jaanus Ojangu
+</I>
+
+<UL>
+<!--1 01303728940-01303743880- -->
+<LI><A HREF="000783.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="783">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01303728940-01303744099- -->
+<LI><A HREF="000784.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="784">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<!--1 01303728940-01303747158- -->
+<LI><A HREF="000785.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="785">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01303728940-01303803242- -->
+<LI><A HREF="000788.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
+</A><A NAME="788">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01303768803- -->
+<LI><A HREF="000786.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="786">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303776721- -->
+<LI><A HREF="000787.html">[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
+</A><A NAME="787">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<UL>
+<!--1 01303776721-01303804547- -->
+<LI><A HREF="000789.html">[Mageia-webteam] [Bug 991] Incorrect links on download pages
+</A><A NAME="789">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01303819707- -->
+<LI><A HREF="000790.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="790">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01303822263- -->
+<LI><A HREF="000791.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="791">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01303822263-01303834491- -->
+<LI><A HREF="000794.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="794">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01303822263-01303834491-01303835104- -->
+<LI><A HREF="000796.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="796">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--3 01303822263-01303834491-01303835104-01303911454- -->
+<LI><A HREF="000810.html">[Mageia-webteam] 2011/week 17 review meeting
+</A><A NAME="810">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01303831100- -->
+<LI><A HREF="000792.html">[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
+</A><A NAME="792">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01303831100-01303833421- -->
+<LI><A HREF="000793.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="793">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303831100-01303836137- -->
+<LI><A HREF="000797.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="797">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01303831100-01303836520- -->
+<LI><A HREF="000798.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="798">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01303831100-01303838403- -->
+<LI><A HREF="000799.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="799">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01303831100-01303838713- -->
+<LI><A HREF="000800.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="800">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01303831100-01303903117- -->
+<LI><A HREF="000807.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="807">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<!--1 01303831100-01303906889- -->
+<LI><A HREF="000808.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="808">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01303831100-01303906929- -->
+<LI><A HREF="000809.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="809">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01303855203- -->
+<LI><A HREF="000801.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="801">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01303857125- -->
+<LI><A HREF="000802.html">[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
+</A><A NAME="802">&nbsp;</A>
+<I>Gerald
+</I>
+
+<UL>
+<!--1 01303857125-01303866085- -->
+<LI><A HREF="000803.html">[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
+</A><A NAME="803">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+</UL>
+<!--0 01303885817- -->
+<LI><A HREF="000804.html">[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
+</A><A NAME="804">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<UL>
+<!--1 01303885817-01303889549- -->
+<LI><A HREF="000805.html">[Mageia-webteam] [Bug 1004] When reporting new bugs, the wrong time is displayed.
+</A><A NAME="805">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+</UL>
+<!--0 01303941603- -->
+<LI><A HREF="000811.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="811">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304023677- -->
+<LI><A HREF="000813.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="813">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01304024870- -->
+<LI><A HREF="000814.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="814">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01304024981- -->
+<LI><A HREF="000815.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="815">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01304025126- -->
+<LI><A HREF="000816.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="816">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--0 01304025369- -->
+<LI><A HREF="000818.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="818">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01304025479- -->
+<LI><A HREF="000819.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="819">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01304028002- -->
+<LI><A HREF="000820.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="820">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304031793- -->
+<LI><A HREF="000821.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="821">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01304114402- -->
+<LI><A HREF="000822.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="822">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Sat Apr 30 00:00:08 CEST 2011</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-August.txt.gz b/zarb-ml/mageia-webteam/2011-August.txt.gz
new file mode 100644
index 000000000..b0afa6f5f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-August/001322.html b/zarb-ml/mageia-webteam/2011-August/001322.html
new file mode 100644
index 000000000..099f9a402
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001322.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1942] Guatemala mirror down
+ </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%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110803032632.7F12943659%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="001323.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1942] Guatemala mirror down</H1>
+ <B>Juan Luis Baptiste</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110803032632.7F12943659%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1942] Guatemala mirror down">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 3 05:26:32 CEST 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001323.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1322">[ date ]</a>
+ <a href="thread.html#1322">[ thread ]</a>
+ <a href="subject.html#1322">[ subject ]</a>
+ <a href="author.html#1322">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1942">https://bugs.mageia.org/show_bug.cgi?id=1942</A>
+
+--- Comment #4 from Juan Luis Baptiste &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">juan.baptiste at gmail.com</A>&gt; 2011-08-03 05:26:30 CEST ---
+Can this mirror be deleted from the mirror list ? is still invalid and each
+time I boot I have to delete it from /var/cache/urpmi/mirrors.cache to be able
+to get updates or install software.
+
+--
+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>Next message: <A HREF="001323.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1322">[ date ]</a>
+ <a href="thread.html#1322">[ thread ]</a>
+ <a href="subject.html#1322">[ subject ]</a>
+ <a href="author.html#1322">[ 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-August/001323.html b/zarb-ml/mageia-webteam/2011-August/001323.html
new file mode 100644
index 000000000..8ea668b84
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001323.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1942] Guatemala mirror down
+ </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%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110803103710.18ECE43658%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="001322.html">
+ <LINK REL="Next" HREF="001324.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1942] Guatemala mirror down</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110803103710.18ECE43658%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1942] Guatemala mirror down">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 3 12:37:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001322.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001324.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1323">[ date ]</a>
+ <a href="thread.html#1323">[ thread ]</a>
+ <a href="subject.html#1323">[ subject ]</a>
+ <a href="author.html#1323">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1942">https://bugs.mageia.org/show_bug.cgi?id=1942</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 #5 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-08-03 14:37:06 CEST ---
+Mirror is now disabled in mirrors database, and should now be removed from
+mirror list.
+
+--
+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="001322.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001324.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1323">[ date ]</a>
+ <a href="thread.html#1323">[ thread ]</a>
+ <a href="subject.html#1323">[ subject ]</a>
+ <a href="author.html#1323">[ 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-August/001324.html b/zarb-ml/mageia-webteam/2011-August/001324.html
new file mode 100644
index 000000000..e8d975299
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001324.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+ </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%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20110804110927.81ECA435F8%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="001323.html">
+ <LINK REL="Next" HREF="001325.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20110804110927.81ECA435F8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 4 13:09:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001323.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001325.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1324">[ date ]</a>
+ <a href="thread.html#1324">[ thread ]</a>
+ <a href="subject.html#1324">[ subject ]</a>
+ <a href="author.html#1324">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2360">https://bugs.mageia.org/show_bug.cgi?id=2360</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Component|BuildSystem |Bugzilla
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="001323.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001325.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1324">[ date ]</a>
+ <a href="thread.html#1324">[ thread ]</a>
+ <a href="subject.html#1324">[ subject ]</a>
+ <a href="author.html#1324">[ 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-August/001325.html b/zarb-ml/mageia-webteam/2011-August/001325.html
new file mode 100644
index 000000000..d92373a92
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001325.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+ </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.2&In-Reply-To=%3C20110805100349.1BFF9434BA%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="001324.html">
+ <LINK REL="Next" HREF="001326.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2</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.2&In-Reply-To=%3C20110805100349.1BFF9434BA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Aug 5 12:03:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001324.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001326.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1325">[ date ]</a>
+ <a href="thread.html#1325">[ thread ]</a>
+ <a href="subject.html#1325">[ subject ]</a>
+ <a href="author.html#1325">[ 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>
+
+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
+----------------------------------------------------------------------------
+ Summary|Upgrade to Bugzilla 4.0.1 |Upgrade to Bugzilla 4.0.2
+
+--- Comment #15 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-08-05 14:03:48 CEST ---
+4.0.2 has been released last night. It includes several security fixes.
+
+--
+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="001324.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001326.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1325">[ date ]</a>
+ <a href="thread.html#1325">[ thread ]</a>
+ <a href="subject.html#1325">[ subject ]</a>
+ <a href="author.html#1325">[ 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-August/001326.html b/zarb-ml/mageia-webteam/2011-August/001326.html
new file mode 100644
index 000000000..d6d803b53
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001326.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110813233809.60C7A43740%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="001325.html">
+ <LINK REL="Next" HREF="001327.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110813233809.60C7A43740%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 14 01:38:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001325.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001327.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1326">[ date ]</a>
+ <a href="thread.html#1326">[ thread ]</a>
+ <a href="subject.html#1326">[ subject ]</a>
+ <a href="author.html#1326">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #26 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-08-14 01:38:09 CEST ---
+What is happening - has this been fixed or not?
+
+--
+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="001325.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001327.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1326">[ date ]</a>
+ <a href="thread.html#1326">[ thread ]</a>
+ <a href="subject.html#1326">[ subject ]</a>
+ <a href="author.html#1326">[ 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-August/001327.html b/zarb-ml/mageia-webteam/2011-August/001327.html
new file mode 100644
index 000000000..51709d07f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001327.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110816090802.49D1A43756%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="001326.html">
+ <LINK REL="Next" HREF="001328.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>thomas bjo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110816090802.49D1A43756%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 16 11:08:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001326.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001328.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1327">[ date ]</a>
+ <a href="thread.html#1327">[ thread ]</a>
+ <a href="subject.html#1327">[ subject ]</a>
+ <a href="author.html#1327">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+thomas bjo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thomas at bjoernvold.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thomas at bjoernvold.com</A>
+
+--- Comment #18 from thomas bjo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thomas at bjoernvold.com</A>&gt; 2011-08-16 11:08:02 CEST ---
+Since the &quot;common user&quot; has been heavily used as a defense for this Bug. I
+would like to state that I as a common user already have left the building. And
+that I will be happy to come back once unlimited editing for the community is
+in place.
+No &quot;special arrangement&quot; will do it - the entire community should have it.
+
+I agree with Barry, BicyleRepairMan, and the majority here. I think it is
+arrogant (and partly offending) to claim that this majority does not count
+because of the &quot;common users&quot; that are supposed to be in the majority here.
+
+Who has asked them?
+
+I am willing to make the exact opposite statement about the common user:
+When asked if he needs to be mentored or is unable to edit his own posts:
+The wast majority will answer no.
+The willingness to compromise in this matter shows that we are dealing with
+nice people who do not want to be offensive towards each other.
+
+But sometimes a bug is just a bug and needs to be fixed. This is one of those
+times IMHO.
+Shrugging my shoulders and hoping for a unlimited editing for a community that
+I actually trust to be able to handle 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001326.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001328.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1327">[ date ]</a>
+ <a href="thread.html#1327">[ thread ]</a>
+ <a href="subject.html#1327">[ subject ]</a>
+ <a href="author.html#1327">[ 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-August/001328.html b/zarb-ml/mageia-webteam/2011-August/001328.html
new file mode 100644
index 000000000..d6e477e9d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001328.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110816144304.C51FE4375A%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="001327.html">
+ <LINK REL="Next" HREF="001329.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110816144304.C51FE4375A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 16 16:43:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001327.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001329.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1328">[ date ]</a>
+ <a href="thread.html#1328">[ thread ]</a>
+ <a href="subject.html#1328">[ subject ]</a>
+ <a href="author.html#1328">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>
+
+--- Comment #19 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2011-08-16 16:43:04 CEST ---
+(In reply to comment #17)
+
+&gt;<i> I think that, ideally, the system could automatically comment changes with a
+</I>&gt;<i> statement like &quot;This entry in the forum was changed on 07/07/2011 at 20:00 UTC
+</I>&gt;<i> by _nickname_of_user_&quot;.
+</I>
+This happens currently only if you leave a reason for the edit (special field
+below the forum editor), otherwise there is no such notice.
+
+
+
+I'm also all for unlimited edit time. I've been to many forums, moderated some,
+and there never was a problem with no time-to-edit. In my opinion it's also not
+good to impose on the will of the forum users.
+
+--
+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="001327.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001329.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1328">[ date ]</a>
+ <a href="thread.html#1328">[ thread ]</a>
+ <a href="subject.html#1328">[ subject ]</a>
+ <a href="author.html#1328">[ 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-August/001329.html b/zarb-ml/mageia-webteam/2011-August/001329.html
new file mode 100644
index 000000000..ab45abc22
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001329.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110817121919.014684377A%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="001328.html">
+ <LINK REL="Next" HREF="001330.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110817121919.014684377A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 17 14:19:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001328.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001330.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1329">[ date ]</a>
+ <a href="thread.html#1329">[ thread ]</a>
+ <a href="subject.html#1329">[ subject ]</a>
+ <a href="author.html#1329">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>
+
+--- Comment #27 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2011-08-17 14:19:18 CEST ---
+Well this is assigned to webteam, and maat or ashledombos are not CC'ed ...
+
+--
+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="001328.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001330.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1329">[ date ]</a>
+ <a href="thread.html#1329">[ thread ]</a>
+ <a href="subject.html#1329">[ subject ]</a>
+ <a href="author.html#1329">[ 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-August/001330.html b/zarb-ml/mageia-webteam/2011-August/001330.html
new file mode 100644
index 000000000..08848638f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001330.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110817134230.5F1914377A%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="001329.html">
+ <LINK REL="Next" HREF="001331.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110817134230.5F1914377A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 17 15:42:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001329.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001331.html">[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1330">[ date ]</a>
+ <a href="thread.html#1330">[ thread ]</a>
+ <a href="subject.html#1330">[ subject ]</a>
+ <a href="author.html#1330">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">forums-discuss at ml.mageia.or</A>
+ | |g
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #28 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-08-17 17:42:30 CEST ---
+Reassigning.
+
+--
+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="001329.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001331.html">[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1330">[ date ]</a>
+ <a href="thread.html#1330">[ thread ]</a>
+ <a href="subject.html#1330">[ subject ]</a>
+ <a href="author.html#1330">[ 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-August/001331.html b/zarb-ml/mageia-webteam/2011-August/001331.html
new file mode 100644
index 000000000..78257efb5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001331.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic
+ </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%202484%5D%20%5BNew%5D%20Implement%20Package%20Mono-basic&In-Reply-To=%3Cbug-2484-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="001330.html">
+ <LINK REL="Next" HREF="001332.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic</H1>
+ <B>Tom&#195;&#161;s Flores</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202484%5D%20%5BNew%5D%20Implement%20Package%20Mono-basic&In-Reply-To=%3Cbug-2484-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 21 19:11:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001330.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001332.html">[Mageia-webteam] [Bug 2484] Implement Package Mono-basic
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1331">[ date ]</a>
+ <a href="thread.html#1331">[ thread ]</a>
+ <a href="subject.html#1331">[ subject ]</a>
+ <a href="author.html#1331">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2484">https://bugs.mageia.org/show_bug.cgi?id=2484</A>
+
+ Summary: Implement Package Mono-basic
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ URL: <A HREF="http://pkgs.org/package/mono%28Microsoft.VisualBasic%2">http://pkgs.org/package/mono%28Microsoft.VisualBasic%2</A>
+ 9
+ 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">lda.thedevil.dark at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ RPM Package: mono-basic
+
+
+Description of problem:
+Can you implement mono-basic in the packages?
+I need for to compile in .net
+
+--
+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="001330.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001332.html">[Mageia-webteam] [Bug 2484] Implement Package Mono-basic
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1331">[ date ]</a>
+ <a href="thread.html#1331">[ thread ]</a>
+ <a href="subject.html#1331">[ subject ]</a>
+ <a href="author.html#1331">[ 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-August/001332.html b/zarb-ml/mageia-webteam/2011-August/001332.html
new file mode 100644
index 000000000..fed295e0d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001332.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2484] Implement Package Mono-basic
+ </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%202484%5D%20Implement%20Package%20Mono-basic&In-Reply-To=%3C20110821172022.98EA5438FD%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="001331.html">
+ <LINK REL="Next" HREF="001333.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2484] Implement Package Mono-basic</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202484%5D%20Implement%20Package%20Mono-basic&In-Reply-To=%3C20110821172022.98EA5438FD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2484] Implement Package Mono-basic">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 21 19:20:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001331.html">[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic
+</A></li>
+ <LI>Next message: <A HREF="001333.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#1332">[ date ]</a>
+ <a href="thread.html#1332">[ thread ]</a>
+ <a href="subject.html#1332">[ subject ]</a>
+ <a href="author.html#1332">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2484">https://bugs.mageia.org/show_bug.cgi?id=2484</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Mageia
+ Version|unspecified |1
+ Component|Bugzilla |RPM Packages
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.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> |
+
+--
+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="001331.html">[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic
+</A></li>
+ <LI>Next message: <A HREF="001333.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#1332">[ date ]</a>
+ <a href="thread.html#1332">[ thread ]</a>
+ <a href="subject.html#1332">[ subject ]</a>
+ <a href="author.html#1332">[ 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-August/001333.html b/zarb-ml/mageia-webteam/2011-August/001333.html
new file mode 100644
index 000000000..b1812ee1d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001333.html
@@ -0,0 +1,72 @@
+<!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=%3C20110822204643.C57A4438D4%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="001332.html">
+ <LINK REL="Next" HREF="001334.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 829] 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%20Do%20not%20send%20reminder%20every%20day%20per%0A%09default&In-Reply-To=%3C20110822204643.C57A4438D4%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>Mon Aug 22 22:46:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001332.html">[Mageia-webteam] [Bug 2484] Implement Package Mono-basic
+</A></li>
+ <LI>Next message: <A HREF="001334.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#1333">[ date ]</a>
+ <a href="thread.html#1333">[ thread ]</a>
+ <a href="subject.html#1333">[ subject ]</a>
+ <a href="author.html#1333">[ 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>
+
+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| |FIXED
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-08-22 22:46:43 CEST ---
+Fixed in commit 1793 of adm, it seems.
+
+--
+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="001332.html">[Mageia-webteam] [Bug 2484] Implement Package Mono-basic
+</A></li>
+ <LI>Next message: <A HREF="001334.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#1333">[ date ]</a>
+ <a href="thread.html#1333">[ thread ]</a>
+ <a href="subject.html#1333">[ subject ]</a>
+ <a href="author.html#1333">[ 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-August/001334.html b/zarb-ml/mageia-webteam/2011-August/001334.html
new file mode 100644
index 000000000..4d45f186f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001334.html
@@ -0,0 +1,71 @@
+<!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=%3C20110822205252.36C8B438D6%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="001333.html">
+ <LINK REL="Next" HREF="001335.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 829] Do not send reminder every day per default</H1>
+ <B>Remco Rijnders</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=%3C20110822205252.36C8B438D6%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>Mon Aug 22 22:52:52 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001333.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="001335.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1334">[ date ]</a>
+ <a href="thread.html#1334">[ thread ]</a>
+ <a href="subject.html#1334">[ subject ]</a>
+ <a href="author.html#1334">[ 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>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ URL| |<A HREF="http://svnweb.mageia.org/ad">http://svnweb.mageia.org/ad</A>
+ | |m/puppet/modules/bugzilla/t
+ | |emplates/params?r1=1313&amp;r2=
+ | |1793&amp;pathrev=1793
+
+--
+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="001333.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="001335.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1334">[ date ]</a>
+ <a href="thread.html#1334">[ thread ]</a>
+ <a href="subject.html#1334">[ subject ]</a>
+ <a href="author.html#1334">[ 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-August/001335.html b/zarb-ml/mageia-webteam/2011-August/001335.html
new file mode 100644
index 000000000..7bc442d33
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001335.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+ </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%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20110823145829.2DF03438BE%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="001334.html">
+ <LINK REL="Next" HREF="001336.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20110823145829.2DF03438BE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 23 16:58:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001334.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="001336.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1335">[ date ]</a>
+ <a href="thread.html#1335">[ thread ]</a>
+ <a href="subject.html#1335">[ subject ]</a>
+ <a href="author.html#1335">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2360">https://bugs.mageia.org/show_bug.cgi?id=2360</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Severity|normal |major
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-08-23 18:58:29 CEST ---
+no idea ? :/
+
+--
+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="001334.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="001336.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1335">[ date ]</a>
+ <a href="thread.html#1335">[ thread ]</a>
+ <a href="subject.html#1335">[ subject ]</a>
+ <a href="author.html#1335">[ 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-August/001336.html b/zarb-ml/mageia-webteam/2011-August/001336.html
new file mode 100644
index 000000000..c0abed1f9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001336.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+ </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%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20110829161641.4B52B43931%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="001335.html">
+ <LINK REL="Next" HREF="001337.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working</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%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20110829161641.4B52B43931%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Aug 29 18:16:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001335.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001337.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1336">[ date ]</a>
+ <a href="thread.html#1336">[ thread ]</a>
+ <a href="subject.html#1336">[ subject ]</a>
+ <a href="author.html#1336">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2360">https://bugs.mageia.org/show_bug.cgi?id=2360</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
+----------------------------------------------------------------------------
+ Status Whiteboard| |[blocker will fix]
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>
+ Depends on| |40
+
+--- 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-08-29 18:16:41 CEST ---
+The component has a comma in it. You need Bugzilla 4.0 to correctly handle
+that, see bug 40.
+
+--
+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="001335.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001337.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1336">[ date ]</a>
+ <a href="thread.html#1336">[ thread ]</a>
+ <a href="subject.html#1336">[ subject ]</a>
+ <a href="author.html#1336">[ 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-August/001337.html b/zarb-ml/mageia-webteam/2011-August/001337.html
new file mode 100644
index 000000000..0bfee7980
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001337.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+ </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.2&In-Reply-To=%3C20110829161641.D1B164393B%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="001336.html">
+ <LINK REL="Next" HREF="001338.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2</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.2&In-Reply-To=%3C20110829161641.D1B164393B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Aug 29 18:16:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001336.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001338.html">[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1337">[ date ]</a>
+ <a href="thread.html#1337">[ thread ]</a>
+ <a href="subject.html#1337">[ subject ]</a>
+ <a href="author.html#1337">[ 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>
+
+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
+----------------------------------------------------------------------------
+ Blocks| |2360
+
+--
+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="001336.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001338.html">[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1337">[ date ]</a>
+ <a href="thread.html#1337">[ thread ]</a>
+ <a href="subject.html#1337">[ subject ]</a>
+ <a href="author.html#1337">[ 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-August/001338.html b/zarb-ml/mageia-webteam/2011-August/001338.html
new file mode 100644
index 000000000..a5459bad0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001338.html
@@ -0,0 +1,112 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20%5BNew%5D%20Add%20to%20Mageia%201%20release%20notes%20and%0A%20to%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3Cbug-2565-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="001337.html">
+ <LINK REL="Next" HREF="001339.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>vatbier vatbier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20%5BNew%5D%20Add%20to%20Mageia%201%20release%20notes%20and%0A%20to%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3Cbug-2565-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 30 00:33:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001337.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001339.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1338">[ date ]</a>
+ <a href="thread.html#1338">[ thread ]</a>
+ <a href="subject.html#1338">[ subject ]</a>
+ <a href="author.html#1338">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+ Summary: Add to Mageia 1 release notes and to news/blog that it
+ has KDE 4.6.5 updates
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">dieter.rogiest at telenet.be</A>
+
+
+Mandriva 2011 is out. Time to update my Mandriva 2010.2 I thought and install a
+new distribution. I saw on mageia.org website that Mageia 1 has according to
+its release notes KDE 4.6.3.
+And I read that Mageia 2 will only be released in april 2012.
+Comparing this to Mandriva 2011 which has KDE 4.6.5 I choose the latter as that
+one has the latest KDE version.
+I checked the news on mageia.org website (the first page): no mention of new
+KDE updates. I checked the mageia blog: also no mention of any new KDE updates.
+Thus my choice was Mandriva 2011.
+
+Luckily a few hours later I began to browse the forum (I think I wanted to
+check if Mageia also had updates/backports repositories) and I stumbled on the
+&quot;[SOLVED] KDE 4.6.5 update for Mageia 1&quot; post in General discussions about
+Mageia.
+Now that's what I needed to know!
+In the beginning of Mageia I visited the website from time to time but as there
+wasn't much activity yet I forgot a little about it. I'm happily surprised now
+seeing that Mandriva's development is gathering momentum and as a new Linux
+distribution really might be viable.
+
+Please add to the news (blog) on the first page of mageia.org website any
+important/relevant item like the KDE 4.6.5 update that may hook newcomers to
+mageia. The latest news dates from Jul 17 2011: this is no good, write news
+items every week or every two weeks about Mageia's progress.
+Add it as a note to the release notes of Mageia 1 so people won't think that
+Mageia 1 is outdated (don't add it at the bottom of the page but close to the
+line of KDE or if the release notes are not allowed to be changed just mention
+on the page of Mageia 1 in red letters that updates continually being added).
+
+I do will install Mandriva 2011 first on my netbook only to check it out. After
+a week I will install Mageia 1 with KDE 4.6.5.
+
+And please think of more ways of recruiting new users for Mageia.
+
+I've also donated 50 euro to Mageia, don't disappoint us.
+
+--
+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="001337.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001339.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1338">[ date ]</a>
+ <a href="thread.html#1338">[ thread ]</a>
+ <a href="subject.html#1338">[ subject ]</a>
+ <a href="author.html#1338">[ 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-August/001339.html b/zarb-ml/mageia-webteam/2011-August/001339.html
new file mode 100644
index 000000000..580f450f1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001339.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20110829233438.4DDFC439E4%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="001338.html">
+ <LINK REL="Next" HREF="001340.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20110829233438.4DDFC439E4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 30 01:34:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001338.html">[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001340.html">[Mageia-webteam] Forum's top menu
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1339">[ date ]</a>
+ <a href="thread.html#1339">[ thread ]</a>
+ <a href="subject.html#1339">[ subject ]</a>
+ <a href="author.html#1339">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</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-08-30 03:34:38 CEST ---
+Thanks for your report!
+
+This is more a broad topic than just a definite bug item and should be discuted
+further with -discuss and marcomm teams. If this is done for KDE, this
+could/should be done for other components as well.
+
+It's more about strategy, how to advertise later updates of initially released
+components, how to attract new users, where to put the focus, with whose
+resources and when, etc. You're welcome to suggest this and provide your
+insights to the marcomm' team (which is to grow, as you noticed properly)
+mailing-list or the -discuss ml: <A HREF="https://www.mageia.org/mailman/">https://www.mageia.org/mailman/</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="001338.html">[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001340.html">[Mageia-webteam] Forum's top menu
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1339">[ date ]</a>
+ <a href="thread.html#1339">[ thread ]</a>
+ <a href="subject.html#1339">[ subject ]</a>
+ <a href="author.html#1339">[ 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-August/001340.html b/zarb-ml/mageia-webteam/2011-August/001340.html
new file mode 100644
index 000000000..587f6cf66
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/001340.html
@@ -0,0 +1,138 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum's top menu
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%27s%20top%20menu&In-Reply-To=%3C201108311918.09489.dglent%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001339.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum's top menu</H1>
+ <B>Dimitrios Glentadakis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%27s%20top%20menu&In-Reply-To=%3C201108311918.09489.dglent%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Forum's top menu">dglent at gmail.com
+ </A><BR>
+ <I>Wed Aug 31 19:18:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001339.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1340">[ date ]</a>
+ <a href="thread.html#1340">[ thread ]</a>
+ <a href="subject.html#1340">[ subject ]</a>
+ <a href="author.html#1340">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&#931;&#964;&#953;&#962; &#928;&#941;&#956;&#960;&#964;&#951; 18 &#913;&#973;&#947;&#959;&#965;&#963;&#964;&#959;&#962; 2011 19:17:43 &#947;&#961;&#940;&#968;&#945;&#964;&#949;:
+&gt;<i> &#931;&#964;&#953;&#962; &#932;&#961;&#943;&#964;&#951; 16 &#913;&#973;&#947;&#959;&#965;&#963;&#964;&#959;&#962; 2011 20:23:15 Dimitrios Glentadakis &#947;&#961;&#940;&#968;&#945;&#964;&#949;:
+</I>&gt;<i> &gt; &#931;&#964;&#953;&#962; &#932;&#961;&#943;&#964;&#951; 16 &#913;&#973;&#947;&#959;&#965;&#963;&#964;&#959;&#962; 2011 15:41:55 Romain d'Alverny &#947;&#961;&#940;&#968;&#945;&#964;&#949;:
+</I>&gt;<i> &gt; &gt; Hi Dimitrios,
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; On Tue, Aug 16, 2011 at 13:23, Dimitrios Glentadakis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dglent at gmail.com</A>&gt; wrote:
+</I>&gt;<i> &gt; &gt; &gt; I d like to add the top menu as you have in the forum (the top menu of the
+</I>&gt;<i> &gt; &gt; &gt; page with the options: [...]
+</I>&gt;<i> &gt; &gt; &gt; in the greek forum:
+</I>&gt;<i> &gt; &gt; &gt; <A HREF="http://mageia-gr.org/forum/index.php">http://mageia-gr.org/forum/index.php</A>
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Sure. See here:
+</I>&gt;<i> &gt; &gt; <A HREF="https://mageia.org/pipermail/mageia-webteam/2011-July/001283.html">https://mageia.org/pipermail/mageia-webteam/2011-July/001283.html</A>
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Romain
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Thanks !
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> May be is better to have in the mageia.org top menu, the link for the forum mageia-gr.org when we are in the Greek localisation ?
+</I>&gt;<i>
+</I>&gt;<i> I saw that other localisations follow this scheme. The forum link redirects to each local forum
+</I>&gt;<i>
+</I>&gt;<i>
+</I>
+I upload the patches to ease the task
+i know Romain how you are busy, i dont want to make any pressure, if you want that i remember you this later tell me there is not problem at all.
+
+Thanks
+
+--
+Dimitrios Glentadakis
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: 1.html.patch
+Type: text/x-patch
+Size: 1658 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110831/e2846262/attachment.bin&gt;
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: about.html.patch
+Type: text/x-patch
+Size: 1654 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110831/e2846262/attachment-0001.bin&gt;
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: contribute.html.patch
+Type: text/x-patch
+Size: 1678 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110831/e2846262/attachment-0002.bin&gt;
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: donate.html.patch
+Type: text/x-patch
+Size: 1657 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110831/e2846262/attachment-0003.bin&gt;
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: download.html.patch
+Type: text/x-patch
+Size: 1680 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110831/e2846262/attachment-0004.bin&gt;
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: mageia.html.patch
+Type: text/x-patch
+Size: 1666 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110831/e2846262/attachment-0005.bin&gt;
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: support.html.patch
+Type: text/x-patch
+Size: 1660 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110831/e2846262/attachment-0006.bin&gt;
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001339.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1340">[ date ]</a>
+ <a href="thread.html#1340">[ thread ]</a>
+ <a href="subject.html#1340">[ subject ]</a>
+ <a href="author.html#1340">[ 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-August/author.html b/zarb-ml/mageia-webteam/2011-August/author.html
new file mode 100644
index 000000000..9cf850ae3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/author.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam August 2011 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>August 2011 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 Aug 3 05:26:32 CEST 2011</i><br>
+ <b>Ending:</b> <i>Wed Aug 31 19:18:08 CEST 2011</i><br>
+ <b>Messages:</b> 19<p>
+ <ul>
+
+<LI><A HREF="001322.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1322">&nbsp;</A>
+<I>Juan Luis Baptiste
+</I>
+
+<LI><A HREF="001325.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1325">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001336.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1336">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001337.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1337">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001331.html">[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic
+</A><A NAME="1331">&nbsp;</A>
+<I>Tom&#195;&#161;s Flores
+</I>
+
+<LI><A HREF="001340.html">[Mageia-webteam] Forum's top menu
+</A><A NAME="1340">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001324.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1324">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001332.html">[Mageia-webteam] [Bug 2484] Implement Package Mono-basic
+</A><A NAME="1332">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001335.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1335">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001328.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1328">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001329.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1329">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001326.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1326">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001334.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="1334">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001333.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="1333">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001323.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1323">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001327.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1327">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001330.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1330">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001339.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1339">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001338.html">[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1338">&nbsp;</A>
+<I>vatbier vatbier
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Aug 31 19:18:08 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Aug 31 19:15:30 CEST 2011</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/2011-August/date.html b/zarb-ml/mageia-webteam/2011-August/date.html
new file mode 100644
index 000000000..1a7108454
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/date.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam August 2011 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>August 2011 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 Aug 3 05:26:32 CEST 2011</i><br>
+ <b>Ending:</b> <i>Wed Aug 31 19:18:08 CEST 2011</i><br>
+ <b>Messages:</b> 19<p>
+ <ul>
+
+<LI><A HREF="001322.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1322">&nbsp;</A>
+<I>Juan Luis Baptiste
+</I>
+
+<LI><A HREF="001323.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1323">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001324.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1324">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001325.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1325">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001326.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1326">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001327.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1327">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001328.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1328">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001329.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1329">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001330.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1330">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001331.html">[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic
+</A><A NAME="1331">&nbsp;</A>
+<I>Tom&#195;&#161;s Flores
+</I>
+
+<LI><A HREF="001332.html">[Mageia-webteam] [Bug 2484] Implement Package Mono-basic
+</A><A NAME="1332">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001333.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="1333">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001334.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="1334">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001335.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1335">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001336.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1336">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001337.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1337">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001338.html">[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1338">&nbsp;</A>
+<I>vatbier vatbier
+</I>
+
+<LI><A HREF="001339.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1339">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001340.html">[Mageia-webteam] Forum's top menu
+</A><A NAME="1340">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Aug 31 19:18:08 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Aug 31 19:15:30 CEST 2011</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/2011-August/index.html b/zarb-ml/mageia-webteam/2011-August/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-August/subject.html b/zarb-ml/mageia-webteam/2011-August/subject.html
new file mode 100644
index 000000000..23a23ed81
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/subject.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam August 2011 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>August 2011 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 Aug 3 05:26:32 CEST 2011</i><br>
+ <b>Ending:</b> <i>Wed Aug 31 19:18:08 CEST 2011</i><br>
+ <b>Messages:</b> 19<p>
+ <ul>
+
+<LI><A HREF="001326.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1326">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001329.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1329">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001330.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1330">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001322.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1322">&nbsp;</A>
+<I>Juan Luis Baptiste
+</I>
+
+<LI><A HREF="001323.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1323">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001327.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1327">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001328.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1328">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001324.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1324">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001335.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1335">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001336.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1336">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001331.html">[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic
+</A><A NAME="1331">&nbsp;</A>
+<I>Tom&#195;&#161;s Flores
+</I>
+
+<LI><A HREF="001332.html">[Mageia-webteam] [Bug 2484] Implement Package Mono-basic
+</A><A NAME="1332">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001338.html">[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1338">&nbsp;</A>
+<I>vatbier vatbier
+</I>
+
+<LI><A HREF="001339.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1339">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001325.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1325">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001337.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1337">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001333.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="1333">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001334.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="1334">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001340.html">[Mageia-webteam] Forum's top menu
+</A><A NAME="1340">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Aug 31 19:18:08 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Aug 31 19:15:30 CEST 2011</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/2011-August/thread.html b/zarb-ml/mageia-webteam/2011-August/thread.html
new file mode 100644
index 000000000..eef0f2310
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-August/thread.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam August 2011 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>August 2011 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 Aug 3 05:26:32 CEST 2011</i><br>
+ <b>Ending:</b> <i>Wed Aug 31 19:18:08 CEST 2011</i><br>
+ <b>Messages:</b> 19<p>
+ <ul>
+
+<!--0 01312341992- -->
+<LI><A HREF="001322.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1322">&nbsp;</A>
+<I>Juan Luis Baptiste
+</I>
+
+<!--0 01312367830- -->
+<LI><A HREF="001323.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1323">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01312456167- -->
+<LI><A HREF="001324.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1324">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01312538629- -->
+<LI><A HREF="001325.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1325">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01313278689- -->
+<LI><A HREF="001326.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1326">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--0 01313485682- -->
+<LI><A HREF="001327.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1327">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<!--0 01313505784- -->
+<LI><A HREF="001328.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1328">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--0 01313583558- -->
+<LI><A HREF="001329.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1329">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--0 01313588550- -->
+<LI><A HREF="001330.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1330">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01313946662- -->
+<LI><A HREF="001331.html">[Mageia-webteam] [Bug 2484] [New] Implement Package Mono-basic
+</A><A NAME="1331">&nbsp;</A>
+<I>Tom&#195;&#161;s Flores
+</I>
+
+<UL>
+<!--1 01313946662-01313947222- -->
+<LI><A HREF="001332.html">[Mageia-webteam] [Bug 2484] Implement Package Mono-basic
+</A><A NAME="1332">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01314046003- -->
+<LI><A HREF="001333.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="1333">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01314046372- -->
+<LI><A HREF="001334.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A><A NAME="1334">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--0 01314111509- -->
+<LI><A HREF="001335.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1335">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01314634601- -->
+<LI><A HREF="001336.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1336">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01314634601- -->
+<LI><A HREF="001337.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1337">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01314657217- -->
+<LI><A HREF="001338.html">[Mageia-webteam] [Bug 2565] [New] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1338">&nbsp;</A>
+<I>vatbier vatbier
+</I>
+
+<UL>
+<!--1 01314657217-01314660878- -->
+<LI><A HREF="001339.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1339">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01314811088- -->
+<LI><A HREF="001340.html">[Mageia-webteam] Forum's top menu
+</A><A NAME="1340">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Aug 31 19:18:08 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Aug 31 19:15:30 CEST 2011</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-December.txt.gz b/zarb-ml/mageia-webteam/2011-December.txt.gz
new file mode 100644
index 000000000..9009f8a68
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-December/001579.html b/zarb-ml/mageia-webteam/2011-December/001579.html
new file mode 100644
index 000000000..27acd93d4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001579.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3576] [New] Add the keyword Errata
+ </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%203576%5D%20%5BNew%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3Cbug-3576-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="Next" HREF="001580.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3576] [New] Add the keyword Errata</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203576%5D%20%5BNew%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3Cbug-3576-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3576] [New] Add the keyword Errata">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 2 11:26:52 CET 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001580.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1579">[ date ]</a>
+ <a href="thread.html#1579">[ thread ]</a>
+ <a href="subject.html#1579">[ subject ]</a>
+ <a href="author.html#1579">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3576">https://bugs.mageia.org/show_bug.cgi?id=3576</A>
+
+ Summary: Add the keyword Errata
+ 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">manuel at hiebel.eu</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem:
+
+can somebody add the keyword &quot;Errata&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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="001580.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1579">[ date ]</a>
+ <a href="thread.html#1579">[ thread ]</a>
+ <a href="subject.html#1579">[ subject ]</a>
+ <a href="author.html#1579">[ 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-December/001580.html b/zarb-ml/mageia-webteam/2011-December/001580.html
new file mode 100644
index 000000000..7219baca5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001580.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3576] Add the keyword Errata
+ </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%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202102800.1D5B047767%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="001579.html">
+ <LINK REL="Next" HREF="001581.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3576] Add the keyword Errata</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202102800.1D5B047767%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3576] Add the keyword Errata">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 2 11:28:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001579.html">[Mageia-webteam] [Bug 3576] [New] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001581.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1580">[ date ]</a>
+ <a href="thread.html#1580">[ thread ]</a>
+ <a href="subject.html#1580">[ subject ]</a>
+ <a href="author.html#1580">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3576">https://bugs.mageia.org/show_bug.cgi?id=3576</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-12-02 12:28:00 CET ---
+What's the description 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="001579.html">[Mageia-webteam] [Bug 3576] [New] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001581.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1580">[ date ]</a>
+ <a href="thread.html#1580">[ thread ]</a>
+ <a href="subject.html#1580">[ subject ]</a>
+ <a href="author.html#1580">[ 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-December/001581.html b/zarb-ml/mageia-webteam/2011-December/001581.html
new file mode 100644
index 000000000..aa9796802
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001581.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3576] Add the keyword Errata
+ </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%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202104427.27A6E47755%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="001580.html">
+ <LINK REL="Next" HREF="001582.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3576] Add the keyword Errata</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202104427.27A6E47755%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3576] Add the keyword Errata">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 2 11:44:27 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001580.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001582.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1581">[ date ]</a>
+ <a href="thread.html#1581">[ thread ]</a>
+ <a href="subject.html#1581">[ subject ]</a>
+ <a href="author.html#1581">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3576">https://bugs.mageia.org/show_bug.cgi?id=3576</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-12-02 12:44:27 CET ---
+known problems with Mageia and with fix or workaround
+
+something like that
+
+(you were quick)
+
+--
+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="001580.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001582.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1581">[ date ]</a>
+ <a href="thread.html#1581">[ thread ]</a>
+ <a href="subject.html#1581">[ subject ]</a>
+ <a href="author.html#1581">[ 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-December/001582.html b/zarb-ml/mageia-webteam/2011-December/001582.html
new file mode 100644
index 000000000..288da72f6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001582.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3576] Add the keyword Errata
+ </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%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202105226.DF18A47767%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="001581.html">
+ <LINK REL="Next" HREF="001583.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3576] Add the keyword Errata</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202105226.DF18A47767%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3576] Add the keyword Errata">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 2 11:52:26 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001581.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001583.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1582">[ date ]</a>
+ <a href="thread.html#1582">[ thread ]</a>
+ <a href="subject.html#1582">[ subject ]</a>
+ <a href="author.html#1582">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3576">https://bugs.mageia.org/show_bug.cgi?id=3576</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|NEW |ASSIGNED
+
+--- Comment #3 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-02 11:52:26 CET ---
+I'm afraid the use case is not clear enough, or it's too early for me :-)
+
+What will be the use of the keyword then? searching for all known/confirmed
+bugs that have a fix/workaround (then likely to be resolved:fixed already)?
+
+--
+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="001581.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001583.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1582">[ date ]</a>
+ <a href="thread.html#1582">[ thread ]</a>
+ <a href="subject.html#1582">[ subject ]</a>
+ <a href="author.html#1582">[ 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-December/001583.html b/zarb-ml/mageia-webteam/2011-December/001583.html
new file mode 100644
index 000000000..75c506fa5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001583.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3576] Add the keyword Errata
+ </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%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202110442.22B3B47755%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="001582.html">
+ <LINK REL="Next" HREF="001584.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3576] Add the keyword Errata</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202110442.22B3B47755%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3576] Add the keyword Errata">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 2 12:04:42 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001582.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001584.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1583">[ date ]</a>
+ <a href="thread.html#1583">[ thread ]</a>
+ <a href="subject.html#1583">[ subject ]</a>
+ <a href="author.html#1583">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3576">https://bugs.mageia.org/show_bug.cgi?id=3576</A>
+
+--- Comment #4 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-12-02 12:04:42 CET ---
+Don't really know myself :/
+
+but ahmad used this one for add some entry in
+<A HREF="http://www.mageia.org/wiki/doku.php?id=mageia1:errata">http://www.mageia.org/wiki/doku.php?id=mageia1:errata</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="001582.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001584.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1583">[ date ]</a>
+ <a href="thread.html#1583">[ thread ]</a>
+ <a href="subject.html#1583">[ subject ]</a>
+ <a href="author.html#1583">[ 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-December/001584.html b/zarb-ml/mageia-webteam/2011-December/001584.html
new file mode 100644
index 000000000..de49a0e49
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001584.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3576] Add the keyword Errata
+ </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%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202111504.003DF47755%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="001583.html">
+ <LINK REL="Next" HREF="001585.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3576] Add the keyword Errata</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202111504.003DF47755%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3576] Add the keyword Errata">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 2 12:15:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001583.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001585.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1584">[ date ]</a>
+ <a href="thread.html#1584">[ thread ]</a>
+ <a href="subject.html#1584">[ subject ]</a>
+ <a href="author.html#1584">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3576">https://bugs.mageia.org/show_bug.cgi?id=3576</A>
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-02 13:15:03 CET ---
+Ok, so I found this discussion that could explain:
+<A HREF="http://lists.mandriva.com/bugteam/2009-05/msg00022.php">http://lists.mandriva.com/bugteam/2009-05/msg00022.php</A> : errata keyword would
+be used by packagers to remember what bug (being still open, or resolved for a
+later release) to have listed in the release errata.
+
+That's a good idea, but... the errata doc is constantly evolving from alpha1 to
+final (what was an errata for alpha2 may be fixed, hopefully, for beta1).
+
+So there's still a manual process to check what is to be put in the errata
+notes (that will be freezed at the final release, so any later change to an
+errata bug should not affect it).
+
+This still makes sense, but this keyword use case and description really must
+be clear, understood and managed by release managers and maintainers. Has this
+been discussed in QA or dev teams?
+
+--
+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="001583.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001585.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1584">[ date ]</a>
+ <a href="thread.html#1584">[ thread ]</a>
+ <a href="subject.html#1584">[ subject ]</a>
+ <a href="author.html#1584">[ 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-December/001585.html b/zarb-ml/mageia-webteam/2011-December/001585.html
new file mode 100644
index 000000000..19d905e2b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001585.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3576] Add the keyword Errata
+ </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%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202112534.DCE7B47755%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="001584.html">
+ <LINK REL="Next" HREF="001586.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3576] Add the keyword Errata</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202112534.DCE7B47755%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3576] Add the keyword Errata">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 2 12:25:34 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001584.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001586.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1585">[ date ]</a>
+ <a href="thread.html#1585">[ thread ]</a>
+ <a href="subject.html#1585">[ subject ]</a>
+ <a href="author.html#1585">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3576">https://bugs.mageia.org/show_bug.cgi?id=3576</A>
+
+--- Comment #6 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-12-02 13:25:35 CET ---
+&gt;<i>Ok, so I found this discussion that could explain:
+</I>&gt;<i><A HREF="http://lists.mandriva.com/bugteam/2009-05/msg00022.php">http://lists.mandriva.com/bugteam/2009-05/msg00022.php</A> :
+</I>
+Yes I see this thread after my comment 4
+
+&gt;<i>So there's still a manual process to check what is to be put in the errata
+</I>&gt;<i>notes (that will be freezed at the final release, so any later change to an
+</I>&gt;<i>errata bug should not affect it).
+</I>
+freezed ? you are sure ?
+It's not the release note ? If a bug is really resolved we can change it the
+page.
+
+&gt;<i>This still makes sense, but this keyword use case and description really must
+</I>&gt;<i>be clear, understood and managed by release managers and maintainers. Has this
+</I>&gt;<i>been discussed in QA or dev teams?
+</I>
+I have only asked on the packager meeting but there was no real discussion.
+<A HREF="http://meetbot.mageia.org/mageia-dev/2011/mageia-dev.2011-11-30-20.13.log.html#l-157">http://meetbot.mageia.org/mageia-dev/2011/mageia-dev.2011-11-30-20.13.log.html#l-157</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="001584.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001586.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1585">[ date ]</a>
+ <a href="thread.html#1585">[ thread ]</a>
+ <a href="subject.html#1585">[ subject ]</a>
+ <a href="author.html#1585">[ 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-December/001586.html b/zarb-ml/mageia-webteam/2011-December/001586.html
new file mode 100644
index 000000000..85a48b2fe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001586.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3576] Add the keyword Errata
+ </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%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202154254.3BA3B4773A%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="001585.html">
+ <LINK REL="Next" HREF="001587.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3576] Add the keyword Errata</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203576%5D%20Add%20the%20keyword%20Errata&In-Reply-To=%3C20111202154254.3BA3B4773A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3576] Add the keyword Errata">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 2 16:42:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001585.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001587.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1586">[ date ]</a>
+ <a href="thread.html#1586">[ thread ]</a>
+ <a href="subject.html#1586">[ subject ]</a>
+ <a href="author.html#1586">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3576">https://bugs.mageia.org/show_bug.cgi?id=3576</A>
+
+--- Comment #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-02 16:42:53 CET ---
+(In reply to comment #6)
+&gt;<i> &gt;So there's still a manual process to check what is to be put in the errata
+</I>&gt;<i> &gt;notes (that will be freezed at the final release, so any later change to an
+</I>&gt;<i> &gt;errata bug should not affect it).
+</I>&gt;<i>
+</I>&gt;<i> freezed ? you are sure ?
+</I>&gt;<i> It's not the release note ? If a bug is really resolved we can change it the
+</I>&gt;<i> page.
+</I>
+Yes, but the errata is valid for a fresh install from the released ISO too.
+That does not exclude later updates to fix an errata issue, the notice must
+still be there for those that won't have the possibility to install updates at
+once (or at all).
+
+&gt;<i> I have only asked on the packager meeting but there was no real discussion.
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-dev/2011/mageia-dev.2011-11-30-20.13.log.html#l-157">http://meetbot.mageia.org/mageia-dev/2011/mageia-dev.2011-11-30-20.13.log.html#l-157</A>
+</I>
+Checked ok. Then what's needed is a clear description of when to use this
+keyword (in Bugzilla, and outside of 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="001585.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001587.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1586">[ date ]</a>
+ <a href="thread.html#1586">[ thread ]</a>
+ <a href="subject.html#1586">[ subject ]</a>
+ <a href="author.html#1586">[ 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-December/001587.html b/zarb-ml/mageia-webteam/2011-December/001587.html
new file mode 100644
index 000000000..30018244a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001587.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204035958.98ED4477BD%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="001586.html">
+ <LINK REL="Next" HREF="001588.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204035958.98ED4477BD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 4 04:59:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001586.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001588.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1587">[ date ]</a>
+ <a href="thread.html#1587">[ thread ]</a>
+ <a href="subject.html#1587">[ subject ]</a>
+ <a href="author.html#1587">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>
+
+--- Comment #3 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2011-12-04 05:59:57 CET ---
+For the first one, how about a simple template ?
+----
+[<A HREF="https://bugs.mageia.org/show_bug.cgi?id={{{1">https://bugs.mageia.org/show_bug.cgi?id={{{1</A>}}} Mageia bug #{{{1}}}]
+&lt;noinclude&gt;
+
+
+e.g. automatic link to Mageia bugzilla bug 3451 with
+
+&lt;nowiki&gt;{{bug|3451}}&lt;/nowiki&gt;
+
+displaying as
+
+Mageia bug #3451
+
+&lt;/noinclude&gt;
+[Category:Contributors]
+----
+
+It's in place and it works. (I used it to load this bug.)
+
+I can try the second if you like.
+(Just give me an example of a file to test.)
+
+--
+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="001586.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001588.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1587">[ date ]</a>
+ <a href="thread.html#1587">[ thread ]</a>
+ <a href="subject.html#1587">[ subject ]</a>
+ <a href="author.html#1587">[ 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-December/001588.html b/zarb-ml/mageia-webteam/2011-December/001588.html
new file mode 100644
index 000000000..0722b59bf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001588.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204154549.EC48B477CF%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="001587.html">
+ <LINK REL="Next" HREF="001589.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204154549.EC48B477CF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 4 16:45:49 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001587.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001589.html">[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1588">[ date ]</a>
+ <a href="thread.html#1588">[ thread ]</a>
+ <a href="subject.html#1588">[ subject ]</a>
+ <a href="author.html#1588">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-04 17:45:49 CET ---
+(In reply to comment #3)
+&gt;<i> For the first one, how about a simple template ?
+</I>
+Can work yes, but that's not it. Interwiki (and bugs, and downloads and maybe
+later others) are things meant to be fixed once and unified through all our
+localized wikis. If we need to update these later, a single change in the
+config for all wikis is better than looking after each template in each
+language.
+
+--
+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="001587.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001589.html">[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1588">[ date ]</a>
+ <a href="thread.html#1588">[ thread ]</a>
+ <a href="subject.html#1588">[ subject ]</a>
+ <a href="author.html#1588">[ 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-December/001589.html b/zarb-ml/mageia-webteam/2011-December/001589.html
new file mode 100644
index 000000000..b98c17022
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001589.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia
+ </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%203608%5D%20%5BNew%5D%20Request%20for%20a%20short%20tutorial%20on%0A%20how%20to%20build%20RPMS%20for%20Mageia&In-Reply-To=%3Cbug-3608-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="001588.html">
+ <LINK REL="Next" HREF="001590.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia</H1>
+ <B>diego w</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203608%5D%20%5BNew%5D%20Request%20for%20a%20short%20tutorial%20on%0A%20how%20to%20build%20RPMS%20for%20Mageia&In-Reply-To=%3Cbug-3608-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 4 19:44:55 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001588.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001590.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1589">[ date ]</a>
+ <a href="thread.html#1589">[ thread ]</a>
+ <a href="subject.html#1589">[ subject ]</a>
+ <a href="author.html#1589">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3608">https://bugs.mageia.org/show_bug.cgi?id=3608</A>
+
+ Summary: Request for a short tutorial on how to build RPMS for
+ Mageia
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">smiling.diego at gmail.com</A>
+
+
+Hi Everyone!
+
+several times I stumbled over a missing package, some I reported others not.
+
+If someone could post a small howto, explaining how to get up and running with
+building RPMs, explaining the basics about spec files, I (and probably others)
+could file a ticket with a working RPM or spec file attached (or anything more
+useful than just software is missing.
+
+--
+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="001588.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001590.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1589">[ date ]</a>
+ <a href="thread.html#1589">[ thread ]</a>
+ <a href="subject.html#1589">[ subject ]</a>
+ <a href="author.html#1589">[ 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-December/001590.html b/zarb-ml/mageia-webteam/2011-December/001590.html
new file mode 100644
index 000000000..d80e16df2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001590.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+ </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%203608%5D%20Request%20for%20a%20short%20tutorial%20on%20how%20to%0A%20build%20RPMS%20for%20Mageia&In-Reply-To=%3C20111204185307.07351477D9%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="001589.html">
+ <LINK REL="Next" HREF="001591.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203608%5D%20Request%20for%20a%20short%20tutorial%20on%20how%20to%0A%20build%20RPMS%20for%20Mageia&In-Reply-To=%3C20111204185307.07351477D9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 4 19:53:07 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001589.html">[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI>Next message: <A HREF="001591.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1590">[ date ]</a>
+ <a href="thread.html#1590">[ thread ]</a>
+ <a href="subject.html#1590">[ subject ]</a>
+ <a href="author.html#1590">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3608">https://bugs.mageia.org/show_bug.cgi?id=3608</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">boklm at mars-attacks.org</A>
+
+--- Comment #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-12-04 20:53:05 CET ---
+There is already documentation on the wiki :
+<A HREF="https://wiki.mageia.org/en/Packagers_RPM_tutorial">https://wiki.mageia.org/en/Packagers_RPM_tutorial</A>
+<A HREF="https://wiki.mageia.org/en/Packaging_for_beginners">https://wiki.mageia.org/en/Packaging_for_beginners</A>
+
+And there is also documentation about rpm on rpm.org.
+
+--
+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="001589.html">[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI>Next message: <A HREF="001591.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1590">[ date ]</a>
+ <a href="thread.html#1590">[ thread ]</a>
+ <a href="subject.html#1590">[ subject ]</a>
+ <a href="author.html#1590">[ 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-December/001591.html b/zarb-ml/mageia-webteam/2011-December/001591.html
new file mode 100644
index 000000000..6976ea5b8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001591.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+ </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%203608%5D%20Request%20for%20a%20short%20tutorial%20on%20how%20to%0A%20build%20RPMS%20for%20Mageia&In-Reply-To=%3C20111204190151.2BD35477A1%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="001590.html">
+ <LINK REL="Next" HREF="001592.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia</H1>
+ <B>diego w</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203608%5D%20Request%20for%20a%20short%20tutorial%20on%20how%20to%0A%20build%20RPMS%20for%20Mageia&In-Reply-To=%3C20111204190151.2BD35477A1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 4 20:01:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001590.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI>Next message: <A HREF="001592.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1591">[ date ]</a>
+ <a href="thread.html#1591">[ thread ]</a>
+ <a href="subject.html#1591">[ subject ]</a>
+ <a href="author.html#1591">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3608">https://bugs.mageia.org/show_bug.cgi?id=3608</A>
+
+diego w &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">smiling.diego at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #2 from diego w &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">smiling.diego at gmail.com</A>&gt; 2011-12-04 21:01:51 CET ---
+sorry didn't find it :-(
+
+thanks for the links!
+
+--
+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="001590.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI>Next message: <A HREF="001592.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1591">[ date ]</a>
+ <a href="thread.html#1591">[ thread ]</a>
+ <a href="subject.html#1591">[ subject ]</a>
+ <a href="author.html#1591">[ 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-December/001592.html b/zarb-ml/mageia-webteam/2011-December/001592.html
new file mode 100644
index 000000000..c632bfedf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001592.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204205213.A2F1D477E3%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="001591.html">
+ <LINK REL="Next" HREF="001593.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204205213.A2F1D477E3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 4 21:52:13 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001591.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI>Next message: <A HREF="001593.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1592">[ date ]</a>
+ <a href="thread.html#1592">[ thread ]</a>
+ <a href="subject.html#1592">[ subject ]</a>
+ <a href="author.html#1592">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</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">boklm at mars-attacks.org</A>
+
+--- Comment #5 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-12-04 22:52:13 CET ---
+I added the two entries in the database. After testing on the wiki, it looks
+like it is working for download links, but not for bug links (I don't know
+why).
+
+Database has this :
+
+mediawiki_en=&gt; SELECT * from interwiki WHERE iw_prefix = 'bug';
+ iw_prefix | iw_url | iw_local | iw_trans
+-----------+--------------------------------------------+----------+----------
+ bug | <A HREF="https://bugs.mageia.org/show_bug.cgi?id=$1">https://bugs.mageia.org/show_bug.cgi?id=$1</A> | 0 | 0
+(1 row)
+
+mediawiki_en=&gt; SELECT * from interwiki WHERE iw_prefix = 'download';
+ iw_prefix | iw_url | iw_local | iw_trans
+-----------+-------------------------------------------+----------+----------
+ download | <A HREF="http://www.mageia.org/downloads/get/?q=$1">http://www.mageia.org/downloads/get/?q=$1</A> | 0 | 0
+(1 row)
+
+--
+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="001591.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A></li>
+ <LI>Next message: <A HREF="001593.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1592">[ date ]</a>
+ <a href="thread.html#1592">[ thread ]</a>
+ <a href="subject.html#1592">[ subject ]</a>
+ <a href="author.html#1592">[ 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-December/001593.html b/zarb-ml/mageia-webteam/2011-December/001593.html
new file mode 100644
index 000000000..35ca2d36a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001593.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204220403.26B69477CE%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="001592.html">
+ <LINK REL="Next" HREF="001594.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204220403.26B69477CE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 4 23:04:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001592.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001594.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1593">[ date ]</a>
+ <a href="thread.html#1593">[ thread ]</a>
+ <a href="subject.html#1593">[ subject ]</a>
+ <a href="author.html#1593">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #6 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-05 00:04:01 CET ---
+(In reply to comment #5)
+&gt;<i> I added the two entries in the database. After testing on the wiki, it looks
+</I>&gt;<i> like it is working for download links, but not for bug links (I don't know
+</I>&gt;<i> why).
+</I>
+Thanks! Strange. Wondering, could <A HREF="https://wiki.mageia.org/en/Template:Bug">https://wiki.mageia.org/en/Template:Bug</A> go
+into the way. Could you check by deleting the template? (can't do here)
+
+--
+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="001592.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001594.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1593">[ date ]</a>
+ <a href="thread.html#1593">[ thread ]</a>
+ <a href="subject.html#1593">[ subject ]</a>
+ <a href="author.html#1593">[ 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-December/001594.html b/zarb-ml/mageia-webteam/2011-December/001594.html
new file mode 100644
index 000000000..e9e9ced43
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001594.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204221405.31618477D3%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="001593.html">
+ <LINK REL="Next" HREF="001595.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204221405.31618477D3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 4 23:14:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001593.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001595.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1594">[ date ]</a>
+ <a href="thread.html#1594">[ thread ]</a>
+ <a href="subject.html#1594">[ subject ]</a>
+ <a href="author.html#1594">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</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-12-04 23:14:05 CET ---
+I removed Template:Bug, but it didn't fix the problem.
+
+--
+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="001593.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001595.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1594">[ date ]</a>
+ <a href="thread.html#1594">[ thread ]</a>
+ <a href="subject.html#1594">[ subject ]</a>
+ <a href="author.html#1594">[ 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-December/001595.html b/zarb-ml/mageia-webteam/2011-December/001595.html
new file mode 100644
index 000000000..87ae8898a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001595.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204231019.A571C477B8%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="001594.html">
+ <LINK REL="Next" HREF="001596.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204231019.A571C477B8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Dec 5 00:10:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001594.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001596.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1595">[ date ]</a>
+ <a href="thread.html#1595">[ thread ]</a>
+ <a href="subject.html#1595">[ subject ]</a>
+ <a href="author.html#1595">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #8 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-05 01:10:19 CET ---
+:<i>-/ What about using &quot;bugs&quot; or &quot;bugzilla&quot; in iw_prefix instead of &quot;bug&quot;?
+</I>
+--
+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="001594.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001596.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1595">[ date ]</a>
+ <a href="thread.html#1595">[ thread ]</a>
+ <a href="subject.html#1595">[ subject ]</a>
+ <a href="author.html#1595">[ 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-December/001596.html b/zarb-ml/mageia-webteam/2011-December/001596.html
new file mode 100644
index 000000000..667768027
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001596.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204231119.709DE477B8%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="001595.html">
+ <LINK REL="Next" HREF="001597.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111204231119.709DE477B8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Dec 5 00:11:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001595.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001597.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1596">[ date ]</a>
+ <a href="thread.html#1596">[ thread ]</a>
+ <a href="subject.html#1596">[ subject ]</a>
+ <a href="author.html#1596">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #9 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-05 00:11:19 CET ---
+Partially related: this extension could be interesting in the future:
+<A HREF="http://www.mediawiki.org/wiki/Extension:SpecialInterwiki">http://www.mediawiki.org/wiki/Extension:SpecialInterwiki</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="001595.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001597.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1596">[ date ]</a>
+ <a href="thread.html#1596">[ thread ]</a>
+ <a href="subject.html#1596">[ subject ]</a>
+ <a href="author.html#1596">[ 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-December/001597.html b/zarb-ml/mageia-webteam/2011-December/001597.html
new file mode 100644
index 000000000..bea8a34a8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001597.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111205055853.3FFA2477C2%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="001596.html">
+ <LINK REL="Next" HREF="001598.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111205055853.3FFA2477C2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Dec 5 06:58:53 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001596.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001598.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1597">[ date ]</a>
+ <a href="thread.html#1597">[ thread ]</a>
+ <a href="subject.html#1597">[ subject ]</a>
+ <a href="author.html#1597">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #10 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2011-12-05 07:58:53 CET ---
+(In reply to comment #4)
+&gt;<i>
+</I>&gt;<i> Can work yes, but that's not it. Interwiki (and bugs, and downloads and maybe
+</I>&gt;<i> later others) are things meant to be fixed once and unified through all our
+</I>&gt;<i> localized wikis. If we need to update these later, a single change in the
+</I>&gt;<i> config for all wikis is better than looking after each template in each
+</I>&gt;<i> language.
+</I>
+In the meantime, I think a bug template would be useful.
+{{bug|3451}} would invoke the template directly, while
+[[bug:3451]] should call the registered intermedia for bug,
+so there shouldn't be any conflict.
+(Wouldn't a template be a little more efficient ?)
+
+BTW, are there plans to localise bugzilla ?
+Or the links to bugzilla ?
+Or is it just to use the same style as intermedia links ?
+(Not a problem, just wondering.)
+
+--
+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="001596.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001598.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1597">[ date ]</a>
+ <a href="thread.html#1597">[ thread ]</a>
+ <a href="subject.html#1597">[ subject ]</a>
+ <a href="author.html#1597">[ 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-December/001598.html b/zarb-ml/mageia-webteam/2011-December/001598.html
new file mode 100644
index 000000000..ed089d86e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001598.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111205075027.A22DC477DA%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="001597.html">
+ <LINK REL="Next" HREF="001599.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111205075027.A22DC477DA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Dec 5 08:50:27 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001597.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001599.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1598">[ date ]</a>
+ <a href="thread.html#1598">[ thread ]</a>
+ <a href="subject.html#1598">[ subject ]</a>
+ <a href="author.html#1598">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #11 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-05 09:50:27 CET ---
+(In reply to comment #10)
+&gt;<i> In the meantime, I think a bug template would be useful.
+</I>&gt;<i> {{bug|3451}} would invoke the template directly, while
+</I>&gt;<i> [[bug:3451]] should call the registered intermedia for bug,
+</I>&gt;<i> so there shouldn't be any conflict.
+</I>
+Shoudn't, but you never know.
+
+&gt;<i> (Wouldn't a template be a little more efficient ?)
+</I>
+See my previous reply. Depends on where you place efficiency.
+
+&gt;<i> BTW, are there plans to localise bugzilla ?
+</I>
+No.
+
+&gt;<i> Or the links to bugzilla ?
+</I>&gt;<i> Or is it just to use the same style as intermedia links ?
+</I>
+Not sure I understand.
+
+--
+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="001597.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001599.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1598">[ date ]</a>
+ <a href="thread.html#1598">[ thread ]</a>
+ <a href="subject.html#1598">[ subject ]</a>
+ <a href="author.html#1598">[ 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-December/001599.html b/zarb-ml/mageia-webteam/2011-December/001599.html
new file mode 100644
index 000000000..4c557d9bf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001599.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+ </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%203638%5D%20%22You%20can%20help%21%22%20links%20to%20the%20old%20wiki&In-Reply-To=%3C20111206063343.E9C3A47D16%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="001598.html">
+ <LINK REL="Next" HREF="001600.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki</H1>
+ <B>Kamil Rytarowski</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203638%5D%20%22You%20can%20help%21%22%20links%20to%20the%20old%20wiki&In-Reply-To=%3C20111206063343.E9C3A47D16%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 6 07:33:43 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001598.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001600.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1599">[ date ]</a>
+ <a href="thread.html#1599">[ thread ]</a>
+ <a href="subject.html#1599">[ subject ]</a>
+ <a href="author.html#1599">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3638">https://bugs.mageia.org/show_bug.cgi?id=3638</A>
+
+Kamil Rytarowski &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">n54 at gmx.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Websites
+ Version|unspecified |trunk
+ Component|BuildSystem |Other
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="001598.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001600.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1599">[ date ]</a>
+ <a href="thread.html#1599">[ thread ]</a>
+ <a href="subject.html#1599">[ subject ]</a>
+ <a href="author.html#1599">[ 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-December/001600.html b/zarb-ml/mageia-webteam/2011-December/001600.html
new file mode 100644
index 000000000..14e1ffd59
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001600.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+ </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%203638%5D%20%22You%20can%20help%21%22%20links%20to%20the%20old%20wiki&In-Reply-To=%3C20111206100351.296EB47E26%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="001599.html">
+ <LINK REL="Next" HREF="001601.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203638%5D%20%22You%20can%20help%21%22%20links%20to%20the%20old%20wiki&In-Reply-To=%3C20111206100351.296EB47E26%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 6 11:03:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001599.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI>Next message: <A HREF="001601.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1600">[ date ]</a>
+ <a href="thread.html#1600">[ thread ]</a>
+ <a href="subject.html#1600">[ subject ]</a>
+ <a href="author.html#1600">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3638">https://bugs.mageia.org/show_bug.cgi?id=3638</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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-12-06 12:03:51 CET ---
+Fixed, 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="001599.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI>Next message: <A HREF="001601.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1600">[ date ]</a>
+ <a href="thread.html#1600">[ thread ]</a>
+ <a href="subject.html#1600">[ subject ]</a>
+ <a href="author.html#1600">[ 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-December/001601.html b/zarb-ml/mageia-webteam/2011-December/001601.html
new file mode 100644
index 000000000..01e4626c7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001601.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+ </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%203638%5D%20%22You%20can%20help%21%22%20links%20to%20the%20old%20wiki&In-Reply-To=%3C20111206112607.C83E847EA8%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="001600.html">
+ <LINK REL="Next" HREF="001602.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203638%5D%20%22You%20can%20help%21%22%20links%20to%20the%20old%20wiki&In-Reply-To=%3C20111206112607.C83E847EA8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 6 12:26:07 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001600.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI>Next message: <A HREF="001602.html">[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1601">[ date ]</a>
+ <a href="thread.html#1601">[ thread ]</a>
+ <a href="subject.html#1601">[ subject ]</a>
+ <a href="author.html#1601">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3638">https://bugs.mageia.org/show_bug.cgi?id=3638</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-12-06 12:26:07 CET ---
+the css seems now broken, too litle?
+
+--
+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="001600.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI>Next message: <A HREF="001602.html">[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1601">[ date ]</a>
+ <a href="thread.html#1601">[ thread ]</a>
+ <a href="subject.html#1601">[ subject ]</a>
+ <a href="author.html#1601">[ 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-December/001602.html b/zarb-ml/mageia-webteam/2011-December/001602.html
new file mode 100644
index 000000000..cd0c59d8e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001602.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management
+ </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%203674%5D%20%5BNew%5D%20No%20good%20FAQ%20link%20for%20Mageia%0A%09identity%20management&In-Reply-To=%3Cbug-3674-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="001601.html">
+ <LINK REL="Next" HREF="001603.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20%5BNew%5D%20No%20good%20FAQ%20link%20for%20Mageia%0A%09identity%20management&In-Reply-To=%3Cbug-3674-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 9 12:32:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001601.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI>Next message: <A HREF="001603.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1602">[ date ]</a>
+ <a href="thread.html#1602">[ thread ]</a>
+ <a href="subject.html#1602">[ subject ]</a>
+ <a href="author.html#1602">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+ Summary: No good FAQ link for Mageia identity management
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">marja11 at xs4all.nl</A>
+
+
+At the moment, there is only a link to an almost empty page in the old wiki:
+<A HREF="http://mageia.org/wiki/doku.php?id=faq:accounts">http://mageia.org/wiki/doku.php?id=faq:accounts</A>
+
+Please change that into <A HREF="https://wiki.mageia.org/en/FAQ:Accounts">https://wiki.mageia.org/en/FAQ:Accounts</A>
+
+and then reassign to <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-discuss at ml.mageia.org</A>, and we'll fill the page :)
+
+If assigning to doc-discuss isn't possible yet, do you want us to file a
+seperate bug report to request that?
+
+--
+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="001601.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A></li>
+ <LI>Next message: <A HREF="001603.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1602">[ date ]</a>
+ <a href="thread.html#1602">[ thread ]</a>
+ <a href="subject.html#1602">[ subject ]</a>
+ <a href="author.html#1602">[ 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-December/001603.html b/zarb-ml/mageia-webteam/2011-December/001603.html
new file mode 100644
index 000000000..bb64c8042
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001603.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20111209113402.2A8644782A%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="001602.html">
+ <LINK REL="Next" HREF="001604.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20111209113402.2A8644782A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 9 12:34:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001602.html">[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001604.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1603">[ date ]</a>
+ <a href="thread.html#1603">[ thread ]</a>
+ <a href="subject.html#1603">[ subject ]</a>
+ <a href="author.html#1603">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-09 12:34:01 CET ---
+(In reply to comment #0)
+
+&gt;<i> If assigning to doc-discuss isn't possible yet, do you want us to file a
+</I>&gt;<i> seperate bug report to request that?
+</I>
+Well, I'll do that, I suppose that is something someone from sysadmin should do
+
+--
+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="001602.html">[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001604.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1603">[ date ]</a>
+ <a href="thread.html#1603">[ thread ]</a>
+ <a href="subject.html#1603">[ subject ]</a>
+ <a href="author.html#1603">[ 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-December/001604.html b/zarb-ml/mageia-webteam/2011-December/001604.html
new file mode 100644
index 000000000..2b33d22a6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001604.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20111209115017.15C12476E1%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="001603.html">
+ <LINK REL="Next" HREF="001606.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20111209115017.15C12476E1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 9 12:50:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001603.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001606.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1604">[ date ]</a>
+ <a href="thread.html#1604">[ thread ]</a>
+ <a href="subject.html#1604">[ subject ]</a>
+ <a href="author.html#1604">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-09 12:50:17 CET ---
+There seems to be a new ml to assign to doc team:
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-bugs at ml.mageia.org</A>
+Please reassign to that one, once you're done :D
+
+--
+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="001603.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001606.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1604">[ date ]</a>
+ <a href="thread.html#1604">[ thread ]</a>
+ <a href="subject.html#1604">[ subject ]</a>
+ <a href="author.html#1604">[ 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-December/001605.html b/zarb-ml/mageia-webteam/2011-December/001605.html
new file mode 100644
index 000000000..91c83641f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001605.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+ </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%201054%5D%20Live%20CD%27s%20only%20for%2032%20bit%20install%3F&In-Reply-To=%3C20111209154815.D9A2947899%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="001609.html">
+ <LINK REL="Next" HREF="001607.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?</H1>
+ <B>Dick Gevers</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20Live%20CD%27s%20only%20for%2032%20bit%20install%3F&In-Reply-To=%3C20111209154815.D9A2947899%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 9 16:48:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001609.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001607.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1605">[ date ]</a>
+ <a href="thread.html#1605">[ thread ]</a>
+ <a href="subject.html#1605">[ subject ]</a>
+ <a href="author.html#1605">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+Dick Gevers &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dvgevers at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|REOPENED |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #13 from Dick Gevers &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dvgevers at xs4all.nl</A>&gt; 2011-12-09 16:48:15 CET ---
+IMHO time to close. Feel free to reopen if really needed :)
+
+--
+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="001609.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001607.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1605">[ date ]</a>
+ <a href="thread.html#1605">[ thread ]</a>
+ <a href="subject.html#1605">[ subject ]</a>
+ <a href="author.html#1605">[ 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-December/001606.html b/zarb-ml/mageia-webteam/2011-December/001606.html
new file mode 100644
index 000000000..2e0f6d1b5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001606.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20111209164017.64DB1478DE%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="001604.html">
+ <LINK REL="Next" HREF="001609.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20111209164017.64DB1478DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 9 17:40:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001604.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001609.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1606">[ date ]</a>
+ <a href="thread.html#1606">[ thread ]</a>
+ <a href="subject.html#1606">[ subject ]</a>
+ <a href="author.html#1606">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</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|NEW |ASSIGNED
+ AssignedTo|<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">doc-bugs at ml.mageia.org</A>
+ 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-12-09 18:40:17 CET ---
+(In reply to comment #0)
+&gt;<i> Please change that into <A HREF="https://wiki.mageia.org/en/FAQ:Accounts">https://wiki.mageia.org/en/FAQ:Accounts</A>
+</I>
+Committed into the trunk branch, but not yet merged in the production one (I'd
+leave that to Buchan that maintains this app at this time).
+
+&gt;<i> and then reassign to <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-discuss at ml.mageia.org</A>, and we'll fill the page :)
+</I>
+Done.
+
+--
+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="001604.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001609.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1606">[ date ]</a>
+ <a href="thread.html#1606">[ thread ]</a>
+ <a href="subject.html#1606">[ subject ]</a>
+ <a href="author.html#1606">[ 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-December/001607.html b/zarb-ml/mageia-webteam/2011-December/001607.html
new file mode 100644
index 000000000..a704ff6f9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001607.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+ </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%20386%5D%20Cannot%20reset%20password%20if%20the%20user%20didn%27t%0A%20set%20preferedLanguage&In-Reply-To=%3C20111210144332.BA70547899%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="001605.html">
+ <LINK REL="Next" HREF="001608.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20386%5D%20Cannot%20reset%20password%20if%20the%20user%20didn%27t%0A%20set%20preferedLanguage&In-Reply-To=%3C20111210144332.BA70547899%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 10 15:43:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001605.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="001608.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1607">[ date ]</a>
+ <a href="thread.html#1607">[ thread ]</a>
+ <a href="subject.html#1607">[ subject ]</a>
+ <a href="author.html#1607">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-10 16:43:30 CET ---
+(In reply to comment #2)
+&gt;<i> Likely, I do not remember fixing it and the code still has the issue from what
+</I>&gt;<i> I see, but this could be quick ( just add a default value in the code ).
+</I>
+You must have fixed it, I just made a new account to test and it defaulted to
+&quot;en&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="001605.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="001608.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1607">[ date ]</a>
+ <a href="thread.html#1607">[ thread ]</a>
+ <a href="subject.html#1607">[ subject ]</a>
+ <a href="author.html#1607">[ 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-December/001608.html b/zarb-ml/mageia-webteam/2011-December/001608.html
new file mode 100644
index 000000000..53389ddb4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001608.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111210213332.86D2847914%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="001607.html">
+ <LINK REL="Next" HREF="001610.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111210213332.86D2847914%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 10 22:33:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001607.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI>Next message: <A HREF="001610.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1608">[ date ]</a>
+ <a href="thread.html#1608">[ thread ]</a>
+ <a href="subject.html#1608">[ subject ]</a>
+ <a href="author.html#1608">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |OLD
+
+--- Comment #22 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-10 22:33:32 CET ---
+Closing, because Stormi's new workflow will take care of this.
+
+(And it can of course be reopened if that takes too long ;) )
+
+--
+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="001607.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI>Next message: <A HREF="001610.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1608">[ date ]</a>
+ <a href="thread.html#1608">[ thread ]</a>
+ <a href="subject.html#1608">[ subject ]</a>
+ <a href="author.html#1608">[ 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-December/001609.html b/zarb-ml/mageia-webteam/2011-December/001609.html
new file mode 100644
index 000000000..5fd7e20b6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001609.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20111211121244.AD75C478EC%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="001606.html">
+ <LINK REL="Next" HREF="001605.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20111211121244.AD75C478EC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 11 13:12:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001606.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001605.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1609">[ date ]</a>
+ <a href="thread.html#1609">[ thread ]</a>
+ <a href="subject.html#1609">[ subject ]</a>
+ <a href="author.html#1609">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+--- Comment #11 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-11 14:12:44 CET ---
+<A HREF="https://wiki.mageia.org/en/Mageia.org_user_account">https://wiki.mageia.org/en/Mageia.org_user_account</A> is ready.
+
+reassigning to web team to change the link in <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A>
+again, this time to the just mentioned page.
+
+--
+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="001606.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001605.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1609">[ date ]</a>
+ <a href="thread.html#1609">[ thread ]</a>
+ <a href="subject.html#1609">[ subject ]</a>
+ <a href="author.html#1609">[ 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-December/001610.html b/zarb-ml/mageia-webteam/2011-December/001610.html
new file mode 100644
index 000000000..4d6c9574e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001610.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+ </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%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20111211144128.0FF5747829%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="001608.html">
+ <LINK REL="Next" HREF="001611.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20111211144128.0FF5747829%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 11 15:41:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001608.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001611.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1610">[ date ]</a>
+ <a href="thread.html#1610">[ thread ]</a>
+ <a href="subject.html#1610">[ subject ]</a>
+ <a href="author.html#1610">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1568">https://bugs.mageia.org/show_bug.cgi?id=1568</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Keywords| |NEEDINFO
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #10 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-11 16:41:27 CET ---
+(In reply to comment #9)
+&gt;<i> hello, what is the status of this bug ?
+</I>
+Is this bug still valid?
+
+Please reply to the question above within two weeks from now, to avoid this bug
+being closed as OLD. Thank 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="001608.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001611.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1610">[ date ]</a>
+ <a href="thread.html#1610">[ thread ]</a>
+ <a href="subject.html#1610">[ subject ]</a>
+ <a href="author.html#1610">[ 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-December/001611.html b/zarb-ml/mageia-webteam/2011-December/001611.html
new file mode 100644
index 000000000..15687eaee
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001611.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+ </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%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20111211154215.D28BF478E5%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="001610.html">
+ <LINK REL="Next" HREF="001612.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20111211154215.D28BF478E5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 11 16:42:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001610.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001612.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1611">[ date ]</a>
+ <a href="thread.html#1611">[ thread ]</a>
+ <a href="subject.html#1611">[ subject ]</a>
+ <a href="author.html#1611">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1568">https://bugs.mageia.org/show_bug.cgi?id=1568</A>
+
+--- Comment #11 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2011-12-11 16:42:16 CET ---
+actually, since this is a mdv upgrade issue, i assume mdv upgrades aren't
+supported in 2 or cauldron, only 1, so either we fix this for 1 or we close as
+OLD?
+
+--
+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="001610.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001612.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1611">[ date ]</a>
+ <a href="thread.html#1611">[ thread ]</a>
+ <a href="subject.html#1611">[ subject ]</a>
+ <a href="author.html#1611">[ 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-December/001612.html b/zarb-ml/mageia-webteam/2011-December/001612.html
new file mode 100644
index 000000000..9df4eb511
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001612.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20111211171541.A9D8A478E1%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="001611.html">
+ <LINK REL="Next" HREF="001613.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20111211171541.A9D8A478E1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 11 18:15:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001611.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001613.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1612">[ date ]</a>
+ <a href="thread.html#1612">[ thread ]</a>
+ <a href="subject.html#1612">[ subject ]</a>
+ <a href="author.html#1612">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #7 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-11 18:15:41 CET ---
+(In reply to comment #5)
+&gt;<i> Using the search from Fr&#233;d&#233;ric in comment 1, I've saved this search and shared
+</I>&gt;<i> it as &quot;Bugs reported today&quot;. Feel free to use. I think this provides an
+</I>&gt;<i> adequate resolution to this report?
+</I>
+Yes, then you can even use it if you're using somebody else's system where you
+didn't bookmark Fr&#233;d&#233;ric's search.
+
+Closing this report as fixed.
+
+@ D Morgan
+
+Feel free to reopen if you want to create another solution :)
+
+--
+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="001611.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001613.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1612">[ date ]</a>
+ <a href="thread.html#1612">[ thread ]</a>
+ <a href="subject.html#1612">[ subject ]</a>
+ <a href="author.html#1612">[ 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-December/001613.html b/zarb-ml/mageia-webteam/2011-December/001613.html
new file mode 100644
index 000000000..9591f3f73
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001613.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20111211203312.267CF478E9%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="001612.html">
+ <LINK REL="Next" HREF="001614.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20111211203312.267CF478E9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 11 21:33:12 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001612.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001614.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1613">[ date ]</a>
+ <a href="thread.html#1613">[ thread ]</a>
+ <a href="subject.html#1613">[ subject ]</a>
+ <a href="author.html#1613">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #13 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-11 21:33:12 CET ---
+@ Assignee
+I think this bug was assigned correctly, but please confirm by putting &quot;OK&quot; on
+the whiteboard or by confirming in a comment
+
+--
+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="001612.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001614.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1613">[ date ]</a>
+ <a href="thread.html#1613">[ thread ]</a>
+ <a href="subject.html#1613">[ subject ]</a>
+ <a href="author.html#1613">[ 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-December/001614.html b/zarb-ml/mageia-webteam/2011-December/001614.html
new file mode 100644
index 000000000..b19962d2c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001614.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 252] Authentication does not work with email address
+ </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%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20111211203412.1D975478E5%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="001613.html">
+ <LINK REL="Next" HREF="001615.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 252] Authentication does not work with email address</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20111211203412.1D975478E5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 252] Authentication does not work with email address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 11 21:34:12 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001613.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001615.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1614">[ date ]</a>
+ <a href="thread.html#1614">[ thread ]</a>
+ <a href="subject.html#1614">[ subject ]</a>
+ <a href="author.html#1614">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+
+--- Comment #5 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-11 21:34:12 CET ---
+@ Assignee
+I think this bug was assigned correctly, but please confirm by putting &quot;OK&quot; on
+the whiteboard or by confirming in a comment
+
+--
+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="001613.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001615.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1614">[ date ]</a>
+ <a href="thread.html#1614">[ thread ]</a>
+ <a href="subject.html#1614">[ subject ]</a>
+ <a href="author.html#1614">[ 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-December/001615.html b/zarb-ml/mageia-webteam/2011-December/001615.html
new file mode 100644
index 000000000..f6df45860
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001615.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 252] Authentication does not work with email address
+ </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%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20111211221106.25933478E9%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="001614.html">
+ <LINK REL="Next" HREF="001616.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 252] Authentication does not work with email address</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20111211221106.25933478E9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 252] Authentication does not work with email address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 11 23:11:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001614.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="001616.html">[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1615">[ date ]</a>
+ <a href="thread.html#1615">[ thread ]</a>
+ <a href="subject.html#1615">[ subject ]</a>
+ <a href="author.html#1615">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">bgmilne at zarb.org</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="001614.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="001616.html">[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1615">[ date ]</a>
+ <a href="thread.html#1615">[ thread ]</a>
+ <a href="subject.html#1615">[ subject ]</a>
+ <a href="author.html#1615">[ 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-December/001616.html b/zarb-ml/mageia-webteam/2011-December/001616.html
new file mode 100644
index 000000000..447b0c00a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001616.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images
+ </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%203737%5D%20%5BNew%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3Cbug-3737-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="001615.html">
+ <LINK REL="Next" HREF="001617.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images</H1>
+ <B>Anssi Hannula</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203737%5D%20%5BNew%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3Cbug-3737-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 14 02:41:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001615.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="001617.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1616">[ date ]</a>
+ <a href="thread.html#1616">[ thread ]</a>
+ <a href="subject.html#1616">[ subject ]</a>
+ <a href="author.html#1616">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3737">https://bugs.mageia.org/show_bug.cgi?id=3737</A>
+
+ Summary: Blog entry contains large multi-megabyte images
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: blog.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">anssi.hannula at iki.fi</A>
+
+
+The latest blog entry from 1st Dec (
+<A HREF="http://blog.mageia.org/en/2011/12/01/mageia-at-jdll-2011/">http://blog.mageia.org/en/2011/12/01/mageia-at-jdll-2011/</A> ) contains embedded
+images in the multi-megabyte range, resized by the user browser.
+
+--
+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="001615.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="001617.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1616">[ date ]</a>
+ <a href="thread.html#1616">[ thread ]</a>
+ <a href="subject.html#1616">[ subject ]</a>
+ <a href="author.html#1616">[ 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-December/001617.html b/zarb-ml/mageia-webteam/2011-December/001617.html
new file mode 100644
index 000000000..5f3fd7568
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001617.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+ </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%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20111214015433.7197147919%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="001616.html">
+ <LINK REL="Next" HREF="001618.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20111214015433.7197147919%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 14 02:54:33 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001616.html">[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001618.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1617">[ date ]</a>
+ <a href="thread.html#1617">[ thread ]</a>
+ <a href="subject.html#1617">[ subject ]</a>
+ <a href="author.html#1617">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3737">https://bugs.mageia.org/show_bug.cgi?id=3737</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-12-14 03:54:33 CET ---
+Agreed, it would be better to resize the pic before embedding it into a blog
+which may be read by users with small bandwidth. We could upload the original
+pic somewhere on flickr or picasa for download if somebody wants the real
+thing.
+
+--
+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="001616.html">[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001618.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1617">[ date ]</a>
+ <a href="thread.html#1617">[ thread ]</a>
+ <a href="subject.html#1617">[ subject ]</a>
+ <a href="author.html#1617">[ 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-December/001618.html b/zarb-ml/mageia-webteam/2011-December/001618.html
new file mode 100644
index 000000000..98e091416
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001618.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+ </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%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20111214064731.86E404790E%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="001617.html">
+ <LINK REL="Next" HREF="001619.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20111214064731.86E404790E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 14 07:47:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001617.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001619.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1618">[ date ]</a>
+ <a href="thread.html#1618">[ thread ]</a>
+ <a href="subject.html#1618">[ subject ]</a>
+ <a href="author.html#1618">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3737">https://bugs.mageia.org/show_bug.cgi?id=3737</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>
+
+--- Comment #2 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2011-12-14 08:47:31 CET ---
+obgr_seneca 's blog entry contained a smaller version, but the fullsize image
+appeared to have been gone off the deep end...
+
+i donno if that's related
+
+--
+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="001617.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001619.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1618">[ date ]</a>
+ <a href="thread.html#1618">[ thread ]</a>
+ <a href="subject.html#1618">[ subject ]</a>
+ <a href="author.html#1618">[ 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-December/001619.html b/zarb-ml/mageia-webteam/2011-December/001619.html
new file mode 100644
index 000000000..4910ff482
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001619.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+ </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%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20111214082114.4E9EB4791F%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="001618.html">
+ <LINK REL="Next" HREF="001620.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20111214082114.4E9EB4791F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 14 09:21:14 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001618.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001620.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1619">[ date ]</a>
+ <a href="thread.html#1619">[ thread ]</a>
+ <a href="subject.html#1619">[ subject ]</a>
+ <a href="author.html#1619">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3737">https://bugs.mageia.org/show_bug.cgi?id=3737</A>
+
+--- Comment #3 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-12-14 10:21:14 CET ---
+Depends on how you do it:
+Copy&amp;paste the contents from the English blog as it looks to the reader or
+copy&amp;paste from the edit view in the English backend. In the first case you
+copy only the smaller version, in the second case you copy the link to the
+original including the 'downsize' parameters.
+
+--
+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="001618.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001620.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1619">[ date ]</a>
+ <a href="thread.html#1619">[ thread ]</a>
+ <a href="subject.html#1619">[ subject ]</a>
+ <a href="author.html#1619">[ 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-December/001620.html b/zarb-ml/mageia-webteam/2011-December/001620.html
new file mode 100644
index 000000000..667875d08
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001620.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+ </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%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20111214091703.0E72647927%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="001619.html">
+ <LINK REL="Next" HREF="001621.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20111214091703.0E72647927%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 14 10:17:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001619.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001621.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1620">[ date ]</a>
+ <a href="thread.html#1620">[ thread ]</a>
+ <a href="subject.html#1620">[ subject ]</a>
+ <a href="author.html#1620">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3737">https://bugs.mageia.org/show_bug.cgi?id=3737</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #4 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-12-14 10:17:02 CET ---
+@Romain: shouldn't we scale those images down and reupload them?
+
+--
+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="001619.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001621.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1620">[ date ]</a>
+ <a href="thread.html#1620">[ thread ]</a>
+ <a href="subject.html#1620">[ subject ]</a>
+ <a href="author.html#1620">[ 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-December/001621.html b/zarb-ml/mageia-webteam/2011-December/001621.html
new file mode 100644
index 000000000..400c29b76
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001621.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ </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%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111223205101.346AE482B7%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="001620.html">
+ <LINK REL="Next" HREF="001622.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111223205101.346AE482B7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 23 21:51:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001620.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001622.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1621">[ date ]</a>
+ <a href="thread.html#1621">[ thread ]</a>
+ <a href="subject.html#1621">[ subject ]</a>
+ <a href="author.html#1621">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+
+--- Comment #2 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-12-23 21:50:58 CET ---
+ping ping ping. i repeat: welcome page of all Mageia services is REALLY
+horrible, we can't maintain it this way... can anyone take care about 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001620.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001622.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1621">[ date ]</a>
+ <a href="thread.html#1621">[ thread ]</a>
+ <a href="subject.html#1621">[ subject ]</a>
+ <a href="author.html#1621">[ 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-December/001622.html b/zarb-ml/mageia-webteam/2011-December/001622.html
new file mode 100644
index 000000000..766def31d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001622.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20111223205208.1C643482C6%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="001621.html">
+ <LINK REL="Next" HREF="001636.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20111223205208.1C643482C6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 23 21:52:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001621.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001636.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1622">[ date ]</a>
+ <a href="thread.html#1622">[ thread ]</a>
+ <a href="subject.html#1622">[ subject ]</a>
+ <a href="author.html#1622">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #14 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-12-23 22:52:07 CET ---
+news?
+
+--
+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="001621.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001636.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1622">[ date ]</a>
+ <a href="thread.html#1622">[ thread ]</a>
+ <a href="subject.html#1622">[ subject ]</a>
+ <a href="author.html#1622">[ 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-December/001623.html b/zarb-ml/mageia-webteam/2011-December/001623.html
new file mode 100644
index 000000000..f63bd8287
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001623.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20111223220445.6721A48355%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="001639.html">
+ <LINK REL="Next" HREF="001627.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20111223220445.6721A48355%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 23 23:04:45 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001639.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001627.html">[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1623">[ date ]</a>
+ <a href="thread.html#1623">[ thread ]</a>
+ <a href="subject.html#1623">[ subject ]</a>
+ <a href="author.html#1623">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #15 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-23 23:04:43 CET ---
+(In reply to comment #13)
+&gt;<i> @ Assignee
+</I>&gt;<i> I think this bug was assigned correctly, but please confirm by putting &quot;OK&quot; on
+</I>&gt;<i> the whiteboard or by confirming in a comment
+</I>
+Setting to ASSIGNED status would be even better, if that doesn't give you
+problems with your workflow :)
+
+(In reply to comment #14)
+&gt;<i> news?
+</I>
+@ Marcello
+As you can see here <A HREF="https://bugs.mageia.org/show_bug.cgi?id=40">https://bugs.mageia.org/show_bug.cgi?id=40</A> D Morgan is
+working hard on the upgrade to Bugzilla 4.0.2
+That needs to be done before he can start resolving this bug.
+
+--
+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="001639.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001627.html">[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1623">[ date ]</a>
+ <a href="thread.html#1623">[ thread ]</a>
+ <a href="subject.html#1623">[ subject ]</a>
+ <a href="author.html#1623">[ 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-December/001624.html b/zarb-ml/mageia-webteam/2011-December/001624.html
new file mode 100644
index 000000000..0bf199705
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001624.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111224182804.CC48847A47%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="001625.html">
+ <LINK REL="Next" HREF="001626.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111224182804.CC48847A47%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 24 19:28:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001625.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI>Next message: <A HREF="001626.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1624">[ date ]</a>
+ <a href="thread.html#1624">[ thread ]</a>
+ <a href="subject.html#1624">[ subject ]</a>
+ <a href="author.html#1624">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</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">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-12-24 20:28:02 CET ---
+That's not what we need. What we need is to automatically assign bugs to
+package maintainer according to maintdb.
+
+--
+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="001625.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI>Next message: <A HREF="001626.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1624">[ date ]</a>
+ <a href="thread.html#1624">[ thread ]</a>
+ <a href="subject.html#1624">[ subject ]</a>
+ <a href="author.html#1624">[ 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-December/001625.html b/zarb-ml/mageia-webteam/2011-December/001625.html
new file mode 100644
index 000000000..353a06f21
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001625.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+ </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%203880%5D%20Mailing%20list%20subrscription%20is%0A%20impossible%3A%20link%20brings%20to%20blog%20post%20%22Server%20outage%22&In-Reply-To=%3C20111224164503.3659847A3C%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="001640.html">
+ <LINK REL="Next" HREF="001624.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203880%5D%20Mailing%20list%20subrscription%20is%0A%20impossible%3A%20link%20brings%20to%20blog%20post%20%22Server%20outage%22&In-Reply-To=%3C20111224164503.3659847A3C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 24 17:45:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001640.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001624.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1625">[ date ]</a>
+ <a href="thread.html#1625">[ thread ]</a>
+ <a href="subject.html#1625">[ subject ]</a>
+ <a href="author.html#1625">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3880">https://bugs.mageia.org/show_bug.cgi?id=3880</A>
+
+--- Comment #2 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-12-24 18:45:03 CET ---
+i thought it was the blog post of some months ago and i didn't read it, i'm
+sorry :)
+
+--
+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="001640.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001624.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1625">[ date ]</a>
+ <a href="thread.html#1625">[ thread ]</a>
+ <a href="subject.html#1625">[ subject ]</a>
+ <a href="author.html#1625">[ 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-December/001626.html b/zarb-ml/mageia-webteam/2011-December/001626.html
new file mode 100644
index 000000000..3a9244ac6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001626.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111226153006.061AF47AB2%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="001624.html">
+ <LINK REL="Next" HREF="001630.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111226153006.061AF47AB2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Dec 26 16:30:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001624.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001630.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1626">[ date ]</a>
+ <a href="thread.html#1626">[ thread ]</a>
+ <a href="subject.html#1626">[ subject ]</a>
+ <a href="author.html#1626">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #5 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-12-26 17:30:05 CET ---
+in reply to comment #2
+
+to do correctely what you think, it needs that every user know which package
+causes the issue, case that i don't think is common. other than this, if a
+package is abandoned or wrongly assigned to a person, that bug report goes
+lost. in my proposal the criteria of the Area that is used, prevents this
+issues and allows to a certain person to have a correct idea of:
+- currentely reported bugs involving that area;
+- priority of those bugs;
+- fast duplicates closing;
+- in general, better bugs management (because each person know everything
+involving his area of competence).
+
+
+in reply to comment #3
+
+we should simplify the user work, we shouldn't assume that user automatically
+searchs for dulpicates, it is a problem of the project contributors that can be
+resolved manually or automatically (as for firefox, that before the filling of
+the bug, shows similar bugs). in plus, you say that it doesn't work
+automatically, that explains itself one of the reason of the opening of this
+bug report.
+
+in reply to comment #4
+
+i would avoid the corrispondence maintainer-bug resolver, even if in theory
+this assumption should be verified. it happens a lot of time that a maintainer
+of a package doesn't resolve the related issues, meanwhile if we select an
+active contributor as &quot;hub&quot; he can resolve himself the packages or managing and
+assign them to other contributors.
+
+
+in a few words, i'm introducing the idea of &quot;process reengineering&quot; applied to
+bugzilla, that it's well known management theory to improve the work quality of
+a company.
+
+--
+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="001624.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001630.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1626">[ date ]</a>
+ <a href="thread.html#1626">[ thread ]</a>
+ <a href="subject.html#1626">[ subject ]</a>
+ <a href="author.html#1626">[ 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-December/001627.html b/zarb-ml/mageia-webteam/2011-December/001627.html
new file mode 100644
index 000000000..5a533cba2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001627.html
@@ -0,0 +1,113 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] [New] Improve component selection in 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%203879%5D%20%5BNew%5D%20Improve%20component%20selection%20in%0A%09Bugzilla&In-Reply-To=%3Cbug-3879-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="001623.html">
+ <LINK REL="Next" HREF="001644.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20%5BNew%5D%20Improve%20component%20selection%20in%0A%09Bugzilla&In-Reply-To=%3Cbug-3879-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 24 15:41:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001623.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001644.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1627">[ date ]</a>
+ <a href="thread.html#1627">[ thread ]</a>
+ <a href="subject.html#1627">[ subject ]</a>
+ <a href="author.html#1627">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+ Summary: Improve component selection in Bugzilla
+ 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">marcello.anni at alice.it</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>
+ RPM Package: bugzilla
+
+
+Description of problem:
+
+Hi,
+
+i would like to propose a different component selection in bugzilla.
+
+beside the entry &quot;rpm packages&quot; should appear another list box with this
+entries:
+
+- subsystem
+- audio
+- video
+- office
+- desktop enviroment (other list box?)
+- internet
+- accessibility
+- other/ i don't know.
+
+Each category should be assigned by default to one persone (or group of people)
+that are involved in that area (e.g. Colin Guthier for Audio entry).
+
+This way we can have all the bugs triaged in the best way, avoiding work
+dulpication and bugs duplication. What do you think about it?
+
+
+
+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="001623.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001644.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1627">[ date ]</a>
+ <a href="thread.html#1627">[ thread ]</a>
+ <a href="subject.html#1627">[ subject ]</a>
+ <a href="author.html#1627">[ 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-December/001628.html b/zarb-ml/mageia-webteam/2011-December/001628.html
new file mode 100644
index 000000000..ab836492d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001628.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+ </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%203880%5D%20%5BNew%5D%20Mailing%20list%20subrscription%20is%0A%20impossible%3A%20link%20brings%20to%20blog%20post%20%22Server%20outage%22&In-Reply-To=%3Cbug-3880-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="001634.html">
+ <LINK REL="Next" HREF="001643.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203880%5D%20%5BNew%5D%20Mailing%20list%20subrscription%20is%0A%20impossible%3A%20link%20brings%20to%20blog%20post%20%22Server%20outage%22&In-Reply-To=%3Cbug-3880-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 24 15:46:07 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001634.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001643.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1628">[ date ]</a>
+ <a href="thread.html#1628">[ thread ]</a>
+ <a href="subject.html#1628">[ subject ]</a>
+ <a href="author.html#1628">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3880">https://bugs.mageia.org/show_bug.cgi?id=3880</A>
+
+ Summary: Mailing list subrscription is impossible: link brings
+ to blog post &quot;Server outage&quot;
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: critical
+ 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">marcello.anni at alice.it</A>
+
+
+Description of problem:
+
+is it a know bug? try it out:
+
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-bugsquad">https://www.mageia.org/mailman/listinfo/mageia-bugsquad</A>
+
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">https://www.mageia.org/mailman/listinfo/mageia-dev</A>
+
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-marketing">https://www.mageia.org/mailman/listinfo/mageia-marketing</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="001634.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001643.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1628">[ date ]</a>
+ <a href="thread.html#1628">[ thread ]</a>
+ <a href="subject.html#1628">[ subject ]</a>
+ <a href="author.html#1628">[ 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-December/001629.html b/zarb-ml/mageia-webteam/2011-December/001629.html
new file mode 100644
index 000000000..edc1af705
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001629.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227194323.26D8A47AF7%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="001631.html">
+ <LINK REL="Next" HREF="001641.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227194323.26D8A47AF7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 27 20:43:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001631.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001641.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1629">[ date ]</a>
+ <a href="thread.html#1629">[ thread ]</a>
+ <a href="subject.html#1629">[ subject ]</a>
+ <a href="author.html#1629">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #22 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-12-27 20:43:20 CET ---
+(In reply to comment #21)
+&gt;<i> Set to assigned. Still need time to code...
+</I>
+Yes, some things take time, sometimes longer than a whole distribution - even
+if it's just a mod.
+
+--
+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="001631.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001641.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1629">[ date ]</a>
+ <a href="thread.html#1629">[ thread ]</a>
+ <a href="subject.html#1629">[ subject ]</a>
+ <a href="author.html#1629">[ 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-December/001630.html b/zarb-ml/mageia-webteam/2011-December/001630.html
new file mode 100644
index 000000000..0c12dd785
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001630.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227190730.B2E9547AF3%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="001626.html">
+ <LINK REL="Next" HREF="001631.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227190730.B2E9547AF3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 27 20:07:30 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001626.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001631.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1630">[ date ]</a>
+ <a href="thread.html#1630">[ thread ]</a>
+ <a href="subject.html#1630">[ subject ]</a>
+ <a href="author.html#1630">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #20 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-27 21:07:29 CET ---
+pinging because this bug still has the NEW status and nothing happened to it
+since august.
+
+
+@ webteam
+
+Please set status to ASSIGNED if you think this bug was assigned correctly. If
+for work flow reasons you can't do that, then please put OK on the whiteboard
+instead.
+
+
+I knew many forum users want unlimited edit time, I didn't know some leave or
+left because of not having it. Are there also people who'll leave when this bug
+gets 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="001626.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001631.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1630">[ date ]</a>
+ <a href="thread.html#1630">[ thread ]</a>
+ <a href="subject.html#1630">[ subject ]</a>
+ <a href="author.html#1630">[ 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-December/001631.html b/zarb-ml/mageia-webteam/2011-December/001631.html
new file mode 100644
index 000000000..1a6ff770d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001631.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227193258.5106347871%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="001630.html">
+ <LINK REL="Next" HREF="001629.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Maat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227193258.5106347871%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 27 20:32:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001630.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001629.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1631">[ date ]</a>
+ <a href="thread.html#1631">[ thread ]</a>
+ <a href="subject.html#1631">[ subject ]</a>
+ <a href="author.html#1631">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+
+--- Comment #21 from Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; 2011-12-27 20:32:57 CET ---
+Set to assigned. Still need time to code...
+
+The help of guys who can mod phpbb easily and maintain mods on the long run is
+welcome :)
+
+--
+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="001630.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001629.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1631">[ date ]</a>
+ <a href="thread.html#1631">[ thread ]</a>
+ <a href="subject.html#1631">[ subject ]</a>
+ <a href="author.html#1631">[ 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-December/001632.html b/zarb-ml/mageia-webteam/2011-December/001632.html
new file mode 100644
index 000000000..5eff524b7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001632.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ </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%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111223211947.44C58482F2%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="001638.html">
+ <LINK REL="Next" HREF="001639.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111223211947.44C58482F2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 23 22:19:47 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001638.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001639.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1632">[ date ]</a>
+ <a href="thread.html#1632">[ thread ]</a>
+ <a href="subject.html#1632">[ subject ]</a>
+ <a href="author.html#1632">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-12-23 22:19:47 CET ---
+feel free to send patch
+
+--
+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="001638.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001639.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1632">[ date ]</a>
+ <a href="thread.html#1632">[ thread ]</a>
+ <a href="subject.html#1632">[ subject ]</a>
+ <a href="author.html#1632">[ 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-December/001633.html b/zarb-ml/mageia-webteam/2011-December/001633.html
new file mode 100644
index 000000000..b7724cf86
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001633.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111225004811.7F96447A5D%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="001642.html">
+ <LINK REL="Next" HREF="001646.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111225004811.7F96447A5D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 25 01:48:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001642.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001646.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1633">[ date ]</a>
+ <a href="thread.html#1633">[ thread ]</a>
+ <a href="subject.html#1633">[ subject ]</a>
+ <a href="author.html#1633">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>
+
+--- Comment #4 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2011-12-25 02:48:10 CET ---
+Starting with this idea, maybe we could have an automatic cc list by rpm
+category, which is known from the rpm.
+So there would be no need to add a field to bugzilla, which avoids a source of
+errors.
+This would require setting up a structure similar to the maintainer list,
+but a 1:n package group : cc-list.
+It could be used instead of (or as well as) co-maintainers for packages.
+Probably more useful than co-maintainers, as a particular category would
+involve a group of packages, as suggested in this bug report.
+
+(Probably better to implement after setting up automatically assigning by
+maintainer.)
+
+--
+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="001642.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001646.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1633">[ date ]</a>
+ <a href="thread.html#1633">[ thread ]</a>
+ <a href="subject.html#1633">[ subject ]</a>
+ <a href="author.html#1633">[ 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-December/001634.html b/zarb-ml/mageia-webteam/2011-December/001634.html
new file mode 100644
index 000000000..136f1a759
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001634.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111227221906.220D347B0A%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="001645.html">
+ <LINK REL="Next" HREF="001628.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111227221906.220D347B0A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 27 23:19:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001645.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001628.html">[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1634">[ date ]</a>
+ <a href="thread.html#1634">[ thread ]</a>
+ <a href="subject.html#1634">[ subject ]</a>
+ <a href="author.html#1634">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #8 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-27 23:19:05 CET ---
+
+
+How does having an extra list to choose from, work in other bugzilla's?
+
+Does anybody happen to know that? I would love to see some statistics :)
+
+--
+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="001645.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001628.html">[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1634">[ date ]</a>
+ <a href="thread.html#1634">[ thread ]</a>
+ <a href="subject.html#1634">[ subject ]</a>
+ <a href="author.html#1634">[ 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-December/001635.html b/zarb-ml/mageia-webteam/2011-December/001635.html
new file mode 100644
index 000000000..e4a8ae578
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001635.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+ </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.2&In-Reply-To=%3C20111224150158.3BC7A47A26%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="001643.html">
+ <LINK REL="Next" HREF="001640.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2</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.2&In-Reply-To=%3C20111224150158.3BC7A47A26%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 24 16:01:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001643.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI>Next message: <A HREF="001640.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1635">[ date ]</a>
+ <a href="thread.html#1635">[ thread ]</a>
+ <a href="subject.html#1635">[ subject ]</a>
+ <a href="author.html#1635">[ 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 #21 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-12-24 17:01:58 CET ---
+thank you Dexter!! i'm looking for the new year's gift :-P
+
+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="001643.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI>Next message: <A HREF="001640.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1635">[ date ]</a>
+ <a href="thread.html#1635">[ thread ]</a>
+ <a href="subject.html#1635">[ subject ]</a>
+ <a href="author.html#1635">[ 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-December/001636.html b/zarb-ml/mageia-webteam/2011-December/001636.html
new file mode 100644
index 000000000..658558503
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001636.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+ </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.2&In-Reply-To=%3C20111223205745.944A3482D4%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="001622.html">
+ <LINK REL="Next" HREF="001638.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2</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.2&In-Reply-To=%3C20111223205745.944A3482D4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 23 21:57:45 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001622.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001638.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1636">[ date ]</a>
+ <a href="thread.html#1636">[ thread ]</a>
+ <a href="subject.html#1636">[ subject ]</a>
+ <a href="author.html#1636">[ 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 #18 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-12-23 21:57:45 CET ---
+news? i think this is a extremely useful improvement necessary to debug at the
+best mageia 2 development process.
+
+--
+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="001622.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001638.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1636">[ date ]</a>
+ <a href="thread.html#1636">[ thread ]</a>
+ <a href="subject.html#1636">[ subject ]</a>
+ <a href="author.html#1636">[ 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-December/001637.html b/zarb-ml/mageia-webteam/2011-December/001637.html
new file mode 100644
index 000000000..4fe839b29
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001637.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227204825.82E4047B06%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="001641.html">
+ <LINK REL="Next" HREF="001647.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227204825.82E4047B06%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 27 21:48:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001641.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001647.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1637">[ date ]</a>
+ <a href="thread.html#1637">[ thread ]</a>
+ <a href="subject.html#1637">[ subject ]</a>
+ <a href="author.html#1637">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #24 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-12-27 21:48:23 CET ---
+Yes, sure. Maybe I have a different picture. No need to discuss this here. So I
+say, yes, my comment was premature and not needed nor helpful anyway.
+
+--
+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="001641.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001647.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1637">[ date ]</a>
+ <a href="thread.html#1637">[ thread ]</a>
+ <a href="subject.html#1637">[ subject ]</a>
+ <a href="author.html#1637">[ 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-December/001638.html b/zarb-ml/mageia-webteam/2011-December/001638.html
new file mode 100644
index 000000000..e6f4ab32d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001638.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+ </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.2&In-Reply-To=%3C20111223210823.DE174482E7%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="001636.html">
+ <LINK REL="Next" HREF="001632.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2</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.2&In-Reply-To=%3C20111223210823.DE174482E7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 23 22:08:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001636.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001632.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1638">[ date ]</a>
+ <a href="thread.html#1638">[ thread ]</a>
+ <a href="subject.html#1638">[ subject ]</a>
+ <a href="author.html#1638">[ 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 #19 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-12-23 23:08:22 CET ---
+i am working on it, and i am trying to prepare a test server to test migration
+before having it in &quot;poduction&quot;.
+
+
+i hope to finish soon ( maybe a new year gift ( or almost ) )
+
+--
+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="001636.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001632.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1638">[ date ]</a>
+ <a href="thread.html#1638">[ thread ]</a>
+ <a href="subject.html#1638">[ subject ]</a>
+ <a href="author.html#1638">[ 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-December/001639.html b/zarb-ml/mageia-webteam/2011-December/001639.html
new file mode 100644
index 000000000..84ed5a0db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001639.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+ </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.2&In-Reply-To=%3C20111223213427.429A847B21%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="001632.html">
+ <LINK REL="Next" HREF="001623.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0.2&In-Reply-To=%3C20111223213427.429A847B21%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 23 22:34:27 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001632.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001623.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1639">[ date ]</a>
+ <a href="thread.html#1639">[ thread ]</a>
+ <a href="subject.html#1639">[ subject ]</a>
+ <a href="author.html#1639">[ 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 #20 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-23 22:34:27 CET ---
+(In reply to comment #19)
+&gt;<i> i am working on it, and i am trying to prepare a test server to test migration
+</I>&gt;<i> before having it in &quot;poduction&quot;.
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> i hope to finish soon ( maybe a new year gift ( or almost ) )
+</I>
+[22:32] &lt;Sophie&gt; dmorgan (Mageia) maintains 1120 rpms
+
+Dexter, I don't understand where you find the time to work on it, but this
+makes me very, very happy.
+
+Thanks a lot!
+
+--
+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="001632.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001623.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1639">[ date ]</a>
+ <a href="thread.html#1639">[ thread ]</a>
+ <a href="subject.html#1639">[ subject ]</a>
+ <a href="author.html#1639">[ 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-December/001640.html b/zarb-ml/mageia-webteam/2011-December/001640.html
new file mode 100644
index 000000000..fd4262e8d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001640.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ </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%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111224150437.27FA247A26%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="001635.html">
+ <LINK REL="Next" HREF="001625.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111224150437.27FA247A26%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 24 16:04:37 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001635.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001625.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1640">[ date ]</a>
+ <a href="thread.html#1640">[ thread ]</a>
+ <a href="subject.html#1640">[ subject ]</a>
+ <a href="author.html#1640">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</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-12-24 17:04:37 CET ---
+unfortunately i don't have web-design/developping knowledges, otherwise i had
+already proposed a patch... but is it so difficult to do it? i'm not asking the
+best home page out there, i would be satisfied with a &quot;normal&quot; home page. shall
+we involve artwork team?
+
+--
+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="001635.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001625.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1640">[ date ]</a>
+ <a href="thread.html#1640">[ thread ]</a>
+ <a href="subject.html#1640">[ subject ]</a>
+ <a href="author.html#1640">[ 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-December/001641.html b/zarb-ml/mageia-webteam/2011-December/001641.html
new file mode 100644
index 000000000..72e1f806e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001641.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227200846.F260B47B00%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="001629.html">
+ <LINK REL="Next" HREF="001637.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20111227200846.F260B47B00%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 27 21:08:46 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001629.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001637.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1641">[ date ]</a>
+ <a href="thread.html#1641">[ thread ]</a>
+ <a href="subject.html#1641">[ subject ]</a>
+ <a href="author.html#1641">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #23 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-27 21:08:46 CET ---
+(In reply to comment #22)
+&gt;<i> (In reply to comment #21)
+</I>&gt;<i> &gt; Set to assigned. Still need time to code...
+</I>&gt;<i>
+</I>&gt;<i> Yes, some things take time, sometimes longer than a whole distribution - even
+</I>&gt;<i> if it's just a mod.
+</I>
+Dear wobo,
+
+Maybe this isn't &quot;just a mod&quot; for him. Did you never have an &quot;easy&quot; task that
+for some reason or another wasn't easy for you?
+
+Please look at his last words:
+
+(In reply to comment #21)
+
+&gt;<i> The help of guys who can mod phpbb easily and maintain mods on the long run is
+</I>&gt;<i> welcome :)
+</I>
+If he wanted this bug to never be fixed, he wouldn't have asked for help!
+
+Regards,
+Marja
+
+--
+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="001629.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001637.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1641">[ date ]</a>
+ <a href="thread.html#1641">[ thread ]</a>
+ <a href="subject.html#1641">[ subject ]</a>
+ <a href="author.html#1641">[ 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-December/001642.html b/zarb-ml/mageia-webteam/2011-December/001642.html
new file mode 100644
index 000000000..19981b281
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001642.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111224230249.49C4B47A57%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="001644.html">
+ <LINK REL="Next" HREF="001633.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111224230249.49C4B47A57%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 25 00:02:49 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001644.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001633.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1642">[ date ]</a>
+ <a href="thread.html#1642">[ thread ]</a>
+ <a href="subject.html#1642">[ subject ]</a>
+ <a href="author.html#1642">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-12-25 00:02:46 CET ---
+and for avoid duplicate (it's not really an big issue, as it's always better to
+make a bug instead of nothing), people should make a quick search before send a
+new one.
+
+&gt;<i>This way we can have all the bugs triaged in the best way
+</I>what is not good currently ? (beside its doesn't work automatically)
+
+--
+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="001644.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001633.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1642">[ date ]</a>
+ <a href="thread.html#1642">[ thread ]</a>
+ <a href="subject.html#1642">[ subject ]</a>
+ <a href="author.html#1642">[ 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-December/001643.html b/zarb-ml/mageia-webteam/2011-December/001643.html
new file mode 100644
index 000000000..fee320031
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001643.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+ </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%203880%5D%20Mailing%20list%20subrscription%20is%0A%20impossible%3A%20link%20brings%20to%20blog%20post%20%22Server%20outage%22&In-Reply-To=%3C20111224162833.4679047A49%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="001628.html">
+ <LINK REL="Next" HREF="001635.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203880%5D%20Mailing%20list%20subrscription%20is%0A%20impossible%3A%20link%20brings%20to%20blog%20post%20%22Server%20outage%22&In-Reply-To=%3C20111224162833.4679047A49%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 24 17:28:33 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001628.html">[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI>Next message: <A HREF="001635.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1643">[ date ]</a>
+ <a href="thread.html#1643">[ thread ]</a>
+ <a href="subject.html#1643">[ subject ]</a>
+ <a href="author.html#1643">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3880">https://bugs.mageia.org/show_bug.cgi?id=3880</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |INVALID
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-12-24 18:28:30 CET ---
+have you read the blog post ?
+
+yes the server behind mailman is down
+
+--
+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="001628.html">[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A></li>
+ <LI>Next message: <A HREF="001635.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1643">[ date ]</a>
+ <a href="thread.html#1643">[ thread ]</a>
+ <a href="subject.html#1643">[ subject ]</a>
+ <a href="author.html#1643">[ 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-December/001644.html b/zarb-ml/mageia-webteam/2011-December/001644.html
new file mode 100644
index 000000000..a3c94f57d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001644.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111224144245.819E647A1A%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="001627.html">
+ <LINK REL="Next" HREF="001642.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111224144245.819E647A1A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 24 15:42:45 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001627.html">[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001642.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1644">[ date ]</a>
+ <a href="thread.html#1644">[ thread ]</a>
+ <a href="subject.html#1644">[ subject ]</a>
+ <a href="author.html#1644">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</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-12-24 15:42:45 CET ---
+Created attachment 1291
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=1291">https://bugs.mageia.org/attachment.cgi?id=1291</A>
+Example of new organisation
+
+--
+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="001627.html">[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001642.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1644">[ date ]</a>
+ <a href="thread.html#1644">[ thread ]</a>
+ <a href="subject.html#1644">[ subject ]</a>
+ <a href="author.html#1644">[ 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-December/001645.html b/zarb-ml/mageia-webteam/2011-December/001645.html
new file mode 100644
index 000000000..6bdd50ad0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001645.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111227213716.3971D47B06%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="001646.html">
+ <LINK REL="Next" HREF="001634.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111227213716.3971D47B06%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 27 22:37:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001646.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001634.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1645">[ date ]</a>
+ <a href="thread.html#1645">[ thread ]</a>
+ <a href="subject.html#1645">[ subject ]</a>
+ <a href="author.html#1645">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #7 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-12-27 23:37:15 CET ---
+in reply to comment #6
+
+thank you Andr&#233; for appreciating my idea : ) my proposal is only a way to
+imoprove the bug triaging, but even using your method of the comment #4 the
+result is the near the same, so i will be happy the same if you could implement
+this whish in reality.... next step is: is it ok for everyone? is there anyone
+who wants care about implementing this?
+
+--
+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="001646.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001634.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1645">[ date ]</a>
+ <a href="thread.html#1645">[ thread ]</a>
+ <a href="subject.html#1645">[ subject ]</a>
+ <a href="author.html#1645">[ 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-December/001646.html b/zarb-ml/mageia-webteam/2011-December/001646.html
new file mode 100644
index 000000000..496f92c2b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001646.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111227062613.E4BC347ADC%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="001633.html">
+ <LINK REL="Next" HREF="001645.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20111227062613.E4BC347ADC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 27 07:26:13 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001633.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001645.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1646">[ date ]</a>
+ <a href="thread.html#1646">[ thread ]</a>
+ <a href="subject.html#1646">[ subject ]</a>
+ <a href="author.html#1646">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #6 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2011-12-27 07:26:10 CET ---
+(In reply to comment #5)
+&gt;<i> in reply to comment #2
+</I>&gt;<i>
+</I>&gt;<i> to do correctely what you think, it needs that every user know which package
+</I>&gt;<i> causes the issue, ...
+</I>
+Indeed, in many cases a user doesn't know which package causes this issue. But
+part of the role of the bugsquad is to determine which package in such cases,
+which they do very well.
+And without determining the package involved, it isn't possible to resolve the
+issue.
+
+
+&gt;<i> in reply to comment #3
+</I>&gt;<i>
+</I>&gt;<i> we should simplify the user work, we shouldn't assume that user automatically
+</I>&gt;<i> searchs for dulpicates, it is a problem of the project contributors that can be
+</I>
+When the user doesn't find duplicates (which is very frequent), this is another
+part of the role of the bugsquad. Which I also think they do very well.
+
+
+&gt;<i> in reply to comment #4
+</I>&gt;<i>
+</I>&gt;<i> i would avoid the corrispondence maintainer-bug resolver, even if in theory
+</I>&gt;<i> this assumption should be verified. it happens a lot of time that a maintainer
+</I>&gt;<i> of a package doesn't resolve the related issues, meanwhile if we select an
+</I>&gt;<i> active contributor as &quot;hub&quot; he can resolve himself the packages or managing and
+</I>&gt;<i> assign them to other contributors.
+</I>
+My variation on your idea only uses the rpm category of the package involved
+to connect to a list of parties to be cc'd.
+Note that sometimes a problem can seem to be related to one factor (say sound),
+but in fact is related to another factor in a required package, which is the
+actual package to be corrected/changed.
+So my variation automates your suggested process, without requiring a separate
+field in bugzilla, and avoids a mistaken category.
+Otherwise, unless I'm mistaken, there wouldn't be a lot of difference in what
+is involved to implement it.
+It doesn't depend at all on the reaction of the maintainer of the package.
+
+In fact, I very much appreciate your idea, as without it I probably wouldn't
+have thought of my variation, which I think could help better maintain
+packages, particularly when the maintainer is slow to respond. As well as
+providing more support to unmaintained packages.
+
+--
+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="001633.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001645.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1646">[ date ]</a>
+ <a href="thread.html#1646">[ thread ]</a>
+ <a href="subject.html#1646">[ subject ]</a>
+ <a href="author.html#1646">[ 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-December/001647.html b/zarb-ml/mageia-webteam/2011-December/001647.html
new file mode 100644
index 000000000..852c26832
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001647.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+ </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.3&In-Reply-To=%3C20111229104956.9440B47A96%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="001637.html">
+ <LINK REL="Next" HREF="001648.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3</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.3&In-Reply-To=%3C20111229104956.9440B47A96%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 29 11:49:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001637.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001648.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1647">[ date ]</a>
+ <a href="thread.html#1647">[ thread ]</a>
+ <a href="subject.html#1647">[ subject ]</a>
+ <a href="author.html#1647">[ 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>
+
+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
+----------------------------------------------------------------------------
+ Summary|Upgrade to Bugzilla 4.0.2 |Upgrade to Bugzilla 4.0.3
+
+--- Comment #22 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-12-29 12:49:56 CET ---
+We released Bugzilla 4.0.3 last night, with two more security fixes. We also
+released Bugzilla 4.2rc1. Maybe you could jump to it 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="001637.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001648.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1647">[ date ]</a>
+ <a href="thread.html#1647">[ thread ]</a>
+ <a href="subject.html#1647">[ subject ]</a>
+ <a href="author.html#1647">[ 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-December/001648.html b/zarb-ml/mageia-webteam/2011-December/001648.html
new file mode 100644
index 000000000..45dca186a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001648.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+ </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.3&In-Reply-To=%3C20111229113012.E68A847AA8%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="001647.html">
+ <LINK REL="Next" HREF="001649.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3</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.3&In-Reply-To=%3C20111229113012.E68A847AA8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 29 12:30:12 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001647.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001649.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1648">[ date ]</a>
+ <a href="thread.html#1648">[ thread ]</a>
+ <a href="subject.html#1648">[ subject ]</a>
+ <a href="author.html#1648">[ 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 #23 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-12-29 12:30:12 CET ---
+our templates will be compatible ?
+
+--
+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="001647.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001649.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1648">[ date ]</a>
+ <a href="thread.html#1648">[ thread ]</a>
+ <a href="subject.html#1648">[ subject ]</a>
+ <a href="author.html#1648">[ 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-December/001649.html b/zarb-ml/mageia-webteam/2011-December/001649.html
new file mode 100644
index 000000000..a96b2665c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001649.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111229134936.3DB4D47A4D%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="001648.html">
+ <LINK REL="Next" HREF="001650.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111229134936.3DB4D47A4D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 29 14:49:36 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001648.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001650.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1649">[ date ]</a>
+ <a href="thread.html#1649">[ thread ]</a>
+ <a href="subject.html#1649">[ subject ]</a>
+ <a href="author.html#1649">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-29 14:49:35 CET ---
+@ Dieter
+@ Romain
+
+Was there ever a discussion about this issue?
+
+I wasn't aware of it before, but <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">updates-announce at ml.mageia.org</A> mails don't
+show the version number of an update in the subject line. Would it be possible
+to add that? (And whom should I ask?)
+
+@ Romain
+
+BTW, please set status to ASSIGNED if you think this bug was assigned to the
+webteam correctly. If for work flow reasons you can't do that, then please put
+OK on the whiteboard instead.
+
+--
+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="001648.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001650.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1649">[ date ]</a>
+ <a href="thread.html#1649">[ thread ]</a>
+ <a href="subject.html#1649">[ subject ]</a>
+ <a href="author.html#1649">[ 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-December/001650.html b/zarb-ml/mageia-webteam/2011-December/001650.html
new file mode 100644
index 000000000..a1aa94dd3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001650.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111230142256.8603347B28%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="001649.html">
+ <LINK REL="Next" HREF="001651.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111230142256.8603347B28%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 30 15:22:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001649.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001651.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1650">[ date ]</a>
+ <a href="thread.html#1650">[ thread ]</a>
+ <a href="subject.html#1650">[ subject ]</a>
+ <a href="author.html#1650">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>
+
+--- Comment #15 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2011-12-30 16:22:56 CET ---
+bump
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001649.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001651.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1650">[ date ]</a>
+ <a href="thread.html#1650">[ thread ]</a>
+ <a href="subject.html#1650">[ subject ]</a>
+ <a href="author.html#1650">[ 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-December/001651.html b/zarb-ml/mageia-webteam/2011-December/001651.html
new file mode 100644
index 000000000..7a50487b2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001651.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111230142358.4E71F47B23%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="001650.html">
+ <LINK REL="Next" HREF="001652.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111230142358.4E71F47B23%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 30 15:23:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001650.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001652.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1651">[ date ]</a>
+ <a href="thread.html#1651">[ thread ]</a>
+ <a href="subject.html#1651">[ subject ]</a>
+ <a href="author.html#1651">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #16 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2011-12-30 15:23:58 CET ---
+btw: didn't we have some static map manually made for some communcations? i
+remember someone asking me for my location for that...
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001650.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001652.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1651">[ date ]</a>
+ <a href="thread.html#1651">[ thread ]</a>
+ <a href="subject.html#1651">[ subject ]</a>
+ <a href="author.html#1651">[ 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-December/001652.html b/zarb-ml/mageia-webteam/2011-December/001652.html
new file mode 100644
index 000000000..42b55eb0a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001652.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111230214946.2077947B1F%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="001651.html">
+ <LINK REL="Next" HREF="001653.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Dieter Rogiest</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111230214946.2077947B1F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 30 22:49:46 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001651.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001653.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1652">[ date ]</a>
+ <a href="thread.html#1652">[ thread ]</a>
+ <a href="subject.html#1652">[ subject ]</a>
+ <a href="author.html#1652">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+--- Comment #3 from Dieter Rogiest &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dieter.rogiest at telenet.be</A>&gt; 2011-12-30 22:49:45 CET ---
+My apologies Marja and Romain,
+
+real life for me is now not going well and all my home computer work I fail to
+address time for it.
+I have not discussed about this bug any further.
+I still find it important for Mageia to have a website where the latest
+features of its current distribution with important updates can be easily seen.
+
+I don't understand your question about &quot;the version number of an update in the
+subject line&quot;&quot;. Do you mean that you don't see the &quot;4.6.5&quot; in the subject line
+between &quot;KDE&quot; and &quot;updates&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="001651.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001653.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1652">[ date ]</a>
+ <a href="thread.html#1652">[ thread ]</a>
+ <a href="subject.html#1652">[ subject ]</a>
+ <a href="author.html#1652">[ 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-December/001653.html b/zarb-ml/mageia-webteam/2011-December/001653.html
new file mode 100644
index 000000000..ed3f666ec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001653.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111230224126.65FD947B1A%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="001652.html">
+ <LINK REL="Next" HREF="001654.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111230224126.65FD947B1A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 30 23:41:26 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001652.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001654.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1653">[ date ]</a>
+ <a href="thread.html#1653">[ thread ]</a>
+ <a href="subject.html#1653">[ subject ]</a>
+ <a href="author.html#1653">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-30 23:41:26 CET ---
+(In reply to comment #3)
+&gt;<i> My apologies Marja and Romain,
+</I>&gt;<i>
+</I>&gt;<i> real life for me is now not going well and all my home computer work I fail to
+</I>&gt;<i> address time for it.
+</I>
+
+Very best wishes for 2012, I hope that life will be a lot easier on you, and
+that you'll be healthy and happy and not in need of anything important.
+
+&gt;<i> I have not discussed about this bug any further.
+</I>&gt;<i> I still find it important for Mageia to have a website where the latest
+</I>&gt;<i> features of its current distribution with important updates can be easily seen.
+</I>
+What is important for one person, might be trivial for the next person and the
+other way around.
+
+We do have the anouncement on this page now:
+<A HREF="http://www.mageia.org/en/support/">http://www.mageia.org/en/support/</A>
+
+It links to the updates-anounce mailing list
+<A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi/info/updates-announce">https://ml.mageia.org/wwsympa-wrapper.fcgi/info/updates-announce</A>
+
+&gt;<i>
+</I>&gt;<i> I don't understand your question about &quot;the version number of an update in the
+</I>&gt;<i> subject line&quot;&quot;. Do you mean that you don't see the &quot;4.6.5&quot; in the subject line
+</I>&gt;<i> between &quot;KDE&quot; and &quot;updates&quot;?
+</I>
+Almost, when I receive such a mail, all I see is, e.g.:
+[updates-announce] Package update: kdebase4-workspace (core)
+and even when I open the mail I don't see the new version number.
+I would like to see e.g.:
+[updates-announce]: kdebase4-workspace-4.6.5-1.4 (core)
+
+But I guess I should ask this as an enhancement in a seperate bug report :)
+
+Anyway, I saw you don't receive those mails. Can you please subscribe to that
+list, and report back what you think about 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001652.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001654.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1653">[ date ]</a>
+ <a href="thread.html#1653">[ thread ]</a>
+ <a href="subject.html#1653">[ subject ]</a>
+ <a href="author.html#1653">[ 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-December/001654.html b/zarb-ml/mageia-webteam/2011-December/001654.html
new file mode 100644
index 000000000..36fb0efd2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001654.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111230230009.17ECE47B18%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="001653.html">
+ <LINK REL="Next" HREF="001655.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Dieter Rogiest</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111230230009.17ECE47B18%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 00:00:09 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001653.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001655.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1654">[ date ]</a>
+ <a href="thread.html#1654">[ thread ]</a>
+ <a href="subject.html#1654">[ subject ]</a>
+ <a href="author.html#1654">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+--- Comment #5 from Dieter Rogiest &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dieter.rogiest at telenet.be</A>&gt; 2011-12-31 00:00:08 CET ---
+Thank you, best wishes for you too of course.
+
+I've subscribed to the updates-announce mailing list now and see what you mean
+but I can't help you with that. I do not know who you need to contact for that.
+
+Regards
+
+--
+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="001653.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001655.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1654">[ date ]</a>
+ <a href="thread.html#1654">[ thread ]</a>
+ <a href="subject.html#1654">[ subject ]</a>
+ <a href="author.html#1654">[ 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-December/001655.html b/zarb-ml/mageia-webteam/2011-December/001655.html
new file mode 100644
index 000000000..1e8b5cbe2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001655.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231081050.BC17E47B1D%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="001654.html">
+ <LINK REL="Next" HREF="001656.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231081050.BC17E47B1D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 09:10:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001654.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001656.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1655">[ date ]</a>
+ <a href="thread.html#1655">[ thread ]</a>
+ <a href="subject.html#1655">[ subject ]</a>
+ <a href="author.html#1655">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>
+
+--- Comment #6 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2011-12-31 09:10:49 CET ---
+has there been a separate enhancement bug request? it should block this one.
+
+allthough i think this modification might need to be done by sysadmin team?
+(unsure)
+
+--
+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="001654.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001656.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1655">[ date ]</a>
+ <a href="thread.html#1655">[ thread ]</a>
+ <a href="subject.html#1655">[ subject ]</a>
+ <a href="author.html#1655">[ 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-December/001656.html b/zarb-ml/mageia-webteam/2011-December/001656.html
new file mode 100644
index 000000000..ad0ce6589
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001656.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231101058.C846C47B24%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="001655.html">
+ <LINK REL="Next" HREF="001657.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231101058.C846C47B24%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 11:10:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001655.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001657.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1656">[ date ]</a>
+ <a href="thread.html#1656">[ thread ]</a>
+ <a href="subject.html#1656">[ subject ]</a>
+ <a href="author.html#1656">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Depends on| |3964
+
+--
+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="001655.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001657.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1656">[ date ]</a>
+ <a href="thread.html#1656">[ thread ]</a>
+ <a href="subject.html#1656">[ subject ]</a>
+ <a href="author.html#1656">[ 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-December/001657.html b/zarb-ml/mageia-webteam/2011-December/001657.html
new file mode 100644
index 000000000..109c3e4a6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001657.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111231120851.0D18047B24%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="001656.html">
+ <LINK REL="Next" HREF="001658.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111231120851.0D18047B24%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 13:08:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001656.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001658.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1657">[ date ]</a>
+ <a href="thread.html#1657">[ thread ]</a>
+ <a href="subject.html#1657">[ subject ]</a>
+ <a href="author.html#1657">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #17 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-31 13:08:50 CET ---
+It still requires an update in the LDAP schema; I have a skeleton app
+(<A HREF="https://github.com/rdalverny/victor/">https://github.com/rdalverny/victor/</A>) getting info out of the LDAP into
+user/group pages + a map, but it still needs the LDAP to provide the info +
+some more caching works.
+
+No static map either for the time being.
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001656.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001658.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1657">[ date ]</a>
+ <a href="thread.html#1657">[ thread ]</a>
+ <a href="subject.html#1657">[ subject ]</a>
+ <a href="author.html#1657">[ 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-December/001658.html b/zarb-ml/mageia-webteam/2011-December/001658.html
new file mode 100644
index 000000000..d773865d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001658.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231122615.D40C247B23%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="001657.html">
+ <LINK REL="Next" HREF="001659.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231122615.D40C247B23%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 13:26:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001657.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001659.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1658">[ date ]</a>
+ <a href="thread.html#1658">[ thread ]</a>
+ <a href="subject.html#1658">[ subject ]</a>
+ <a href="author.html#1658">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+--- Comment #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-31 13:26:15 CET ---
+We have two (non exclusive from each other) solutions at least:
+ - publish a RSS feed sourcing from the same source as the ml + version numbers
+as Marja suggests;
+ - publish on the release page a list of &quot;critical&quot; components with their
+original version (at release time) + their last updated version in this
+release.
+
+Other ideas?
+
+@Marja: assigning the bug before having someone actually taking care of it
+(asking/coding/testing) won't be really helpful. We're still discussing it
+here.
+
+--
+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="001657.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001659.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1658">[ date ]</a>
+ <a href="thread.html#1658">[ thread ]</a>
+ <a href="subject.html#1658">[ subject ]</a>
+ <a href="author.html#1658">[ 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-December/001659.html b/zarb-ml/mageia-webteam/2011-December/001659.html
new file mode 100644
index 000000000..6aa44f257
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001659.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ </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%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111231123235.2BACD47B1F%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="001658.html">
+ <LINK REL="Next" HREF="001660.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111231123235.2BACD47B1F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 13:32:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001658.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001660.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1659">[ date ]</a>
+ <a href="thread.html#1659">[ thread ]</a>
+ <a href="subject.html#1659">[ subject ]</a>
+ <a href="author.html#1659">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</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 #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-31 13:32:34 CET ---
+We expect to update the home (among other parts) for Mageia 2 (and even
+before), so that will happen in the meantime - while, indeed, you may send a
+patch, a sketch or an idea. Just popping up and saying &quot;it's REALLY horrible&quot;
+doesn't help much.
+
+--
+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="001658.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001660.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1659">[ date ]</a>
+ <a href="thread.html#1659">[ thread ]</a>
+ <a href="subject.html#1659">[ subject ]</a>
+ <a href="author.html#1659">[ 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-December/001660.html b/zarb-ml/mageia-webteam/2011-December/001660.html
new file mode 100644
index 000000000..3042fd1fa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001660.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231123807.105A447B1D%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="001659.html">
+ <LINK REL="Next" HREF="001661.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231123807.105A447B1D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 13:38:07 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001659.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001661.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1660">[ date ]</a>
+ <a href="thread.html#1660">[ thread ]</a>
+ <a href="subject.html#1660">[ subject ]</a>
+ <a href="author.html#1660">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+--- Comment #8 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-31 14:38:06 CET ---
+(In reply to comment #7)
+&gt;<i> We have two (non exclusive from each other) solutions at least:
+</I>&gt;<i> - publish a RSS feed sourcing from the same source as the ml + version numbers
+</I>&gt;<i> as Marja suggests;
+</I>&gt;<i> - publish on the release page a list of &quot;critical&quot; components with their
+</I>&gt;<i> original version (at release time) + their last updated version in this
+</I>&gt;<i> release.
+</I>&gt;<i>
+</I>
+I think it would be great to have both :)
+
+&gt;<i> Other ideas?
+</I>
+Yep, what do you consider to be &quot;critical&quot; components? All security updates, of
+course, and what else?
+
+&gt;<i>
+</I>&gt;<i> @Marja: assigning the bug before having someone actually taking care of it
+</I>&gt;<i> (asking/coding/testing) won't be really helpful. We're still discussing it
+</I>&gt;<i> here.
+</I>
+I understand. So it is no problem if I ping again when nothing happened to it
+for a while :D
+
+--
+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="001659.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001661.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1660">[ date ]</a>
+ <a href="thread.html#1660">[ thread ]</a>
+ <a href="subject.html#1660">[ subject ]</a>
+ <a href="author.html#1660">[ 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-December/001661.html b/zarb-ml/mageia-webteam/2011-December/001661.html
new file mode 100644
index 000000000..7dcd0f5ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001661.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ </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%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111231124905.01DDD47B1F%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="001660.html">
+ <LINK REL="Next" HREF="001662.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111231124905.01DDD47B1F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 13:49:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001660.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001662.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1661">[ date ]</a>
+ <a href="thread.html#1661">[ thread ]</a>
+ <a href="subject.html#1661">[ subject ]</a>
+ <a href="author.html#1661">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #6 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-12-31 14:49:02 CET ---
+Apart from Romain's and Manuel's hint at the option to help improving
+something, apart from the fact that usually everything can be improved this way
+or the other, &quot;horrible&quot; is a statement of individual taste. As for me I see
+nothing &quot;horrible&quot; in the most Mageia web pages.
+
+Anyhow, please, if you start changing,
+ - do not overload the pages, keep them clear and crisp
+ - keep them 'barrier free'
+ - no fancy flash stuff (it's not a McDonald or CocaCola site)
+ - keep them fast and clear enough (aka do not add heavy graphics!) for mobile
+devices
+
+Thx
+
+--
+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="001660.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001662.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1661">[ date ]</a>
+ <a href="thread.html#1661">[ thread ]</a>
+ <a href="subject.html#1661">[ subject ]</a>
+ <a href="author.html#1661">[ 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-December/001662.html b/zarb-ml/mageia-webteam/2011-December/001662.html
new file mode 100644
index 000000000..f9b32e0e0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001662.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231125023.2517D47B1C%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="001661.html">
+ <LINK REL="Next" HREF="001663.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231125023.2517D47B1C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 13:50:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001661.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001663.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1662">[ date ]</a>
+ <a href="thread.html#1662">[ thread ]</a>
+ <a href="subject.html#1662">[ subject ]</a>
+ <a href="author.html#1662">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+--- Comment #9 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-12-31 14:50:23 CET ---
+(In reply to comment #8)
+&gt;<i> Yep, what do you consider to be &quot;critical&quot; components? All security updates, of
+</I>&gt;<i> course, and what else?
+</I>
+&quot;critical&quot; was not the right word; I meant, big things like the kernel, KDE,
+GNOME, LibreOffice, Firefox, etc. that may draw interest; it's a arbitrarily
+limited list of component to show the version that's available in a up-to-date
+Mageia given 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001661.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001663.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1662">[ date ]</a>
+ <a href="thread.html#1662">[ thread ]</a>
+ <a href="subject.html#1662">[ subject ]</a>
+ <a href="author.html#1662">[ 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-December/001663.html b/zarb-ml/mageia-webteam/2011-December/001663.html
new file mode 100644
index 000000000..c7fba3be6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001663.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231133417.7178B47B2C%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="001662.html">
+ <LINK REL="Next" HREF="001664.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231133417.7178B47B2C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 14:34:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001662.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001664.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1663">[ date ]</a>
+ <a href="thread.html#1663">[ thread ]</a>
+ <a href="subject.html#1663">[ subject ]</a>
+ <a href="author.html#1663">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+--- Comment #10 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-12-31 14:34:17 CET ---
+(In reply to comment #9)
+
+&gt;<i> big things like the kernel, KDE,
+</I>&gt;<i> GNOME, LibreOffice, Firefox, etc. that may draw interest; it's a arbitrarily
+</I>&gt;<i> limited list of component to show the version that's available in a up-to-date
+</I>&gt;<i> Mageia given release.
+</I>
+This list isn't too long and I don't see anything in it that shouldn't be there
+:<i>)
+</I>
+--
+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="001662.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001664.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1663">[ date ]</a>
+ <a href="thread.html#1663">[ thread ]</a>
+ <a href="subject.html#1663">[ subject ]</a>
+ <a href="author.html#1663">[ 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-December/001664.html b/zarb-ml/mageia-webteam/2011-December/001664.html
new file mode 100644
index 000000000..a0674e147
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/001664.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111231204847.6BF4047B38%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="001663.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111231204847.6BF4047B38%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 31 21:48:47 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001663.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1664">[ date ]</a>
+ <a href="thread.html#1664">[ thread ]</a>
+ <a href="subject.html#1664">[ subject ]</a>
+ <a href="author.html#1664">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #18 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2011-12-31 21:48:43 CET ---
+did anyone make the schema attributes (quite easy) and add them to the
+openldap? is there a subrequest that should be blocking this one? is someone
+assigned to do this?
+
+--
+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 QA contact for the bug.
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001663.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1664">[ date ]</a>
+ <a href="thread.html#1664">[ thread ]</a>
+ <a href="subject.html#1664">[ subject ]</a>
+ <a href="author.html#1664">[ 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-December/author.html b/zarb-ml/mageia-webteam/2011-December/author.html
new file mode 100644
index 000000000..448022759
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/author.html
@@ -0,0 +1,477 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2011 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 2011 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>Fri Dec 2 11:26:52 CET 2011</i><br>
+ <b>Ending:</b> <i>Sat Dec 31 21:48:47 CET 2011</i><br>
+ <b>Messages:</b> 86<p>
+ <ul>
+
+<LI><A HREF="001611.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1611">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001618.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1618">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001650.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1650">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001651.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1651">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001655.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1655">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001664.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1664">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001621.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1621">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001622.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1622">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001636.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1636">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001627.html">[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla
+</A><A NAME="1627">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001644.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1644">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001628.html">[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1628">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001635.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1635">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001640.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1640">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001625.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1625">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001626.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1626">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001645.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1645">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001617.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1617">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001619.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1619">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001629.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1629">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001637.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1637">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001661.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1661">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001647.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1647">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001620.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1620">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001605.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1605">&nbsp;</A>
+<I>Dick Gevers
+</I>
+
+<LI><A HREF="001616.html">[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images
+</A><A NAME="1616">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<LI><A HREF="001579.html">[Mageia-webteam] [Bug 3576] [New] Add the keyword Errata
+</A><A NAME="1579">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001581.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1581">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001583.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1583">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001585.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1585">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001601.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1601">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001632.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1632">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001643.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1643">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001642.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1642">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001631.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1631">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001638.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1638">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001648.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1648">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001652.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1652">&nbsp;</A>
+<I>Dieter Rogiest
+</I>
+
+<LI><A HREF="001654.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1654">&nbsp;</A>
+<I>Dieter Rogiest
+</I>
+
+<LI><A HREF="001599.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1599">&nbsp;</A>
+<I>Kamil Rytarowski
+</I>
+
+<LI><A HREF="001590.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1590">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001592.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1592">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001594.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1594">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001624.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1624">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001602.html">[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management
+</A><A NAME="1602">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001603.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1603">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001604.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1604">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001607.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1607">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001608.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1608">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001609.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1609">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001610.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1610">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001612.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1612">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001613.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1613">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001614.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1614">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001639.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1639">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001623.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1623">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001630.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1630">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001641.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1641">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001634.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1634">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001649.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1649">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001653.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1653">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001656.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1656">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001660.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1660">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001663.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1663">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001587.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1587">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001597.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1597">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001633.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1633">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001646.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1646">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001580.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1580">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001582.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1582">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001584.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1584">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001586.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1586">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001588.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1588">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001593.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1593">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001595.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1595">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001596.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1596">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001598.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1598">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001600.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1600">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001606.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1606">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001615.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1615">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001657.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1657">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001658.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1658">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001659.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1659">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001662.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1662">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001589.html">[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1589">&nbsp;</A>
+<I>diego w
+</I>
+
+<LI><A HREF="001591.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1591">&nbsp;</A>
+<I>diego w
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Dec 31 21:48:47 CET 2011</i><br>
+ <b>Archived on:</b> <i>Sat Dec 31 21:48:52 CET 2011</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/2011-December/date.html b/zarb-ml/mageia-webteam/2011-December/date.html
new file mode 100644
index 000000000..7187cb0ff
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/date.html
@@ -0,0 +1,477 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2011 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 2011 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>Fri Dec 2 11:26:52 CET 2011</i><br>
+ <b>Ending:</b> <i>Sat Dec 31 21:48:47 CET 2011</i><br>
+ <b>Messages:</b> 86<p>
+ <ul>
+
+<LI><A HREF="001579.html">[Mageia-webteam] [Bug 3576] [New] Add the keyword Errata
+</A><A NAME="1579">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001580.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1580">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001581.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1581">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001582.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1582">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001583.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1583">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001584.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1584">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001585.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1585">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001586.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1586">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001587.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1587">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001588.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1588">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001589.html">[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1589">&nbsp;</A>
+<I>diego w
+</I>
+
+<LI><A HREF="001590.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1590">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001591.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1591">&nbsp;</A>
+<I>diego w
+</I>
+
+<LI><A HREF="001592.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1592">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001593.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1593">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001594.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1594">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001595.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1595">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001596.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1596">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001597.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1597">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001598.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1598">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001599.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1599">&nbsp;</A>
+<I>Kamil Rytarowski
+</I>
+
+<LI><A HREF="001600.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1600">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001601.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1601">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001602.html">[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management
+</A><A NAME="1602">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001603.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1603">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001604.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1604">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001605.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1605">&nbsp;</A>
+<I>Dick Gevers
+</I>
+
+<LI><A HREF="001606.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1606">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001607.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1607">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001608.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1608">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001609.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1609">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001610.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1610">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001611.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1611">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001612.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1612">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001613.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1613">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001614.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1614">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001615.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1615">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001616.html">[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images
+</A><A NAME="1616">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<LI><A HREF="001617.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1617">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001618.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1618">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001619.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1619">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001620.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1620">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001621.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1621">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001622.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1622">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001636.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1636">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001638.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1638">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001632.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1632">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001639.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1639">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001623.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1623">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001627.html">[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla
+</A><A NAME="1627">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001644.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1644">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001628.html">[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1628">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001635.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1635">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001640.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1640">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001643.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1643">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001625.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1625">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001624.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1624">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001642.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1642">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001633.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1633">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001626.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1626">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001646.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1646">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001630.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1630">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001631.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1631">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001629.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1629">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001641.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1641">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001637.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1637">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001645.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1645">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001634.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1634">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001647.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1647">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001648.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1648">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001649.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1649">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001650.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1650">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001651.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1651">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001652.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1652">&nbsp;</A>
+<I>Dieter Rogiest
+</I>
+
+<LI><A HREF="001653.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1653">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001654.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1654">&nbsp;</A>
+<I>Dieter Rogiest
+</I>
+
+<LI><A HREF="001655.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1655">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001656.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1656">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001657.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1657">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001658.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1658">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001659.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1659">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001660.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1660">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001661.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1661">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001662.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1662">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001663.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1663">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001664.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1664">&nbsp;</A>
+<I>AL13N
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Dec 31 21:48:47 CET 2011</i><br>
+ <b>Archived on:</b> <i>Sat Dec 31 21:48:52 CET 2011</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/2011-December/index.html b/zarb-ml/mageia-webteam/2011-December/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-December/subject.html b/zarb-ml/mageia-webteam/2011-December/subject.html
new file mode 100644
index 000000000..bab3cf46c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/subject.html
@@ -0,0 +1,477 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2011 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 2011 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>Fri Dec 2 11:26:52 CET 2011</i><br>
+ <b>Ending:</b> <i>Sat Dec 31 21:48:47 CET 2011</i><br>
+ <b>Messages:</b> 86<p>
+ <ul>
+
+<LI><A HREF="001605.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1605">&nbsp;</A>
+<I>Dick Gevers
+</I>
+
+<LI><A HREF="001621.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1621">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001632.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1632">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001640.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1640">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001659.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1659">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001661.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1661">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001610.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1610">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001611.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1611">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001613.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1613">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001622.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1622">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001623.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1623">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001630.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1630">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001631.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1631">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001629.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1629">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001641.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1641">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001637.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1637">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001614.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1614">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001615.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1615">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001649.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1649">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001652.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1652">&nbsp;</A>
+<I>Dieter Rogiest
+</I>
+
+<LI><A HREF="001653.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1653">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001654.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1654">&nbsp;</A>
+<I>Dieter Rogiest
+</I>
+
+<LI><A HREF="001655.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1655">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001656.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1656">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001658.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1658">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001660.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1660">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001662.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1662">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001663.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1663">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001608.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1608">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001587.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1587">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001588.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1588">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001592.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1592">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001593.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1593">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001594.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1594">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001595.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1595">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001596.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1596">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001597.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1597">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001598.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1598">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001579.html">[Mageia-webteam] [Bug 3576] [New] Add the keyword Errata
+</A><A NAME="1579">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001580.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1580">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001581.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1581">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001582.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1582">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001583.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1583">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001584.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1584">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001585.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1585">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001586.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1586">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001589.html">[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1589">&nbsp;</A>
+<I>diego w
+</I>
+
+<LI><A HREF="001590.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1590">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001591.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1591">&nbsp;</A>
+<I>diego w
+</I>
+
+<LI><A HREF="001599.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1599">&nbsp;</A>
+<I>Kamil Rytarowski
+</I>
+
+<LI><A HREF="001600.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1600">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001601.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1601">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001602.html">[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management
+</A><A NAME="1602">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001603.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1603">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001604.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1604">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001606.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1606">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001609.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1609">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001616.html">[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images
+</A><A NAME="1616">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<LI><A HREF="001617.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1617">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001618.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1618">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001619.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1619">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001620.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1620">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001607.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1607">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001627.html">[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla
+</A><A NAME="1627">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001644.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1644">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001624.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1624">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001642.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1642">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001633.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1633">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001626.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1626">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001646.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1646">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001645.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1645">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001634.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1634">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001628.html">[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1628">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001643.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1643">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001625.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1625">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001636.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1636">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001638.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1638">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001639.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1639">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001635.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1635">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001647.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1647">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001648.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1648">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001612.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1612">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001650.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1650">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001651.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1651">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001657.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1657">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001664.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1664">&nbsp;</A>
+<I>AL13N
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Dec 31 21:48:47 CET 2011</i><br>
+ <b>Archived on:</b> <i>Sat Dec 31 21:48:52 CET 2011</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/2011-December/thread.html b/zarb-ml/mageia-webteam/2011-December/thread.html
new file mode 100644
index 000000000..694a02628
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-December/thread.html
@@ -0,0 +1,575 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2011 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 2011 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>Fri Dec 2 11:26:52 CET 2011</i><br>
+ <b>Ending:</b> <i>Sat Dec 31 21:48:47 CET 2011</i><br>
+ <b>Messages:</b> 86<p>
+ <ul>
+
+<!--0 01322821612- -->
+<LI><A HREF="001579.html">[Mageia-webteam] [Bug 3576] [New] Add the keyword Errata
+</A><A NAME="1579">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01322821612-01322821680- -->
+<LI><A HREF="001580.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1580">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01322821612-01322822667- -->
+<LI><A HREF="001581.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1581">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01322821612-01322823146- -->
+<LI><A HREF="001582.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1582">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01322821612-01322823882- -->
+<LI><A HREF="001583.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1583">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01322821612-01322824503- -->
+<LI><A HREF="001584.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1584">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01322821612-01322825134- -->
+<LI><A HREF="001585.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1585">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01322821612-01322840574- -->
+<LI><A HREF="001586.html">[Mageia-webteam] [Bug 3576] Add the keyword Errata
+</A><A NAME="1586">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01322971198- -->
+<LI><A HREF="001587.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1587">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--0 01323013549- -->
+<LI><A HREF="001588.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1588">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01323024295- -->
+<LI><A HREF="001589.html">[Mageia-webteam] [Bug 3608] [New] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1589">&nbsp;</A>
+<I>diego w
+</I>
+
+<UL>
+<!--1 01323024295-01323024787- -->
+<LI><A HREF="001590.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1590">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01323024295-01323025311- -->
+<LI><A HREF="001591.html">[Mageia-webteam] [Bug 3608] Request for a short tutorial on how to build RPMS for Mageia
+</A><A NAME="1591">&nbsp;</A>
+<I>diego w
+</I>
+
+</UL>
+<!--0 01323031933- -->
+<LI><A HREF="001592.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1592">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01323036243- -->
+<LI><A HREF="001593.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1593">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01323036845- -->
+<LI><A HREF="001594.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1594">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01323040219- -->
+<LI><A HREF="001595.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1595">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01323040279- -->
+<LI><A HREF="001596.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1596">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01323064733- -->
+<LI><A HREF="001597.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1597">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--0 01323071427- -->
+<LI><A HREF="001598.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1598">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01323153223- -->
+<LI><A HREF="001599.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1599">&nbsp;</A>
+<I>Kamil Rytarowski
+</I>
+
+<!--0 01323165831- -->
+<LI><A HREF="001600.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1600">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01323170767- -->
+<LI><A HREF="001601.html">[Mageia-webteam] [Bug 3638] &quot;You can help!&quot; links to the old wiki
+</A><A NAME="1601">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01323430328- -->
+<LI><A HREF="001602.html">[Mageia-webteam] [Bug 3674] [New] No good FAQ link for Mageia identity management
+</A><A NAME="1602">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<UL>
+<!--1 01323430328-01323430442- -->
+<LI><A HREF="001603.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1603">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01323430328-01323431417- -->
+<LI><A HREF="001604.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1604">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01323430328-01323448817- -->
+<LI><A HREF="001606.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1606">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01323430328-01323605564- -->
+<LI><A HREF="001609.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1609">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01323445695- -->
+<LI><A HREF="001605.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1605">&nbsp;</A>
+<I>Dick Gevers
+</I>
+
+<!--0 01323528212- -->
+<LI><A HREF="001607.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1607">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01323552812- -->
+<LI><A HREF="001608.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1608">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01323614488- -->
+<LI><A HREF="001610.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1610">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01323618135- -->
+<LI><A HREF="001611.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1611">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01323623741- -->
+<LI><A HREF="001612.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1612">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01323635592- -->
+<LI><A HREF="001613.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1613">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01323635652- -->
+<LI><A HREF="001614.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1614">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01323641466- -->
+<LI><A HREF="001615.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1615">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01323826862- -->
+<LI><A HREF="001616.html">[Mageia-webteam] [Bug 3737] [New] Blog entry contains large multi-megabyte images
+</A><A NAME="1616">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<UL>
+<!--1 01323826862-01323827673- -->
+<LI><A HREF="001617.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1617">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01323826862-01323845251- -->
+<LI><A HREF="001618.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1618">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--1 01323826862-01323850874- -->
+<LI><A HREF="001619.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1619">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01323826862-01323854223- -->
+<LI><A HREF="001620.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1620">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+<!--0 01324673461- -->
+<LI><A HREF="001621.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1621">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01324673528- -->
+<LI><A HREF="001622.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1622">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01324673865- -->
+<LI><A HREF="001636.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1636">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01324674503- -->
+<LI><A HREF="001638.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1638">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--0 01324675187- -->
+<LI><A HREF="001632.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1632">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01324676067- -->
+<LI><A HREF="001639.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1639">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01324677885- -->
+<LI><A HREF="001623.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1623">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01324737698- -->
+<LI><A HREF="001627.html">[Mageia-webteam] [Bug 3879] [New] Improve component selection in Bugzilla
+</A><A NAME="1627">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<UL>
+<!--1 01324737698-01324737765- -->
+<LI><A HREF="001644.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1644">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--1 01324737698-01324767769- -->
+<LI><A HREF="001642.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1642">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01324737698-01324774091- -->
+<LI><A HREF="001633.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1633">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--1 01324737698-01324967173- -->
+<LI><A HREF="001646.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1646">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--1 01324737698-01325021836- -->
+<LI><A HREF="001645.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1645">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--1 01324737698-01325024346- -->
+<LI><A HREF="001634.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1634">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01324737967- -->
+<LI><A HREF="001628.html">[Mageia-webteam] [Bug 3880] [New] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1628">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<UL>
+<!--1 01324737967-01324744113- -->
+<LI><A HREF="001643.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1643">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01324738918- -->
+<LI><A HREF="001635.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1635">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01324739077- -->
+<LI><A HREF="001640.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1640">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01324745103- -->
+<LI><A HREF="001625.html">[Mageia-webteam] [Bug 3880] Mailing list subrscription is impossible: link brings to blog post &quot;Server outage&quot;
+</A><A NAME="1625">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01324751284- -->
+<LI><A HREF="001624.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1624">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01324913405- -->
+<LI><A HREF="001626.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1626">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01325012850- -->
+<LI><A HREF="001630.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1630">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325014378- -->
+<LI><A HREF="001631.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1631">&nbsp;</A>
+<I>Maat
+</I>
+
+<!--0 01325015003- -->
+<LI><A HREF="001629.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1629">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--0 01325016526- -->
+<LI><A HREF="001641.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1641">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325018905- -->
+<LI><A HREF="001637.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1637">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--0 01325155796- -->
+<LI><A HREF="001647.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1647">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01325158212- -->
+<LI><A HREF="001648.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1648">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--0 01325166576- -->
+<LI><A HREF="001649.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1649">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325254976- -->
+<LI><A HREF="001650.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1650">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01325255038- -->
+<LI><A HREF="001651.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1651">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01325281786- -->
+<LI><A HREF="001652.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1652">&nbsp;</A>
+<I>Dieter Rogiest
+</I>
+
+<!--0 01325284886- -->
+<LI><A HREF="001653.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1653">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325286009- -->
+<LI><A HREF="001654.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1654">&nbsp;</A>
+<I>Dieter Rogiest
+</I>
+
+<!--0 01325319050- -->
+<LI><A HREF="001655.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1655">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01325326258- -->
+<LI><A HREF="001656.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1656">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325333331- -->
+<LI><A HREF="001657.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1657">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01325334375- -->
+<LI><A HREF="001658.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1658">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01325334755- -->
+<LI><A HREF="001659.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1659">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01325335087- -->
+<LI><A HREF="001660.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1660">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325335744- -->
+<LI><A HREF="001661.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1661">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--0 01325335823- -->
+<LI><A HREF="001662.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1662">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01325338457- -->
+<LI><A HREF="001663.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1663">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325364527- -->
+<LI><A HREF="001664.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1664">&nbsp;</A>
+<I>AL13N
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Dec 31 21:48:47 CET 2011</i><br>
+ <b>Archived on:</b> <i>Sat Dec 31 21:48:52 CET 2011</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-February.txt.gz b/zarb-ml/mageia-webteam/2011-February.txt.gz
new file mode 100644
index 000000000..b90dde3c3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-February/000209.html b/zarb-ml/mageia-webteam/2011-February/000209.html
new file mode 100644
index 000000000..7a0756826
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000209.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 6 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%206%20meeting&In-Reply-To=%3CAANLkTinXm2nXbDkXmhVG%3Dn3jf%2Bo4O528oVuvA%2BhiiyFK%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="000210.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 6 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%206%20meeting&In-Reply-To=%3CAANLkTinXm2nXbDkXmhVG%3Dn3jf%2Bo4O528oVuvA%2BhiiyFK%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 6 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Feb 8 19:05:17 CET 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="000210.html">[Mageia-webteam] 2011/week 6 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#209">[ date ]</a>
+ <a href="thread.html#209">[ thread ]</a>
+ <a href="subject.html#209">[ subject ]</a>
+ <a href="author.html#209">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi guys,
+
+webteam meeting tomorrow 14:00 UTC, #mageia-web as usual.
+
+Please prepare your points and tasks, we'll make a full review and see
+how we go forward from there. Please list below topics you would like
+to see discussed further too.
+
+Thanks!
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="000210.html">[Mageia-webteam] 2011/week 6 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#209">[ date ]</a>
+ <a href="thread.html#209">[ thread ]</a>
+ <a href="subject.html#209">[ subject ]</a>
+ <a href="author.html#209">[ 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-February/000210.html b/zarb-ml/mageia-webteam/2011-February/000210.html
new file mode 100644
index 000000000..e5627f961
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000210.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 6 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%206%20meeting&In-Reply-To=%3C201102092225.28322.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="000209.html">
+ <LINK REL="Next" HREF="000211.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 6 meeting</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%206%20meeting&In-Reply-To=%3C201102092225.28322.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] 2011/week 6 meeting">stormi at laposte.net
+ </A><BR>
+ <I>Wed Feb 9 22:25:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000209.html">[Mageia-webteam] 2011/week 6 meeting
+</A></li>
+ <LI>Next message: <A HREF="000211.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#210">[ date ]</a>
+ <a href="thread.html#210">[ thread ]</a>
+ <a href="subject.html#210">[ subject ]</a>
+ <a href="author.html#210">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 8 f&#233;vrier 2011 19:05:17, Romain d'Alverny a &#233;crit :
+&gt;<i> Hi guys,
+</I>&gt;<i>
+</I>&gt;<i> webteam meeting tomorrow 14:00 UTC, #mageia-web as usual.
+</I>&gt;<i>
+</I>&gt;<i> Please prepare your points and tasks, we'll make a full review and see
+</I>&gt;<i> how we go forward from there. Please list below topics you would like
+</I>&gt;<i> to see discussed further too.
+</I>&gt;<i>
+</I>&gt;<i> Thanks!
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>
+Meeting notes :
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-09-14.09.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-09-14.09.html</A>
+
+Samuel
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000209.html">[Mageia-webteam] 2011/week 6 meeting
+</A></li>
+ <LI>Next message: <A HREF="000211.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#210">[ date ]</a>
+ <a href="thread.html#210">[ thread ]</a>
+ <a href="subject.html#210">[ subject ]</a>
+ <a href="author.html#210">[ 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-February/000211.html b/zarb-ml/mageia-webteam/2011-February/000211.html
new file mode 100644
index 000000000..29febf948
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000211.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Permissions and procedures
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Permissions%20and%20procedures&In-Reply-To=%3CAANLkTi%3DnJ_i2f%2Bsgt7N4K3p9-LE35%2B3DjUB8-oQ1FDOh%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="000210.html">
+ <LINK REL="Next" HREF="000212.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Permissions and procedures</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Permissions%20and%20procedures&In-Reply-To=%3CAANLkTi%3DnJ_i2f%2Bsgt7N4K3p9-LE35%2B3DjUB8-oQ1FDOh%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Permissions and procedures">burger at webgis.de
+ </A><BR>
+ <I>Thu Feb 10 21:02:14 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000210.html">[Mageia-webteam] 2011/week 6 meeting
+</A></li>
+ <LI>Next message: <A HREF="000212.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#211">[ date ]</a>
+ <a href="thread.html#211">[ thread ]</a>
+ <a href="subject.html#211">[ subject ]</a>
+ <a href="author.html#211">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Excuse this strange mail...
+
+---------- Weitergeleitete Nachricht ----------
+Von: &quot;Oliver Burger&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">burger at webgis.de</A>&gt;
+Datum: 10.02.2011 20:57
+Betreff: Permissions and procedures
+An: &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-web at mageia.org</A>&gt;
+
+As discussed in the meeting yesterday, i should have permission to access
+the website. I already have an svn account and my key should be known.
+
+In addition @rda and @damsweb: you wanted to tell me sth. about the
+procedure of adding things to the website (like the release page).
+
+Please excuse the html mail, i only have my smart phone just now.
+
+Oliver aka obgr_seneca
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110210/7f42c0a9/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000210.html">[Mageia-webteam] 2011/week 6 meeting
+</A></li>
+ <LI>Next message: <A HREF="000212.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#211">[ date ]</a>
+ <a href="thread.html#211">[ thread ]</a>
+ <a href="subject.html#211">[ subject ]</a>
+ <a href="author.html#211">[ 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-February/000212.html b/zarb-ml/mageia-webteam/2011-February/000212.html
new file mode 100644
index 000000000..9ef886d29
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000212.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Permissions and procedures
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Permissions%20and%20procedures&In-Reply-To=%3CAANLkTinTiZr0Asj_ECL3JN7BPLyWBwcv%3Df4d503hubwz%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="000211.html">
+ <LINK REL="Next" HREF="000213.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Permissions and procedures</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Permissions%20and%20procedures&In-Reply-To=%3CAANLkTinTiZr0Asj_ECL3JN7BPLyWBwcv%3Df4d503hubwz%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Permissions and procedures">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Feb 11 00:49:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000211.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI>Next message: <A HREF="000213.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#212">[ date ]</a>
+ <a href="thread.html#212">[ thread ]</a>
+ <a href="subject.html#212">[ subject ]</a>
+ <a href="author.html#212">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Feb 10, 2011 at 21:02, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">burger at webgis.de</A>&gt; wrote:
+&gt;<i> Excuse this strange mail...
+</I>
+No pb. Thanks for the notice, we'll see that tomorrow and Damien will
+guide you through the next steps next week.
+
+Romain
+
+&gt;<i> ---------- Weitergeleitete Nachricht ----------
+</I>&gt;<i> Von: &quot;Oliver Burger&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">burger at webgis.de</A>&gt;
+</I>&gt;<i> Datum: 10.02.2011 20:57
+</I>&gt;<i> Betreff: Permissions and procedures
+</I>&gt;<i> An: &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-web at mageia.org</A>&gt;
+</I>&gt;<i>
+</I>&gt;<i> As discussed in the meeting yesterday, i should have permission to access
+</I>&gt;<i> the website. I already have an svn account and my key should be known.
+</I>&gt;<i>
+</I>&gt;<i> In addition @rda and @damsweb: you wanted to tell me sth. about the
+</I>&gt;<i> procedure of adding things to the website (like the release page).
+</I>&gt;<i>
+</I>&gt;<i> Please excuse the html mail, i only have my smart phone just now.
+</I>&gt;<i>
+</I>&gt;<i> Oliver aka obgr_seneca
+</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></PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000211.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI>Next message: <A HREF="000213.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#212">[ date ]</a>
+ <a href="thread.html#212">[ thread ]</a>
+ <a href="subject.html#212">[ subject ]</a>
+ <a href="author.html#212">[ 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-February/000213.html b/zarb-ml/mageia-webteam/2011-February/000213.html
new file mode 100644
index 000000000..60772d60f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000213.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Permissions and procedures
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Permissions%20and%20procedures&In-Reply-To=%3C201102110911.51979.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="000212.html">
+ <LINK REL="Next" HREF="000214.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Permissions and procedures</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Permissions%20and%20procedures&In-Reply-To=%3C201102110911.51979.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Permissions and procedures">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Fri Feb 11 09:11:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000212.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI>Next message: <A HREF="000214.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#213">[ date ]</a>
+ <a href="thread.html#213">[ thread ]</a>
+ <a href="subject.html#213">[ subject ]</a>
+ <a href="author.html#213">[ 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 2011-02-11
+&gt;<i> On Thu, Feb 10, 2011 at 21:02, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">burger at webgis.de</A>&gt;
+</I>wrote:
+&gt;<i> &gt; Excuse this strange mail...
+</I>&gt;<i>
+</I>&gt;<i> No pb. Thanks for the notice, we'll see that tomorrow and Damien
+</I>&gt;<i> will guide you through the next steps next week.
+</I>Thanks...
+
+I only had my android phone and I am not that fluent in writing mails
+with it...
+
+Oliver
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000212.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI>Next message: <A HREF="000214.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#213">[ date ]</a>
+ <a href="thread.html#213">[ thread ]</a>
+ <a href="subject.html#213">[ subject ]</a>
+ <a href="author.html#213">[ 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-February/000214.html b/zarb-ml/mageia-webteam/2011-February/000214.html
new file mode 100644
index 000000000..b374d5c3b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000214.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] checklist of web services/issues for alpha 1
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3CAANLkTinY-7vsYA2MumLwW1dUidBuWLHgQmkOpj4BQ3Li%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="000213.html">
+ <LINK REL="Next" HREF="000215.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] checklist of web services/issues for alpha 1</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3CAANLkTinY-7vsYA2MumLwW1dUidBuWLHgQmkOpj4BQ3Li%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] checklist of web services/issues for alpha 1">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Feb 11 18:21:57 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000213.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI>Next message: <A HREF="000215.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#214">[ date ]</a>
+ <a href="thread.html#214">[ thread ]</a>
+ <a href="subject.html#214">[ subject ]</a>
+ <a href="author.html#214">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+just to lay down a few cross-apps/server issues, related to alpha 1
+release reception by the public.
+
+ * having a public forum setup (nice to have, but not mandatory yet)
+=&gt; maat is working on it
+ * having a bugzilla setup; needs:
+ - RPM field thing fixed =&gt; stormi, dmorgan, other?
+ - SSL certificate (self-signed for a start) =&gt; sysadmin?
+ - ability to easily register/use a Mageia account =&gt; identity.mageia.org
+ * identity.mageia.org; needs:
+ - password reset process in production (it is on -trunk for now) =&gt; blingme?
+ * having the download page setup (must have, in the works right now:
+dams, obgr and me)
+ * having the mirrors list up to date (nice to have, we'll use the
+rough list of mirrors we manually know for now)
+ * having a good looking and structured website (nice to have, will be
+a focus for after alpha 1)
+ * other I may have missed?
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000213.html">[Mageia-webteam] Permissions and procedures
+</A></li>
+ <LI>Next message: <A HREF="000215.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#214">[ date ]</a>
+ <a href="thread.html#214">[ thread ]</a>
+ <a href="subject.html#214">[ subject ]</a>
+ <a href="author.html#214">[ 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-February/000215.html b/zarb-ml/mageia-webteam/2011-February/000215.html
new file mode 100644
index 000000000..aea84683d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000215.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] checklist of web services/issues for alpha 1
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3C61bfc709510ac35f1404564965fb4ddd%40www.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000214.html">
+ <LINK REL="Next" HREF="000217.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] checklist of web services/issues for alpha 1</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3C61bfc709510ac35f1404564965fb4ddd%40www.ephaone.org%3E"
+ TITLE="[Mageia-webteam] checklist of web services/issues for alpha 1">misc at zarb.org
+ </A><BR>
+ <I>Fri Feb 11 19:50:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000214.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000217.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#215">[ date ]</a>
+ <a href="thread.html#215">[ thread ]</a>
+ <a href="subject.html#215">[ subject ]</a>
+ <a href="author.html#215">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE> On Fri, 11 Feb 2011 18:21:57 +0100, Romain d'Alverny wrote:
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> just to lay down a few cross-apps/server issues, related to alpha 1
+</I>&gt;<i> release reception by the public.
+</I>&gt;<i>
+</I>&gt;<i> * having a public forum setup (nice to have, but not mandatory yet)
+</I>&gt;<i> =&gt; maat is working on it
+</I>&gt;<i> * having a bugzilla setup; needs:
+</I>&gt;<i> - RPM field thing fixed =&gt; stormi, dmorgan, other?
+</I>
+ mhh ? I didn't followed closely, what is the problem ?
+
+&gt;<i> - SSL certificate (self-signed for a start) =&gt; sysadmin?
+</I>
+ IMHO, it would be better to send sysadmin requests on the sysadmin ml,
+ as not all are subscribed on this ml.
+
+ Anyway, I will take this one for tomorow.
+
+&gt;<i> - ability to easily register/use a Mageia account =&gt;
+</I>&gt;<i> identity.mageia.org
+</I>&gt;<i> * identity.mageia.org; needs:
+</I>&gt;<i> - password reset process in production (it is on -trunk for now)
+</I>&gt;<i> =&gt; blingme?
+</I>
+ I do not think it is needed to the point that everything should be
+ blocked
+ because of this.
+
+ So I do plan to announce ml for i18n ( 2 months after creating them and
+ working a complete week
+ to have it ready ASAP ), and that include instructions for people to
+ use current identity next week,
+ no matter the state of catdap password reset process.
+
+&gt;<i> * having the download page setup (must have, in the works right now:
+</I>&gt;<i> dams, obgr and me)
+</I>
+ Since the release is intended for developper, I would not consider this
+ as critical.
+
+ If someone is not able to find where to download using
+ <A HREF="http://mirrors.mageia.org">http://mirrors.mageia.org</A> or using link given
+ in the announce, I fear that this will not be able to do much with the
+ iso ( the one I tested
+ didn't startgnome by itself.. ).
+
+ We should not put too much pressure on this, especially on the last
+ moment.
+
+&gt;<i> * having the mirrors list up to date (nice to have, we'll use the
+</I>&gt;<i> rough list of mirrors we manually know for now)
+</I>
+ Well, the list on mirrors.mageia.org is up to date by definition, this
+ is the canonical
+ and reference one. Sure, the design is not user friendly, but see
+ previous remark.
+
+--
+ Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000214.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000217.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#215">[ date ]</a>
+ <a href="thread.html#215">[ thread ]</a>
+ <a href="subject.html#215">[ subject ]</a>
+ <a href="author.html#215">[ 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-February/000216.html b/zarb-ml/mageia-webteam/2011-February/000216.html
new file mode 100644
index 000000000..8c983a818
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000216.html
@@ -0,0 +1,145 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] checklist of web services/issues for alpha 1
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3CAANLkTiniQsP_02se59JazJUCtcvVPESoTdMomq2oo_rP%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="000217.html">
+ <LINK REL="Next" HREF="000218.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] checklist of web services/issues for alpha 1</H1>
+ <B>Benoit Audouard</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3CAANLkTiniQsP_02se59JazJUCtcvVPESoTdMomq2oo_rP%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] checklist of web services/issues for alpha 1">baud123 at gmail.com
+ </A><BR>
+ <I>Fri Feb 11 22:50:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000217.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000218.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#216">[ date ]</a>
+ <a href="thread.html#216">[ thread ]</a>
+ <a href="subject.html#216">[ subject ]</a>
+ <a href="author.html#216">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Re,
+
+2011/2/11 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;
+
+&gt;<i> just to lay down a few cross-apps/server issues, related to alpha 1
+</I>&gt;<i> release reception by the public.
+</I>&gt;<i>
+</I>
+maybe definition of alpha1 may be precised, I suggest : testing the whole
+infrastructure (building, distribution, mirrors, publication of
+release_notes / errata / faq / how to become involved identifying what
+people want to do and can do... giving them proper tools and identifying
+what could be done).
+
+
+&gt;<i> * other I may have missed?
+</I>
+
+yep, a real wiki :-) the current one (temporary) not enabling teams to work
+together at full speed :/ I think to artwork - web team -and even
+translators (and users).
+
+some time ago I wanted to propose
+<A HREF="http://mageiacauldron.tuxfamily.org/MageiaWiki">http://mageiacauldron.tuxfamily.org/MageiaWiki</A>
+and I think that <A HREF="http://mageia.org/wiki/doku.php?id=wiki_requirements">http://mageia.org/wiki/doku.php?id=wiki_requirements</A> is
+complementary, both could merge ;-)
+There's <A HREF="http://www.mageia.org/wiki/doku.php?id=web:wiki">http://www.mageia.org/wiki/doku.php?id=web:wiki</A> too
+
+To be fair, I'm a bit biased towards a wiki that promotes self organization
+as we can see at <A HREF="http://mageia.org/wiki">http://mageia.org/wiki</A> : I would prefer to have people
+document, enhance content and explain than discuss endlessly on ML (once a
+consensus is reached a wiki can document it, with references if needed).
+
+At the moment, we've reached critical mass(*) to begin the release process
+and alpha needs publishing errata and release notes imho (with common
+pitfalls, faq, known-workaround...). As an example, have a look at
+<A HREF="http://wiki.mandriva.com/en/2010.1_Development">http://wiki.mandriva.com/en/2010.1_Development</A> and
+<A HREF="http://wiki.mandriva.com/en/2010.1_Alpha_1">http://wiki.mandriva.com/en/2010.1_Alpha_1</A> then wonder &quot;where do we publish
+it currently?&quot; in a ML ? (please ask if I'm not suficiently precise, yeah I
+know that ).
+(*) developers can document, marketing could structure it all, artwork team
+can work on css, translators may be involved too, collaborative work can
+begin with a focus and anyone wanting to get involved, delegation may begin
+with simply editing a wiki (easy for anyone imho), this would mean
+team-building by effective exchanges available to everyone :)
+
+
+For effective availability, I would see :
+- a basic instance available for testing [<A HREF="http://dev.wiki.mageia.org">http://dev.wiki.mageia.org</A>]
+- packaging mediawiki (done) and identified plugin (being done) for sysadm
+satisfaction, let's make available what we use and build teams around it :-)
+(dev, packaging, testing, using with comm and artwork involved)
+- involve people in participation around a tool that permits to publish
+(with discussion either on wiki or ML), local involvement with translations
+or initiatives (let's get people not speaking english to involve :p).
+- for production <A HREF="http://wiki.mageia.org">http://wiki.mageia.org</A> in any language, let's choose to go
+forward and just deploy it then see how people can use it :-) (requiring
+other plugins to be packaged or working through -discuss ML or with
+discussion page once created in their own language, that's the purpose of
+alpha1 imho to test the infrastructure and create team-building)
+
+IMHO, a forum will come when needed, but I think that a wiki can enhance
+our answers, explaining in 3 lines in a post (on ML currently, on forum
+later on) what people can find on the wiki far more detailed :-)
+
+At the moment, we have
+<A HREF="http://mageia.org/wiki/doku.php?id=policies-reviewwhich">http://mageia.org/wiki/doku.php?id=policies-reviewwhich</A> lists long
+term documentation that should be translated for anyone to
+get involved. I'm a bit disappointed that it does not happen on a stabilized
+plateform with clear license policy and long term enhancements :/
+
+well, I should bring this subject to -discuss but I wanted to have your
+feedback before it begins for real :-) so WDYT ? maybe a blog post can
+explain how we are going to deploy alpha1 for this sunday ? who is concerned
+with iso testing ? who is concerned with wiki testing ? (can we make it with
+catdap and missing plugins ?) who can be involved and what tasks should be
+done at the moment (packagers, developers, testers, marketing,
+communication, mirrors, council, board, translators, triage, sysadm,
+artwork, moderators, users and anyone that want to follow what is being
+done?)
+
+I think that an official wiki would get all people to involve, in a long
+term participation, WDYT ?
+@++
+Ben' aka baud123
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110211/5be8dbb2/attachment.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000217.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000218.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#216">[ date ]</a>
+ <a href="thread.html#216">[ thread ]</a>
+ <a href="subject.html#216">[ subject ]</a>
+ <a href="author.html#216">[ 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-February/000217.html b/zarb-ml/mageia-webteam/2011-February/000217.html
new file mode 100644
index 000000000..ed8df20ee
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000217.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] checklist of web services/issues for alpha 1
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3CAANLkTinLAUeH5zyJV3Lj1LfBHt68pFit0iTXA21g49_m%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="000215.html">
+ <LINK REL="Next" HREF="000216.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] checklist of web services/issues for alpha 1</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3CAANLkTinLAUeH5zyJV3Lj1LfBHt68pFit0iTXA21g49_m%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] checklist of web services/issues for alpha 1">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Feb 11 22:57:30 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000215.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000216.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#217">[ date ]</a>
+ <a href="thread.html#217">[ thread ]</a>
+ <a href="subject.html#217">[ subject ]</a>
+ <a href="author.html#217">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, Feb 11, 2011 at 19:50, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> On Fri, 11 Feb 2011 18:21:57 +0100, Romain d'Alverny wrote:
+</I>&gt;&gt;<i> &#160; - RPM field thing fixed =&gt; stormi, dmorgan, other?
+</I>&gt;<i>
+</I>&gt;<i> mhh ? I didn't followed closely, what is the problem ?
+</I>
+Fixed this evening it seems.
+
+&gt;&gt;<i> &#160; - SSL certificate (self-signed for a start) =&gt; sysadmin?
+</I>&gt;<i>
+</I>&gt;<i> IMHO, it would be better to send sysadmin requests on the sysadmin ml,
+</I>&gt;<i> as not all are subscribed on this ml.
+</I>
+Yes, but that was a summary, to this point. And I knew you were going
+to read it.
+
+&gt;<i> Anyway, I will take this one for tomorow.
+</I>
+Thanks! I believe dmorgan may have started to look into it as well.
+
+&gt;&gt;<i> &#160;* having the download page setup (must have, in the works right now:
+</I>&gt;&gt;<i> dams, obgr and me)
+</I>&gt;<i>
+</I>&gt;<i> Since the release is intended for developper, I would not consider this as
+</I>&gt;<i> critical.
+</I>
+No but it's important. And the page is being set up at this time and
+will likely be ready for prime time (and please use it when it is
+available).
+
+&gt;<i> We should not put too much pressure on this, especially on the last moment.
+</I>
+Welcome to the nighmare of a synchronized release management. :) It
+always comes down to that.
+
+&gt;&gt;<i> &#160;* having the mirrors list up to date (nice to have, we'll use the
+</I>&gt;&gt;<i> rough list of mirrors we manually know for now)
+</I>&gt;<i>
+</I>&gt;<i> Well, the list on mirrors.mageia.org is up to date by definition, this is
+</I>&gt;<i> the canonical and reference one. Sure, the design is not user friendly, but see previous
+</I>&gt;<i> remark.
+</I>
+It's a technical frontend and not aimed to users. As such, it's not
+the best place for everyone (but experienced+ users) to look at for
+getting download information. Hence the download page.
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000215.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000216.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#217">[ date ]</a>
+ <a href="thread.html#217">[ thread ]</a>
+ <a href="subject.html#217">[ subject ]</a>
+ <a href="author.html#217">[ 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-February/000218.html b/zarb-ml/mageia-webteam/2011-February/000218.html
new file mode 100644
index 000000000..2aaf359a1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000218.html
@@ -0,0 +1,153 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] checklist of web services/issues for alpha 1
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3CAANLkTim9Hp1iJQS%3Djcvi%3DGZ4CaZHNUv6xRnRiGD6rpFQ%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="000216.html">
+ <LINK REL="Next" HREF="000219.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] checklist of web services/issues for alpha 1</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20checklist%20of%20web%20services/issues%20for%20alpha%201&In-Reply-To=%3CAANLkTim9Hp1iJQS%3Djcvi%3DGZ4CaZHNUv6xRnRiGD6rpFQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] checklist of web services/issues for alpha 1">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Feb 11 23:56:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000216.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000219.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#218">[ date ]</a>
+ <a href="thread.html#218">[ thread ]</a>
+ <a href="subject.html#218">[ subject ]</a>
+ <a href="author.html#218">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, Feb 11, 2011 at 22:50, Benoit Audouard &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">baud123 at gmail.com</A>&gt; wrote:
+&gt;<i> Re,
+</I>&gt;<i>
+</I>&gt;<i> maybe definition of alpha1 may be precised, I suggest : testing the whole
+</I>&gt;<i> infrastructure (building, distribution, mirrors, publication of
+</I>&gt;<i> release_notes / errata / faq / how to become involved identifying what
+</I>&gt;<i> people want to do and can do... giving them proper tools and identifying
+</I>&gt;<i> what could be done).
+</I>
+Join marcom, discussion was started there about this. There's an
+announce draft in preparation (on the blog for now), the message to
+promote has been reminded/rediscussed several times in several places
+and the download page will also underline some of these points.
+
+Although:
+ - the project FAQ is light, still;
+ - the release notes are small/nonexistent at this time; check with
+-dev about that; see <A HREF="http://mageia.org/wiki/doku.php?id=1_alpha1">http://mageia.org/wiki/doku.php?id=1_alpha1</A> and
+<A HREF="http://mageia.org/wiki/doku.php?id=iso1:alpha1_release_notes">http://mageia.org/wiki/doku.php?id=iso1:alpha1_release_notes</A>
+ - the generic contribution guide is still empty; check with stormi,
+-dev, -discuss about that; see
+<A HREF="http://mageia.org/wiki/doku.php?id=contribute">http://mageia.org/wiki/doku.php?id=contribute</A>
+
+&gt;&gt;<i> &#160;* other I may have missed?
+</I>&gt;<i>
+</I>&gt;<i> yep, a real wiki :-) the current one (temporary) not enabling teams to work
+</I>&gt;<i> together at full speed :/
+</I>
+No joke? We're all aware of that and if you were not aware of it,
+there's a track to build the &quot;better&quot; wiki, only, it takes time and
+people to do that - and we are short on both.
+
+&gt;<i> I think to artwork - web team -and even translators (and users).
+</I>
+We all know teams have to build (and ask for, and use) their tools to
+collaborate. So far however, there have not been many requests and
+self-organization is not too bad this far.
+
+&gt;<i> some time ago I wanted to
+</I>&gt;<i> propose&#160;<A HREF="http://mageiacauldron.tuxfamily.org/MageiaWiki">http://mageiacauldron.tuxfamily.org/MageiaWiki</A>
+</I>&gt;<i> and I think that&#160;<A HREF="http://mageia.org/wiki/doku.php?id=wiki_requirements">http://mageia.org/wiki/doku.php?id=wiki_requirements</A> is
+</I>&gt;<i> complementary, both could merge ;-)
+</I>&gt;<i> There's&#160;<A HREF="http://www.mageia.org/wiki/doku.php?id=web:wiki">http://www.mageia.org/wiki/doku.php?id=web:wiki</A> too
+</I>
+Well, yes, but here we already focus on a Mediawiki solution, and it
+is to be implemented and mastered. And then we can move forward. For
+now, we're at the setup stage, as you may know.
+
+&gt;<i> For effective availability, I would see :
+</I>&gt;<i> - a basic instance available for testing [<A HREF="http://dev.wiki.mageia.org">http://dev.wiki.mageia.org</A>]
+</I>
+Why not.
+
+&gt;<i> - for production <A HREF="http://wiki.mageia.org">http://wiki.mageia.org</A> in any language, let's choose to go
+</I>&gt;<i> forward and just deploy it then see how people can use it
+</I>
+Why do you think we don't have the multi-locale wiki not setup yet?
+
+
+&gt;<i> At the moment, we have&#160;<A HREF="http://mageia.org/wiki/doku.php?id=policies-review">http://mageia.org/wiki/doku.php?id=policies-review</A>
+</I>&gt;<i> which lists long term documentation that should be translated for anyone to
+</I>&gt;<i> get involved. I'm a bit disappointed that it does not happen on a stabilized
+</I>&gt;<i> plateform with clear license policy and long term enhancements :/
+</I>
+Did you propose anything in this regard to the list of people working
+on these policies?
+
+&gt;<i> well, I should bring this subject to -discuss
+</I>
+Yes, indeed. Or -dev.
+
+&gt;<i> maybe a blog post can explain how we are going to deploy alpha1 for this sunday?
+</I>
+15th is not on Sunday.
+
+&gt;<i> who is concerned with iso testing ? who is concerned with wiki testing?
+</I>&gt;<i> (can we make it with catdap and missing plugins ?) who can be involved
+</I>&gt;<i> and what tasks should be done at the moment (packagers, developers,
+</I>&gt;<i> testers, marketing, communication, mirrors, council, board, translators,
+</I>&gt;<i> triage, sysadm, artwork, moderators, users and anyone that want to follow
+</I>&gt;<i> what is being done?)
+</I>
+There's a draft blog post about that. And we expect each team in the
+project to gather, discuss and help improving the distribution (and
+all that revolves around it).
+
+&gt;<i> I think that an official wiki would get all people to involve, in a long
+</I>&gt;<i> term participation, WDYT ?
+</I>
+<A HREF="http://mageia.org/wiki/">http://mageia.org/wiki/</A> is an official wiki, in English only.
+Temporary, yes, but that does not prevent it from being used, the time
+the better platform is set up.
+
+And people to help in setting it up are _welcome_. We don't need much
+more consulting than hands here.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000216.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000219.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#218">[ date ]</a>
+ <a href="thread.html#218">[ thread ]</a>
+ <a href="subject.html#218">[ subject ]</a>
+ <a href="author.html#218">[ 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-February/000219.html b/zarb-ml/mageia-webteam/2011-February/000219.html
new file mode 100644
index 000000000..6a0f27cc8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000219.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintainers db tasks
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20tasks&In-Reply-To=%3CAANLkTimQP1MLt7%2BZYoS%2BG_tk9VSf%2BMFmAZ5sEsj8URMH%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="000218.html">
+ <LINK REL="Next" HREF="000226.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintainers db tasks</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20tasks&In-Reply-To=%3CAANLkTimQP1MLt7%2BZYoS%2BG_tk9VSf%2BMFmAZ5sEsj8URMH%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintainers db tasks">Kosmas at mach7x.com
+ </A><BR>
+ <I>Sun Feb 13 12:42:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000218.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000226.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#219">[ date ]</a>
+ <a href="thread.html#219">[ thread ]</a>
+ <a href="subject.html#219">[ subject ]</a>
+ <a href="author.html#219">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Romain, Michael
+
+This is a list with the outstanding features for the application, so if you
+would like to prioritise them would be great:
+
+
+ - Setup environment for live server (another email to ML will follow this
+ one with requirements)
+ - LDAP integration (first steps and possible solution investigated, but
+ will probably be in next version)
+ - Compiled packages functionality to be added
+ - Searching, statistics and information displayed to finish off
+ (currently searching only works for source packages)
+ - Any design work, artwork (CSS, logos) to be included
+ - Use of bugzilla for bugs (I think Romain set it up, and I've put it in
+ the wiki, but not sure if ready to use?)
+ - Input of initial information (source packages - maintainers)
+ - Source of last commit datetime to be discussed
+
+
+That's the ones I can think at the moment.
+If there's anything else, please feel free to add.
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110213/365ff84e/attachment.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000218.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A></li>
+ <LI>Next message: <A HREF="000226.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#219">[ date ]</a>
+ <a href="thread.html#219">[ thread ]</a>
+ <a href="subject.html#219">[ subject ]</a>
+ <a href="author.html#219">[ 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-February/000220.html b/zarb-ml/mageia-webteam/2011-February/000220.html
new file mode 100644
index 000000000..d20f3573b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000220.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Server requirements second attempt
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Server%20requirements%20second%20attempt&In-Reply-To=%3CAANLkTi%3Dhci_0BSgZx%2BLJBi-8vzSyDY%3DBLkr1J7dAc8vF%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="000272.html">
+ <LINK REL="Next" HREF="000221.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Server requirements second attempt</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Server%20requirements%20second%20attempt&In-Reply-To=%3CAANLkTi%3Dhci_0BSgZx%2BLJBi-8vzSyDY%3DBLkr1J7dAc8vF%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Server requirements second attempt">Kosmas at mach7x.com
+ </A><BR>
+ <I>Sun Feb 13 12:56:45 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000272.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI>Next message: <A HREF="000221.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#220">[ date ]</a>
+ <a href="thread.html#220">[ thread ]</a>
+ <a href="subject.html#220">[ subject ]</a>
+ <a href="author.html#220">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Michael,
+
+Here's the second attempt about requirement for the server following the
+initial one some time ago.
+
+Not sure if we should be looking at the Mandriva Cooker rpms or other
+specific version.
+The ones below are from the Cooker distribution, but if I should be looking
+at a different one let me know:
+
+
+ - ruby-1.8.7.p330-1mdv2011.0.i586.rpm (main)
+ - ruby-RubyGems-1.3.7-1mdv2011.0.noarch.rpm (main)
+ - rails-2.3.10-1mdv2011.0.noarch.rpm (contrib) - altough there is a
+ security upgrade to 2.3.11 (
+ <A HREF="http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4">http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4</A>)
+ - Database to be used either MySQL or PostgreSQL
+
+I believe that there are benefits for using version 3, so I would like to
+investigate if it's possible to build a package for it.
+If you know who is current maintainer for it, I can get in touch and see if
+I can help with that.
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110213/60c1f38a/attachment.html&gt;
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000272.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI>Next message: <A HREF="000221.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#220">[ date ]</a>
+ <a href="thread.html#220">[ thread ]</a>
+ <a href="subject.html#220">[ subject ]</a>
+ <a href="author.html#220">[ 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-February/000221.html b/zarb-ml/mageia-webteam/2011-February/000221.html
new file mode 100644
index 000000000..a8dae541a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000221.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Server requirements second attempt
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Server%20requirements%20second%20attempt&In-Reply-To=%3C201102131306.06726.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000220.html">
+ <LINK REL="Next" HREF="000227.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Server requirements second attempt</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Server%20requirements%20second%20attempt&In-Reply-To=%3C201102131306.06726.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Server requirements second attempt">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Sun Feb 13 13:06:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000220.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI>Next message: <A HREF="000227.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#221">[ date ]</a>
+ <a href="thread.html#221">[ thread ]</a>
+ <a href="subject.html#221">[ subject ]</a>
+ <a href="author.html#221">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op zondag 13 februari 2011 12:56:45 schreef Kosmas Chatzimichalis:
+&gt;<i> Michael,
+</I>&gt;<i>
+</I>&gt;<i> Here's the second attempt about requirement for the server following the
+</I>&gt;<i> initial one some time ago.
+</I>&gt;<i>
+</I>&gt;<i> Not sure if we should be looking at the Mandriva Cooker rpms or other
+</I>&gt;<i> specific version.
+</I>&gt;<i> The ones below are from the Cooker distribution, but if I should be looking
+</I>&gt;<i> at a different one let me know:
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> - ruby-1.8.7.p330-1mdv2011.0.i586.rpm (main)
+</I>&gt;<i> - ruby-RubyGems-1.3.7-1mdv2011.0.noarch.rpm (main)
+</I>&gt;<i> - rails-2.3.10-1mdv2011.0.noarch.rpm (contrib) - altough there is a
+</I>&gt;<i> security upgrade to 2.3.11 (
+</I>&gt;<i> <A HREF="http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4">http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4</A>)
+</I>&gt;<i> - Database to be used either MySQL or PostgreSQL
+</I>&gt;<i>
+</I>&gt;<i> I believe that there are benefits for using version 3, so I would like to
+</I>&gt;<i> investigate if it's possible to build a package for it.
+</I>&gt;<i> If you know who is current maintainer for it, I can get in touch and see if
+</I>&gt;<i> I can help with that.
+</I>&gt;<i>
+</I>&gt;<i> Kosmas
+</I>
+afaik shikamaru was looking for you regarding that
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000220.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI>Next message: <A HREF="000227.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#221">[ date ]</a>
+ <a href="thread.html#221">[ thread ]</a>
+ <a href="subject.html#221">[ subject ]</a>
+ <a href="author.html#221">[ 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-February/000222.html b/zarb-ml/mageia-webteam/2011-February/000222.html
new file mode 100644
index 000000000..ab8577e58
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000222.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] test
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3CAANLkTi%3DWF-pj%2BN-%3DNDivAGfzXhGchvuL50OHcoXVTgk5%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="000271.html">
+ <LINK REL="Next" HREF="000223.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] test</H1>
+ <B>Dexter Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3CAANLkTi%3DWF-pj%2BN-%3DNDivAGfzXhGchvuL50OHcoXVTgk5%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] test">dmorganec at gmail.com
+ </A><BR>
+ <I>Sun Feb 13 15:44:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000271.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI>Next message: <A HREF="000223.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#222">[ date ]</a>
+ <a href="thread.html#222">[ thread ]</a>
+ <a href="subject.html#222">[ subject ]</a>
+ <a href="author.html#222">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>test mail
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000271.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI>Next message: <A HREF="000223.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#222">[ date ]</a>
+ <a href="thread.html#222">[ thread ]</a>
+ <a href="subject.html#222">[ subject ]</a>
+ <a href="author.html#222">[ 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-February/000223.html b/zarb-ml/mageia-webteam/2011-February/000223.html
new file mode 100644
index 000000000..16d8e4dfa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000223.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] test
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3C201102131547.14625.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000222.html">
+ <LINK REL="Next" HREF="000224.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] test</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3C201102131547.14625.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] test">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Sun Feb 13 15:47:14 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000222.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000224.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#223">[ date ]</a>
+ <a href="thread.html#223">[ thread ]</a>
+ <a href="subject.html#223">[ subject ]</a>
+ <a href="author.html#223">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op zondag 13 februari 2011 15:44:03 schreef Dexter Morgan:
+&gt;<i> test mail
+</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>
+test received
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000222.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000224.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#223">[ date ]</a>
+ <a href="thread.html#223">[ thread ]</a>
+ <a href="subject.html#223">[ subject ]</a>
+ <a href="author.html#223">[ 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-February/000224.html b/zarb-ml/mageia-webteam/2011-February/000224.html
new file mode 100644
index 000000000..c59b94c65
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000224.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] test
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3C201102131623.22575.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="000223.html">
+ <LINK REL="Next" HREF="000225.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] test</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3C201102131623.22575.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] test">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Sun Feb 13 16:23:22 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000223.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000225.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#224">[ date ]</a>
+ <a href="thread.html#224">[ thread ]</a>
+ <a href="subject.html#224">[ subject ]</a>
+ <a href="author.html#224">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Maarten Vanraes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; schrieb am 2011-02-13
+&gt;<i> Op zondag 13 februari 2011 15:44:03 schreef Dexter Morgan:
+</I>&gt;<i> &gt; test mail
+</I>&gt;<i> test received
+</I>me too, what are you testing?
+
+Oliver
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000223.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000225.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#224">[ date ]</a>
+ <a href="thread.html#224">[ thread ]</a>
+ <a href="subject.html#224">[ subject ]</a>
+ <a href="author.html#224">[ 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-February/000225.html b/zarb-ml/mageia-webteam/2011-February/000225.html
new file mode 100644
index 000000000..374f1015e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000225.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] test
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3CAANLkTimCGyx9CEAzxQyR-45VN3CkY89L6hpk6Z_azKAx%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="000224.html">
+ <LINK REL="Next" HREF="000229.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] test</H1>
+ <B>Dexter Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3CAANLkTimCGyx9CEAzxQyR-45VN3CkY89L6hpk6Z_azKAx%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] test">dmorganec at gmail.com
+ </A><BR>
+ <I>Sun Feb 13 17:38:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000224.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000229.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#225">[ date ]</a>
+ <a href="thread.html#225">[ thread ]</a>
+ <a href="subject.html#225">[ subject ]</a>
+ <a href="author.html#225">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Sun, Feb 13, 2011 at 4:23 PM, Oliver Burger
+&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; wrote:
+&gt;<i> Maarten Vanraes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; schrieb am 2011-02-13
+</I>&gt;&gt;<i> Op zondag 13 februari 2011 15:44:03 schreef Dexter Morgan:
+</I>&gt;&gt;<i> &gt; test mail
+</I>&gt;&gt;<i> test received
+</I>&gt;<i> me too, what are you testing?
+</I>
+if the list is working :) because i do test for bugzilla.
+
+what a teaser isn't it ? :D
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000224.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000229.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#225">[ date ]</a>
+ <a href="thread.html#225">[ thread ]</a>
+ <a href="subject.html#225">[ subject ]</a>
+ <a href="author.html#225">[ 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-February/000226.html b/zarb-ml/mageia-webteam/2011-February/000226.html
new file mode 100644
index 000000000..a7058cc1d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000226.html
@@ -0,0 +1,109 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintainers db tasks
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20tasks&In-Reply-To=%3C518e687b0db6e125c5d99254fbb324df%40www.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000219.html">
+ <LINK REL="Next" HREF="000228.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintainers db tasks</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20tasks&In-Reply-To=%3C518e687b0db6e125c5d99254fbb324df%40www.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Maintainers db tasks">misc at zarb.org
+ </A><BR>
+ <I>Sun Feb 13 20:44:36 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000219.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI>Next message: <A HREF="000228.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#226">[ date ]</a>
+ <a href="thread.html#226">[ thread ]</a>
+ <a href="subject.html#226">[ subject ]</a>
+ <a href="author.html#226">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE> On Sun, 13 Feb 2011 11:42:06 +0000, Kosmas Chatzimichalis wrote:
+&gt;<i> Romain, Michael
+</I> Romain is out of town until next week
+
+&gt;<i> This is a list with the outstanding features for the application, so
+</I>&gt;<i> if you
+</I>&gt;<i> would like to prioritise them would be great:
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> - Setup environment for live server (another email to ML will
+</I>&gt;<i> follow this
+</I>&gt;<i> one with requirements)
+</I>
+ mhh, sorry, but I do not understand this one :/ ( or I do not
+ understand the mail, is this a
+ list of feature or a list of tasks ? )
+
+&gt;<i> - LDAP integration (first steps and possible solution
+</I>&gt;<i> investigated, but
+</I>&gt;<i> will probably be in next version)
+</I> well, ldap integration is required.
+
+&gt;<i> - Compiled packages functionality to be added
+</I> Ie ?
+
+&gt;<i> - Searching, statistics and information displayed to finish off
+</I>&gt;<i> (currently searching only works for source packages)
+</I>
+ nice to have, but imho not required ( ie, less urgent than ldap
+ integration )
+
+&gt;<i> - Any design work, artwork (CSS, logos) to be included
+</I> same as searching.
+
+&gt;<i> - Use of bugzilla for bugs (I think Romain set it up, and I've put
+</I>&gt;<i> it in
+</I>&gt;<i> the wiki, but not sure if ready to use?)
+</I> I do not understand too, where does bugs enter in the scheme ?
+
+&gt;<i> - Input of initial information (source packages - maintainers)
+</I> I guess this would be handy, but can you explain a little bit more ?
+
+&gt;<i> - Source of last commit datetime to be discussed
+</I> mhh, again, I do not understand the question ( ie, is this a feature ?
+ ).
+ There is only one source of last commit, that's svn. Now, this is not
+ very
+ urgent. We can add a svn hooks that update the db with REST, so that's
+ IMHO
+ easy, but not required.
+
+--
+ Michael Scherer
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000219.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI>Next message: <A HREF="000228.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#226">[ date ]</a>
+ <a href="thread.html#226">[ thread ]</a>
+ <a href="subject.html#226">[ subject ]</a>
+ <a href="author.html#226">[ 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-February/000227.html b/zarb-ml/mageia-webteam/2011-February/000227.html
new file mode 100644
index 000000000..dbe6463cb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000227.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Server requirements second attempt
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Server%20requirements%20second%20attempt&In-Reply-To=%3C2723d1bec04d283a67286b847afaa29d%40www.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000221.html">
+ <LINK REL="Next" HREF="000271.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Server requirements second attempt</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Server%20requirements%20second%20attempt&In-Reply-To=%3C2723d1bec04d283a67286b847afaa29d%40www.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Server requirements second attempt">misc at zarb.org
+ </A><BR>
+ <I>Sun Feb 13 20:55:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000221.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI>Next message: <A HREF="000271.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#227">[ date ]</a>
+ <a href="thread.html#227">[ thread ]</a>
+ <a href="subject.html#227">[ subject ]</a>
+ <a href="author.html#227">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE> On Sun, 13 Feb 2011 11:56:45 +0000, Kosmas Chatzimichalis wrote:
+&gt;<i> Michael,
+</I>&gt;<i>
+</I>&gt;<i> Here's the second attempt about requirement for the server following
+</I>&gt;<i> the
+</I>&gt;<i> initial one some time ago.
+</I>&gt;<i>
+</I>&gt;<i> Not sure if we should be looking at the Mandriva Cooker rpms or other
+</I>&gt;<i> specific version.
+</I>&gt;<i> The ones below are from the Cooker distribution, but if I should be
+</I>&gt;<i> looking
+</I>&gt;<i> at a different one let me know:
+</I>
+ Well, for ruby, the issue is that we are using puppet on server, and so
+ updating to cooker
+ rpms is IMHO risky. I would prefer to keep it with supported and tested
+ version ( as puppet
+ is using rails for active record, for reporting and this is used for
+ deploying postgresql db ).
+ So I can try, but this will requires more testing ( as I need to check
+ that everything still work
+ fine on puppet side ).
+
+&gt;<i>
+</I>&gt;<i> - ruby-1.8.7.p330-1mdv2011.0.i586.rpm (main)
+</I>&gt;<i> - ruby-RubyGems-1.3.7-1mdv2011.0.noarch.rpm (main)
+</I>&gt;<i> - rails-2.3.10-1mdv2011.0.noarch.rpm (contrib) - altough there is
+</I>&gt;<i> a
+</I>&gt;<i> security upgrade to 2.3.11 (
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4">http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4</A>)
+</I>&gt;<i> - Database to be used either MySQL or PostgreSQL
+</I>&gt;<i>
+</I>&gt;<i> I believe that there are benefits for using version 3, so I would
+</I>&gt;<i> like to
+</I>&gt;<i> investigate if it's possible to build a package for it.
+</I>
+ Well, how hard is this to update later the project to rails 3 ?
+ I mean, the first version is quite simple, so what about doing the
+ first in rails 2.X
+ with fewer features, and later do it in rails 3 with more features (
+ and likely better architectures, as we
+ often gain insight of the application once we dvelop the first version
+ and get the first feedback )
+
+ Maybe this was badly specified, or I badly explained, but a simple CRUd
+ will be enough, do not really
+ add too much feature for the first version.
+
+&gt;<i> If you know who is current maintainer for it, I can get in touch and
+</I>&gt;<i> see if
+</I>&gt;<i> I can help with that.
+</I>
+ Shikamaru, ( <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">shikamaru at mandriva</A> )
+
+--
+ Michael Scherer
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000221.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI>Next message: <A HREF="000271.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#227">[ date ]</a>
+ <a href="thread.html#227">[ thread ]</a>
+ <a href="subject.html#227">[ subject ]</a>
+ <a href="author.html#227">[ 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-February/000228.html b/zarb-ml/mageia-webteam/2011-February/000228.html
new file mode 100644
index 000000000..2057b2af7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000228.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintainers db tasks
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20tasks&In-Reply-To=%3C201102132307.19125.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000226.html">
+ <LINK REL="Next" HREF="000272.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintainers db tasks</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20tasks&In-Reply-To=%3C201102132307.19125.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintainers db tasks">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Sun Feb 13 23:07:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000226.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI>Next message: <A HREF="000272.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#228">[ date ]</a>
+ <a href="thread.html#228">[ thread ]</a>
+ <a href="subject.html#228">[ subject ]</a>
+ <a href="author.html#228">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op zondag 13 februari 2011 20:44:36 schreef Michael Scherer:
+&gt;<i> On Sun, 13 Feb 2011 11:42:06 +0000, Kosmas Chatzimichalis wrote:
+</I>&gt;<i> &gt; Romain, Michael
+</I>&gt;<i>
+</I>&gt;<i> Romain is out of town until next week
+</I>&gt;<i>
+</I>&gt;<i> &gt; This is a list with the outstanding features for the application, so
+</I>&gt;<i> &gt; if you
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; would like to prioritise them would be great:
+</I>&gt;<i> &gt; - Setup environment for live server (another email to ML will
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; follow this
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; one with requirements)
+</I>&gt;<i>
+</I>&gt;<i> mhh, sorry, but I do not understand this one :/ ( or I do not
+</I>&gt;<i> understand the mail, is this a
+</I>&gt;<i> list of feature or a list of tasks ? )
+</I>&gt;<i>
+</I>&gt;<i> &gt; - LDAP integration (first steps and possible solution
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; investigated, but
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; will probably be in next version)
+</I>&gt;<i>
+</I>&gt;<i> well, ldap integration is required.
+</I>&gt;<i>
+</I>&gt;<i> &gt; - Compiled packages functionality to be added
+</I>&gt;<i>
+</I>&gt;<i> Ie ?
+</I>&gt;<i>
+</I>&gt;<i> &gt; - Searching, statistics and information displayed to finish off
+</I>&gt;<i> &gt; (currently searching only works for source packages)
+</I>&gt;<i>
+</I>&gt;<i> nice to have, but imho not required ( ie, less urgent than ldap
+</I>&gt;<i> integration )
+</I>&gt;<i>
+</I>&gt;<i> &gt; - Any design work, artwork (CSS, logos) to be included
+</I>&gt;<i>
+</I>&gt;<i> same as searching.
+</I>&gt;<i>
+</I>&gt;<i> &gt; - Use of bugzilla for bugs (I think Romain set it up, and I've put
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; it in
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; the wiki, but not sure if ready to use?)
+</I>&gt;<i>
+</I>&gt;<i> I do not understand too, where does bugs enter in the scheme ?
+</I>
+perhaps he means what in maint.mandriva.com &quot;the link to finding the open bugs
+for your package&quot; is.
+
+&gt;<i> &gt; - Input of initial information (source packages - maintainers)
+</I>&gt;<i>
+</I>&gt;<i> I guess this would be handy, but can you explain a little bit more ?
+</I>&gt;<i>
+</I>&gt;<i> &gt; - Source of last commit datetime to be discussed
+</I>&gt;<i>
+</I>&gt;<i> mhh, again, I do not understand the question ( ie, is this a feature ?
+</I>&gt;<i> ).
+</I>&gt;<i> There is only one source of last commit, that's svn. Now, this is not
+</I>&gt;<i> very
+</I>&gt;<i> urgent. We can add a svn hooks that update the db with REST, so that's
+</I>&gt;<i> IMHO
+</I>&gt;<i> easy, but not required.
+</I></PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000226.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI>Next message: <A HREF="000272.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#228">[ date ]</a>
+ <a href="thread.html#228">[ thread ]</a>
+ <a href="subject.html#228">[ subject ]</a>
+ <a href="author.html#228">[ 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-February/000229.html b/zarb-ml/mageia-webteam/2011-February/000229.html
new file mode 100644
index 000000000..09d68724b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000229.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+ </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%2014%5D%20Automatically%20CC%20the%20webteam%20ML%20for%0A%20relevant%20products%20/%20components&In-Reply-To=%3C20110213235102.B68BD41D03%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="000225.html">
+ <LINK REL="Next" HREF="000230.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2014%5D%20Automatically%20CC%20the%20webteam%20ML%20for%0A%20relevant%20products%20/%20components&In-Reply-To=%3C20110213235102.B68BD41D03%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 00:51:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000225.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000230.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#229">[ date ]</a>
+ <a href="thread.html#229">[ thread ]</a>
+ <a href="subject.html#229">[ subject ]</a>
+ <a href="author.html#229">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=14">https://bugs.mageia.org/show_bug.cgi?id=14</A>
+
+--- Comment #6 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-14 00:51:02 CET ---
+test
+
+--
+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="000225.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000230.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#229">[ date ]</a>
+ <a href="thread.html#229">[ thread ]</a>
+ <a href="subject.html#229">[ subject ]</a>
+ <a href="author.html#229">[ 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-February/000230.html b/zarb-ml/mageia-webteam/2011-February/000230.html
new file mode 100644
index 000000000..7283f1ecb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000230.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+ </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%2014%5D%20Automatically%20CC%20the%20webteam%20ML%20for%0A%20relevant%20products%20/%20components&In-Reply-To=%3C20110213235155.61B2C41D03%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="000229.html">
+ <LINK REL="Next" HREF="000231.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2014%5D%20Automatically%20CC%20the%20webteam%20ML%20for%0A%20relevant%20products%20/%20components&In-Reply-To=%3C20110213235155.61B2C41D03%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 00:51:55 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000229.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A></li>
+ <LI>Next message: <A HREF="000231.html">[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#230">[ date ]</a>
+ <a href="thread.html#230">[ thread ]</a>
+ <a href="subject.html#230">[ subject ]</a>
+ <a href="author.html#230">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=14">https://bugs.mageia.org/show_bug.cgi?id=14</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #7 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-14 00:51:55 CET ---
+we can now have webteam as CC: so i close this bugreport.
+
+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 on the CC list for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000229.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A></li>
+ <LI>Next message: <A HREF="000231.html">[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#230">[ date ]</a>
+ <a href="thread.html#230">[ thread ]</a>
+ <a href="subject.html#230">[ subject ]</a>
+ <a href="author.html#230">[ 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-February/000231.html b/zarb-ml/mageia-webteam/2011-February/000231.html
new file mode 100644
index 000000000..b03ca1fb9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000231.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?
+ </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%2015%5D%20Infrastructure%20vs%20Websites%20products%20%3A%0A%09needed%20%3F%20coherent%20%3F&In-Reply-To=%3C20110214000120.BC48741A93%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="000230.html">
+ <LINK REL="Next" HREF="000232.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2015%5D%20Infrastructure%20vs%20Websites%20products%20%3A%0A%09needed%20%3F%20coherent%20%3F&In-Reply-To=%3C20110214000120.BC48741A93%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 01:01:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000230.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A></li>
+ <LI>Next message: <A HREF="000232.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#231">[ date ]</a>
+ <a href="thread.html#231">[ thread ]</a>
+ <a href="subject.html#231">[ subject ]</a>
+ <a href="author.html#231">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=15">https://bugs.mageia.org/show_bug.cgi?id=15</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |WONTFIX
+
+--- Comment #4 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-14 01:01:21 UTC ---
+the label for bugzilla explain for what this is &quot;ask new products&quot;, ... so
+there is confusion possible.
+
+--
+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="000230.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A></li>
+ <LI>Next message: <A HREF="000232.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#231">[ date ]</a>
+ <a href="thread.html#231">[ thread ]</a>
+ <a href="subject.html#231">[ subject ]</a>
+ <a href="author.html#231">[ 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-February/000232.html b/zarb-ml/mageia-webteam/2011-February/000232.html
new file mode 100644
index 000000000..8f05160f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000232.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+ </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%2010%5D%20Put%20the%20new%20wiki%20into%20production%20%28this%20is%0A%20a%20test%20bug%20report%29&In-Reply-To=%3C20110214000147.4D80741A93%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="000231.html">
+ <LINK REL="Next" HREF="000233.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2010%5D%20Put%20the%20new%20wiki%20into%20production%20%28this%20is%0A%20a%20test%20bug%20report%29&In-Reply-To=%3C20110214000147.4D80741A93%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 01:01:47 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000231.html">[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?
+</A></li>
+ <LI>Next message: <A HREF="000233.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#232">[ date ]</a>
+ <a href="thread.html#232">[ thread ]</a>
+ <a href="subject.html#232">[ subject ]</a>
+ <a href="author.html#232">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=10">https://bugs.mageia.org/show_bug.cgi?id=10</A>
+
+--- Comment #9 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-14 01:01:47 CET ---
+what about this test bug ?
+Can we close 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 the QA contact for the bug.
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000231.html">[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?
+</A></li>
+ <LI>Next message: <A HREF="000233.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#232">[ date ]</a>
+ <a href="thread.html#232">[ thread ]</a>
+ <a href="subject.html#232">[ subject ]</a>
+ <a href="author.html#232">[ 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-February/000233.html b/zarb-ml/mageia-webteam/2011-February/000233.html
new file mode 100644
index 000000000..b9b6e4878
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000233.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+ </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%2010%5D%20Put%20the%20new%20wiki%20into%20production%20%28this%20is%0A%20a%20test%20bug%20report%29&In-Reply-To=%3C20110214024450.3F7F741D22%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="000232.html">
+ <LINK REL="Next" HREF="000234.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2010%5D%20Put%20the%20new%20wiki%20into%20production%20%28this%20is%0A%20a%20test%20bug%20report%29&In-Reply-To=%3C20110214024450.3F7F741D22%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 03:44:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000232.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A></li>
+ <LI>Next message: <A HREF="000234.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#233">[ date ]</a>
+ <a href="thread.html#233">[ thread ]</a>
+ <a href="subject.html#233">[ subject ]</a>
+ <a href="author.html#233">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=10">https://bugs.mageia.org/show_bug.cgi?id=10</A>
+
+Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|REOPENED |RESOLVED
+ Resolution| |INVALID
+ QAContact|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A> |
+
+--- Comment #10 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-02-14 03:44:50 UTC ---
+Yes, we can ! :)
+
+--
+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 QA contact for the bug.
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000232.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A></li>
+ <LI>Next message: <A HREF="000234.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#233">[ date ]</a>
+ <a href="thread.html#233">[ thread ]</a>
+ <a href="subject.html#233">[ subject ]</a>
+ <a href="author.html#233">[ 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-February/000234.html b/zarb-ml/mageia-webteam/2011-February/000234.html
new file mode 100644
index 000000000..f0a515dab
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000234.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+ </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%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110214122154.892D941D29%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="000233.html">
+ <LINK REL="Next" HREF="000235.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110214122154.892D941D29%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 13:21:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000233.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A></li>
+ <LI>Next message: <A HREF="000235.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#234">[ date ]</a>
+ <a href="thread.html#234">[ thread ]</a>
+ <a href="subject.html#234">[ subject ]</a>
+ <a href="author.html#234">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=13">https://bugs.mageia.org/show_bug.cgi?id=13</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+
+--
+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="000233.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A></li>
+ <LI>Next message: <A HREF="000235.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#234">[ date ]</a>
+ <a href="thread.html#234">[ thread ]</a>
+ <a href="subject.html#234">[ subject ]</a>
+ <a href="author.html#234">[ 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-February/000235.html b/zarb-ml/mageia-webteam/2011-February/000235.html
new file mode 100644
index 000000000..1eef37a6b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000235.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+ </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%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110214122210.79B6541D29%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="000234.html">
+ <LINK REL="Next" HREF="000236.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110214122210.79B6541D29%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 13:22:10 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000234.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000236.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#235">[ date ]</a>
+ <a href="thread.html#235">[ thread ]</a>
+ <a href="subject.html#235">[ subject ]</a>
+ <a href="author.html#235">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=13">https://bugs.mageia.org/show_bug.cgi?id=13</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|ASSIGNED |NEW
+
+--
+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="000234.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000236.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#235">[ date ]</a>
+ <a href="thread.html#235">[ thread ]</a>
+ <a href="subject.html#235">[ subject ]</a>
+ <a href="author.html#235">[ 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-February/000236.html b/zarb-ml/mageia-webteam/2011-February/000236.html
new file mode 100644
index 000000000..28206a003
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000236.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+ </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%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110214122222.F3D2B41D29%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="000235.html">
+ <LINK REL="Next" HREF="000237.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110214122222.F3D2B41D29%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 13:22:22 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000235.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000237.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#236">[ date ]</a>
+ <a href="thread.html#236">[ thread ]</a>
+ <a href="subject.html#236">[ subject ]</a>
+ <a href="author.html#236">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=13">https://bugs.mageia.org/show_bug.cgi?id=13</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+
+--
+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="000235.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000237.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#236">[ date ]</a>
+ <a href="thread.html#236">[ thread ]</a>
+ <a href="subject.html#236">[ subject ]</a>
+ <a href="author.html#236">[ 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-February/000237.html b/zarb-ml/mageia-webteam/2011-February/000237.html
new file mode 100644
index 000000000..c8d4386ee
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000237.html
@@ -0,0 +1,74 @@
+<!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=%3C20110214165415.80C0E41D29%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="000236.html">
+ <LINK REL="Next" HREF="000238.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 18] Do not allow to change status without a comment</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110214165415.80C0E41D29%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 Feb 14 17:54:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000236.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000238.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#237">[ date ]</a>
+ <a href="thread.html#237">[ thread ]</a>
+ <a href="subject.html#237">[ subject ]</a>
+ <a href="author.html#237">[ 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>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>
+
+--- Comment #2 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-02-14 17:54:15 UTC ---
+AFAIK, in mdv bugzilla you can't &quot;Close&quot; a bug without commenting, but you can
+change any other field without commenting.
+
+--
+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="000236.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000238.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#237">[ date ]</a>
+ <a href="thread.html#237">[ thread ]</a>
+ <a href="subject.html#237">[ subject ]</a>
+ <a href="author.html#237">[ 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-February/000238.html b/zarb-ml/mageia-webteam/2011-February/000238.html
new file mode 100644
index 000000000..b90d26f14
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000238.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+ </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%2022%5D%20By%20default%2C%0A%09show%20the%20same%20bug%20report%20after%20editing%20it&In-Reply-To=%3C20110214165537.4B2BE41D29%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="000237.html">
+ <LINK REL="Next" HREF="000239.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2022%5D%20By%20default%2C%0A%09show%20the%20same%20bug%20report%20after%20editing%20it&In-Reply-To=%3C20110214165537.4B2BE41D29%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 17:55:37 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000237.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000239.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#238">[ date ]</a>
+ <a href="thread.html#238">[ thread ]</a>
+ <a href="subject.html#238">[ subject ]</a>
+ <a href="author.html#238">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=22">https://bugs.mageia.org/show_bug.cgi?id=22</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>
+
+--- Comment #1 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-02-14 17:55:37 UTC ---
+Agreed, I always changed that option in my bugzilla account preferences.
+
+--
+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="000237.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000239.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#238">[ date ]</a>
+ <a href="thread.html#238">[ thread ]</a>
+ <a href="subject.html#238">[ subject ]</a>
+ <a href="author.html#238">[ 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-February/000239.html b/zarb-ml/mageia-webteam/2011-February/000239.html
new file mode 100644
index 000000000..47d49fb79
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000239.html
@@ -0,0 +1,71 @@
+<!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=%3C20110214165629.8349941ABC%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="000238.html">
+ <LINK REL="Next" HREF="000240.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 18] Do not allow to change status without a comment</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110214165629.8349941ABC%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 Feb 14 17:56:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000238.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A></li>
+ <LI>Next message: <A HREF="000240.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#239">[ date ]</a>
+ <a href="thread.html#239">[ thread ]</a>
+ <a href="subject.html#239">[ subject ]</a>
+ <a href="author.html#239">[ 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
+----------------------------------------------------------------------------
+ Status|REOPENED |RESOLVED
+ Resolution| |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="000238.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A></li>
+ <LI>Next message: <A HREF="000240.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#239">[ date ]</a>
+ <a href="thread.html#239">[ thread ]</a>
+ <a href="subject.html#239">[ subject ]</a>
+ <a href="author.html#239">[ 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-February/000240.html b/zarb-ml/mageia-webteam/2011-February/000240.html
new file mode 100644
index 000000000..6313415f4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000240.html
@@ -0,0 +1,74 @@
+<!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=%3C20110214165641.9930741D29%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="000239.html">
+ <LINK REL="Next" HREF="000241.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 18] Do not allow to change status without a comment</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110214165641.9930741D29%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 Feb 14 17:56:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000239.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000241.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#240">[ date ]</a>
+ <a href="thread.html#240">[ thread ]</a>
+ <a href="subject.html#240">[ subject ]</a>
+ <a href="author.html#240">[ 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
+----------------------------------------------------------------------------
+ Status|RESOLVED |REOPENED
+ Resolution|FIXED |
+
+--- Comment #3 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-14 17:56:41 CET ---
+reopening
+
+--
+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="000239.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000241.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#240">[ date ]</a>
+ <a href="thread.html#240">[ thread ]</a>
+ <a href="subject.html#240">[ subject ]</a>
+ <a href="author.html#240">[ 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-February/000241.html b/zarb-ml/mageia-webteam/2011-February/000241.html
new file mode 100644
index 000000000..23f911e8a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000241.html
@@ -0,0 +1,71 @@
+<!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=%3C20110214165709.3B67441D2A%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="000240.html">
+ <LINK REL="Next" HREF="000242.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 18] Do not allow to change status without a comment</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110214165709.3B67441D2A%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 Feb 14 17:57:09 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000240.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000242.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#241">[ date ]</a>
+ <a href="thread.html#241">[ thread ]</a>
+ <a href="subject.html#241">[ subject ]</a>
+ <a href="author.html#241">[ 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>
+
+--- Comment #4 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-02-14 17:57:09 UTC ---
+(In reply to comment #2)
+&gt;<i> AFAIK, in mdv bugzilla you can't &quot;Close&quot; a bug without commenting, but you can
+</I>&gt;<i> change any other field without commenting.
+</I>
+indeed, after all, no need to justify going from NEW to ASSIGNED :)
+
+--
+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="000240.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000242.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#241">[ date ]</a>
+ <a href="thread.html#241">[ thread ]</a>
+ <a href="subject.html#241">[ subject ]</a>
+ <a href="author.html#241">[ 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-February/000242.html b/zarb-ml/mageia-webteam/2011-February/000242.html
new file mode 100644
index 000000000..5ab7cbd10
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000242.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+ </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%2022%5D%20By%20default%2C%0A%09show%20the%20same%20bug%20report%20after%20editing%20it&In-Reply-To=%3C20110214171606.E027941D29%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="000241.html">
+ <LINK REL="Next" HREF="000243.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2022%5D%20By%20default%2C%0A%09show%20the%20same%20bug%20report%20after%20editing%20it&In-Reply-To=%3C20110214171606.E027941D29%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 18:16:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000241.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000243.html">[Mageia-webteam] [Bug 23] New: Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#242">[ date ]</a>
+ <a href="thread.html#242">[ thread ]</a>
+ <a href="subject.html#242">[ subject ]</a>
+ <a href="author.html#242">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=22">https://bugs.mageia.org/show_bug.cgi?id=22</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #2 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-14 18:16:07 CET ---
+this is now 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="000241.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000243.html">[Mageia-webteam] [Bug 23] New: Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#242">[ date ]</a>
+ <a href="thread.html#242">[ thread ]</a>
+ <a href="subject.html#242">[ subject ]</a>
+ <a href="author.html#242">[ 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-February/000243.html b/zarb-ml/mageia-webteam/2011-February/000243.html
new file mode 100644
index 000000000..f1cdef596
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000243.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] New: Testing bugs ML
+ </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%2023%5D%20New%3A%20Testing%20bugs%20ML&In-Reply-To=%3Cbug-23-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="000242.html">
+ <LINK REL="Next" HREF="000244.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] New: Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20New%3A%20Testing%20bugs%20ML&In-Reply-To=%3Cbug-23-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 23] New: Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 14 20:33:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000242.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A></li>
+ <LI>Next message: <A HREF="000244.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#243">[ date ]</a>
+ <a href="thread.html#243">[ thread ]</a>
+ <a href="subject.html#243">[ subject ]</a>
+ <a href="author.html#243">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+ Summary: Testing bugs ML
+ 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">dmorganec at gmail.com</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>
+
+
+User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:2.0b12pre) Gecko/20110213
+Firefox/4.0b12pre
+Build Identifier:
+
+This is a bug to test the bugs ML.
+
+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="000242.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A></li>
+ <LI>Next message: <A HREF="000244.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#243">[ date ]</a>
+ <a href="thread.html#243">[ thread ]</a>
+ <a href="subject.html#243">[ subject ]</a>
+ <a href="author.html#243">[ 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-February/000244.html b/zarb-ml/mageia-webteam/2011-February/000244.html
new file mode 100644
index 000000000..135a023eb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000244.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215005105.2258841D98%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="000243.html">
+ <LINK REL="Next" HREF="000245.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215005105.2258841D98%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 01:51:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000243.html">[Mageia-webteam] [Bug 23] New: Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000245.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#244">[ date ]</a>
+ <a href="thread.html#244">[ thread ]</a>
+ <a href="subject.html#244">[ subject ]</a>
+ <a href="author.html#244">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-15 01:51:05 CET ---
+test
+
+--
+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="000243.html">[Mageia-webteam] [Bug 23] New: Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000245.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#244">[ date ]</a>
+ <a href="thread.html#244">[ thread ]</a>
+ <a href="subject.html#244">[ subject ]</a>
+ <a href="author.html#244">[ 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-February/000245.html b/zarb-ml/mageia-webteam/2011-February/000245.html
new file mode 100644
index 000000000..302d2984b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000245.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215005346.AF91941D9D%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="000244.html">
+ <LINK REL="Next" HREF="000246.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215005346.AF91941D9D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 01:53:46 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000244.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000246.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#245">[ date ]</a>
+ <a href="thread.html#245">[ thread ]</a>
+ <a href="subject.html#245">[ subject ]</a>
+ <a href="author.html#245">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+--- Comment #2 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-15 01:53:47 CET ---
+test2
+
+--
+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="000244.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000246.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#245">[ date ]</a>
+ <a href="thread.html#245">[ thread ]</a>
+ <a href="subject.html#245">[ subject ]</a>
+ <a href="author.html#245">[ 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-February/000246.html b/zarb-ml/mageia-webteam/2011-February/000246.html
new file mode 100644
index 000000000..02418ec6b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000246.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215005505.9204541DA0%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="000245.html">
+ <LINK REL="Next" HREF="000248.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215005505.9204541DA0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 01:55:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000245.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000248.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#246">[ date ]</a>
+ <a href="thread.html#246">[ thread ]</a>
+ <a href="subject.html#246">[ subject ]</a>
+ <a href="author.html#246">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</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 #3 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-02-15 01:55:05 CET ---
+Thanks a bunch, this is now fixed.
+
+N.B. you can subscribe to the ML from
+<A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi/info/bugs">https://ml.mageia.org/wwsympa-wrapper.fcgi/info/bugs</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="000245.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000248.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#246">[ date ]</a>
+ <a href="thread.html#246">[ thread ]</a>
+ <a href="subject.html#246">[ subject ]</a>
+ <a href="author.html#246">[ 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-February/000247.html b/zarb-ml/mageia-webteam/2011-February/000247.html
new file mode 100644
index 000000000..750da6576
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000247.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+ </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%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110215010155.10E1841DA1%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="000350.html">
+ <LINK REL="Next" HREF="000251.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110215010155.10E1841DA1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 02:01:55 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000350.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000251.html">[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#247">[ date ]</a>
+ <a href="thread.html#247">[ thread ]</a>
+ <a href="subject.html#247">[ subject ]</a>
+ <a href="author.html#247">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=13">https://bugs.mageia.org/show_bug.cgi?id=13</A>
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-15 02:01:55 CET ---
+interesting bugreport, we will look at 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="000350.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000251.html">[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#247">[ date ]</a>
+ <a href="thread.html#247">[ thread ]</a>
+ <a href="subject.html#247">[ subject ]</a>
+ <a href="author.html#247">[ 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-February/000248.html b/zarb-ml/mageia-webteam/2011-February/000248.html
new file mode 100644
index 000000000..9c207dde9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000248.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215020229.7853441DE6%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="000246.html">
+ <LINK REL="Next" HREF="000249.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215020229.7853441DE6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 03:02:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000246.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000249.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#248">[ date ]</a>
+ <a href="thread.html#248">[ thread ]</a>
+ <a href="subject.html#248">[ subject ]</a>
+ <a href="author.html#248">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+--- Comment #4 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-15 02:25:34 CET ---
+test
+
+--- Comment #5 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-15 02:30:06 CET ---
+test
+
+--- Comment #6 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-15 02:38:27 CET ---
+test
+
+--- Comment #7 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-15 02:40:42 CET ---
+test
+
+--- Comment #8 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-15 03:02:29 CET ---
+test
+
+--
+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="000246.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000249.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#248">[ date ]</a>
+ <a href="thread.html#248">[ thread ]</a>
+ <a href="subject.html#248">[ subject ]</a>
+ <a href="author.html#248">[ 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-February/000249.html b/zarb-ml/mageia-webteam/2011-February/000249.html
new file mode 100644
index 000000000..b2d9170ca
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000249.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215020532.22A8041DE5%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="000248.html">
+ <LINK REL="Next" HREF="000250.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215020532.22A8041DE5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 03:05:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000248.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000250.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#249">[ date ]</a>
+ <a href="thread.html#249">[ thread ]</a>
+ <a href="subject.html#249">[ subject ]</a>
+ <a href="author.html#249">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+--- Comment #9 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-15 03:05:32 CET ---
+test
+
+--
+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="000248.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000250.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#249">[ date ]</a>
+ <a href="thread.html#249">[ thread ]</a>
+ <a href="subject.html#249">[ subject ]</a>
+ <a href="author.html#249">[ 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-February/000250.html b/zarb-ml/mageia-webteam/2011-February/000250.html
new file mode 100644
index 000000000..c6d18b2e5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000250.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215034510.77FC041DFE%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="000249.html">
+ <LINK REL="Next" HREF="000346.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110215034510.77FC041DFE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 04:45:10 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000249.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000346.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#250">[ date ]</a>
+ <a href="thread.html#250">[ thread ]</a>
+ <a href="subject.html#250">[ subject ]</a>
+ <a href="author.html#250">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+--- Comment #10 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-02-15 04:45:10 CET ---
+Test.
+
+--
+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="000249.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000346.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#250">[ date ]</a>
+ <a href="thread.html#250">[ thread ]</a>
+ <a href="subject.html#250">[ subject ]</a>
+ <a href="author.html#250">[ 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-February/000251.html b/zarb-ml/mageia-webteam/2011-February/000251.html
new file mode 100644
index 000000000..4ce9a36f4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000251.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+ </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%2025%5D%20New%3A%20On%20the%20german%20registry%20at%20Mageia%0A%20identica%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3Cbug-25-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="000247.html">
+ <LINK REL="Next" HREF="000252.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2025%5D%20New%3A%20On%20the%20german%20registry%20at%20Mageia%0A%20identica%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3Cbug-25-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 08:52:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000247.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000252.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#251">[ date ]</a>
+ <a href="thread.html#251">[ thread ]</a>
+ <a href="subject.html#251">[ subject ]</a>
+ <a href="author.html#251">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=25">https://bugs.mageia.org/show_bug.cgi?id=25</A>
+
+ Summary: On the german registry at Mageia identica there are 2
+ fields for the name, the first should mean &quot;Vorname&quot;
+ and the second one &quot;Nachname&quot;, in both fields stands
+ &quot;Nachname&quot;
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://identica.mageia.org/register">http://identica.mageia.org/register</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ Priority: Normal
+ Component: identity.mageia.org
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">daniel.kreuter85 at googlemail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+User-Agent: Mozilla/5.0 (X11; Linux i686; rv:2.0b11) Gecko/20100101
+Firefox/4.0b11
+Build Identifier:
+
+Description of problem:
+see summary
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1. open the register page as a german
+2.
+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="000247.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="000252.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#251">[ date ]</a>
+ <a href="thread.html#251">[ thread ]</a>
+ <a href="subject.html#251">[ subject ]</a>
+ <a href="author.html#251">[ 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-February/000252.html b/zarb-ml/mageia-webteam/2011-February/000252.html
new file mode 100644
index 000000000..0b47c12b1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000252.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+ </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%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110215075306.3CE2041E2B%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="000251.html">
+ <LINK REL="Next" HREF="000253.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110215075306.3CE2041E2B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 08:53:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000251.html">[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000253.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#252">[ date ]</a>
+ <a href="thread.html#252">[ thread ]</a>
+ <a href="subject.html#252">[ subject ]</a>
+ <a href="author.html#252">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=25">https://bugs.mageia.org/show_bug.cgi?id=25</A>
+
+Daniel Kreuter &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">daniel.kreuter85 at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |Low
+
+--
+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="000251.html">[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000253.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#252">[ date ]</a>
+ <a href="thread.html#252">[ thread ]</a>
+ <a href="subject.html#252">[ subject ]</a>
+ <a href="author.html#252">[ 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-February/000253.html b/zarb-ml/mageia-webteam/2011-February/000253.html
new file mode 100644
index 000000000..58a9f9308
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000253.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+ </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%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110215083022.9C91741E33%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="000252.html">
+ <LINK REL="Next" HREF="000300.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110215083022.9C91741E33%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 09:30:22 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000252.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000300.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#253">[ date ]</a>
+ <a href="thread.html#253">[ thread ]</a>
+ <a href="subject.html#253">[ subject ]</a>
+ <a href="author.html#253">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=25">https://bugs.mageia.org/show_bug.cgi?id=25</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #1 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-02-15 09:30:22 UTC ---
+This is already corrected in trunk svn, just needs to be merged in live.
+
+--
+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="000252.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000300.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#253">[ date ]</a>
+ <a href="thread.html#253">[ thread ]</a>
+ <a href="subject.html#253">[ subject ]</a>
+ <a href="author.html#253">[ 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-February/000254.html b/zarb-ml/mageia-webteam/2011-February/000254.html
new file mode 100644
index 000000000..0c5cd1586
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000254.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 17] Remove unused fields
+ </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%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110215091520.98C5141E35%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="000381.html">
+ <LINK REL="Next" HREF="000255.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 17] Remove unused fields</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110215091520.98C5141E35%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 17] Remove unused fields">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 10:15:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000381.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000255.html">[Mageia-webteam] [Bug 28] New: Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#254">[ date ]</a>
+ <a href="thread.html#254">[ thread ]</a>
+ <a href="subject.html#254">[ subject ]</a>
+ <a href="author.html#254">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=17">https://bugs.mageia.org/show_bug.cgi?id=17</A>
+
+R&#233;my CLOUARD &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">shikamaru at shikamaru.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">shikamaru at shikamaru.fr</A>
+
+--- Comment #3 from R&#233;my CLOUARD &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">shikamaru at shikamaru.fr</A>&gt; 2011-02-15 10:15:20 UTC ---
+What about feature requests ? We might not want to introduce some changes for
+some release and postpone them for the next release&#8230;
+
+--
+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="000381.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000255.html">[Mageia-webteam] [Bug 28] New: Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#254">[ date ]</a>
+ <a href="thread.html#254">[ thread ]</a>
+ <a href="subject.html#254">[ subject ]</a>
+ <a href="author.html#254">[ 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-February/000255.html b/zarb-ml/mageia-webteam/2011-February/000255.html
new file mode 100644
index 000000000..3a3f17362
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000255.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] New: Wrong character encoding
+ </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%2028%5D%20New%3A%20Wrong%20character%20encoding&In-Reply-To=%3Cbug-28-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="000254.html">
+ <LINK REL="Next" HREF="000256.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] New: Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20New%3A%20Wrong%20character%20encoding&In-Reply-To=%3Cbug-28-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 28] New: Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 10:54:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000254.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000256.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#255">[ date ]</a>
+ <a href="thread.html#255">[ thread ]</a>
+ <a href="subject.html#255">[ subject ]</a>
+ <a href="author.html#255">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</A>
+
+ Summary: Wrong character encoding
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: identity.mageia.org
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">heninj at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+When I edit my account parameters on identity.mageia.org, the accents in my
+full name end up mangled, as if a UTF-8 string was interpreted
+as iso-8859-1, then re-encoded as UTF-8, or something like that.
+
+--
+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="000254.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000256.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#255">[ date ]</a>
+ <a href="thread.html#255">[ thread ]</a>
+ <a href="subject.html#255">[ subject ]</a>
+ <a href="author.html#255">[ 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-February/000256.html b/zarb-ml/mageia-webteam/2011-February/000256.html
new file mode 100644
index 000000000..a0f7f0f68
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000256.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] Wrong character encoding
+ </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%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215095647.DC80D41E2F%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="000255.html">
+ <LINK REL="Next" HREF="000258.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215095647.DC80D41E2F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 28] Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 10:56:47 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000255.html">[Mageia-webteam] [Bug 28] New: Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000258.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#256">[ date ]</a>
+ <a href="thread.html#256">[ thread ]</a>
+ <a href="subject.html#256">[ subject ]</a>
+ <a href="author.html#256">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</A>
+
+J&#233;r&#244;me H&#233;nin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">heninj at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Severity|normal |minor
+
+--- Comment #1 from J&#233;r&#244;me H&#233;nin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">heninj at gmail.com</A>&gt; 2011-02-15 10:56:48 UTC ---
+(In reply to comment #0)
+&gt;<i> When I edit my account parameters on identity.mageia.org, the accents in my
+</I>&gt;<i> full name end up mangled, as if a UTF-8 string was interpreted
+</I>&gt;<i> as iso-8859-1, then re-encoded as UTF-8, or something like that.
+</I>
+Now that the bug is submitted, I can see on the bugzilla page that my name is
+stored correctly in the database, so it is only a problem with the display on
+identity.mageia.org. For that reason, I am reducing the severity of this bug to
+minor.
+
+--
+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="000255.html">[Mageia-webteam] [Bug 28] New: Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000258.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#256">[ date ]</a>
+ <a href="thread.html#256">[ thread ]</a>
+ <a href="subject.html#256">[ subject ]</a>
+ <a href="author.html#256">[ 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-February/000257.html b/zarb-ml/mageia-webteam/2011-February/000257.html
new file mode 100644
index 000000000..ba499e195
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000257.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Next meeting, February 16th
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Next%20meeting%2C%20February%2016th&In-Reply-To=%3C201102151152.59216.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="000288.html">
+ <LINK REL="Next" HREF="000262.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Next meeting, February 16th</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Next%20meeting%2C%20February%2016th&In-Reply-To=%3C201102151152.59216.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Next meeting, February 16th">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Tue Feb 15 11:52:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000288.html">[Mageia-webteam] [Mageia-i18n] New page of the website to translate
+</A></li>
+ <LI>Next message: <A HREF="000262.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#257">[ date ]</a>
+ <a href="thread.html#257">[ thread ]</a>
+ <a href="subject.html#257">[ subject ]</a>
+ <a href="author.html#257">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Since rda isn't here this week, and since you were crazy enough to let
+me volunteer for substitute, it's my turn to call for this meeting.
+
+Weekly web team meeting will take place tomorrow, Day 1 after alpha
+release on #mageia-web (as usual) at 14.00 UTC (meaning 15.00 Paris
+time).
+
+Let's get status reports on all things and experiences from the first
+practical use of our systems.
+
+Oliver
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000288.html">[Mageia-webteam] [Mageia-i18n] New page of the website to translate
+</A></li>
+ <LI>Next message: <A HREF="000262.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#257">[ date ]</a>
+ <a href="thread.html#257">[ thread ]</a>
+ <a href="subject.html#257">[ subject ]</a>
+ <a href="author.html#257">[ 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-February/000258.html b/zarb-ml/mageia-webteam/2011-February/000258.html
new file mode 100644
index 000000000..c42044c29
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000258.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] Wrong character encoding
+ </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%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215105804.779DA41E41%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="000256.html">
+ <LINK REL="Next" HREF="000259.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215105804.779DA41E41%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 28] Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 11:58:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000256.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000259.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#258">[ date ]</a>
+ <a href="thread.html#258">[ thread ]</a>
+ <a href="subject.html#258">[ subject ]</a>
+ <a href="author.html#258">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</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 #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-15 11:58:04 UTC ---
+This should be fixed in trunk , try <A HREF="https://identity-trunk.mageia.org/">https://identity-trunk.mageia.org/</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="000256.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000259.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#258">[ date ]</a>
+ <a href="thread.html#258">[ thread ]</a>
+ <a href="subject.html#258">[ subject ]</a>
+ <a href="author.html#258">[ 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-February/000259.html b/zarb-ml/mageia-webteam/2011-February/000259.html
new file mode 100644
index 000000000..d5895ee37
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000259.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] Wrong character encoding
+ </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%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215110727.54C7641E41%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="000258.html">
+ <LINK REL="Next" HREF="000260.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215110727.54C7641E41%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 28] Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 12:07:27 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000258.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000260.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#259">[ date ]</a>
+ <a href="thread.html#259">[ thread ]</a>
+ <a href="subject.html#259">[ subject ]</a>
+ <a href="author.html#259">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</A>
+
+--- Comment #3 from J&#233;r&#244;me H&#233;nin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">heninj at gmail.com</A>&gt; 2011-02-15 12:07:27 UTC ---
+If I change the name field and click &quot;update&quot;, I get an &quot;Insufficient access&quot;
+error. Also, what is the &quot;add&quot; button for? It doesn't seem to do much.
+
+--
+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="000258.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000260.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#259">[ date ]</a>
+ <a href="thread.html#259">[ thread ]</a>
+ <a href="subject.html#259">[ subject ]</a>
+ <a href="author.html#259">[ 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-February/000260.html b/zarb-ml/mageia-webteam/2011-February/000260.html
new file mode 100644
index 000000000..98ceb7c61
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000260.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] Wrong character encoding
+ </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%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215112447.B735741E45%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="000259.html">
+ <LINK REL="Next" HREF="000261.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215112447.B735741E45%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 28] Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 12:24:47 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000259.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000261.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#260">[ date ]</a>
+ <a href="thread.html#260">[ thread ]</a>
+ <a href="subject.html#260">[ subject ]</a>
+ <a href="author.html#260">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</A>
+
+--- Comment #4 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-15 12:24:47 UTC ---
+The add button on what 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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000259.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000261.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#260">[ date ]</a>
+ <a href="thread.html#260">[ thread ]</a>
+ <a href="subject.html#260">[ subject ]</a>
+ <a href="author.html#260">[ 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-February/000261.html b/zarb-ml/mageia-webteam/2011-February/000261.html
new file mode 100644
index 000000000..7a99c5505
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000261.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] Wrong character encoding
+ </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%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215114042.08AB441E4A%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="000260.html">
+ <LINK REL="Next" HREF="000263.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215114042.08AB441E4A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 28] Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 12:40:42 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000260.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000263.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#261">[ date ]</a>
+ <a href="thread.html#261">[ thread ]</a>
+ <a href="subject.html#261">[ subject ]</a>
+ <a href="author.html#261">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</A>
+
+--- Comment #5 from J&#233;r&#244;me H&#233;nin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">heninj at gmail.com</A>&gt; 2011-02-15 12:40:42 UTC ---
+I am talking about the Add button next to the 'cn' attribute, on the form at
+<A HREF="https://identity-trunk.mageia.org/user">https://identity-trunk.mageia.org/user</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="000260.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000263.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#261">[ date ]</a>
+ <a href="thread.html#261">[ thread ]</a>
+ <a href="subject.html#261">[ subject ]</a>
+ <a href="author.html#261">[ 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-February/000262.html b/zarb-ml/mageia-webteam/2011-February/000262.html
new file mode 100644
index 000000000..87206f8a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000262.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Next meeting, February 16th
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Next%20meeting%2C%20February%2016th&In-Reply-To=%3C201102151222.46804.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="000257.html">
+ <LINK REL="Next" HREF="000297.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Next meeting, February 16th</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Next%20meeting%2C%20February%2016th&In-Reply-To=%3C201102151222.46804.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Next meeting, February 16th">stormi at laposte.net
+ </A><BR>
+ <I>Tue Feb 15 12:22:46 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000257.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI>Next message: <A HREF="000297.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#262">[ date ]</a>
+ <a href="thread.html#262">[ thread ]</a>
+ <a href="subject.html#262">[ subject ]</a>
+ <a href="author.html#262">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+Le mardi 15 f&#233;vrier 2011 11:52:58, Oliver Burger a &#233;crit :
+&gt;<i> Since rda isn't here this week, and since you were crazy enough to let
+</I>&gt;<i> me volunteer for substitute, it's my turn to call for this meeting.
+</I>
+s/cr/l/ ;)
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000257.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI>Next message: <A HREF="000297.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#262">[ date ]</a>
+ <a href="thread.html#262">[ thread ]</a>
+ <a href="subject.html#262">[ subject ]</a>
+ <a href="author.html#262">[ 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-February/000263.html b/zarb-ml/mageia-webteam/2011-February/000263.html
new file mode 100644
index 000000000..1e49e8526
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000263.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] Wrong character encoding
+ </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%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215114829.CA7D641E48%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="000261.html">
+ <LINK REL="Next" HREF="000289.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110215114829.CA7D641E48%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 28] Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 12:48:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000261.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000289.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#263">[ date ]</a>
+ <a href="thread.html#263">[ thread ]</a>
+ <a href="subject.html#263">[ subject ]</a>
+ <a href="author.html#263">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</A>
+
+--- Comment #6 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-15 12:48:30 UTC ---
+The generated form is a automatic one, so it can be used with any type of ldap.
+I was planning to work on a better form ( ie, a non automatic one that will
+work with a specific usecase ), but didn't finish anything. So yes, the various
+button should disappear, but this is not related to this bug report ( which is
+about character encoding ).
+
+--
+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="000261.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000289.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#263">[ date ]</a>
+ <a href="thread.html#263">[ thread ]</a>
+ <a href="subject.html#263">[ subject ]</a>
+ <a href="author.html#263">[ 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-February/000264.html b/zarb-ml/mageia-webteam/2011-February/000264.html
new file mode 100644
index 000000000..e21148abe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000264.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Hello Mageia
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Hello%20Mageia&In-Reply-To=%3CAANLkTikjD8tNkdKw%2B2o6AsgiVuQjmEZ3zPC7ANWUs%3Dbm%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="000297.html">
+ <LINK REL="Next" HREF="000270.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Hello Mageia</H1>
+ <B>Clod</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Hello%20Mageia&In-Reply-To=%3CAANLkTikjD8tNkdKw%2B2o6AsgiVuQjmEZ3zPC7ANWUs%3Dbm%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Hello Mageia">clod at phpugph.com
+ </A><BR>
+ <I>Tue Feb 15 13:57:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000297.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI>Next message: <A HREF="000270.html">[Mageia-webteam] Hello Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#264">[ date ]</a>
+ <a href="thread.html#264">[ thread ]</a>
+ <a href="subject.html#264">[ subject ]</a>
+ <a href="author.html#264">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Thanks a lot for the alpha release...I'm hoping to contribute
+something/somehow even little work stuff for the web team.
+
+I do web stuff primarily... c&quot;,)
+
+Best Regards,
+Clod
+Personal: <A HREF="http://www.cdelfino.com">http://www.cdelfino.com</A>
+Group: <A HREF="http://www.phpugph.com">http://www.phpugph.com</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000297.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI>Next message: <A HREF="000270.html">[Mageia-webteam] Hello Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#264">[ date ]</a>
+ <a href="thread.html#264">[ thread ]</a>
+ <a href="subject.html#264">[ subject ]</a>
+ <a href="author.html#264">[ 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-February/000265.html b/zarb-ml/mageia-webteam/2011-February/000265.html
new file mode 100644
index 000000000..08a8476ec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000265.html
@@ -0,0 +1,121 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with 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%2032%5D%20New%3A%20Mageia%20identity%20system%20not%20in%20sync%0A%09with%20bugzilla&In-Reply-To=%3Cbug-32-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="000270.html">
+ <LINK REL="Next" HREF="000266.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2032%5D%20New%3A%20Mageia%20identity%20system%20not%20in%20sync%0A%09with%20bugzilla&In-Reply-To=%3Cbug-32-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 17:36:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000270.html">[Mageia-webteam] Hello Mageia
+</A></li>
+ <LI>Next message: <A HREF="000266.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#265">[ date ]</a>
+ <a href="thread.html#265">[ thread ]</a>
+ <a href="subject.html#265">[ subject ]</a>
+ <a href="author.html#265">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=32">https://bugs.mageia.org/show_bug.cgi?id=32</A>
+
+ Summary: Mageia identity system not in sync with bugzilla
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">luzemario at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; pt-BR; rv:1.9.2.13)
+Gecko/20101203 Firefox/3.6.13 (.NET CLR 3.5.30729)
+Build Identifier:
+
+Description of problem:
+
+If you create a password shorter than six chars in Mageia Identity System you
+cannot login to bugzilla.
+
+Please block passwords shorter than six chars in Mageia Identity System.
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1.Create an account in Mageia Identity System
+2.Choose a password shorten than six characters (i.e. I choose five letters)
+3.You cannot login to bugzilla.
+
+
+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="000270.html">[Mageia-webteam] Hello Mageia
+</A></li>
+ <LI>Next message: <A HREF="000266.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#265">[ date ]</a>
+ <a href="thread.html#265">[ thread ]</a>
+ <a href="subject.html#265">[ subject ]</a>
+ <a href="author.html#265">[ 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-February/000266.html b/zarb-ml/mageia-webteam/2011-February/000266.html
new file mode 100644
index 000000000..edfbc63b5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000266.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for 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%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215165028.8BD7141EE6%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="000265.html">
+ <LINK REL="Next" HREF="000267.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215165028.8BD7141EE6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 17:50:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000265.html">[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000267.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#266">[ date ]</a>
+ <a href="thread.html#266">[ thread ]</a>
+ <a href="subject.html#266">[ subject ]</a>
+ <a href="author.html#266">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=32">https://bugs.mageia.org/show_bug.cgi?id=32</A>
+
+Luzem&#225;rio Dantas &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">luzemario at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Mageia identity system not |Can create unusable
+ |in sync with bugzilla |passwords shorter than six
+ | |chars for bugzilla
+
+--
+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="000265.html">[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000267.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#266">[ date ]</a>
+ <a href="thread.html#266">[ thread ]</a>
+ <a href="subject.html#266">[ subject ]</a>
+ <a href="author.html#266">[ 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-February/000267.html b/zarb-ml/mageia-webteam/2011-February/000267.html
new file mode 100644
index 000000000..29ea6e0ed
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000267.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for 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%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215165056.DB9D541EEB%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="000266.html">
+ <LINK REL="Next" HREF="000268.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215165056.DB9D541EEB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 17:50:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000266.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000268.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#267">[ date ]</a>
+ <a href="thread.html#267">[ thread ]</a>
+ <a href="subject.html#267">[ subject ]</a>
+ <a href="author.html#267">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=32">https://bugs.mageia.org/show_bug.cgi?id=32</A>
+
+Luzem&#225;rio Dantas &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">luzemario at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |Low
+
+--
+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="000266.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000268.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#267">[ date ]</a>
+ <a href="thread.html#267">[ thread ]</a>
+ <a href="subject.html#267">[ subject ]</a>
+ <a href="author.html#267">[ 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-February/000268.html b/zarb-ml/mageia-webteam/2011-February/000268.html
new file mode 100644
index 000000000..25642d181
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000268.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for 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%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215165802.DE67341EF0%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="000267.html">
+ <LINK REL="Next" HREF="000269.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215165802.DE67341EF0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 17:58:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000267.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000269.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#268">[ date ]</a>
+ <a href="thread.html#268">[ thread ]</a>
+ <a href="subject.html#268">[ subject ]</a>
+ <a href="author.html#268">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=32">https://bugs.mageia.org/show_bug.cgi?id=32</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-02-15 17:58:03 UTC ---
+So bugzilla has a built in limit to the password it accept ?
+
+I would rather try to see if this limit is hardcoded in bugzilla and change it.
+Since identity is gonna be used by forums ( and so by non technical people ), I
+am not sure that forcing to have a strong password is gonna please everybody (
+even if I would be in favor of something stronger than 6 letter, ie 8 +
+specific char and so on ).
+
+--
+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="000267.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000269.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#268">[ date ]</a>
+ <a href="thread.html#268">[ thread ]</a>
+ <a href="subject.html#268">[ subject ]</a>
+ <a href="author.html#268">[ 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-February/000269.html b/zarb-ml/mageia-webteam/2011-February/000269.html
new file mode 100644
index 000000000..0a934c35e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000269.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for 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%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215174447.9539341EF9%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="000268.html">
+ <LINK REL="Next" HREF="000273.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215174447.9539341EF9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 15 18:44:47 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000268.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000273.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#269">[ date ]</a>
+ <a href="thread.html#269">[ thread ]</a>
+ <a href="subject.html#269">[ subject ]</a>
+ <a href="author.html#269">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=32">https://bugs.mageia.org/show_bug.cgi?id=32</A>
+
+--- Comment #2 from Luzem&#225;rio Dantas &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">luzemario at gmail.com</A>&gt; 2011-02-15 18:44:47 CET ---
+(In reply to comment #1)
+&gt;<i> So bugzilla has a built in limit to the password it accept ?
+</I>&gt;<i>
+</I>&gt;<i> I would rather try to see if this limit is hardcoded in bugzilla and change it.
+</I>&gt;<i> Since identity is gonna be used by forums ( and so by non technical people ), I
+</I>&gt;<i> am not sure that forcing to have a strong password is gonna please everybody (
+</I>&gt;<i> even if I would be in favor of something stronger than 6 letter, ie 8 +
+</I>&gt;<i> specific char and so on ).
+</I>
+Michael,
+
+Yes, bugzilla limits passwords to at least six chars. I suggested enforcing six
+minimum chars because I do not know the level of difficulty to change it in
+bugzilla.
+
+Either solution can solve this bug. For me makes little difference, but I agree
+it can be annoying for novice users.
+
+--
+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="000268.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000273.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#269">[ date ]</a>
+ <a href="thread.html#269">[ thread ]</a>
+ <a href="subject.html#269">[ subject ]</a>
+ <a href="author.html#269">[ 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-February/000270.html b/zarb-ml/mageia-webteam/2011-February/000270.html
new file mode 100644
index 000000000..92a99b3d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000270.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Hello Mageia
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Hello%20Mageia&In-Reply-To=%3CAANLkTim7AkM%3DbgtL%2BV7xq0Z-W49w98sahHhECxwN0Y4K%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="000264.html">
+ <LINK REL="Next" HREF="000265.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Hello Mageia</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Hello%20Mageia&In-Reply-To=%3CAANLkTim7AkM%3DbgtL%2BV7xq0Z-W49w98sahHhECxwN0Y4K%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Hello Mageia">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Feb 15 21:16:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000264.html">[Mageia-webteam] Hello Mageia
+</A></li>
+ <LI>Next message: <A HREF="000265.html">[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#270">[ date ]</a>
+ <a href="thread.html#270">[ thread ]</a>
+ <a href="subject.html#270">[ subject ]</a>
+ <a href="author.html#270">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 15 February 2011 12:57, Clod &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">clod at phpugph.com</A>&gt; wrote:
+
+&gt;<i> Thanks a lot for the alpha release...I'm hoping to contribute
+</I>&gt;<i> something/somehow even little work stuff for the web team.
+</I>&gt;<i>
+</I>&gt;<i> I do web stuff primarily... c&quot;,)
+</I>&gt;<i>
+</I>&gt;<i> Best Regards,
+</I>&gt;<i> Clod
+</I>&gt;<i> Personal: <A HREF="http://www.cdelfino.com">http://www.cdelfino.com</A>
+</I>&gt;<i> Group: <A HREF="http://www.phpugph.com">http://www.phpugph.com</A>
+</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 Clod,
+
+Welcome !
+
+Did you have a look at the wiki to have an idea about the web development
+team?
+If you didn't it's here:
+<A HREF="http://mageia.org/wiki/doku.php?id=web">http://mageia.org/wiki/doku.php?id=web</A>
+
+There is weekly meeting every Wednesday (tomorrow) at 14:00 GMT, on irc
+#mageia-web.
+If you can make it I'm sure there are things that you can help with.
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110215/68d66232/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000264.html">[Mageia-webteam] Hello Mageia
+</A></li>
+ <LI>Next message: <A HREF="000265.html">[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#270">[ date ]</a>
+ <a href="thread.html#270">[ thread ]</a>
+ <a href="subject.html#270">[ subject ]</a>
+ <a href="author.html#270">[ 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-February/000271.html b/zarb-ml/mageia-webteam/2011-February/000271.html
new file mode 100644
index 000000000..4adeac81a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000271.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Server requirements second attempt
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Server%20requirements%20second%20attempt&In-Reply-To=%3CAANLkTi%3DRh_anM8QAiMrEQJhGiK9OZ6zi5cBfu_vz1HDf%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="000227.html">
+ <LINK REL="Next" HREF="000222.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Server requirements second attempt</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Server%20requirements%20second%20attempt&In-Reply-To=%3CAANLkTi%3DRh_anM8QAiMrEQJhGiK9OZ6zi5cBfu_vz1HDf%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Server requirements second attempt">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Feb 15 21:23:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000227.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI>Next message: <A HREF="000222.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#271">[ date ]</a>
+ <a href="thread.html#271">[ thread ]</a>
+ <a href="subject.html#271">[ subject ]</a>
+ <a href="author.html#271">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 13 February 2011 19:55, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+
+&gt;<i> On Sun, 13 Feb 2011 11:56:45 +0000, Kosmas Chatzimichalis wrote:
+</I>&gt;<i>
+</I>&gt;&gt;<i> Michael,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Here's the second attempt about requirement for the server following the
+</I>&gt;&gt;<i> initial one some time ago.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Not sure if we should be looking at the Mandriva Cooker rpms or other
+</I>&gt;&gt;<i> specific version.
+</I>&gt;&gt;<i> The ones below are from the Cooker distribution, but if I should be
+</I>&gt;&gt;<i> looking
+</I>&gt;&gt;<i> at a different one let me know:
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Well, for ruby, the issue is that we are using puppet on server, and so
+</I>&gt;<i> updating to cooker
+</I>&gt;<i> rpms is IMHO risky. I would prefer to keep it with supported and tested
+</I>&gt;<i> version ( as puppet
+</I>&gt;<i> is using rails for active record, for reporting and this is used for
+</I>&gt;<i> deploying postgresql db ).
+</I>&gt;<i> So I can try, but this will requires more testing ( as I need to check that
+</I>&gt;<i> everything still work
+</I>&gt;<i> fine on puppet side ).
+</I>&gt;<i>
+</I>
+Sure, no problem Michael.
+Maybe we didn't do it right from the beginning, as we should have specified
+which versions to use in the first place.
+
+
+&gt;<i>
+</I>&gt;<i>
+</I>&gt;&gt;<i> - ruby-1.8.7.p330-1mdv2011.0.i586.rpm (main)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> - ruby-RubyGems-1.3.7-1mdv2011.0.noarch.rpm (main)
+</I>&gt;&gt;<i> - rails-2.3.10-1mdv2011.0.noarch.rpm (contrib) - altough there is a
+</I>&gt;&gt;<i> security upgrade to 2.3.11 (
+</I>&gt;&gt;<i> <A HREF="http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4">http://weblog.rubyonrails.org/2011/2/8/new-releases-2-3-11-and-3-0-4</A>)
+</I>&gt;&gt;<i> - Database to be used either MySQL or PostgreSQL
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I believe that there are benefits for using version 3, so I would like to
+</I>&gt;&gt;<i> investigate if it's possible to build a package for it.
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Well, how hard is this to update later the project to rails 3 ?
+</I>&gt;<i> I mean, the first version is quite simple, so what about doing the first in
+</I>&gt;<i> rails 2.X
+</I>&gt;<i> with fewer features, and later do it in rails 3 with more features ( and
+</I>&gt;<i> likely better architectures, as we
+</I>&gt;<i> often gain insight of the application once we dvelop the first version and
+</I>&gt;<i> get the first feedback )
+</I>&gt;<i>
+</I>&gt;<i> Maybe this was badly specified, or I badly explained, but a simple CRUd
+</I>&gt;<i> will be enough, do not really
+</I>&gt;<i> add too much feature for the first version.
+</I>&gt;<i>
+</I>&gt;<i> As mentioned before, maybe we should have specified the available versions
+</I>in the beginning.
+No problem, can do it again.
+Let me know which version I should be using.
+
+
+
+&gt;<i>
+</I>&gt;<i> If you know who is current maintainer for it, I can get in touch and see
+</I>&gt;&gt;<i> if
+</I>&gt;&gt;<i> I can help with that.
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Shikamaru, ( <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">shikamaru at mandriva</A> )
+</I>&gt;<i>
+</I>
+Thanks. Got contact :-)
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110215/355f6b5d/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000227.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI>Next message: <A HREF="000222.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#271">[ date ]</a>
+ <a href="thread.html#271">[ thread ]</a>
+ <a href="subject.html#271">[ subject ]</a>
+ <a href="author.html#271">[ 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-February/000272.html b/zarb-ml/mageia-webteam/2011-February/000272.html
new file mode 100644
index 000000000..41ed5ef37
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000272.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintainers db tasks
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20tasks&In-Reply-To=%3CAANLkTinqLWuCfQSi%3DeuWfYpsWvw1_8NBRcK4EeG%3DwW2D%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="000228.html">
+ <LINK REL="Next" HREF="000220.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintainers db tasks</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20tasks&In-Reply-To=%3CAANLkTinqLWuCfQSi%3DeuWfYpsWvw1_8NBRcK4EeG%3DwW2D%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintainers db tasks">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Feb 15 21:31:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000228.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI>Next message: <A HREF="000220.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#272">[ date ]</a>
+ <a href="thread.html#272">[ thread ]</a>
+ <a href="subject.html#272">[ subject ]</a>
+ <a href="author.html#272">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 13 February 2011 22:07, Maarten Vanraes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt;wrote:
+
+&gt;<i> Op zondag 13 februari 2011 20:44:36 schreef Michael Scherer:
+</I>&gt;<i> &gt; On Sun, 13 Feb 2011 11:42:06 +0000, Kosmas Chatzimichalis wrote:
+</I>&gt;<i> &gt; &gt; Romain, Michael
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Romain is out of town until next week
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; This is a list with the outstanding features for the application, so
+</I>&gt;<i> &gt; &gt; if you
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; would like to prioritise them would be great:
+</I>&gt;<i> &gt; &gt; - Setup environment for live server (another email to ML will
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; follow this
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; one with requirements)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; mhh, sorry, but I do not understand this one :/ ( or I do not
+</I>&gt;<i> &gt; understand the mail, is this a
+</I>&gt;<i> &gt; list of feature or a list of tasks ? )
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; - LDAP integration (first steps and possible solution
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; investigated, but
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; will probably be in next version)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; well, ldap integration is required.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; - Compiled packages functionality to be added
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Ie ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; - Searching, statistics and information displayed to finish off
+</I>&gt;<i> &gt; &gt; (currently searching only works for source packages)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; nice to have, but imho not required ( ie, less urgent than ldap
+</I>&gt;<i> &gt; integration )
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; - Any design work, artwork (CSS, logos) to be included
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; same as searching.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; - Use of bugzilla for bugs (I think Romain set it up, and I've put
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; it in
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; the wiki, but not sure if ready to use?)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I do not understand too, where does bugs enter in the scheme ?
+</I>&gt;<i>
+</I>&gt;<i> perhaps he means what in maint.mandriva.com &quot;the link to finding the open
+</I>&gt;<i> bugs
+</I>&gt;<i> for your package&quot; is.
+</I>&gt;<i>
+</I>&gt;<i> &gt; &gt; - Input of initial information (source packages - maintainers)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I guess this would be handy, but can you explain a little bit more ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; - Source of last commit datetime to be discussed
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; mhh, again, I do not understand the question ( ie, is this a feature ?
+</I>&gt;<i> &gt; ).
+</I>&gt;<i> &gt; There is only one source of last commit, that's svn. Now, this is not
+</I>&gt;<i> &gt; very
+</I>&gt;<i> &gt; urgent. We can add a svn hooks that update the db with REST, so that's
+</I>&gt;<i> &gt; IMHO
+</I>&gt;<i> &gt; easy, but not required.
+</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>
+Since we are probably be redoing it again with the different versions, maybe
+we should be revisit the requirements.
+
+Should it be a simple CRUD application, that would use LDAP for
+authentication, and have the following entities:
+
+maintainer
+source package
+compiled package
+media
+
+And then add search facilities and statistics?
+
+Maarten, yes I was looking at the mandriva application for some of the
+features..
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110215/097e88bf/attachment.html&gt;
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000228.html">[Mageia-webteam] Maintainers db tasks
+</A></li>
+ <LI>Next message: <A HREF="000220.html">[Mageia-webteam] Server requirements second attempt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#272">[ date ]</a>
+ <a href="thread.html#272">[ thread ]</a>
+ <a href="subject.html#272">[ subject ]</a>
+ <a href="author.html#272">[ 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-February/000273.html b/zarb-ml/mageia-webteam/2011-February/000273.html
new file mode 100644
index 000000000..b5ec0fa18
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000273.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for 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%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215232730.270AD41F2C%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="000269.html">
+ <LINK REL="Next" HREF="000275.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110215232730.270AD41F2C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 00:27:30 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000269.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000275.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#273">[ date ]</a>
+ <a href="thread.html#273">[ thread ]</a>
+ <a href="subject.html#273">[ subject ]</a>
+ <a href="author.html#273">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=32">https://bugs.mageia.org/show_bug.cgi?id=32</A>
+
+--- Comment #3 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-02-16 00:27:30 CET ---
+The limit is hardcoded, yes. I honestly don't think it's a good idea to lower
+this limit, unless you don't care about security. 6 is really not &quot;strong&quot; and
+people who complain that it's too much just don't understand security
+implications behind 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="000269.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000275.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#273">[ date ]</a>
+ <a href="thread.html#273">[ thread ]</a>
+ <a href="subject.html#273">[ subject ]</a>
+ <a href="author.html#273">[ 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-February/000274.html b/zarb-ml/mageia-webteam/2011-February/000274.html
new file mode 100644
index 000000000..0fb04348a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000274.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] New: 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%20New%3A%20Upgrade%20to%20Bugzilla%204.0&In-Reply-To=%3Cbug-40-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="000291.html">
+ <LINK REL="Next" HREF="000276.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20New%3A%20Upgrade%20to%20Bugzilla%204.0&In-Reply-To=%3Cbug-40-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 00:30:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000291.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000276.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#274">[ date ]</a>
+ <a href="thread.html#274">[ thread ]</a>
+ <a href="subject.html#274">[ subject ]</a>
+ <a href="author.html#274">[ 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>
+
+ Summary: Upgrade to Bugzilla 4.0
+ 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">dmorganec at gmail.com</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>
+
+
+We released Bugzilla 4.0 today. You should upgrade bugs.mageia.org to this
+version before you start getting too much traffic and start having too many
+customizations. The sooner, the better.
+
+--
+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="000291.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000276.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#274">[ date ]</a>
+ <a href="thread.html#274">[ thread ]</a>
+ <a href="subject.html#274">[ subject ]</a>
+ <a href="author.html#274">[ 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-February/000275.html b/zarb-ml/mageia-webteam/2011-February/000275.html
new file mode 100644
index 000000000..f6758ca86
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000275.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for 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%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110216010711.A459B41F29%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="000273.html">
+ <LINK REL="Next" HREF="000286.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110216010711.A459B41F29%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 02:07:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000273.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000286.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#275">[ date ]</a>
+ <a href="thread.html#275">[ thread ]</a>
+ <a href="subject.html#275">[ subject ]</a>
+ <a href="author.html#275">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=32">https://bugs.mageia.org/show_bug.cgi?id=32</A>
+
+--- Comment #4 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-16 02:07:11 CET ---
+i agree and i don't want to change bugzilla to allow smaller passwords. I think
+that this should be identity that need to be changed.
+
+It's for the good of the user after all :)
+
+--
+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="000273.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000286.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#275">[ date ]</a>
+ <a href="thread.html#275">[ thread ]</a>
+ <a href="subject.html#275">[ subject ]</a>
+ <a href="author.html#275">[ 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-February/000276.html b/zarb-ml/mageia-webteam/2011-February/000276.html
new file mode 100644
index 000000000..426d6865d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000276.html
@@ -0,0 +1,101 @@
+<!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=%3C20110216011132.7325E41F27%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="000274.html">
+ <LINK REL="Next" HREF="000287.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110216011132.7325E41F27%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 02:11:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000274.html">[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000287.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#276">[ date ]</a>
+ <a href="thread.html#276">[ thread ]</a>
+ <a href="subject.html#276">[ subject ]</a>
+ <a href="author.html#276">[ 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 #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-16 02:11:32 CET ---
+i agree and i plan to update. I just need to convert our templates, i missed
+time but i think i will do it later this week or in the begining of the next
+week.
+
+Of course if you want to help the current templates are here:
+
+<A HREF="http://viewvc.mageia.org/web/templates/bugzilla/">http://viewvc.mageia.org/web/templates/bugzilla/</A>
+
+patches =&gt; Patch again bugzilla 3.6.4 template
+trunk =&gt; The template customized
+
+
+i saw 2 issues for now :
+
+1- in the &quot;simplified&quot; template: the assignee field add a , in so i can let it
+empty, this alway show and if i add an email this gives: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">,toto at titi.uk</A>
+
+
+2- in the normal template, the status show &quot;Hashes&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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000274.html">[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000287.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#276">[ date ]</a>
+ <a href="thread.html#276">[ thread ]</a>
+ <a href="subject.html#276">[ subject ]</a>
+ <a href="author.html#276">[ 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-February/000277.html b/zarb-ml/mageia-webteam/2011-February/000277.html
new file mode 100644
index 000000000..6f4573901
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000277.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted
+ </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%2042%5D%20New%3A%20Possibility%20to%20see%20bugs%20reported%0A%09today%20is%20wanted&In-Reply-To=%3Cbug-42-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="000293.html">
+ <LINK REL="Next" HREF="000278.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20New%3A%20Possibility%20to%20see%20bugs%20reported%0A%09today%20is%20wanted&In-Reply-To=%3Cbug-42-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 02:13:43 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000293.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000278.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#277">[ date ]</a>
+ <a href="thread.html#277">[ thread ]</a>
+ <a href="subject.html#277">[ subject ]</a>
+ <a href="author.html#277">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+ Summary: Possibility to see bugs reported today is wanted
+ Product: Infrastructure
+ Version: unspecified
+ Platform: All
+ URL: <A HREF="https://qa.mandriva.com/buglist.cgi?bug_status=UNCONFI">https://qa.mandriva.com/buglist.cgi?bug_status=UNCONFI</A>
+ RMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REO
+ PENED&amp;bug_status=RESOLVED&amp;email1=&amp;emailtype1=substring
+ &amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emai
+ lreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=1&amp;vot
+ es=&amp;chfield=%5BBug+creation%5D&amp;chfieldfrom=&amp;chfieldto=
+ Now&amp;chfieldvalue=&amp;product=&amp;short_desc=&amp;short_desc_type
+ =substring&amp;long_desc=&amp;long_desc_type=substring&amp;bug_fil
+ e_loc=&amp;bug_file_loc_type=substring&amp;status_whiteboard=&amp;
+ status_whiteboard_type=substring&amp;keywords=&amp;keywords_ty
+ pe=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=
+ &amp;cmdtype=doit&amp;newqueryname=&amp;order=bugs.bug_id
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13)
+Gecko/20101230 Mandriva Linux/1.9.2.13-0.2mdv2010.2 (2010.2) Firefox/3.6.13
+Build Identifier:
+
+Description of problem: I noticed that this bugzilla doesn't show bugs reported
+today like in the Mandriva QA &amp; I really want that.
+
+Steps to Reproduce:
+1. Open your webbrowser.
+2. Go to <A HREF="http://bugs.mageia.org">http://bugs.mageia.org</A>
+3. Voila! On the frontpage of this site there's no link to see bugs reported
+today.
+
+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="000293.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000278.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#277">[ date ]</a>
+ <a href="thread.html#277">[ thread ]</a>
+ <a href="subject.html#277">[ subject ]</a>
+ <a href="author.html#277">[ 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-February/000278.html b/zarb-ml/mageia-webteam/2011-February/000278.html
new file mode 100644
index 000000000..7ca0573cb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000278.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110216011354.AAF6941F29%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="000277.html">
+ <LINK REL="Next" HREF="000283.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110216011354.AAF6941F29%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 02:13:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000277.html">[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="000283.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#278">[ date ]</a>
+ <a href="thread.html#278">[ thread ]</a>
+ <a href="subject.html#278">[ subject ]</a>
+ <a href="author.html#278">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at g</A>
+ | |mail.com
+ Priority|Normal |High
+
+--
+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="000277.html">[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="000283.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#278">[ date ]</a>
+ <a href="thread.html#278">[ thread ]</a>
+ <a href="subject.html#278">[ subject ]</a>
+ <a href="author.html#278">[ 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-February/000279.html b/zarb-ml/mageia-webteam/2011-February/000279.html
new file mode 100644
index 000000000..3c0283139
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000279.html
@@ -0,0 +1,130 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name
+ </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%2045%5D%20New%3A%20Description%20when%20saving%20Firefox%0A%20bookmark%20shoudl%20include%20Mageia%20name&In-Reply-To=%3Cbug-45-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="000294.html">
+ <LINK REL="Next" HREF="000285.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2045%5D%20New%3A%20Description%20when%20saving%20Firefox%0A%20bookmark%20shoudl%20include%20Mageia%20name&In-Reply-To=%3Cbug-45-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 02:49:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000294.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="000285.html">[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#279">[ date ]</a>
+ <a href="thread.html#279">[ thread ]</a>
+ <a href="subject.html#279">[ subject ]</a>
+ <a href="author.html#279">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=45">https://bugs.mageia.org/show_bug.cgi?id=45</A>
+
+ Summary: Description when saving Firefox bookmark shoudl
+ include Mageia name
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://bugs.mageia.org">http://bugs.mageia.org</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Normal
+ Component: All
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">hoytduff at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ RPM Package: none
+
+
+User-Agent: Mozilla/5.0 (X11; Linux i686; rv:2.0b11) Gecko/20100101
+Firefox/4.0b11
+Build Identifier:
+
+Description of problem:
+
+Saving a bookmark in Fifefox for <A HREF="http://bugs.mageia.org">http://bugs.mageia.org</A> brings up a description
+in the Firefox bookmark dialog of &quot;Bugzilla Main Page&quot;.
+
+It should read &quot;Mageia Bugzilla Main Page&quot;
+
+Version-Release number of selected component (if applicable):
+
+Using FF 4.0beta11
+
+How reproducible:
+
+Create bookmark at <A HREF="http://bugs.mageia.org">http://bugs.mageia.org</A>
+
+Steps to Reproduce:
+1.<A HREF="http://bugs.mageia.org">http://bugs.mageia.org</A>
+2. bookmark the page
+
+
+
+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="000294.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="000285.html">[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#279">[ date ]</a>
+ <a href="thread.html#279">[ thread ]</a>
+ <a href="subject.html#279">[ subject ]</a>
+ <a href="author.html#279">[ 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-February/000280.html b/zarb-ml/mageia-webteam/2011-February/000280.html
new file mode 100644
index 000000000..0e7d4f731
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000280.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+ </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%2046%5D%20New%3A%20While%20this%20page%20allows%20the%20selection%0A%20of%20a%20severity%20of%20%22Trival%22%2C%20the%20system%20will%20not%20accept%20it&In-Reply-To=%3Cbug-46-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="000285.html">
+ <LINK REL="Next" HREF="000284.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2046%5D%20New%3A%20While%20this%20page%20allows%20the%20selection%0A%20of%20a%20severity%20of%20%22Trival%22%2C%20the%20system%20will%20not%20accept%20it&In-Reply-To=%3Cbug-46-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 02:53:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000285.html">[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name
+</A></li>
+ <LI>Next message: <A HREF="000284.html">[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#280">[ date ]</a>
+ <a href="thread.html#280">[ thread ]</a>
+ <a href="subject.html#280">[ subject ]</a>
+ <a href="author.html#280">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=46">https://bugs.mageia.org/show_bug.cgi?id=46</A>
+
+ Summary: While this page allows the selection of a severity of
+ &quot;Trival&quot;, the system will not accept it
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://bugs.mageia.org">http://bugs.mageia.org</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: All
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">hoytduff at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ RPM Package: none
+
+
+User-Agent: Mozilla/5.0 (X11; Linux i686; rv:2.0b11) Gecko/20100101
+Firefox/4.0b11
+Build Identifier:
+
+Description of problem:
+
+While this page allows the selection of a severity of &quot;Trival&quot;, the system will
+not accept it
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+Create a new bug and slect &quot;Trivial&quot;
+
+ERROR MESSAGE: There is no Severity named 'trivial'.
+
+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="000285.html">[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name
+</A></li>
+ <LI>Next message: <A HREF="000284.html">[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#280">[ date ]</a>
+ <a href="thread.html#280">[ thread ]</a>
+ <a href="subject.html#280">[ subject ]</a>
+ <a href="author.html#280">[ 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-February/000281.html b/zarb-ml/mageia-webteam/2011-February/000281.html
new file mode 100644
index 000000000..142cd397a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000281.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New page of the website to translate
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20page%20of%20the%20website%20to%20translate&In-Reply-To=%3C4D5A50D8.2090009%40damsweb.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000292.html">
+ <LINK REL="Next" HREF="000288.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New page of the website to translate</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20page%20of%20the%20website%20to%20translate&In-Reply-To=%3C4D5A50D8.2090009%40damsweb.net%3E"
+ TITLE="[Mageia-webteam] New page of the website to translate">mageia at damsweb.net
+ </A><BR>
+ <I>Tue Feb 15 11:09:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000292.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000288.html">[Mageia-webteam] [Mageia-i18n] New page of the website to translate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#281">[ date ]</a>
+ <a href="thread.html#281">[ thread ]</a>
+ <a href="subject.html#281">[ subject ]</a>
+ <a href="author.html#281">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi Folks,
+
+Mageia is out!
+Here is the new page to translate:
+<A HREF="http://mageia.org/en/alpha/">http://mageia.org/en/alpha/</A>
+
+Thank you all for the translation.
+Oliver or I will update the website.
+
+Cheers,
+--
+Damien Lallement
+aka &quot;damsweb&quot; or &quot;coincoin&quot; on IRC and twitter
+
+<A HREF="http://www.mageia.org">http://www.mageia.org</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000292.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000288.html">[Mageia-webteam] [Mageia-i18n] New page of the website to translate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#281">[ date ]</a>
+ <a href="thread.html#281">[ thread ]</a>
+ <a href="subject.html#281">[ subject ]</a>
+ <a href="author.html#281">[ 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-February/000282.html b/zarb-ml/mageia-webteam/2011-February/000282.html
new file mode 100644
index 000000000..ae7179cd4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000282.html
@@ -0,0 +1,123 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work
+ </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%2047%5D%20New%3A%20The%20Bugzilla%20userguide%20link%20on%20the%0A%20front%20page%20of%20BugZilla%20doesn%27t%20work&In-Reply-To=%3Cbug-47-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="000284.html">
+ <LINK REL="Next" HREF="000295.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2047%5D%20New%3A%20The%20Bugzilla%20userguide%20link%20on%20the%0A%20front%20page%20of%20BugZilla%20doesn%27t%20work&In-Reply-To=%3Cbug-47-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 03:52:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000284.html">[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A></li>
+ <LI>Next message: <A HREF="000295.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#282">[ date ]</a>
+ <a href="thread.html#282">[ thread ]</a>
+ <a href="subject.html#282">[ subject ]</a>
+ <a href="author.html#282">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=47">https://bugs.mageia.org/show_bug.cgi?id=47</A>
+
+ Summary: The Bugzilla userguide link on the front page of
+ BugZilla doesn't work
+ Product: Infrastructure
+ Version: unspecified
+ Platform: All
+ URL: <A HREF="https://bugs.mageia.org/docs/en/html/using.html">https://bugs.mageia.org/docs/en/html/using.html</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+User-Agent: Opera/9.80 (X11; Linux x86_64; U; nl) Presto/2.7.62
+Version/11.01
+Build Identifier:
+
+Description of problem: The Bugzilla userguide link on the front page of
+BugZilla doesn't work
+
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible: Always
+
+
+Steps to Reproduce:
+1. Go to <A HREF="https://bugs.mageia.org">https://bugs.mageia.org</A>
+2. Attempt to follow the link to &quot;Bugzilla User's Guide&quot;
+
+
+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="000284.html">[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A></li>
+ <LI>Next message: <A HREF="000295.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#282">[ date ]</a>
+ <a href="thread.html#282">[ thread ]</a>
+ <a href="subject.html#282">[ subject ]</a>
+ <a href="author.html#282">[ 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-February/000283.html b/zarb-ml/mageia-webteam/2011-February/000283.html
new file mode 100644
index 000000000..829411f05
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000283.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110216032730.059E541F4C%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="000278.html">
+ <LINK REL="Next" HREF="000294.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110216032730.059E541F4C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 04:27:30 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000278.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="000294.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#283">[ date ]</a>
+ <a href="thread.html#283">[ thread ]</a>
+ <a href="subject.html#283">[ subject ]</a>
+ <a href="author.html#283">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>
+ Priority|High |Normal
+
+--
+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="000278.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="000294.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#283">[ date ]</a>
+ <a href="thread.html#283">[ thread ]</a>
+ <a href="subject.html#283">[ subject ]</a>
+ <a href="author.html#283">[ 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-February/000284.html b/zarb-ml/mageia-webteam/2011-February/000284.html
new file mode 100644
index 000000000..f9256e26b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000284.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+ </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%2046%5D%20While%20this%20page%20allows%20the%20selection%20of%20a%0A%20severity%20of%20%22Trival%22%2C%20the%20system%20will%20not%20accept%20it&In-Reply-To=%3C20110216055605.D2D6E41F48%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="000280.html">
+ <LINK REL="Next" HREF="000282.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2046%5D%20While%20this%20page%20allows%20the%20selection%20of%20a%0A%20severity%20of%20%22Trival%22%2C%20the%20system%20will%20not%20accept%20it&In-Reply-To=%3C20110216055605.D2D6E41F48%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 06:56:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000280.html">[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A></li>
+ <LI>Next message: <A HREF="000282.html">[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#284">[ date ]</a>
+ <a href="thread.html#284">[ thread ]</a>
+ <a href="subject.html#284">[ subject ]</a>
+ <a href="author.html#284">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=46">https://bugs.mageia.org/show_bug.cgi?id=46</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ Resolution| |FIXED
+ Status|NEW |RESOLVED
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-16 06:56:06 CET ---
+thank you for your bugreport. this is now 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="000280.html">[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A></li>
+ <LI>Next message: <A HREF="000282.html">[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#284">[ date ]</a>
+ <a href="thread.html#284">[ thread ]</a>
+ <a href="subject.html#284">[ subject ]</a>
+ <a href="author.html#284">[ 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-February/000285.html b/zarb-ml/mageia-webteam/2011-February/000285.html
new file mode 100644
index 000000000..2bde7e170
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000285.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name
+ </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%2045%5D%20Description%20when%20saving%20Firefox%20bookmark%0A%20shoudl%20include%20Mageia%20name&In-Reply-To=%3C20110216062358.1B49341F4C%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="000279.html">
+ <LINK REL="Next" HREF="000280.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2045%5D%20Description%20when%20saving%20Firefox%20bookmark%0A%20shoudl%20include%20Mageia%20name&In-Reply-To=%3C20110216062358.1B49341F4C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 07:23:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000279.html">[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name
+</A></li>
+ <LI>Next message: <A HREF="000280.html">[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#285">[ date ]</a>
+ <a href="thread.html#285">[ thread ]</a>
+ <a href="subject.html#285">[ subject ]</a>
+ <a href="author.html#285">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=45">https://bugs.mageia.org/show_bug.cgi?id=45</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ Resolution| |FIXED
+ Status|NEW |RESOLVED
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-16 07:23:58 UTC ---
+thank you for your bugreport, this is now 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="000279.html">[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name
+</A></li>
+ <LI>Next message: <A HREF="000280.html">[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#285">[ date ]</a>
+ <a href="thread.html#285">[ thread ]</a>
+ <a href="subject.html#285">[ subject ]</a>
+ <a href="author.html#285">[ 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-February/000286.html b/zarb-ml/mageia-webteam/2011-February/000286.html
new file mode 100644
index 000000000..3e9d62050
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000286.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for 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%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110216074732.3A59341F58%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="000275.html">
+ <LINK REL="Next" HREF="000291.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110216074732.3A59341F58%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 08:47:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000275.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000291.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#286">[ date ]</a>
+ <a href="thread.html#286">[ thread ]</a>
+ <a href="subject.html#286">[ subject ]</a>
+ <a href="author.html#286">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=32">https://bugs.mageia.org/show_bug.cgi?id=32</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Component|Bugzilla |identity.mageia.org
+ Version|unspecified |trunk
+ Product|Infrastructure |Websites
+
+--- Comment #5 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-16 08:47:32 UTC ---
+Good, so I note that you volunteer to handle user complaint about password too
+complex and people who forget it. Let's reassign this to catdap.
+
+--
+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="000275.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000291.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#286">[ date ]</a>
+ <a href="thread.html#286">[ thread ]</a>
+ <a href="subject.html#286">[ subject ]</a>
+ <a href="author.html#286">[ 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-February/000287.html b/zarb-ml/mageia-webteam/2011-February/000287.html
new file mode 100644
index 000000000..a77d3eafd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000287.html
@@ -0,0 +1,93 @@
+<!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=%3C20110216080150.7EB4041F5E%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="000276.html">
+ <LINK REL="Next" HREF="000293.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110216080150.7EB4041F5E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 09:01:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000276.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000293.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#287">[ date ]</a>
+ <a href="thread.html#287">[ thread ]</a>
+ <a href="subject.html#287">[ subject ]</a>
+ <a href="author.html#287">[ 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>
+
+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 #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-16 09:01:50 UTC ---
+Derek, last time we discussed of the upgrade, didn't we said that we had other
+stuff to deploy before upgrading the already working infrastructure ?
+
+There is really more urgent thing to do, and unless there is blocking issues
+with bugzilla warranting the upgrade, I would simply report it. For example,
+now one answered to the bittorent setup request I made. There is still no
+secondary ldap, the backup server is not ready. Upgrading bugzilla is really
+not the top priority.
+
+--
+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="000276.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000293.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#287">[ date ]</a>
+ <a href="thread.html#287">[ thread ]</a>
+ <a href="subject.html#287">[ subject ]</a>
+ <a href="author.html#287">[ 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-February/000288.html b/zarb-ml/mageia-webteam/2011-February/000288.html
new file mode 100644
index 000000000..9249d46e9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000288.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-i18n] New page of the website to translate
+ </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-i18n%5D%20New%20page%20of%20the%20website%20to%0A%09translate&In-Reply-To=%3CAANLkTi%3DYkyZKkW4%2BTjGn%2Bi-vBzkj3ZWgaKsfrUbYXGw1%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="000281.html">
+ <LINK REL="Next" HREF="000257.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-i18n] New page of the website to translate</H1>
+ <B>Marek Laane</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-i18n%5D%20New%20page%20of%20the%20website%20to%0A%09translate&In-Reply-To=%3CAANLkTi%3DYkyZKkW4%2BTjGn%2Bi-vBzkj3ZWgaKsfrUbYXGw1%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-i18n] New page of the website to translate">bald at smail.ee
+ </A><BR>
+ <I>Wed Feb 16 03:03:43 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000281.html">[Mageia-webteam] New page of the website to translate
+</A></li>
+ <LI>Next message: <A HREF="000257.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#288">[ date ]</a>
+ <a href="thread.html#288">[ thread ]</a>
+ <a href="subject.html#288">[ subject ]</a>
+ <a href="author.html#288">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/2/15 Damien Lallement &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at damsweb.net</A>&gt;
+
+&gt;<i> Hi Folks,
+</I>&gt;<i>
+</I>&gt;<i> Mageia is out!
+</I>&gt;<i> Here is the new page to translate:
+</I>&gt;<i> <A HREF="http://mageia.org/en/alpha/">http://mageia.org/en/alpha/</A>
+</I>&gt;<i>
+</I>&gt;<i> Thank you all for the translation.
+</I>&gt;<i> Oliver or I will update the website.
+</I>&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i> --
+</I>&gt;<i> Damien Lallement
+</I>&gt;<i> aka &quot;damsweb&quot; or &quot;coincoin&quot; on IRC and twitter
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://www.mageia.org">http://www.mageia.org</A>
+</I>&gt;<i>
+</I>
+Here is Estonian translation.
+
+Marek Laane
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110216/09b0e333/attachment-0002.html&gt;
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110216/09b0e333/attachment-0003.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000281.html">[Mageia-webteam] New page of the website to translate
+</A></li>
+ <LI>Next message: <A HREF="000257.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#288">[ date ]</a>
+ <a href="thread.html#288">[ thread ]</a>
+ <a href="subject.html#288">[ subject ]</a>
+ <a href="author.html#288">[ 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-February/000289.html b/zarb-ml/mageia-webteam/2011-February/000289.html
new file mode 100644
index 000000000..ad1b83125
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000289.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] Wrong character encoding
+ </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%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110216093249.13D2641F60%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="000263.html">
+ <LINK REL="Next" HREF="000290.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110216093249.13D2641F60%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 28] Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 10:32:49 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000263.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000290.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#289">[ date ]</a>
+ <a href="thread.html#289">[ thread ]</a>
+ <a href="subject.html#289">[ subject ]</a>
+ <a href="author.html#289">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</A>
+
+Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>
+
+--- Comment #7 from Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; 2011-02-16 10:32:49 UTC ---
+Can we confirm that the names are displayed correctly at
+<A HREF="https://identity-trunk.mageia.org">https://identity-trunk.mageia.org</A> ? You should not need to change anything ....
+
+(Attribute changes do work from CatDap, whether they work against Mageia's
+internal LDAP server is a different 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="000263.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000290.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#289">[ date ]</a>
+ <a href="thread.html#289">[ thread ]</a>
+ <a href="subject.html#289">[ subject ]</a>
+ <a href="author.html#289">[ 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-February/000290.html b/zarb-ml/mageia-webteam/2011-February/000290.html
new file mode 100644
index 000000000..b4cfa47dc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000290.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] Wrong character encoding
+ </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%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110216102114.A26B441F6D%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="000289.html">
+ <LINK REL="Next" HREF="000292.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110216102114.A26B441F6D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 28] Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 11:21:14 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000289.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000292.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#290">[ date ]</a>
+ <a href="thread.html#290">[ thread ]</a>
+ <a href="subject.html#290">[ subject ]</a>
+ <a href="author.html#290">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</A>
+
+J&#233;r&#244;me H&#233;nin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">heninj at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ Status|NEW |RESOLVED
+
+--- Comment #8 from J&#233;r&#244;me H&#233;nin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">heninj at gmail.com</A>&gt; 2011-02-16 11:21:14 CET ---
+(In reply to comment #7)
+&gt;<i> Can we confirm that the names are displayed correctly at
+</I>&gt;<i> <A HREF="https://identity-trunk.mageia.org">https://identity-trunk.mageia.org</A> ? You should not need to change anything ....
+</I>
+Yup! Now the display is fine. Thanks!
+
+I am marking this as fixed. I suppose the &quot;Insufficient access&quot; error will be
+addressed when misc's work comes to fruition.
+
+--
+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="000289.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000292.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#290">[ date ]</a>
+ <a href="thread.html#290">[ thread ]</a>
+ <a href="subject.html#290">[ subject ]</a>
+ <a href="author.html#290">[ 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-February/000291.html b/zarb-ml/mageia-webteam/2011-February/000291.html
new file mode 100644
index 000000000..8242a7a43
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000291.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for 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%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110216123810.536C641F7B%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="000286.html">
+ <LINK REL="Next" HREF="000274.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2032%5D%20Can%20create%20unusable%20passwords%20shorter%0A%20than%20six%20chars%20for%20bugzilla&In-Reply-To=%3C20110216123810.536C641F7B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 13:38:10 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000286.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000274.html">[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#291">[ date ]</a>
+ <a href="thread.html#291">[ thread ]</a>
+ <a href="subject.html#291">[ subject ]</a>
+ <a href="author.html#291">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=32">https://bugs.mageia.org/show_bug.cgi?id=32</A>
+
+Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>
+ Resolution| |FIXED
+ Status|NEW |RESOLVED
+
+--- Comment #6 from Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; 2011-02-16 13:38:10 CET ---
+Fixed, by adjusting password policy on LDAP side. CatDap already supports
+ppolicy for password changes (but, not yet for reporting lock out, or expired
+password).
+
+For reference:
+
+dn: cn=default,ou=Password Policies,dc=mageia,dc=org
+add: pwdMinLength
+pwdMinLength: 6
+-
+add: pwdCheckQuality
+pwdCheckQuality: 2
+
+
+We may want to collect any password restrictions on applications which enforce
+them on login, to document the password policy.
+
+--
+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="000286.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000274.html">[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#291">[ date ]</a>
+ <a href="thread.html#291">[ thread ]</a>
+ <a href="subject.html#291">[ subject ]</a>
+ <a href="author.html#291">[ 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-February/000292.html b/zarb-ml/mageia-webteam/2011-February/000292.html
new file mode 100644
index 000000000..7a6718e05
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000292.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 28] Wrong character encoding
+ </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%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110216130019.5384D41F7F%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="000290.html">
+ <LINK REL="Next" HREF="000281.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 28] Wrong character encoding</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2028%5D%20Wrong%20character%20encoding&In-Reply-To=%3C20110216130019.5384D41F7F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 28] Wrong character encoding">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 14:00:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000290.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000281.html">[Mageia-webteam] New page of the website to translate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#292">[ date ]</a>
+ <a href="thread.html#292">[ thread ]</a>
+ <a href="subject.html#292">[ subject ]</a>
+ <a href="author.html#292">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=28">https://bugs.mageia.org/show_bug.cgi?id=28</A>
+
+--- Comment #9 from Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; 2011-02-16 14:00:19 CET ---
+The 'Insufficient access' error is provided directly by LDAP, and is not
+affected at all by the application.
+
+So ... there is a disconnect between the LDAP ACLs and what the application is
+configured to allow users to edit. But, the idea was to allow users to edit
+most personal information.
+
+I have updated the LDAP ACLs to allow users to modify their own cn,sn,givenName
+attributes.
+
+--
+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="000290.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A></li>
+ <LI>Next message: <A HREF="000281.html">[Mageia-webteam] New page of the website to translate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#292">[ date ]</a>
+ <a href="thread.html#292">[ thread ]</a>
+ <a href="subject.html#292">[ subject ]</a>
+ <a href="author.html#292">[ 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-February/000293.html b/zarb-ml/mageia-webteam/2011-February/000293.html
new file mode 100644
index 000000000..429e13c81
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000293.html
@@ -0,0 +1,92 @@
+<!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=%3C20110216135258.1EEB141F75%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="000287.html">
+ <LINK REL="Next" HREF="000277.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110216135258.1EEB141F75%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 14:52:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000287.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000277.html">[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#293">[ date ]</a>
+ <a href="thread.html#293">[ thread ]</a>
+ <a href="subject.html#293">[ subject ]</a>
+ <a href="author.html#293">[ 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 #3 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-02-16 14:52:58 CET ---
+(In reply to comment #1)
+&gt;<i> 1- in the &quot;simplified&quot; template: the assignee field add a , in so i can let it
+</I>&gt;<i> empty, this alway show and if i add an email this gives: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">,toto at titi.uk</A>
+</I>
+That's because you have two assignee fields in your template. The hidden one
+which is already there and always empty, and the one you added:
+
+&lt;form method=&quot;post&quot; action=&quot;post_bug.cgi&quot;&gt;
+ &lt;input type=&quot;hidden&quot; name=&quot;format&quot; value=&quot;guided&quot;&gt;
+ &lt;input type=&quot;hidden&quot; name=&quot;assigned_to&quot; value=&quot;&quot;&gt;
+
+This one must go away.
+
+
+&gt;<i> 2- in the normal template, the status show &quot;Hashes&quot;
+</I>
+Did you edit the template? We now pass bug status objects to the template, not
+strings. This would explain the problem (e.g. if you took it from Mandriva's
+Bugzilla 3.2).
+
+--
+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="000287.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000277.html">[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#293">[ date ]</a>
+ <a href="thread.html#293">[ thread ]</a>
+ <a href="subject.html#293">[ subject ]</a>
+ <a href="author.html#293">[ 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-February/000294.html b/zarb-ml/mageia-webteam/2011-February/000294.html
new file mode 100644
index 000000000..e23d55fbc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000294.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110216135726.BFAF841F7D%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="000283.html">
+ <LINK REL="Next" HREF="000279.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110216135726.BFAF841F7D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 14:57:26 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000283.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="000279.html">[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#294">[ date ]</a>
+ <a href="thread.html#294">[ thread ]</a>
+ <a href="subject.html#294">[ subject ]</a>
+ <a href="author.html#294">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+--- 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-02-16 14:57:26 CET ---
+Simply add this link:
+
+ &lt;a
+href=&quot;buglist.cgi?chfield=[Bug%20creation]&amp;chfieldfrom=0d&amp;chfieldto=Now&quot;&gt;Bugs
+Filed Today&lt;/a&gt;
+
+i.e.
+<A HREF="https://bugs.mageia.org/buglist.cgi?chfield=[Bug%20creation">https://bugs.mageia.org/buglist.cgi?chfield=[Bug%20creation</A>]&amp;chfieldfrom=0d&amp;chfieldto=Now
+
+--
+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="000283.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="000279.html">[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#294">[ date ]</a>
+ <a href="thread.html#294">[ thread ]</a>
+ <a href="subject.html#294">[ subject ]</a>
+ <a href="author.html#294">[ 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-February/000295.html b/zarb-ml/mageia-webteam/2011-February/000295.html
new file mode 100644
index 000000000..3ec329d34
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000295.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+ </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%2047%5D%20The%20Bugzilla%20userguide%20link%20on%20the%20front%0A%20page%20of%20BugZilla%20doesn%27t%20work&In-Reply-To=%3C20110216140221.DD74A41F76%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="000282.html">
+ <LINK REL="Next" HREF="000296.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2047%5D%20The%20Bugzilla%20userguide%20link%20on%20the%20front%0A%20page%20of%20BugZilla%20doesn%27t%20work&In-Reply-To=%3C20110216140221.DD74A41F76%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 15:02:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000282.html">[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI>Next message: <A HREF="000296.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#295">[ date ]</a>
+ <a href="thread.html#295">[ thread ]</a>
+ <a href="subject.html#295">[ subject ]</a>
+ <a href="author.html#295">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=47">https://bugs.mageia.org/show_bug.cgi?id=47</A>
+
+--- 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-02-16 15:02:22 CET ---
+The docs_urlbase parameter should point to bugzilla.org if you don't want to
+compile the documentation yourself. Set the parameter to:
+
+ <A HREF="http://www.bugzilla.org/docs/3.6/en/html/">http://www.bugzilla.org/docs/3.6/en/html/</A>
+
+instead of the current docs/%lang%/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="000282.html">[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI>Next message: <A HREF="000296.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#295">[ date ]</a>
+ <a href="thread.html#295">[ thread ]</a>
+ <a href="subject.html#295">[ subject ]</a>
+ <a href="author.html#295">[ 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-February/000296.html b/zarb-ml/mageia-webteam/2011-February/000296.html
new file mode 100644
index 000000000..69d1419d0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000296.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+ </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%2047%5D%20The%20Bugzilla%20userguide%20link%20on%20the%20front%0A%20page%20of%20BugZilla%20doesn%27t%20work&In-Reply-To=%3C20110216140740.9085F41F72%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="000295.html">
+ <LINK REL="Next" HREF="000298.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2047%5D%20The%20Bugzilla%20userguide%20link%20on%20the%20front%0A%20page%20of%20BugZilla%20doesn%27t%20work&In-Reply-To=%3C20110216140740.9085F41F72%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 15:07:40 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000295.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI>Next message: <A HREF="000298.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#296">[ date ]</a>
+ <a href="thread.html#296">[ thread ]</a>
+ <a href="subject.html#296">[ subject ]</a>
+ <a href="author.html#296">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=47">https://bugs.mageia.org/show_bug.cgi?id=47</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|NEW |RESOLVED
+
+--- Comment #2 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-16 15:07:40 CET ---
+thanks a lot i fixed using your suggestion.
+
+--
+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="000295.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI>Next message: <A HREF="000298.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#296">[ date ]</a>
+ <a href="thread.html#296">[ thread ]</a>
+ <a href="subject.html#296">[ subject ]</a>
+ <a href="author.html#296">[ 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-February/000297.html b/zarb-ml/mageia-webteam/2011-February/000297.html
new file mode 100644
index 000000000..81ffd92c1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000297.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Next meeting, February 16th
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Next%20meeting%2C%20February%2016th&In-Reply-To=%3Cc90411b264b9a8b5cc510f51cc9de5a0%40localhost%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000262.html">
+ <LINK REL="Next" HREF="000264.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Next meeting, February 16th</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Next%20meeting%2C%20February%2016th&In-Reply-To=%3Cc90411b264b9a8b5cc510f51cc9de5a0%40localhost%3E"
+ TITLE="[Mageia-webteam] Next meeting, February 16th">mageia at damsweb.net
+ </A><BR>
+ <I>Wed Feb 16 16:56:26 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000262.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI>Next message: <A HREF="000264.html">[Mageia-webteam] Hello Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#297">[ date ]</a>
+ <a href="thread.html#297">[ thread ]</a>
+ <a href="subject.html#297">[ subject ]</a>
+ <a href="author.html#297">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, 15 Feb 2011 11:52:58 +0100, Oliver Burger
+&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; wrote:
+&gt;<i> Since rda isn't here this week, and since you were crazy enough to let
+</I>&gt;<i> me volunteer for substitute, it's my turn to call for this meeting.
+</I>&gt;<i>
+</I>&gt;<i> Weekly web team meeting will take place tomorrow, Day 1 after alpha
+</I>&gt;<i> release on #mageia-web (as usual) at 14.00 UTC (meaning 15.00 Paris
+</I>&gt;<i> time).
+</I>&gt;<i>
+</I>&gt;<i> Let's get status reports on all things and experiences from the first
+</I>&gt;<i> practical use of our systems.
+</I>&gt;<i>
+</I>&gt;<i> Oliver
+</I>
+Hello all,
+
+Here are the logs:
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-16-14.06.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-16-14.06.html</A>
+
+Cheers,
+Dams
+--
+Damien Lallement
+aka &quot;damsweb&quot; or &quot;coincoin&quot; on IRC and twitter
+
+<A HREF="http://www.mageia.org">http://www.mageia.org</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000262.html">[Mageia-webteam] Next meeting, February 16th
+</A></li>
+ <LI>Next message: <A HREF="000264.html">[Mageia-webteam] Hello Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#297">[ date ]</a>
+ <a href="thread.html#297">[ thread ]</a>
+ <a href="subject.html#297">[ subject ]</a>
+ <a href="author.html#297">[ 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-February/000298.html b/zarb-ml/mageia-webteam/2011-February/000298.html
new file mode 100644
index 000000000..8e6944b1c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000298.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Stop 404 errors due to lack of translation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Stop%20404%20errors%20due%20to%20lack%20of%20translation&In-Reply-To=%3C719de0480454939ff2862509f8b0ff6e%40localhost%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000296.html">
+ <LINK REL="Next" HREF="000299.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Stop 404 errors due to lack of translation</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Stop%20404%20errors%20due%20to%20lack%20of%20translation&In-Reply-To=%3C719de0480454939ff2862509f8b0ff6e%40localhost%3E"
+ TITLE="[Mageia-webteam] Stop 404 errors due to lack of translation">mageia at damsweb.net
+ </A><BR>
+ <I>Wed Feb 16 19:13:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000296.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI>Next message: <A HREF="000299.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#298">[ date ]</a>
+ <a href="thread.html#298">[ thread ]</a>
+ <a href="subject.html#298">[ subject ]</a>
+ <a href="author.html#298">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello folks,
+
+To stop 404 errors on www when a /$locale/dir/ page is
+not available, I added a function on www to check if the
+&quot;/$locale/dir/&quot; is available or not.
+If yes, it will be displayed, if no, the /en/dir/ page
+will be displayed.
+
+So, if you don't want to see EN pages on you locale,
+please send me your translations. :-)
+
+Cheers,
+--
+Damien Lallement
+aka &quot;damsweb&quot; or &quot;coincoin&quot; on IRC and twitter
+
+<A HREF="http://www.mageia.org">http://www.mageia.org</A>
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000296.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A></li>
+ <LI>Next message: <A HREF="000299.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#298">[ date ]</a>
+ <a href="thread.html#298">[ thread ]</a>
+ <a href="subject.html#298">[ subject ]</a>
+ <a href="author.html#298">[ 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-February/000299.html b/zarb-ml/mageia-webteam/2011-February/000299.html
new file mode 100644
index 000000000..f568f3d0f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000299.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Stop 404 errors due to lack of translation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Stop%20404%20errors%20due%20to%20lack%20of%20translation&In-Reply-To=%3C201102161918.00944.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="000298.html">
+ <LINK REL="Next" HREF="000301.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Stop 404 errors due to lack of translation</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Stop%20404%20errors%20due%20to%20lack%20of%20translation&In-Reply-To=%3C201102161918.00944.marcello.anni%40alice.it%3E"
+ TITLE="[Mageia-webteam] Stop 404 errors due to lack of translation">marcello.anni at alice.it
+ </A><BR>
+ <I>Wed Feb 16 19:18:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000298.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A></li>
+ <LI>Next message: <A HREF="000301.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#299">[ date ]</a>
+ <a href="thread.html#299">[ thread ]</a>
+ <a href="subject.html#299">[ subject ]</a>
+ <a href="author.html#299">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> Hello folks,
+</I>&gt;<i>
+</I>&gt;<i> To stop 404 errors on www when a /$locale/dir/ page is
+</I>&gt;<i> not available, I added a function on www to check if the
+</I>&gt;<i> &quot;/$locale/dir/&quot; is available or not.
+</I>&gt;<i> If yes, it will be displayed, if no, the /en/dir/ page
+</I>&gt;<i> will be displayed.
+</I>&gt;<i>
+</I>&gt;<i> So, if you don't want to see EN pages on you locale,
+</I>&gt;<i> please send me your translations. :-)
+</I>
+good idea, the 404 error was really ugly : )
+&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i> --
+</I>&gt;<i> Damien Lallement
+</I>
+cheers,
+Marcello
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000298.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A></li>
+ <LI>Next message: <A HREF="000301.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#299">[ date ]</a>
+ <a href="thread.html#299">[ thread ]</a>
+ <a href="subject.html#299">[ subject ]</a>
+ <a href="author.html#299">[ 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-February/000300.html b/zarb-ml/mageia-webteam/2011-February/000300.html
new file mode 100644
index 000000000..6338c9f53
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000300.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+ </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%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110216222209.2570241FD0%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="000253.html">
+ <LINK REL="Next" HREF="000303.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110216222209.2570241FD0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 16 23:22:09 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000253.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000303.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#300">[ date ]</a>
+ <a href="thread.html#300">[ thread ]</a>
+ <a href="subject.html#300">[ subject ]</a>
+ <a href="author.html#300">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=25">https://bugs.mageia.org/show_bug.cgi?id=25</A>
+
+Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>
+ Resolution| |FIXED
+ Status|NEW |RESOLVED
+
+--- Comment #2 from Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; 2011-02-16 23:22:09 CET ---
+I have just merged trunk to live, so this should be fixed at
+<A HREF="https://identity.mageia.org,">https://identity.mageia.org,</A> but I did not test.
+
+Please re-open if it is not 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="000253.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000303.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#300">[ date ]</a>
+ <a href="thread.html#300">[ thread ]</a>
+ <a href="subject.html#300">[ subject ]</a>
+ <a href="author.html#300">[ 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-February/000301.html b/zarb-ml/mageia-webteam/2011-February/000301.html
new file mode 100644
index 000000000..b0972a8b8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000301.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 17] Remove unused fields
+ </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%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110217040305.1F0AC42041%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="000299.html">
+ <LINK REL="Next" HREF="000302.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 17] Remove unused fields</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110217040305.1F0AC42041%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 17] Remove unused fields">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 05:03:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000299.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A></li>
+ <LI>Next message: <A HREF="000302.html">[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#301">[ date ]</a>
+ <a href="thread.html#301">[ thread ]</a>
+ <a href="subject.html#301">[ subject ]</a>
+ <a href="author.html#301">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=17">https://bugs.mageia.org/show_bug.cgi?id=17</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>
+
+--- Comment #4 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-02-17 05:03:05 UTC ---
+(In reply to comment #3)
+&gt;<i> What about feature requests ? We might not want to introduce some changes for
+</I>&gt;<i> some release and postpone them for the next release&#8230;
+</I>
+I don't get what you mean here :/
+
+--
+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="000299.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A></li>
+ <LI>Next message: <A HREF="000302.html">[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#301">[ date ]</a>
+ <a href="thread.html#301">[ thread ]</a>
+ <a href="subject.html#301">[ subject ]</a>
+ <a href="author.html#301">[ 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-February/000302.html b/zarb-ml/mageia-webteam/2011-February/000302.html
new file mode 100644
index 000000000..9332f73f3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000302.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20New%3A%20Bugzilla%20adds%20info%20about%20Firefox%20in%0A%09each%20bug%20report&In-Reply-To=%3Cbug-75-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="000301.html">
+ <LINK REL="Next" HREF="000304.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20New%3A%20Bugzilla%20adds%20info%20about%20Firefox%20in%0A%09each%20bug%20report&In-Reply-To=%3Cbug-75-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 05:17:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000301.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000304.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#302">[ date ]</a>
+ <a href="thread.html#302">[ thread ]</a>
+ <a href="subject.html#302">[ subject ]</a>
+ <a href="author.html#302">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+ Summary: Bugzilla adds info about Firefox in each bug report
+ 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">dmorganec at gmail.com</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>
+
+
+In some bug reports we get info about Firefox in the report, e.g.:
+User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:2.0b12pre) Gecko/20110214
+Firefox/4.0b12pre
+Build Identifier:
+
+This is not needed in for our uses.
+
+--
+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="000301.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000304.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#302">[ date ]</a>
+ <a href="thread.html#302">[ thread ]</a>
+ <a href="subject.html#302">[ subject ]</a>
+ <a href="author.html#302">[ 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-February/000303.html b/zarb-ml/mageia-webteam/2011-February/000303.html
new file mode 100644
index 000000000..767ebb913
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000303.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+ </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%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110217064724.A929E42054%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="000300.html">
+ <LINK REL="Next" HREF="000364.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110217064724.A929E42054%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 07:47:24 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000300.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000364.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#303">[ date ]</a>
+ <a href="thread.html#303">[ thread ]</a>
+ <a href="subject.html#303">[ subject ]</a>
+ <a href="author.html#303">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=25">https://bugs.mageia.org/show_bug.cgi?id=25</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Resolution|FIXED |
+ Status|RESOLVED |REOPENED
+
+--- Comment #3 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-02-17 07:47:24 UTC ---
+Sorry, was a PEBCAK on my side. There are two strings called &quot;First name&quot; in
+the po file (why?), only one of them was correct. I corrected the other one now
+and commited it to 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="000300.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000364.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#303">[ date ]</a>
+ <a href="thread.html#303">[ thread ]</a>
+ <a href="subject.html#303">[ subject ]</a>
+ <a href="author.html#303">[ 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-February/000304.html b/zarb-ml/mageia-webteam/2011-February/000304.html
new file mode 100644
index 000000000..f879aff56
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000304.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217081234.4B70D4205A%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="000302.html">
+ <LINK REL="Next" HREF="000305.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217081234.4B70D4205A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 09:12:34 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000302.html">[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000305.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#304">[ date ]</a>
+ <a href="thread.html#304">[ thread ]</a>
+ <a href="subject.html#304">[ subject ]</a>
+ <a href="author.html#304">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</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-02-17 09:12:34 UTC ---
+Can you giva a exemple of bug report, and where you see this ?
+
+--
+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="000302.html">[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000305.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#304">[ date ]</a>
+ <a href="thread.html#304">[ thread ]</a>
+ <a href="subject.html#304">[ subject ]</a>
+ <a href="author.html#304">[ 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-February/000305.html b/zarb-ml/mageia-webteam/2011-February/000305.html
new file mode 100644
index 000000000..2847a82ff
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000305.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217081851.168394205B%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="000304.html">
+ <LINK REL="Next" HREF="000307.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217081851.168394205B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 09:18:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000304.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000307.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#305">[ date ]</a>
+ <a href="thread.html#305">[ thread ]</a>
+ <a href="subject.html#305">[ subject ]</a>
+ <a href="author.html#305">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #2 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-02-17 09:18:51 UTC ---
+Here for example:
+
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=29">https://bugs.mageia.org/show_bug.cgi?id=29</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="000304.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000307.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#305">[ date ]</a>
+ <a href="thread.html#305">[ thread ]</a>
+ <a href="subject.html#305">[ subject ]</a>
+ <a href="author.html#305">[ 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-February/000306.html b/zarb-ml/mageia-webteam/2011-February/000306.html
new file mode 100644
index 000000000..e37291981
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000306.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 17] Remove unused fields
+ </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%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110217082003.D2C9442061%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="000341.html">
+ <LINK REL="Next" HREF="000314.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 17] Remove unused fields</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110217082003.D2C9442061%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 17] Remove unused fields">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 09:20:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000341.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000314.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#306">[ date ]</a>
+ <a href="thread.html#306">[ thread ]</a>
+ <a href="subject.html#306">[ subject ]</a>
+ <a href="author.html#306">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=17">https://bugs.mageia.org/show_bug.cgi?id=17</A>
+
+--- Comment #5 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-02-17 09:20:03 UTC ---
+(In reply to comment #4)
+&gt;<i> (In reply to comment #3)
+</I>&gt;<i> &gt; What about feature requests ? We might not want to introduce some changes for
+</I>&gt;<i> &gt; some release and postpone them for the next release&#8230;
+</I>&gt;<i>
+</I>&gt;<i> I don't get what you mean here :/
+</I>
+I got it : he means that for feature requests, the &quot;milestone&quot; field could be
+useful. Indeed, bugs should be fixed for the next version, but features can be
+postponed. Better use the milestone field than the &quot;LATER&quot; status.
+
+--
+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="000341.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000314.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#306">[ date ]</a>
+ <a href="thread.html#306">[ thread ]</a>
+ <a href="subject.html#306">[ subject ]</a>
+ <a href="author.html#306">[ 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-February/000307.html b/zarb-ml/mageia-webteam/2011-February/000307.html
new file mode 100644
index 000000000..b304169e9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000307.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217084235.3528142068%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="000305.html">
+ <LINK REL="Next" HREF="000308.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217084235.3528142068%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 09:42:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000305.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000308.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#307">[ date ]</a>
+ <a href="thread.html#307">[ thread ]</a>
+ <a href="subject.html#307">[ subject ]</a>
+ <a href="author.html#307">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-17 09:42:35 UTC ---
+It occurs only with firefox ? No specific extension ?
+my own guess is that there is something that mess with the Header at http level
+that cause the problem.
+
+--
+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="000305.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000308.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#307">[ date ]</a>
+ <a href="thread.html#307">[ thread ]</a>
+ <a href="subject.html#307">[ subject ]</a>
+ <a href="author.html#307">[ 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-February/000308.html b/zarb-ml/mageia-webteam/2011-February/000308.html
new file mode 100644
index 000000000..ab673254c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000308.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217084726.5FBAA42069%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="000307.html">
+ <LINK REL="Next" HREF="000309.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217084726.5FBAA42069%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 09:47:26 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000307.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000309.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#308">[ date ]</a>
+ <a href="thread.html#308">[ thread ]</a>
+ <a href="subject.html#308">[ subject ]</a>
+ <a href="author.html#308">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+--- Comment #4 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-02-17 09:47:26 CET ---
+In my example it was chromium, but Ahmad was writing about FF-4.0.
+
+Oliver
+
+--
+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="000307.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000309.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#308">[ date ]</a>
+ <a href="thread.html#308">[ thread ]</a>
+ <a href="subject.html#308">[ subject ]</a>
+ <a href="author.html#308">[ 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-February/000309.html b/zarb-ml/mageia-webteam/2011-February/000309.html
new file mode 100644
index 000000000..de1ee4e2a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000309.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217085259.CD60042069%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="000308.html">
+ <LINK REL="Next" HREF="000310.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217085259.CD60042069%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 09:52:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000308.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000310.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#309">[ date ]</a>
+ <a href="thread.html#309">[ thread ]</a>
+ <a href="subject.html#309">[ subject ]</a>
+ <a href="author.html#309">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+--- Comment #5 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-17 09:52:59 UTC ---
+Ok, and does it occurs every time ?
+( ie, can we reproduce it easily ? )
+
+--
+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="000308.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000310.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#309">[ date ]</a>
+ <a href="thread.html#309">[ thread ]</a>
+ <a href="subject.html#309">[ subject ]</a>
+ <a href="author.html#309">[ 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-February/000310.html b/zarb-ml/mageia-webteam/2011-February/000310.html
new file mode 100644
index 000000000..9e550efe8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000310.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217085532.B057D42069%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="000309.html">
+ <LINK REL="Next" HREF="000311.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110217085532.B057D42069%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 09:55:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000309.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000311.html">[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#310">[ date ]</a>
+ <a href="thread.html#310">[ thread ]</a>
+ <a href="subject.html#310">[ subject ]</a>
+ <a href="author.html#310">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+--- Comment #6 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-02-17 09:55:32 UTC ---
+Don't know. Would have to create a new bug report for that...
+
+Oliver
+
+--
+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="000309.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000311.html">[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#310">[ date ]</a>
+ <a href="thread.html#310">[ thread ]</a>
+ <a href="subject.html#310">[ subject ]</a>
+ <a href="author.html#310">[ 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-February/000311.html b/zarb-ml/mageia-webteam/2011-February/000311.html
new file mode 100644
index 000000000..1355728d5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000311.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20NEW%3A%20Bugzilla%20adds%20info%20about%20Firefox%20in%0A%09each%20bug%20report&In-Reply-To=%3C20110217104406.26D6C42074%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="000310.html">
+ <LINK REL="Next" HREF="000333.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20NEW%3A%20Bugzilla%20adds%20info%20about%20Firefox%20in%0A%09each%20bug%20report&In-Reply-To=%3C20110217104406.26D6C42074%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 17 11:44:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000310.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000333.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#311">[ date ]</a>
+ <a href="thread.html#311">[ thread ]</a>
+ <a href="subject.html#311">[ subject ]</a>
+ <a href="author.html#311">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+ Summary : Bugzilla adds info about Firefox in each bug report
+ Product : Infrastructure
+ Component : Bugzilla
+ Version :
+ Status : NEW
+ Severity : normal
+ Priority : Normal
+ Assigned To: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ Reported By:
+
+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">boklm at mars-attacks.org</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="000310.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000333.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#311">[ date ]</a>
+ <a href="thread.html#311">[ thread ]</a>
+ <a href="subject.html#311">[ subject ]</a>
+ <a href="author.html#311">[ 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-February/000312.html b/zarb-ml/mageia-webteam/2011-February/000312.html
new file mode 100644
index 000000000..56a8454f3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000312.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217164611.8F557271E7%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000314.html">
+ <LINK REL="Next" HREF="000313.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217164611.8F557271E7%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 17:46:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000314.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000313.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#312">[ date ]</a>
+ <a href="thread.html#312">[ thread ]</a>
+ <a href="subject.html#312">[ subject ]</a>
+ <a href="author.html#312">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;y&quot;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000314.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000313.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#312">[ date ]</a>
+ <a href="thread.html#312">[ thread ]</a>
+ <a href="subject.html#312">[ subject ]</a>
+ <a href="author.html#312">[ 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-February/000313.html b/zarb-ml/mageia-webteam/2011-February/000313.html
new file mode 100644
index 000000000..eba22b9b5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000313.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217164754.C98D827238%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000312.html">
+ <LINK REL="Next" HREF="000315.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217164754.C98D827238%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 17:47:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000312.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000315.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#313">[ date ]</a>
+ <a href="thread.html#313">[ thread ]</a>
+ <a href="subject.html#313">[ subject ]</a>
+ <a href="author.html#313">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;en&quot;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000312.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000315.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#313">[ date ]</a>
+ <a href="thread.html#313">[ thread ]</a>
+ <a href="subject.html#313">[ subject ]</a>
+ <a href="author.html#313">[ 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-February/000314.html b/zarb-ml/mageia-webteam/2011-February/000314.html
new file mode 100644
index 000000000..d0c90bc05
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000314.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217164602.F296327180%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000306.html">
+ <LINK REL="Next" HREF="000312.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217164602.F296327180%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 17:46:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000306.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000312.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#314">[ date ]</a>
+ <a href="thread.html#314">[ thread ]</a>
+ <a href="subject.html#314">[ subject ]</a>
+ <a href="author.html#314">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;fr&quot;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000306.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000312.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#314">[ date ]</a>
+ <a href="thread.html#314">[ thread ]</a>
+ <a href="subject.html#314">[ subject ]</a>
+ <a href="author.html#314">[ 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-February/000315.html b/zarb-ml/mageia-webteam/2011-February/000315.html
new file mode 100644
index 000000000..37979f7af
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000315.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217171435.E6A9027181%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000313.html">
+ <LINK REL="Next" HREF="000316.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217171435.E6A9027181%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 18:14:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000313.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000316.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#315">[ date ]</a>
+ <a href="thread.html#315">[ thread ]</a>
+ <a href="subject.html#315">[ subject ]</a>
+ <a href="author.html#315">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;fr&quot; - <A HREF="http://planet.mageia.org/fr">http://planet.mageia.org/fr</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000313.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000316.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#315">[ date ]</a>
+ <a href="thread.html#315">[ thread ]</a>
+ <a href="subject.html#315">[ subject ]</a>
+ <a href="author.html#315">[ 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-February/000316.html b/zarb-ml/mageia-webteam/2011-February/000316.html
new file mode 100644
index 000000000..f6efdf141
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000316.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217171441.895F4271E5%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000315.html">
+ <LINK REL="Next" HREF="000317.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217171441.895F4271E5%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 18:14:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000315.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000317.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#316">[ date ]</a>
+ <a href="thread.html#316">[ thread ]</a>
+ <a href="subject.html#316">[ subject ]</a>
+ <a href="author.html#316">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;en&quot; - <A HREF="http://planet.mageia.org/en">http://planet.mageia.org/en</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000315.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000317.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#316">[ date ]</a>
+ <a href="thread.html#316">[ thread ]</a>
+ <a href="subject.html#316">[ subject ]</a>
+ <a href="author.html#316">[ 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-February/000317.html b/zarb-ml/mageia-webteam/2011-February/000317.html
new file mode 100644
index 000000000..75ef5b32e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000317.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217172131.D171927181%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000316.html">
+ <LINK REL="Next" HREF="000318.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217172131.D171927181%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 18:21:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000316.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000318.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#317">[ date ]</a>
+ <a href="thread.html#317">[ thread ]</a>
+ <a href="subject.html#317">[ subject ]</a>
+ <a href="author.html#317">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;en&quot; - <A HREF="http://planet.mageia.org/en">http://planet.mageia.org/en</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000316.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000318.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#317">[ date ]</a>
+ <a href="thread.html#317">[ thread ]</a>
+ <a href="subject.html#317">[ subject ]</a>
+ <a href="author.html#317">[ 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-February/000318.html b/zarb-ml/mageia-webteam/2011-February/000318.html
new file mode 100644
index 000000000..a79ae9622
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000318.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217172135.E039E271E8%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000317.html">
+ <LINK REL="Next" HREF="000319.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217172135.E039E271E8%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 18:21:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000317.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000319.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#318">[ date ]</a>
+ <a href="thread.html#318">[ thread ]</a>
+ <a href="subject.html#318">[ subject ]</a>
+ <a href="author.html#318">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;fr&quot; - <A HREF="http://planet.mageia.org/fr">http://planet.mageia.org/fr</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000317.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000319.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#318">[ date ]</a>
+ <a href="thread.html#318">[ thread ]</a>
+ <a href="subject.html#318">[ subject ]</a>
+ <a href="author.html#318">[ 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-February/000319.html b/zarb-ml/mageia-webteam/2011-February/000319.html
new file mode 100644
index 000000000..912a7aaf8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000319.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217172628.8B40D27183%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000318.html">
+ <LINK REL="Next" HREF="000320.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217172628.8B40D27183%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 18:26:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000318.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000320.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#319">[ date ]</a>
+ <a href="thread.html#319">[ thread ]</a>
+ <a href="subject.html#319">[ subject ]</a>
+ <a href="author.html#319">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;fr&quot; - <A HREF="http://planet.mageia.org/fr">http://planet.mageia.org/fr</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000318.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000320.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#319">[ date ]</a>
+ <a href="thread.html#319">[ thread ]</a>
+ <a href="subject.html#319">[ subject ]</a>
+ <a href="author.html#319">[ 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-February/000320.html b/zarb-ml/mageia-webteam/2011-February/000320.html
new file mode 100644
index 000000000..23e178c30
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000320.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217172632.839A52720F%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000319.html">
+ <LINK REL="Next" HREF="000322.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217172632.839A52720F%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 18:26:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000319.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000322.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#320">[ date ]</a>
+ <a href="thread.html#320">[ thread ]</a>
+ <a href="subject.html#320">[ subject ]</a>
+ <a href="author.html#320">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;en&quot; - <A HREF="http://planet.mageia.org/en">http://planet.mageia.org/en</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000319.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000322.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#320">[ date ]</a>
+ <a href="thread.html#320">[ thread ]</a>
+ <a href="subject.html#320">[ subject ]</a>
+ <a href="author.html#320">[ 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-February/000321.html b/zarb-ml/mageia-webteam/2011-February/000321.html
new file mode 100644
index 000000000..c573f3a71
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000321.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] test
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3C20110217173500.8937227183%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000322.html">
+ <LINK REL="Next" HREF="000323.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] test</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20test&In-Reply-To=%3C20110217173500.8937227183%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] test">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 18:35:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000322.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000323.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#321">[ date ]</a>
+ <a href="thread.html#321">[ thread ]</a>
+ <a href="subject.html#321">[ subject ]</a>
+ <a href="author.html#321">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>small test for planet
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000322.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000323.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#321">[ date ]</a>
+ <a href="thread.html#321">[ thread ]</a>
+ <a href="subject.html#321">[ subject ]</a>
+ <a href="author.html#321">[ 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-February/000322.html b/zarb-ml/mageia-webteam/2011-February/000322.html
new file mode 100644
index 000000000..84b310f01
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000322.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C42044f08a3da633bfcccb8fab6a12e9b%40localhost%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000320.html">
+ <LINK REL="Next" HREF="000321.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C42044f08a3da633bfcccb8fab6a12e9b%40localhost%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">mageia at damsweb.net
+ </A><BR>
+ <I>Thu Feb 17 19:45:49 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000320.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000321.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#322">[ date ]</a>
+ <a href="thread.html#322">[ thread ]</a>
+ <a href="subject.html#322">[ subject ]</a>
+ <a href="author.html#322">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, 17 Feb 2011 18:26:32 +0100, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">root at champagne.mageia.org</A> (root)
+wrote:
+&gt;<i> Info: a new Planet had been deployed.
+</I>&gt;<i> The locale is: &quot;en&quot; - <A HREF="http://planet.mageia.org/en">http://planet.mageia.org/en</A>
+</I>
+Hello all,
+
+Sorry for the noise with all the mails about planet.
+It was a bad configuration from my side.
+
+Cheers,
+--
+Damien Lallement
+aka &quot;damsweb&quot; or &quot;coincoin&quot; on IRC and twitter
+
+<A HREF="http://www.mageia.org">http://www.mageia.org</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000320.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000321.html">[Mageia-webteam] test
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#322">[ date ]</a>
+ <a href="thread.html#322">[ thread ]</a>
+ <a href="subject.html#322">[ subject ]</a>
+ <a href="author.html#322">[ 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-February/000323.html b/zarb-ml/mageia-webteam/2011-February/000323.html
new file mode 100644
index 000000000..46bf56b7c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000323.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195659.DC69F27184%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000321.html">
+ <LINK REL="Next" HREF="000324.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195659.DC69F27184%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 20:56:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000321.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000324.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#323">[ date ]</a>
+ <a href="thread.html#323">[ thread ]</a>
+ <a href="subject.html#323">[ subject ]</a>
+ <a href="author.html#323">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;fr&quot; - <A HREF="http://planet.mageia.org/fr">http://planet.mageia.org/fr</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000321.html">[Mageia-webteam] test
+</A></li>
+ <LI>Next message: <A HREF="000324.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#323">[ date ]</a>
+ <a href="thread.html#323">[ thread ]</a>
+ <a href="subject.html#323">[ subject ]</a>
+ <a href="author.html#323">[ 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-February/000324.html b/zarb-ml/mageia-webteam/2011-February/000324.html
new file mode 100644
index 000000000..e63af09bc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000324.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195703.98B5C27204%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000323.html">
+ <LINK REL="Next" HREF="000325.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195703.98B5C27204%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 20:57:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000323.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000325.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#324">[ date ]</a>
+ <a href="thread.html#324">[ thread ]</a>
+ <a href="subject.html#324">[ subject ]</a>
+ <a href="author.html#324">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;en&quot; - <A HREF="http://planet.mageia.org/en">http://planet.mageia.org/en</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000323.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000325.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#324">[ date ]</a>
+ <a href="thread.html#324">[ thread ]</a>
+ <a href="subject.html#324">[ subject ]</a>
+ <a href="author.html#324">[ 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-February/000325.html b/zarb-ml/mageia-webteam/2011-February/000325.html
new file mode 100644
index 000000000..f58e9d624
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000325.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195709.2815227256%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000324.html">
+ <LINK REL="Next" HREF="000326.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195709.2815227256%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 20:57:09 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000324.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000326.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#325">[ date ]</a>
+ <a href="thread.html#325">[ thread ]</a>
+ <a href="subject.html#325">[ subject ]</a>
+ <a href="author.html#325">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;de&quot; - <A HREF="http://planet.mageia.org/de">http://planet.mageia.org/de</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000324.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000326.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#325">[ date ]</a>
+ <a href="thread.html#325">[ thread ]</a>
+ <a href="subject.html#325">[ subject ]</a>
+ <a href="author.html#325">[ 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-February/000326.html b/zarb-ml/mageia-webteam/2011-February/000326.html
new file mode 100644
index 000000000..2e95dffc4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000326.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195714.8DF79272A2%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000325.html">
+ <LINK REL="Next" HREF="000327.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195714.8DF79272A2%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 20:57:14 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000325.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000327.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#326">[ date ]</a>
+ <a href="thread.html#326">[ thread ]</a>
+ <a href="subject.html#326">[ subject ]</a>
+ <a href="author.html#326">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;pt&quot; - <A HREF="http://planet.mageia.org/pt">http://planet.mageia.org/pt</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000325.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000327.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#326">[ date ]</a>
+ <a href="thread.html#326">[ thread ]</a>
+ <a href="subject.html#326">[ subject ]</a>
+ <a href="author.html#326">[ 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-February/000327.html b/zarb-ml/mageia-webteam/2011-February/000327.html
new file mode 100644
index 000000000..3fa538198
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000327.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195720.033A0272EE%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000326.html">
+ <LINK REL="Next" HREF="000328.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217195720.033A0272EE%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 20:57:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000326.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000328.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#327">[ date ]</a>
+ <a href="thread.html#327">[ thread ]</a>
+ <a href="subject.html#327">[ subject ]</a>
+ <a href="author.html#327">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;it&quot; - <A HREF="http://planet.mageia.org/it">http://planet.mageia.org/it</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000326.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000328.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#327">[ date ]</a>
+ <a href="thread.html#327">[ thread ]</a>
+ <a href="subject.html#327">[ subject ]</a>
+ <a href="author.html#327">[ 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-February/000328.html b/zarb-ml/mageia-webteam/2011-February/000328.html
new file mode 100644
index 000000000..7b08b3c27
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000328.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New planet Mageia deployed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217200028.ECDDC2731F%40champagne.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000327.html">
+ <LINK REL="Next" HREF="000329.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New planet Mageia deployed</H1>
+ <B>root</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20planet%20Mageia%20deployed&In-Reply-To=%3C20110217200028.ECDDC2731F%40champagne.mageia.org%3E"
+ TITLE="[Mageia-webteam] New planet Mageia deployed">root at champagne.mageia.org
+ </A><BR>
+ <I>Thu Feb 17 21:00:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000327.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000329.html">[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#328">[ date ]</a>
+ <a href="thread.html#328">[ thread ]</a>
+ <a href="subject.html#328">[ subject ]</a>
+ <a href="author.html#328">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Info: a new Planet had been deployed.
+The locale is: &quot;es&quot; - <A HREF="http://planet.mageia.org/es">http://planet.mageia.org/es</A>
+--
+Mail sent by the script './deploy_new-planet.sh' on champagne.mageia.org
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000327.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000329.html">[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#328">[ date ]</a>
+ <a href="thread.html#328">[ thread ]</a>
+ <a href="subject.html#328">[ subject ]</a>
+ <a href="author.html#328">[ 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-February/000329.html b/zarb-ml/mageia-webteam/2011-February/000329.html
new file mode 100644
index 000000000..89f95b154
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000329.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org
+ </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%2092%5D%20New%3A%20Add%20your%20own%20favicon%20to%0A%09bugs.mageia.org&In-Reply-To=%3Cbug-92-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="000328.html">
+ <LINK REL="Next" HREF="000330.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2092%5D%20New%3A%20Add%20your%20own%20favicon%20to%0A%09bugs.mageia.org&In-Reply-To=%3Cbug-92-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 08:49:55 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000328.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000330.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#329">[ date ]</a>
+ <a href="thread.html#329">[ thread ]</a>
+ <a href="subject.html#329">[ subject ]</a>
+ <a href="author.html#329">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=92">https://bugs.mageia.org/show_bug.cgi?id=92</A>
+
+ Summary: Add your own favicon to bugs.mageia.org
+ Product: Infrastructure
+ Version: unspecified
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Low
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</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>
+
+
+Mageia's Bugzilla is currently using the default Bugzilla favicon. Despite this
+favicon being very nice :-D it's not very convenient to easily identify your
+installation when you have many tabs opened in the web browser. Being active in
+4+ different Bugzilla installations + all my test installations, you can
+imagine how easy it is to miss yours (and how easy it is for me to post a
+comment in the wrong bug report).
+
+I suggest you use your own favicon, to give some identity to your webiste.
+
+--
+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="000328.html">[Mageia-webteam] New planet Mageia deployed
+</A></li>
+ <LI>Next message: <A HREF="000330.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#329">[ date ]</a>
+ <a href="thread.html#329">[ thread ]</a>
+ <a href="subject.html#329">[ subject ]</a>
+ <a href="author.html#329">[ 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-February/000330.html b/zarb-ml/mageia-webteam/2011-February/000330.html
new file mode 100644
index 000000000..29fd7a971
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000330.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+ </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%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218082453.0677C42134%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="000329.html">
+ <LINK REL="Next" HREF="000331.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218082453.0677C42134%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 09:24:53 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000329.html">[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000331.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#330">[ date ]</a>
+ <a href="thread.html#330">[ thread ]</a>
+ <a href="subject.html#330">[ subject ]</a>
+ <a href="author.html#330">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=92">https://bugs.mageia.org/show_bug.cgi?id=92</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ QAContact| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-artwork at mageia.org</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="000329.html">[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000331.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#330">[ date ]</a>
+ <a href="thread.html#330">[ thread ]</a>
+ <a href="subject.html#330">[ subject ]</a>
+ <a href="author.html#330">[ 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-February/000331.html b/zarb-ml/mageia-webteam/2011-February/000331.html
new file mode 100644
index 000000000..04b9adefc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000331.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+ </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%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218101716.452E642139%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="000330.html">
+ <LINK REL="Next" HREF="000332.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218101716.452E642139%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 11:17:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000330.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000332.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#331">[ date ]</a>
+ <a href="thread.html#331">[ thread ]</a>
+ <a href="subject.html#331">[ subject ]</a>
+ <a href="author.html#331">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=92">https://bugs.mageia.org/show_bug.cgi?id=92</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-18 11:17:16 UTC ---
+artwork team do we have a mageia favicon ? or can we have one please ?
+
+--
+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="000330.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000332.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#331">[ date ]</a>
+ <a href="thread.html#331">[ thread ]</a>
+ <a href="subject.html#331">[ subject ]</a>
+ <a href="author.html#331">[ 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-February/000332.html b/zarb-ml/mageia-webteam/2011-February/000332.html
new file mode 100644
index 000000000..9e3b9a028
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000332.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+ </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%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218102245.2E6504213D%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="000331.html">
+ <LINK REL="Next" HREF="000336.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218102245.2E6504213D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 11:22:45 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000331.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000336.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#332">[ date ]</a>
+ <a href="thread.html#332">[ thread ]</a>
+ <a href="subject.html#332">[ subject ]</a>
+ <a href="author.html#332">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=92">https://bugs.mageia.org/show_bug.cgi?id=92</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 #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-18 11:22:45 UTC ---
+We can as well deploy it fully on all website, the question is how ?
+
+--
+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="000331.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000336.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#332">[ date ]</a>
+ <a href="thread.html#332">[ thread ]</a>
+ <a href="subject.html#332">[ subject ]</a>
+ <a href="author.html#332">[ 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-February/000333.html b/zarb-ml/mageia-webteam/2011-February/000333.html
new file mode 100644
index 000000000..33c14ac98
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000333.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218130303.DF54942141%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="000311.html">
+ <LINK REL="Next" HREF="000334.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218130303.DF54942141%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 14:03:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000311.html">[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000334.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#333">[ date ]</a>
+ <a href="thread.html#333">[ thread ]</a>
+ <a href="subject.html#333">[ subject ]</a>
+ <a href="author.html#333">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</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 #8 from Frank Griffin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ftg at roadrunner.com</A>&gt; 2011-02-18 14:03:04 CET ---
+Can we get a wireshark (or other sniffer) trace of the HTTP request that is
+sent ?
+
+--
+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="000311.html">[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000334.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#333">[ date ]</a>
+ <a href="thread.html#333">[ thread ]</a>
+ <a href="subject.html#333">[ subject ]</a>
+ <a href="author.html#333">[ 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-February/000334.html b/zarb-ml/mageia-webteam/2011-February/000334.html
new file mode 100644
index 000000000..15216b3c5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000334.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218131859.532734214E%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="000333.html">
+ <LINK REL="Next" HREF="000335.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218131859.532734214E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 14:18:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000333.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000335.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#334">[ date ]</a>
+ <a href="thread.html#334">[ thread ]</a>
+ <a href="subject.html#334">[ subject ]</a>
+ <a href="author.html#334">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+--- Comment #9 from Frank Griffin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ftg at roadrunner.com</A>&gt; 2011-02-18 14:18:59 UTC ---
+Since the demarcation between the HTTP header and the body is a double newline,
+the most likely cause is that the value for the header preceding &quot;User-Agent:&quot;
+has an embedded newline at the end.
+
+--
+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="000333.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000335.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#334">[ date ]</a>
+ <a href="thread.html#334">[ thread ]</a>
+ <a href="subject.html#334">[ subject ]</a>
+ <a href="author.html#334">[ 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-February/000335.html b/zarb-ml/mageia-webteam/2011-February/000335.html
new file mode 100644
index 000000000..fa2958522
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000335.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218132922.E150942178%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="000334.html">
+ <LINK REL="Next" HREF="000337.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218132922.E150942178%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 14:29:22 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000334.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000337.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#335">[ date ]</a>
+ <a href="thread.html#335">[ thread ]</a>
+ <a href="subject.html#335">[ subject ]</a>
+ <a href="author.html#335">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+--- Comment #10 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-18 14:29:23 UTC ---
+Wireshark would likely be useless, as we are using ssl. But someone could use
+stunnel to simulate a cleartext bugzilla and therefor sniff it. Other
+possibility, LiveHTTPHeader extension.
+
+And in the trace, do not forget to check to not add password :)
+
+--
+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="000334.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000337.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#335">[ date ]</a>
+ <a href="thread.html#335">[ thread ]</a>
+ <a href="subject.html#335">[ subject ]</a>
+ <a href="author.html#335">[ 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-February/000336.html b/zarb-ml/mageia-webteam/2011-February/000336.html
new file mode 100644
index 000000000..df8fc5f2e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000336.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+ </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%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218150809.D31E14219D%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="000332.html">
+ <LINK REL="Next" HREF="000338.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218150809.D31E14219D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 16:08:09 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000332.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000338.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#336">[ date ]</a>
+ <a href="thread.html#336">[ thread ]</a>
+ <a href="subject.html#336">[ subject ]</a>
+ <a href="author.html#336">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=92">https://bugs.mageia.org/show_bug.cgi?id=92</A>
+
+--- Comment #3 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-02-18 16:08:09 UTC ---
+About bmo (bugs.mageia.org, not bugzilla.mozilla.org ;)), you have to put the
+favicon in images/favicon.ico (relative to the Bugzilla root directory). Else
+Apache looks at /var/www/html/favicon.ico.
+
+--
+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="000332.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000338.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#336">[ date ]</a>
+ <a href="thread.html#336">[ thread ]</a>
+ <a href="subject.html#336">[ subject ]</a>
+ <a href="author.html#336">[ 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-February/000337.html b/zarb-ml/mageia-webteam/2011-February/000337.html
new file mode 100644
index 000000000..fcb496bf2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000337.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218154634.B24EC421AC%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="000335.html">
+ <LINK REL="Next" HREF="000339.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218154634.B24EC421AC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 16:46:34 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000335.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000339.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#337">[ date ]</a>
+ <a href="thread.html#337">[ thread ]</a>
+ <a href="subject.html#337">[ subject ]</a>
+ <a href="author.html#337">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</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-02-18 16:46:34 CET ---
+(In reply to comment #0)
+&gt;<i> In some bug reports we get info about Firefox in the report, e.g.:
+</I>&gt;<i> User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:2.0b12pre) Gecko/20110214
+</I>&gt;<i> Firefox/4.0b12pre
+</I>&gt;<i> Build Identifier:
+</I>
+When you use the guided form to file bugs (which is the default for this
+installation), the User-Agent and the Build Identifier are automatically added
+to the bug comment. To remove them, remove these two lines from
+template/en/default/bug/create/comment-guided.txt.tmpl:
+
+ User-Agent: [%+ cgi.user_agent() %]
+ Build Identifier: [%+ cgi.param(&quot;buildid&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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000335.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000339.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#337">[ date ]</a>
+ <a href="thread.html#337">[ thread ]</a>
+ <a href="subject.html#337">[ subject ]</a>
+ <a href="author.html#337">[ 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-February/000338.html b/zarb-ml/mageia-webteam/2011-February/000338.html
new file mode 100644
index 000000000..9bafe37da
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000338.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+ </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%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218160720.C7FB0421B3%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="000336.html">
+ <LINK REL="Next" HREF="000342.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110218160720.C7FB0421B3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 17:07:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000336.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000342.html">[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#338">[ date ]</a>
+ <a href="thread.html#338">[ thread ]</a>
+ <a href="subject.html#338">[ subject ]</a>
+ <a href="author.html#338">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=92">https://bugs.mageia.org/show_bug.cgi?id=92</A>
+
+--- Comment #4 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-02-18 17:07:20 CET ---
+This was already requested: <A HREF="http://mageia.org/wiki/doku.php?id=bugzilla">http://mageia.org/wiki/doku.php?id=bugzilla</A>
+so one more line to cross out from the list once this report is 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="000336.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000342.html">[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#338">[ date ]</a>
+ <a href="thread.html#338">[ thread ]</a>
+ <a href="subject.html#338">[ subject ]</a>
+ <a href="author.html#338">[ 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-February/000339.html b/zarb-ml/mageia-webteam/2011-February/000339.html
new file mode 100644
index 000000000..7e81d8385
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000339.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218190323.61452421B5%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="000337.html">
+ <LINK REL="Next" HREF="000340.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218190323.61452421B5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 20:03:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000337.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000340.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#339">[ date ]</a>
+ <a href="thread.html#339">[ thread ]</a>
+ <a href="subject.html#339">[ subject ]</a>
+ <a href="author.html#339">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+--- Comment #12 from Frank Griffin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ftg at roadrunner.com</A>&gt; 2011-02-18 20:03:23 UTC ---
+(In reply to comment #11)
+
+&gt;<i> When you use the guided form to file bugs (which is the default for this
+</I>&gt;<i> installation), the User-Agent and the Build Identifier are automatically added
+</I>&gt;<i> to the bug comment. To remove them, remove these two lines from
+</I>&gt;<i> template/en/default/bug/create/comment-guided.txt.tmpl:
+</I>&gt;<i>
+</I>&gt;<i> User-Agent: [%+ cgi.user_agent() %]
+</I>&gt;<i> Build Identifier: [%+ cgi.param(&quot;buildid&quot;) %]
+</I>
+Are you saying that these lines are intentionally added to the *body* of the
+request ? Or are they intended to be added to the request *header* ?
+
+In the former case, the observed behavior is intentional (and can be corrected
+by the directions you gave). In the latter case, there is a bug - either the
+header preceding &quot;User Agent:&quot; has an unwanted newline at the end of its data
+portion (resulting in a double-newline which terminates the header section), or
+else some other code is adding the extra newline before &quot;UserAgent:&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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000337.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000340.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#339">[ date ]</a>
+ <a href="thread.html#339">[ thread ]</a>
+ <a href="subject.html#339">[ subject ]</a>
+ <a href="author.html#339">[ 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-February/000340.html b/zarb-ml/mageia-webteam/2011-February/000340.html
new file mode 100644
index 000000000..6e69816ac
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000340.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218190613.51F88421C4%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="000339.html">
+ <LINK REL="Next" HREF="000341.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218190613.51F88421C4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 20:06:13 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000339.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000341.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#340">[ date ]</a>
+ <a href="thread.html#340">[ thread ]</a>
+ <a href="subject.html#340">[ subject ]</a>
+ <a href="author.html#340">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</A>
+
+--- Comment #13 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-02-18 20:06:13 UTC ---
+(In reply to comment #12)
+&gt;<i> Are you saying that these lines are intentionally added to the *body* of the
+</I>&gt;<i> request ?
+</I>
+body, yes.
+
+--
+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="000339.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000341.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#340">[ date ]</a>
+ <a href="thread.html#340">[ thread ]</a>
+ <a href="subject.html#340">[ subject ]</a>
+ <a href="author.html#340">[ 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-February/000341.html b/zarb-ml/mageia-webteam/2011-February/000341.html
new file mode 100644
index 000000000..38779055f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000341.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+ </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%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218202618.8D5FA421DD%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="000340.html">
+ <LINK REL="Next" HREF="000306.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2075%5D%20Bugzilla%20adds%20info%20about%20Firefox%20in%20each%0A%09bug%20report&In-Reply-To=%3C20110218202618.8D5FA421DD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 18 21:26:18 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000340.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000306.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#341">[ date ]</a>
+ <a href="thread.html#341">[ thread ]</a>
+ <a href="subject.html#341">[ subject ]</a>
+ <a href="author.html#341">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=75">https://bugs.mageia.org/show_bug.cgi?id=75</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|NEW |RESOLVED
+
+--- Comment #14 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-18 21:26:18 CET ---
+thank you again Fr&#233;d&#233;ric, i just modified our templates tks to 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="000340.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A></li>
+ <LI>Next message: <A HREF="000306.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#341">[ date ]</a>
+ <a href="thread.html#341">[ thread ]</a>
+ <a href="subject.html#341">[ subject ]</a>
+ <a href="author.html#341">[ 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-February/000342.html b/zarb-ml/mageia-webteam/2011-February/000342.html
new file mode 100644
index 000000000..6a31c4c64
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000342.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ </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%20104%5D%20New%3A%20%5BWISH%5D%20Start%20an%20online%0A%20torrent-tracker%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%0A%20how%20many%20that%20are%20downloading%20it&In-Reply-To=%3Cbug-104-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="000338.html">
+ <LINK REL="Next" HREF="000343.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20104%5D%20New%3A%20%5BWISH%5D%20Start%20an%20online%0A%20torrent-tracker%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%0A%20how%20many%20that%20are%20downloading%20it&In-Reply-To=%3Cbug-104-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 11:17:10 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000338.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000343.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#342">[ date ]</a>
+ <a href="thread.html#342">[ thread ]</a>
+ <a href="subject.html#342">[ subject ]</a>
+ <a href="author.html#342">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+
+ Summary: [WISH] Start an online torrent-tracker with the
+ torrent-releases like Ubuntu does to keep track of how
+ many that are downloading it
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://torrent.ubuntu.com:6969/">http://torrent.ubuntu.com:6969/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Normal
+ Component: All
+ 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">kristoffer.grundstrom1983 at gmail.com</A>
+
+
+Description of problem: I think It'll be a good idea to start a tracker on each
+mirror when you're about to add torrents for public downloading. That way
+you'll not get limited speed.
+
+Steps to Reproduce:
+1. Open your desired browser.
+2. Go to torrent.mageia.org:6969
+3. Voila! You'll be shown how many users that are downloading/uploading in the
+list.
+
+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="000338.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000343.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#342">[ date ]</a>
+ <a href="thread.html#342">[ thread ]</a>
+ <a href="subject.html#342">[ subject ]</a>
+ <a href="author.html#342">[ 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-February/000343.html b/zarb-ml/mageia-webteam/2011-February/000343.html
new file mode 100644
index 000000000..9c5104f2b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000343.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ </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%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20110219101723.7D52342225%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="000342.html">
+ <LINK REL="Next" HREF="000344.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20110219101723.7D52342225%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 11:17:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000342.html">[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="000344.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#343">[ date ]</a>
+ <a href="thread.html#343">[ thread ]</a>
+ <a href="subject.html#343">[ subject ]</a>
+ <a href="author.html#343">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at g</A>
+ | |mail.com
+ Priority|Normal |High
+
+--
+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="000342.html">[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="000344.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#343">[ date ]</a>
+ <a href="thread.html#343">[ thread ]</a>
+ <a href="subject.html#343">[ subject ]</a>
+ <a href="author.html#343">[ 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-February/000344.html b/zarb-ml/mageia-webteam/2011-February/000344.html
new file mode 100644
index 000000000..40e62bd56
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000344.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ </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%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20110219105846.78AF442222%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="000343.html">
+ <LINK REL="Next" HREF="000345.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20110219105846.78AF442222%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 11:58:46 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000343.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="000345.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#344">[ date ]</a>
+ <a href="thread.html#344">[ thread ]</a>
+ <a href="subject.html#344">[ subject ]</a>
+ <a href="author.html#344">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</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-02-19 11:58:46 UTC ---
+This is already planned :
+<A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2011-February/002750.html">https://www.mageia.org/pipermail/mageia-sysadm/2011-February/002750.html</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="000343.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="000345.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#344">[ date ]</a>
+ <a href="thread.html#344">[ thread ]</a>
+ <a href="subject.html#344">[ subject ]</a>
+ <a href="author.html#344">[ 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-February/000345.html b/zarb-ml/mageia-webteam/2011-February/000345.html
new file mode 100644
index 000000000..e7684a7b0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000345.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ </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%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20110219115704.84AC84221E%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="000344.html">
+ <LINK REL="Next" HREF="000351.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20110219115704.84AC84221E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 12:57:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000344.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="000351.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#345">[ date ]</a>
+ <a href="thread.html#345">[ thread ]</a>
+ <a href="subject.html#345">[ subject ]</a>
+ <a href="author.html#345">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|High |Low
+
+--
+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="000344.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="000351.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#345">[ date ]</a>
+ <a href="thread.html#345">[ thread ]</a>
+ <a href="subject.html#345">[ subject ]</a>
+ <a href="author.html#345">[ 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-February/000346.html b/zarb-ml/mageia-webteam/2011-February/000346.html
new file mode 100644
index 000000000..c3dc101ad
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000346.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219135123.A7C8342251%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="000250.html">
+ <LINK REL="Next" HREF="000347.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219135123.A7C8342251%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 14:51:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000250.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000347.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#346">[ date ]</a>
+ <a href="thread.html#346">[ thread ]</a>
+ <a href="subject.html#346">[ subject ]</a>
+ <a href="author.html#346">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+--- Comment #11 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-19 02:14:00 UTC ---
+test
+
+--- Comment #12 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-19 14:51:23 UTC ---
+test
+
+--
+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="000250.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000347.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#346">[ date ]</a>
+ <a href="thread.html#346">[ thread ]</a>
+ <a href="subject.html#346">[ subject ]</a>
+ <a href="author.html#346">[ 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-February/000347.html b/zarb-ml/mageia-webteam/2011-February/000347.html
new file mode 100644
index 000000000..ddeeba0a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000347.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219135439.227E742256%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="000346.html">
+ <LINK REL="Next" HREF="000348.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219135439.227E742256%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 14:54:39 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000346.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000348.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#347">[ date ]</a>
+ <a href="thread.html#347">[ thread ]</a>
+ <a href="subject.html#347">[ subject ]</a>
+ <a href="author.html#347">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+
+--- Comment #13 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-19 14:54:39 UTC ---
+test new assignee
+
+--
+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="000346.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000348.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#347">[ date ]</a>
+ <a href="thread.html#347">[ thread ]</a>
+ <a href="subject.html#347">[ subject ]</a>
+ <a href="author.html#347">[ 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-February/000348.html b/zarb-ml/mageia-webteam/2011-February/000348.html
new file mode 100644
index 000000000..8f4fa7de3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000348.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219135629.D61DE4225E%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="000347.html">
+ <LINK REL="Next" HREF="000349.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219135629.D61DE4225E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 14:56:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000347.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000349.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#348">[ date ]</a>
+ <a href="thread.html#348">[ thread ]</a>
+ <a href="subject.html#348">[ subject ]</a>
+ <a href="author.html#348">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</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="000347.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000349.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#348">[ date ]</a>
+ <a href="thread.html#348">[ thread ]</a>
+ <a href="subject.html#348">[ subject ]</a>
+ <a href="author.html#348">[ 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-February/000349.html b/zarb-ml/mageia-webteam/2011-February/000349.html
new file mode 100644
index 000000000..d87386e89
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000349.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219135939.1C97442266%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="000348.html">
+ <LINK REL="Next" HREF="000350.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219135939.1C97442266%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 14:59:39 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000348.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000350.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#349">[ date ]</a>
+ <a href="thread.html#349">[ thread ]</a>
+ <a href="subject.html#349">[ subject ]</a>
+ <a href="author.html#349">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+
+--- Comment #14 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-19 14:59:39 UTC ---
+test
+
+--
+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="000348.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000350.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#349">[ date ]</a>
+ <a href="thread.html#349">[ thread ]</a>
+ <a href="subject.html#349">[ subject ]</a>
+ <a href="author.html#349">[ 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-February/000350.html b/zarb-ml/mageia-webteam/2011-February/000350.html
new file mode 100644
index 000000000..a2656da4b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000350.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 23] Testing bugs ML
+ </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%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219170446.87D1B4229D%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="000349.html">
+ <LINK REL="Next" HREF="000247.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 23] Testing bugs ML</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2023%5D%20Testing%20bugs%20ML&In-Reply-To=%3C20110219170446.87D1B4229D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 23] Testing bugs ML">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 18:04:46 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000349.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000247.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#350">[ date ]</a>
+ <a href="thread.html#350">[ thread ]</a>
+ <a href="subject.html#350">[ subject ]</a>
+ <a href="author.html#350">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=23">https://bugs.mageia.org/show_bug.cgi?id=23</A>
+
+--- Comment #15 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-19 18:04:46 UTC ---
+test
+
+--
+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="000349.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A></li>
+ <LI>Next message: <A HREF="000247.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#350">[ date ]</a>
+ <a href="thread.html#350">[ thread ]</a>
+ <a href="subject.html#350">[ subject ]</a>
+ <a href="author.html#350">[ 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-February/000351.html b/zarb-ml/mageia-webteam/2011-February/000351.html
new file mode 100644
index 000000000..461a60534
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000351.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 17] Remove unused fields
+ </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%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110219214229.A427D4231E%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="000345.html">
+ <LINK REL="Next" HREF="000352.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 17] Remove unused fields</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110219214229.A427D4231E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 17] Remove unused fields">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 19 22:42:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000345.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="000352.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#351">[ date ]</a>
+ <a href="thread.html#351">[ thread ]</a>
+ <a href="subject.html#351">[ subject ]</a>
+ <a href="author.html#351">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=17">https://bugs.mageia.org/show_bug.cgi?id=17</A>
+
+--- Comment #6 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-02-19 22:42:29 UTC ---
+The Milestone field was never used/useful in the two years I was a member of
+the triage team in mdv... not sure it's going to make a difference for our use
+(it makes sense in an upstream bugzilla, e.g. mozilla bugzilla, e.g. &quot;this
+feature will be in firefox-4.0b12&quot;.... etc, but not much sense in a downstream
+bugzilla).
+
+Just my 2 cents; if many people think it's useful, it can of course be added
+back...
+
+--
+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="000345.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="000352.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#351">[ date ]</a>
+ <a href="thread.html#351">[ thread ]</a>
+ <a href="subject.html#351">[ subject ]</a>
+ <a href="author.html#351">[ 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-February/000352.html b/zarb-ml/mageia-webteam/2011-February/000352.html
new file mode 100644
index 000000000..6ae02bd4b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000352.html
@@ -0,0 +1,70 @@
+<!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=%3C20110221015223.5D3EE4248D%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="000351.html">
+ <LINK REL="Next" HREF="000353.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 18] Do not allow to change status without a comment</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110221015223.5D3EE4248D%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 Feb 21 02:52:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000351.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000353.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#352">[ date ]</a>
+ <a href="thread.html#352">[ thread ]</a>
+ <a href="subject.html#352">[ subject ]</a>
+ <a href="author.html#352">[ 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>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|REOPENED |ASSIGNED
+
+--
+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="000351.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000353.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#352">[ date ]</a>
+ <a href="thread.html#352">[ thread ]</a>
+ <a href="subject.html#352">[ subject ]</a>
+ <a href="author.html#352">[ 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-February/000353.html b/zarb-ml/mageia-webteam/2011-February/000353.html
new file mode 100644
index 000000000..ae97755d5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000353.html
@@ -0,0 +1,71 @@
+<!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=%3C20110221015311.0314C4248F%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="000352.html">
+ <LINK REL="Next" HREF="000354.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 18] Do not allow to change status without a comment</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110221015311.0314C4248F%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 Feb 21 02:53:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000352.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000354.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#353">[ date ]</a>
+ <a href="thread.html#353">[ thread ]</a>
+ <a href="subject.html#353">[ subject ]</a>
+ <a href="author.html#353">[ 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>
+
+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
+
+--
+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="000352.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000354.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#353">[ date ]</a>
+ <a href="thread.html#353">[ thread ]</a>
+ <a href="subject.html#353">[ subject ]</a>
+ <a href="author.html#353">[ 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-February/000354.html b/zarb-ml/mageia-webteam/2011-February/000354.html
new file mode 100644
index 000000000..95ebab1cd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000354.html
@@ -0,0 +1,75 @@
+<!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=%3C20110221015355.253F142491%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="000353.html">
+ <LINK REL="Next" HREF="000355.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 18] Do not allow to change status without a comment</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110221015355.253F142491%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 Feb 21 02:53:55 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000353.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000355.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#354">[ date ]</a>
+ <a href="thread.html#354">[ thread ]</a>
+ <a href="subject.html#354">[ subject ]</a>
+ <a href="author.html#354">[ 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>
+
+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|RESOLVED |REOPENED
+
+--- Comment #5 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-02-21 02:53:55 UTC ---
+So, not fixed yet, I could change to ASSIGNED without adding a comment. However
+I could also close the report without adding a comment.
+
+--
+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="000353.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000355.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#354">[ date ]</a>
+ <a href="thread.html#354">[ thread ]</a>
+ <a href="subject.html#354">[ subject ]</a>
+ <a href="author.html#354">[ 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-February/000355.html b/zarb-ml/mageia-webteam/2011-February/000355.html
new file mode 100644
index 000000000..ccb6ede76
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000355.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 17] Remove unused fields
+ </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%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110221204432.A83C8424E1%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="000354.html">
+ <LINK REL="Next" HREF="000356.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 17] Remove unused fields</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2017%5D%20Remove%20unused%20fields&In-Reply-To=%3C20110221204432.A83C8424E1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 17] Remove unused fields">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 21 21:44:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000354.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000356.html">[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#355">[ date ]</a>
+ <a href="thread.html#355">[ thread ]</a>
+ <a href="subject.html#355">[ subject ]</a>
+ <a href="author.html#355">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=17">https://bugs.mageia.org/show_bug.cgi?id=17</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 #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-02-21 21:44:32 UTC ---
+I would have kept the milestone, at least to experiment with it, but for some
+specific features or bugs for a given release (as a target, indeed). So that
+features (big or small) may be planned in advance for a given 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="000354.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000356.html">[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#355">[ date ]</a>
+ <a href="thread.html#355">[ thread ]</a>
+ <a href="subject.html#355">[ subject ]</a>
+ <a href="author.html#355">[ 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-February/000356.html b/zarb-ml/mageia-webteam/2011-February/000356.html
new file mode 100644
index 000000000..987bbc8d6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000356.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 149] New: Vote for bugs at 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%20149%5D%20New%3A%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3Cbug-149-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="000355.html">
+ <LINK REL="Next" HREF="000357.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20149%5D%20New%3A%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3Cbug-149-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 22 00:03:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000355.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000357.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#356">[ date ]</a>
+ <a href="thread.html#356">[ thread ]</a>
+ <a href="subject.html#356">[ subject ]</a>
+ <a href="author.html#356">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</A>
+
+ Summary: Vote for bugs at bugzilla
+ 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">dmorganec at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">gejobj at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Has this version of bugzilla a vote system?
+
+In affirmative case, can we activate it?
+
+Thanks.
+Bye.
+
+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="000355.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI>Next message: <A HREF="000357.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#356">[ date ]</a>
+ <a href="thread.html#356">[ thread ]</a>
+ <a href="subject.html#356">[ subject ]</a>
+ <a href="author.html#356">[ 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-February/000357.html b/zarb-ml/mageia-webteam/2011-February/000357.html
new file mode 100644
index 000000000..90f8a048c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000357.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 149] Vote for bugs at 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%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221230815.63069424FD%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="000356.html">
+ <LINK REL="Next" HREF="000358.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221230815.63069424FD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 22 00:08:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000356.html">[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000358.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#357">[ date ]</a>
+ <a href="thread.html#357">[ thread ]</a>
+ <a href="subject.html#357">[ subject ]</a>
+ <a href="author.html#357">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</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|NEW |RESOLVED
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-22 00:08:15 UTC ---
+this is already enabled on our bugzilla
+
+--
+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="000356.html">[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000358.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#357">[ date ]</a>
+ <a href="thread.html#357">[ thread ]</a>
+ <a href="subject.html#357">[ subject ]</a>
+ <a href="author.html#357">[ 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-February/000358.html b/zarb-ml/mageia-webteam/2011-February/000358.html
new file mode 100644
index 000000000..c02c6e0c3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000358.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 149] Vote for bugs at 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%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221231903.55A5B42503%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="000357.html">
+ <LINK REL="Next" HREF="000359.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221231903.55A5B42503%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 22 00:19:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000357.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000359.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#358">[ date ]</a>
+ <a href="thread.html#358">[ thread ]</a>
+ <a href="subject.html#358">[ subject ]</a>
+ <a href="author.html#358">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</A>
+
+--- Comment #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-02-22 00:19:03 UTC ---
+I would be against for 2 reasons :
+
+- it is often misued, when there is people who say &quot;vote for this&quot;, thus giving
+more power to those with a bigger community to the detriment of others ( as I
+have seen at Mandriva with people voting for the same bug in group ).
+
+- a voted bug do not mean someone will look at it, as packagers look at what
+they can fix rather than on what is popular, or what affect them personnally.
+
+Theses 2 reasons often result in users feeling unlistened and I never looked
+personnaly at the vote at all.
+
+So it is better IMHO to not lie to users, and to not activate vote.
+
+--
+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="000357.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000359.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#358">[ date ]</a>
+ <a href="thread.html#358">[ thread ]</a>
+ <a href="subject.html#358">[ subject ]</a>
+ <a href="author.html#358">[ 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-February/000359.html b/zarb-ml/mageia-webteam/2011-February/000359.html
new file mode 100644
index 000000000..2864d04bf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000359.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 149] Vote for bugs at 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%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221232951.92FB542504%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="000358.html">
+ <LINK REL="Next" HREF="000360.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221232951.92FB542504%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 22 00:29:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000358.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000360.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#359">[ date ]</a>
+ <a href="thread.html#359">[ thread ]</a>
+ <a href="subject.html#359">[ subject ]</a>
+ <a href="author.html#359">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</A>
+
+--- Comment #3 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-02-22 00:29:51 UTC ---
+(I agree with misc).
+
+--
+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="000358.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000360.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#359">[ date ]</a>
+ <a href="thread.html#359">[ thread ]</a>
+ <a href="subject.html#359">[ subject ]</a>
+ <a href="author.html#359">[ 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-February/000360.html b/zarb-ml/mageia-webteam/2011-February/000360.html
new file mode 100644
index 000000000..b7b986b6a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000360.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 149] Vote for bugs at 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%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221233035.1D6D542504%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="000359.html">
+ <LINK REL="Next" HREF="000361.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221233035.1D6D542504%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 22 00:30:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000359.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000361.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#360">[ date ]</a>
+ <a href="thread.html#360">[ thread ]</a>
+ <a href="subject.html#360">[ subject ]</a>
+ <a href="author.html#360">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</A>
+
+--- Comment #4 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-22 00:30:35 UTC ---
+i am sorry but i agree with mickael on this point.
+
+--
+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="000359.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000361.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#360">[ date ]</a>
+ <a href="thread.html#360">[ thread ]</a>
+ <a href="subject.html#360">[ subject ]</a>
+ <a href="author.html#360">[ 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-February/000361.html b/zarb-ml/mageia-webteam/2011-February/000361.html
new file mode 100644
index 000000000..c0f41ccaa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000361.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 149] Vote for bugs at 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%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221233052.7AB5B4250A%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="000360.html">
+ <LINK REL="Next" HREF="000362.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110221233052.7AB5B4250A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 22 00:30:52 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000360.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000362.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#361">[ date ]</a>
+ <a href="thread.html#361">[ thread ]</a>
+ <a href="subject.html#361">[ subject ]</a>
+ <a href="author.html#361">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</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 |WONTFIX
+
+--- Comment #5 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-22 00:30:52 UTC ---
+i removed the vote option for now
+
+--
+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="000360.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000362.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#361">[ date ]</a>
+ <a href="thread.html#361">[ thread ]</a>
+ <a href="subject.html#361">[ subject ]</a>
+ <a href="author.html#361">[ 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-February/000362.html b/zarb-ml/mageia-webteam/2011-February/000362.html
new file mode 100644
index 000000000..d7970ab1f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000362.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 149] Vote for bugs at 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%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110222000154.B2A6F42512%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="000361.html">
+ <LINK REL="Next" HREF="000363.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110222000154.B2A6F42512%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 22 01:01:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000361.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000363.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#362">[ date ]</a>
+ <a href="thread.html#362">[ thread ]</a>
+ <a href="subject.html#362">[ subject ]</a>
+ <a href="author.html#362">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</A>
+
+--- Comment #6 from Gerardo Bueno &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">gejobj at gmail.com</A>&gt; 2011-02-22 01:01:54 CET ---
+OKs, You are right. Disabling vote system can keep buglist unaltered.
+
+Sorry for this misunderstanding :P
+
+--
+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="000361.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000363.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#362">[ date ]</a>
+ <a href="thread.html#362">[ thread ]</a>
+ <a href="subject.html#362">[ subject ]</a>
+ <a href="author.html#362">[ 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-February/000363.html b/zarb-ml/mageia-webteam/2011-February/000363.html
new file mode 100644
index 000000000..2d07b6860
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000363.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 149] Vote for bugs at 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%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110222000456.4DF9D4251C%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="000362.html">
+ <LINK REL="Next" HREF="000365.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110222000456.4DF9D4251C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 22 01:04:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000362.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000365.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#363">[ date ]</a>
+ <a href="thread.html#363">[ thread ]</a>
+ <a href="subject.html#363">[ subject ]</a>
+ <a href="author.html#363">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</A>
+
+Siupermen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">siupermen.pgf at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">siupermen.pgf at gmail.com</A>
+
+--- Comment #7 from Siupermen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">siupermen.pgf at gmail.com</A>&gt; 2011-02-22 01:04:56 CET ---
+I was also looking at how to vote on the bugs, and neither found it.
+
+Really, I think good idea, but in this way, we should leave a comment, in each
+bug that concerns us.
+
+--
+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="000362.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000365.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#363">[ date ]</a>
+ <a href="thread.html#363">[ thread ]</a>
+ <a href="subject.html#363">[ subject ]</a>
+ <a href="author.html#363">[ 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-February/000364.html b/zarb-ml/mageia-webteam/2011-February/000364.html
new file mode 100644
index 000000000..76a7daab7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000364.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+ </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%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110222001835.033DD42523%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="000303.html">
+ <LINK REL="Next" HREF="000381.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110222001835.033DD42523%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 22 01:18:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000303.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000381.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#364">[ date ]</a>
+ <a href="thread.html#364">[ thread ]</a>
+ <a href="subject.html#364">[ subject ]</a>
+ <a href="author.html#364">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=25">https://bugs.mageia.org/show_bug.cgi?id=25</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny-OLD at gmail.com</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="000303.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000381.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#364">[ date ]</a>
+ <a href="thread.html#364">[ thread ]</a>
+ <a href="subject.html#364">[ subject ]</a>
+ <a href="author.html#364">[ 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-February/000365.html b/zarb-ml/mageia-webteam/2011-February/000365.html
new file mode 100644
index 000000000..2dadd0c16
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000365.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298378554.30254.46.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000363.html">
+ <LINK REL="Next" HREF="000366.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298378554.30254.46.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">misc at zarb.org
+ </A><BR>
+ <I>Tue Feb 22 13:42:34 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000363.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000366.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#365">[ date ]</a>
+ <a href="thread.html#365">[ thread ]</a>
+ <a href="subject.html#365">[ subject ]</a>
+ <a href="author.html#365">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+I finished the most part of the puppet deployment of the forum this
+night, as those who were idling on #mageia-sysadmin know.
+
+So thanks to the work of Maat and ashledombos, we do have :
+- a git repository on <A HREF="git://git.mageia.org/forum/">git://git.mageia.org/forum/</A> ( write access :
+<A HREF="ssh://git.mageia.org/git/forum/">ssh://git.mageia.org/git/forum/</A> for them, as they requested ). Filled
+with what was sent to me last week.
+
+- the friteuse vm that hold the forum is hosted on alamut, for the
+moment, with a reverse proxy, on both http and https
+
+- the database is hosted on alamut, on pgsql.
+
+- a git snapshot of the current code that was sent is deployed, along
+with puppet stuff to deploy it more than once ( hosting for more than
+one forum was on the TODO list after all )
+
+- I had to remove ./install/, as asked by phpbb who refused to work. I
+do not know if there was something needed, it is still in git, just
+removed on the snapshot with rm ( I kept in git to ease the merge of
+code later ).
+
+
+What is left to do :
+
+- There is likely missing write permissions ( I have started to lock
+down and opened ./cache/, and it was sufficient to have something to
+see )
+
+- As using .htaccess cause performance penalty, I have not enabled them,
+but maybe part of them are required. In any case, we need to review them
+and add them to the apache configuration if needed. IIRC, most are just
+&quot;do not go to this directory&quot;.
+
+- https has to be forced for the login, and cleartext has to be disabled
+( as cleartext passwords for sysadmins and people with ldap admin rights
+is IMHO 'niet', and we cannot rely on people never forgetting this to
+always log using SSL )
+
+- ssl certs should be corrected ( as I discovered during the night ),
+but that should be quick ( when I mean corrected, I speak of the wrong
+host, not of the fact they are self signed ).
+
+- IMHO, a clearer separation of code and theme should be done, as for
+now, we do have everything in the same git repository
+
+- Various things would IMHO have to be adjusted ( like email, etc ).
+
+- for sysadmin, the git hosting has to be completed ( mail notification,
+web interface, various commits hooks, etc )
+
+- php deployment should also be hardened and fixed ( fixed because php
+complain about some timezone issue ).
+
+- registration on the forum without using identity, as we decided in
+this thread
+( <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2010-November/000897.html">https://www.mageia.org/pipermail/mageia-sysadm/2010-November/000897.html</A> ) should be disabled. I didn't went further but it didn't seemed to be the case ( at least, not in the interface ).
+
+- prepare the migration to the vm at nfrance ( once it is ready ). This
+will requires some adjustments to some puppet modules, as we assumed
+that only one db server would be used.
+
+
+For now, the forum is locked ( using the builtin forum facility ) until
+I do a quick review of the .htaccess stuff, and because I think people
+didn't want to have it opened without knowing it was installed. Forum
+admin should be able to unlock it if they want ( unless I was wrong
+about the way phpbb work )
+
+--
+Michael Scherer
+
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000363.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000366.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#365">[ date ]</a>
+ <a href="thread.html#365">[ thread ]</a>
+ <a href="subject.html#365">[ subject ]</a>
+ <a href="author.html#365">[ 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-February/000366.html b/zarb-ml/mageia-webteam/2011-February/000366.html
new file mode 100644
index 000000000..d6a687744
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000366.html
@@ -0,0 +1,167 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D63C350.40805%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000365.html">
+ <LINK REL="Next" HREF="000369.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D63C350.40805%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">maat-ml at vilarem.net
+ </A><BR>
+ <I>Tue Feb 22 15:08:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000365.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000369.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#366">[ date ]</a>
+ <a href="thread.html#366">[ thread ]</a>
+ <a href="subject.html#366">[ subject ]</a>
+ <a href="author.html#366">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 22/02/2011 13:42, Michael Scherer a &#233;crit :
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> I finished the most part of the puppet deployment of the forum this
+</I>&gt;<i> night, as those who were idling on #mageia-sysadmin know.
+</I>\o/ great !
+
+&gt;<i> So thanks to the work of Maat and ashledombos, we do have :
+</I>&gt;<i> - a git repository on <A HREF="git://git.mageia.org/forum/">git://git.mageia.org/forum/</A> ( write access :
+</I>&gt;<i> <A HREF="ssh://git.mageia.org/git/forum/">ssh://git.mageia.org/git/forum/</A> for them, as they requested ). Filled
+</I>&gt;<i> with what was sent to me last week.
+</I>&gt;<i>
+</I>&gt;<i> - the friteuse vm that hold the forum is hosted on alamut, for the
+</I>&gt;<i> moment, with a reverse proxy, on both http and https
+</I>&gt;<i>
+</I>We'll need perhaps to force a redirection for http to https (dunno is phpbb works well with both ways)
+
+
+&gt;<i> - the database is hosted on alamut, on pgsql.
+</I>&gt;<i>
+</I>&gt;<i> - a git snapshot of the current code that was sent is deployed, along
+</I>&gt;<i> with puppet stuff to deploy it more than once ( hosting for more than
+</I>&gt;<i> one forum was on the TODO list after all )
+</I>&gt;<i>
+</I>&gt;<i> - I had to remove ./install/, as asked by phpbb who refused to work. I
+</I>&gt;<i> do not know if there was something needed, it is still in git, just
+</I>&gt;<i> removed on the snapshot with rm ( I kept in git to ease the merge of
+</I>&gt;<i> code later ).
+</I>&gt;<i>
+</I>an other approach is to rename install -&gt; noinstall and prevent completely access to noinstall with apache deny
+
+-&gt; when we need to use again install a move noinstall -&gt; install sets back the forum to maintenance mode
+
+(for better security controlling access to install with an ip whitelist or even a http based login against ldap would be nice)
+
+&gt;<i> What is left to do :
+</I>&gt;<i>
+</I>&gt;<i> - There is likely missing write permissions ( I have started to lock
+</I>&gt;<i> down and opened ./cache/, and it was sufficient to have something to
+</I>&gt;<i> see )
+</I>&gt;<i>
+</I>Yup but we'll need also write access to upload dirs (for uploaded files, pictures, avatars, smilies...)
+
+
+&gt;<i> - As using .htaccess cause performance penalty, I have not enabled them,
+</I>&gt;<i> but maybe part of them are required. In any case, we need to review them
+</I>&gt;<i> and add them to the apache configuration if needed. IIRC, most are just
+</I>&gt;<i> &quot;do not go to this directory&quot;.
+</I>&gt;<i>
+</I>we need to rewrite, control accesses and other things like that.
+
+If we don't use .htaccess then all these configs need to be moved to apache vhost config
+
+&gt;<i> - https has to be forced for the login, and cleartext has to be disabled
+</I>&gt;<i> ( as cleartext passwords for sysadmins and people with ldap admin rights
+</I>&gt;<i> is IMHO 'niet', and we cannot rely on people never forgetting this to
+</I>&gt;<i> always log using SSL )
+</I>&gt;<i>
+</I>https for all ?
+
+(and redirection http-&gt;https)
+
+&gt;<i> - ssl certs should be corrected ( as I discovered during the night ),
+</I>&gt;<i> but that should be quick ( when I mean corrected, I speak of the wrong
+</I>&gt;<i> host, not of the fact they are self signed ).
+</I>&gt;<i>
+</I>&gt;<i> - IMHO, a clearer separation of code and theme should be done, as for
+</I>&gt;<i> now, we do have everything in the same git repository
+</I>&gt;<i>
+</I>Ok but how ?
+
+&gt;<i> - Various things would IMHO have to be adjusted ( like email, etc ).
+</I>&gt;<i>
+</I>yup
+
+&gt;<i> - for sysadmin, the git hosting has to be completed ( mail notification,
+</I>&gt;<i> web interface, various commits hooks, etc )
+</I>&gt;<i>
+</I>&gt;<i> - php deployment should also be hardened and fixed ( fixed because php
+</I>&gt;<i> complain about some timezone issue ).
+</I>&gt;<i>
+</I>-&gt; Define timezone in php.ini
+
+&gt;<i> - registration on the forum without using identity, as we decided in
+</I>&gt;<i> this thread
+</I>&gt;<i> ( <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2010-November/000897.html">https://www.mageia.org/pipermail/mageia-sysadm/2010-November/000897.html</A> ) should be disabled. I didn't went further but it didn't seemed to be the case ( at least, not in the interface ).
+</I>&gt;<i>
+</I>yes... at registration could be done but the created account would not be able to log in
+
+&gt;<i> - prepare the migration to the vm at nfrance ( once it is ready ). This
+</I>&gt;<i> will requires some adjustments to some puppet modules, as we assumed
+</I>&gt;<i> that only one db server would be used.
+</I>&gt;<i>
+</I>ph34r the distance between db server (Marseille) and forum (Toulouse)
+
+
+&gt;<i> For now, the forum is locked ( using the builtin forum facility ) until
+</I>&gt;<i> I do a quick review of the .htaccess stuff, and because I think people
+</I>&gt;<i> didn't want to have it opened without knowing it was installed. Forum
+</I>&gt;<i> admin should be able to unlock it if they want ( unless I was wrong
+</I>&gt;<i> about the way phpbb work )
+</I>I'll try to log in and do also a tiny review
+
+Thanks Misc
+
+
+
+
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000365.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000369.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#366">[ date ]</a>
+ <a href="thread.html#366">[ thread ]</a>
+ <a href="subject.html#366">[ subject ]</a>
+ <a href="author.html#366">[ 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-February/000367.html b/zarb-ml/mageia-webteam/2011-February/000367.html
new file mode 100644
index 000000000..c0a236dbe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000367.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 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%20Reminder%20-%20Webteam%20meeting%20tomorrow%2C%20Feb%2022nd%2C%0A%0914.00%20UTC&In-Reply-To=%3C201102221510.41769.burger%40webgis.de%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000378.html">
+ <LINK REL="Next" HREF="000368.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Reminder%20-%20Webteam%20meeting%20tomorrow%2C%20Feb%2022nd%2C%0A%0914.00%20UTC&In-Reply-To=%3C201102221510.41769.burger%40webgis.de%3E"
+ TITLE="[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC">burger at webgis.de
+ </A><BR>
+ <I>Tue Feb 22 15:10:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000378.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000368.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#367">[ date ]</a>
+ <a href="thread.html#367">[ thread ]</a>
+ <a href="subject.html#367">[ subject ]</a>
+ <a href="author.html#367">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi!
+
+Again it's my duty to remind you of the meeting tomorrow.
+Hopefully I won't be away last minute as last week (Thanks to coincoin again
+for chairing).
+
+So, see you tomorrow in #mageia-web.
+
+Oliver
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000378.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000368.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#367">[ date ]</a>
+ <a href="thread.html#367">[ thread ]</a>
+ <a href="subject.html#367">[ subject ]</a>
+ <a href="author.html#367">[ 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-February/000368.html b/zarb-ml/mageia-webteam/2011-February/000368.html
new file mode 100644
index 000000000..08b490c24
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000368.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 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%20Reminder%20-%20Webteam%20meeting%20tomorrow%2C%20Feb%2022nd%2C%0A%0914.00%20UTC&In-Reply-To=%3C201102221537.40444.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="000367.html">
+ <LINK REL="Next" HREF="000380.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Reminder%20-%20Webteam%20meeting%20tomorrow%2C%20Feb%2022nd%2C%0A%0914.00%20UTC&In-Reply-To=%3C201102221537.40444.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Tue Feb 22 15:37:40 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000367.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000380.html">[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#368">[ date ]</a>
+ <a href="thread.html#368">[ thread ]</a>
+ <a href="subject.html#368">[ subject ]</a>
+ <a href="author.html#368">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi!
+
+Again it's my duty to remind you of the meeting tomorrow.
+Hopefully I won't be away last minute as last week (Thanks to coincoin again
+for chairing).
+
+So, see you tomorrow in #mageia-web.
+
+Oliver
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000367.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000380.html">[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#368">[ date ]</a>
+ <a href="thread.html#368">[ thread ]</a>
+ <a href="subject.html#368">[ subject ]</a>
+ <a href="author.html#368">[ 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-February/000369.html b/zarb-ml/mageia-webteam/2011-February/000369.html
new file mode 100644
index 000000000..c10bebd21
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000369.html
@@ -0,0 +1,168 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298387368.20644.22.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000366.html">
+ <LINK REL="Next" HREF="000370.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298387368.20644.22.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">misc at zarb.org
+ </A><BR>
+ <I>Tue Feb 22 16:09:27 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000366.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000370.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#369">[ date ]</a>
+ <a href="thread.html#369">[ thread ]</a>
+ <a href="subject.html#369">[ subject ]</a>
+ <a href="author.html#369">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 22 f&#233;vrier 2011 &#224; 15:08 +0100, Ma&#226;t a &#233;crit :
+&gt;<i> Le 22/02/2011 13:42, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; Hi,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I finished the most part of the puppet deployment of the forum this
+</I>&gt;<i> &gt; night, as those who were idling on #mageia-sysadmin know.
+</I>&gt;<i> \o/ great !
+</I>&gt;<i>
+</I>&gt;<i> &gt; So thanks to the work of Maat and ashledombos, we do have :
+</I>&gt;<i> &gt; - a git repository on <A HREF="git://git.mageia.org/forum/">git://git.mageia.org/forum/</A> ( write access :
+</I>&gt;<i> &gt; <A HREF="ssh://git.mageia.org/git/forum/">ssh://git.mageia.org/git/forum/</A> for them, as they requested ). Filled
+</I>&gt;<i> &gt; with what was sent to me last week.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; - the friteuse vm that hold the forum is hosted on alamut, for the
+</I>&gt;<i> &gt; moment, with a reverse proxy, on both http and https
+</I>&gt;<i> &gt;
+</I>&gt;<i> We'll need perhaps to force a redirection for http to https (dunno is phpbb works well with both ways)
+</I>
+Well, I didn't want to force everybody just reading to go the https way.
+
+But that's a tricky problem to solve.
+
+&gt;<i> &gt; - I had to remove ./install/, as asked by phpbb who refused to work. I
+</I>&gt;<i> &gt; do not know if there was something needed, it is still in git, just
+</I>&gt;<i> &gt; removed on the snapshot with rm ( I kept in git to ease the merge of
+</I>&gt;<i> &gt; code later ).
+</I>&gt;<i> &gt;
+</I>&gt;<i> an other approach is to rename install -&gt; noinstall and prevent completely access to noinstall with apache deny
+</I>&gt;<i>
+</I>&gt;<i> -&gt; when we need to use again install a move noinstall -&gt; install sets back the forum to maintenance mode
+</I>&gt;<i>
+</I>&gt;<i> (for better security controlling access to install with an ip whitelist or even a http based login against ldap would be nice)
+</I>
+http based login seems easier to manage. ip based whitelist is usually
+bad the day you discover something urgent need to be done and you
+cannot.
+
+Now, what is in install/ that would be used later ?
+
+&gt;<i> &gt; What is left to do :
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; - There is likely missing write permissions ( I have started to lock
+</I>&gt;<i> &gt; down and opened ./cache/, and it was sufficient to have something to
+</I>&gt;<i> &gt; see )
+</I>&gt;<i> &gt;
+</I>&gt;<i> Yup but we'll need also write access to upload dirs (for uploaded files, pictures, avatars, smilies...)
+</I>
+Yes, I just didn't look at where this should be done.
+On the other hand, I have guessed most of them, as they are the one with
+a .htaccess to prevent direct listing ( listing that are already
+disabled on server ).
+
+&gt;<i> &gt; - As using .htaccess cause performance penalty, I have not enabled them,
+</I>&gt;<i> &gt; but maybe part of them are required. In any case, we need to review them
+</I>&gt;<i> &gt; and add them to the apache configuration if needed. IIRC, most are just
+</I>&gt;<i> &gt; &quot;do not go to this directory&quot;.
+</I>&gt;<i> &gt;
+</I>&gt;<i> we need to rewrite, control accesses and other things like that.
+</I>
+Ie, like wordpress, the application write it's own rewriterule in
+a .htaccess ? I have seen some stuff related to SEO with a module, but I
+didn't look further.
+
+&gt;<i> If we don't use .htaccess then all these configs need to be moved to apache vhost config
+</I>
+IMHO, that's safer.
+
+&gt;<i> &gt; - IMHO, a clearer separation of code and theme should be done, as for
+</I>&gt;<i> &gt; now, we do have everything in the same git repository
+</I>&gt;<i> &gt;
+</I>&gt;<i> Ok but how ?
+</I>
+That's up to you to tell me. I see 2 possibility :
+- 2 repositories ( one for code, one for theme ), with different access
+right
+- coordination with the web team for that ( ie decide when the code is
+ready and when the theme is, and deploy accordingly ). Using 2 branch
+could maybe help.
+
+It seems to me that trying to decouple both would be better, but that's
+twice the admin work, and coordination is still required.
+
+( speaking of that, I also have to arrange a way to upgrade the code by
+manual intervention and so on, I didn't forget )
+
+
+&gt;<i> &gt; - registration on the forum without using identity, as we decided in
+</I>&gt;<i> &gt; this thread
+</I>&gt;<i> &gt; ( <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2010-November/000897.html">https://www.mageia.org/pipermail/mageia-sysadm/2010-November/000897.html</A> ) should
+</I>&gt;<i> be disabled. I didn't went further but it didn't seemed to be the case ( at least, not in the interface ).
+</I>&gt;<i> &gt;
+</I>&gt;<i> yes... at registration could be done but the created account would not be able to log in
+</I>
+IMHO, that mean the db will quickly be filled by spam bots.
+
+&gt;<i> &gt; - prepare the migration to the vm at nfrance ( once it is ready ). This
+</I>&gt;<i> &gt; will requires some adjustments to some puppet modules, as we assumed
+</I>&gt;<i> &gt; that only one db server would be used.
+</I>&gt;<i> &gt;
+</I>&gt;<i> ph34r the distance between db server (Marseille) and forum (Toulouse)
+</I>
+That's why we need a adjustment, I have started to rework the pgsql
+module for that, but that's not as urgent as others tasks ( as deploying
+wiki, bittorrent, etc )
+
+( otoh, as phpbb seems to have a rather aggressive cache system, maybe
+this will not be as horrible as it seems, or at least, this would be
+sufficient for the start ).
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000366.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000370.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#369">[ date ]</a>
+ <a href="thread.html#369">[ thread ]</a>
+ <a href="subject.html#369">[ subject ]</a>
+ <a href="author.html#369">[ 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-February/000370.html b/zarb-ml/mageia-webteam/2011-February/000370.html
new file mode 100644
index 000000000..dfa2c9c98
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000370.html
@@ -0,0 +1,148 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D641F78.9020306%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000369.html">
+ <LINK REL="Next" HREF="000371.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D641F78.9020306%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">maat-ml at vilarem.net
+ </A><BR>
+ <I>Tue Feb 22 21:41:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000369.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000371.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#370">[ date ]</a>
+ <a href="thread.html#370">[ thread ]</a>
+ <a href="subject.html#370">[ subject ]</a>
+ <a href="author.html#370">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 22/02/2011 16:09, Michael Scherer a &#233;crit :
+&gt;<i> Le mardi 22 f&#233;vrier 2011 &#224; 15:08 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;&gt;<i> Le 22/02/2011 13:42, Michael Scherer a &#233;crit :
+</I>&gt;&gt;&gt;<i> [...]
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> So thanks to the work of Maat and ashledombos, we do have :
+</I>&gt;&gt;&gt;<i> - a git repository on <A HREF="git://git.mageia.org/forum/">git://git.mageia.org/forum/</A> ( write access :
+</I>&gt;&gt;&gt;<i> <A HREF="ssh://git.mageia.org/git/forum/">ssh://git.mageia.org/git/forum/</A> for them, as they requested ). Filled
+</I>&gt;&gt;&gt;<i> with what was sent to me last week.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> - the friteuse vm that hold the forum is hosted on alamut, for the
+</I>&gt;&gt;&gt;<i> moment, with a reverse proxy, on both http and https
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> We'll need perhaps to force a redirection for http to https (dunno is phpbb works well with both ways)
+</I>&gt;<i> Well, I didn't want to force everybody just reading to go the https way.
+</I>&gt;<i>
+</I>&gt;<i> But that's a tricky problem to solve.
+</I>&gt;<i>
+</I>&gt;&gt;&gt;<i> - I had to remove ./install/, as asked by phpbb who refused to work. I
+</I>&gt;&gt;&gt;<i> do not know if there was something needed, it is still in git, just
+</I>&gt;&gt;&gt;<i> removed on the snapshot with rm ( I kept in git to ease the merge of
+</I>&gt;&gt;&gt;<i> code later ).
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> an other approach is to rename install -&gt; noinstall and prevent completely access to noinstall with apache deny
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> -&gt; when we need to use again install a move noinstall -&gt; install sets back the forum to maintenance mode
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> (for better security controlling access to install with an ip whitelist or even a http based login against ldap would be nice)
+</I>&gt;<i> http based login seems easier to manage. ip based whitelist is usually
+</I>&gt;<i> bad the day you discover something urgent need to be done and you
+</I>&gt;<i> cannot.
+</I>&gt;<i>
+</I>&gt;<i> Now, what is in install/ that would be used later ?
+</I>&gt;<i>
+</I>Nearly every upgrade coming with a change of version number... and more generally every upgrade needing to change things in database.
+
+&gt;&gt;&gt;<i> [...]
+</I>&gt;<i> [...]
+</I>&gt;&gt;<i> If we don't use .htaccess then all these configs need to be moved to apache vhost config
+</I>&gt;<i> IMHO, that's safer.
+</I>&gt;<i>
+</I>Ok but we'll probably need to change rewrite rules from time to time...
+
+=&gt; problems to expect sooner or later
+
+
+&gt;&gt;&gt;<i> - IMHO, a clearer separation of code and theme should be done, as for
+</I>&gt;&gt;&gt;<i> now, we do have everything in the same git repository
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> Ok but how ?
+</I>&gt;<i> That's up to you to tell me. I see 2 possibility :
+</I>&gt;<i> - 2 repositories ( one for code, one for theme ), with different access
+</I>&gt;<i> right
+</I>&gt;<i> - coordination with the web team for that ( ie decide when the code is
+</I>&gt;<i> ready and when the theme is, and deploy accordingly ). Using 2 branch
+</I>&gt;<i> could maybe help.
+</I>&gt;<i>
+</I>&gt;<i> It seems to me that trying to decouple both would be better, but that's
+</I>&gt;<i> twice the admin work, and coordination is still required.
+</I>&gt;<i>
+</I>/me's perplex
+
+&gt;<i> ( speaking of that, I also have to arrange a way to upgrade the code by
+</I>&gt;<i> manual intervention and so on, I didn't forget )
+</I>&gt;<i>
+</I>...
+
+&gt;&gt;<i> yes... at registration could be done but the created account would not be able to log in
+</I>&gt;<i> IMHO, that mean the db will quickly be filled by spam bots.
+</I>&gt;<i>
+</I>That's forumadmins job to avoid such mess and if needed to adapt configs
+
+But you're right : we need to quickly change link to push users willing to create accounts to identity web app
+
+
+&gt;&gt;&gt;<i> - prepare the migration to the vm at nfrance ( once it is ready ). This
+</I>&gt;&gt;&gt;<i> will requires some adjustments to some puppet modules, as we assumed
+</I>&gt;&gt;&gt;<i> that only one db server would be used.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> ph34r the distance between db server (Marseille) and forum (Toulouse)
+</I>&gt;<i> That's why we need a adjustment, I have started to rework the pgsql
+</I>&gt;<i> module for that, but that's not as urgent as others tasks ( as deploying
+</I>&gt;<i> wiki, bittorrent, etc )
+</I>&gt;<i>
+</I>&gt;<i> ( otoh, as phpbb seems to have a rather aggressive cache system, maybe
+</I>&gt;<i> this will not be as horrible as it seems, or at least, this would be
+</I>&gt;<i> sufficient for the start ).
+</I>It will also depend on the amount of buzz around mageia and of users willing to subscribe and get in :)
+
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000369.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000371.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#370">[ date ]</a>
+ <a href="thread.html#370">[ thread ]</a>
+ <a href="subject.html#370">[ subject ]</a>
+ <a href="author.html#370">[ 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-February/000371.html b/zarb-ml/mageia-webteam/2011-February/000371.html
new file mode 100644
index 000000000..a185d8968
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000371.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298452011.11734.7.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000370.html">
+ <LINK REL="Next" HREF="000372.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298452011.11734.7.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">misc at zarb.org
+ </A><BR>
+ <I>Wed Feb 23 10:06:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000370.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000372.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#371">[ date ]</a>
+ <a href="thread.html#371">[ thread ]</a>
+ <a href="subject.html#371">[ subject ]</a>
+ <a href="author.html#371">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 22 f&#233;vrier 2011 &#224; 21:41 +0100, Ma&#226;t a &#233;crit :
+&gt;<i> Le 22/02/2011 16:09, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; Le mardi 22 f&#233;vrier 2011 &#224; 15:08 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;<i> &gt;&gt; Le 22/02/2011 13:42, Michael Scherer a &#233;crit :
+</I>
+&gt;<i> &gt; &gt; If we don't use .htaccess then all these configs need to be moved to apache vhost config
+</I>&gt;<i> &gt; IMHO, that's safer.
+</I>&gt;<i> &gt;
+</I>&gt;<i> Ok but we'll probably need to change rewrite rules from time to time...
+</I>&gt;<i>
+</I>&gt;<i> =&gt; problems to expect sooner or later
+</I>
+Speaking of that...
+
+The phpbb_seo package is under a license called RPL, according to the
+COPYING file. This license among others force us to provides the source
+code of the forum if we deploy it ( even privately ) for at least for 12
+months after we decided to stop use it.
+
+That's quite a strong requirement, but that's not the only issue.
+
+FSF say this is not compatible with GPL. ( see
+<A HREF="http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense">http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense</A> ,
+search &quot;reciprocal public license&quot;, there is also others reasons )
+
+Phpbb is distributed under the GPL, and I would like to be sure there is
+nothing fishy about that.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000370.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000372.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#371">[ date ]</a>
+ <a href="thread.html#371">[ thread ]</a>
+ <a href="subject.html#371">[ subject ]</a>
+ <a href="author.html#371">[ 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-February/000372.html b/zarb-ml/mageia-webteam/2011-February/000372.html
new file mode 100644
index 000000000..a29ad2c49
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000372.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D64D199.8070108%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000371.html">
+ <LINK REL="Next" HREF="000373.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D64D199.8070108%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Feb 23 10:21:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000371.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000373.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#372">[ date ]</a>
+ <a href="thread.html#372">[ thread ]</a>
+ <a href="subject.html#372">[ subject ]</a>
+ <a href="author.html#372">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/02/2011 10:06, Michael Scherer a &#233;crit :
+&gt;<i> Le mardi 22 f&#233;vrier 2011 &#224; 21:41 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;&gt;<i> Le 22/02/2011 16:09, Michael Scherer a &#233;crit :
+</I>&gt;&gt;&gt;<i> Le mardi 22 f&#233;vrier 2011 &#224; 15:08 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;&gt;&gt;&gt;<i> Le 22/02/2011 13:42, Michael Scherer a &#233;crit :
+</I>&gt;&gt;&gt;&gt;<i> If we don't use .htaccess then all these configs need to be moved to apache vhost config
+</I>&gt;&gt;&gt;<i> IMHO, that's safer.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> Ok but we'll probably need to change rewrite rules from time to time...
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> =&gt; problems to expect sooner or later
+</I>&gt;<i> Speaking of that...
+</I>&gt;<i>
+</I>&gt;<i> The phpbb_seo package is under a license called RPL, according to the
+</I>&gt;<i> COPYING file. This license among others force us to provides the source
+</I>&gt;<i> code of the forum if we deploy it ( even privately ) for at least for 12
+</I>&gt;<i> months after we decided to stop use it.
+</I>&gt;<i>
+</I>&gt;<i> That's quite a strong requirement, but that's not the only issue.
+</I>&gt;<i>
+</I>&gt;<i> FSF say this is not compatible with GPL. ( see
+</I>&gt;<i> <A HREF="http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense">http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense</A> ,
+</I>&gt;<i> search &quot;reciprocal public license&quot;, there is also others reasons )
+</I>&gt;<i>
+</I>&gt;<i> Phpbb is distributed under the GPL, and I would like to be sure there is
+</I>&gt;<i> nothing fishy about that.
+</I>
+We could relicense the whole under AGPL v3 which fullfills all requirements (and a little more) ?
+
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000371.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000373.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#372">[ date ]</a>
+ <a href="thread.html#372">[ thread ]</a>
+ <a href="subject.html#372">[ subject ]</a>
+ <a href="author.html#372">[ 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-February/000373.html b/zarb-ml/mageia-webteam/2011-February/000373.html
new file mode 100644
index 000000000..5ac2d7d04
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000373.html
@@ -0,0 +1,139 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298458490.11734.24.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000372.html">
+ <LINK REL="Next" HREF="000374.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298458490.11734.24.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">misc at zarb.org
+ </A><BR>
+ <I>Wed Feb 23 11:54:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000372.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000374.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#373">[ date ]</a>
+ <a href="thread.html#373">[ thread ]</a>
+ <a href="subject.html#373">[ subject ]</a>
+ <a href="author.html#373">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 23 f&#233;vrier 2011 &#224; 10:21 +0100, Ma&#226;t a &#233;crit :
+&gt;<i> Le 23/02/2011 10:06, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; Le mardi 22 f&#233;vrier 2011 &#224; 21:41 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;<i> &gt;&gt; Le 22/02/2011 16:09, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt;&gt;&gt; Le mardi 22 f&#233;vrier 2011 &#224; 15:08 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;<i> &gt;&gt;&gt;&gt; Le 22/02/2011 13:42, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt;&gt;&gt;&gt; If we don't use .htaccess then all these configs need to be moved to apache vhost config
+</I>&gt;<i> &gt;&gt;&gt; IMHO, that's safer.
+</I>&gt;<i> &gt;&gt;&gt;
+</I>&gt;<i> &gt;&gt; Ok but we'll probably need to change rewrite rules from time to time...
+</I>&gt;<i> &gt;&gt;
+</I>&gt;<i> &gt;&gt; =&gt; problems to expect sooner or later
+</I>&gt;<i> &gt; Speaking of that...
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; The phpbb_seo package is under a license called RPL, according to the
+</I>&gt;<i> &gt; COPYING file. This license among others force us to provides the source
+</I>&gt;<i> &gt; code of the forum if we deploy it ( even privately ) for at least for 12
+</I>&gt;<i> &gt; months after we decided to stop use it.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; That's quite a strong requirement, but that's not the only issue.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; FSF say this is not compatible with GPL. ( see
+</I>&gt;<i> &gt; <A HREF="http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense">http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense</A> ,
+</I>&gt;<i> &gt; search &quot;reciprocal public license&quot;, there is also others reasons )
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Phpbb is distributed under the GPL, and I would like to be sure there is
+</I>&gt;<i> &gt; nothing fishy about that.
+</I>&gt;<i>
+</I>&gt;<i> We could relicense the whole under AGPL v3 which fullfills all requirements (and a little more) ?
+</I>
+I wish that would be so simple.
+
+1) the RPL has a provision that limit the amount of money that we can
+charge for distributing the source code :
+&quot; You may not charge a fee for any
+copy of the Source Code distributed under this Section in excess of Your
+actual cost of duplication and distribution of said copy.&quot; , point 6.1.
+
+Dropping this do not seems possible as we are not the copyright owners
+of the code.
+
+2) the main requirement of AGPL is that you must redistribute the source
+code to users ( users being people that access the code with the
+network ).
+
+The requirements of RPL is that you warn the developper of the
+deployment :
+point 6.4
+&quot;c. Source Code Availability. You must notify the software community of
+the availability of Source Code to Your Extensions within one (1) month
+of the date You initially Deploy and include in such notification a
+description of the Extensions, and instructions on how to acquire the
+Source Code. &quot;
+
+and that we distribute the code for 12 months :
+
+&quot;
+6.1 Availability of Source Code. You must make available, under the
+terms of this License, the Source Code of any Extensions that You
+Deploy, via an Electronic Distribution Mechanism. The Source Code for
+any version that You Deploy must be made available within one (1) month
+of when you Deploy and must remain available for no less than twelve
+(12) months after the date You cease to Deploy. You are responsible for
+ensuring that the Source Code to each version You Deploy remains
+available even if the Electronic Distribution Mechanism is maintained by
+a third party. You may not charge a fee for any copy of the Source Code
+distributed under this Section in excess of Your actual cost of
+duplication and distribution of said copy.&quot;
+
+
+So RPL has more requirements than AGPL, so we cannot relicense.
+
+3) Even if it was possible, phpbb seems to be under gpl v2 only, and
+agpl v1 is incompatible with gpl v2, agpl v3 is compatible with gpl v3,
+but I do not know for gpl v2 and agpl v3 compatibility. So this may be
+another potential problem.
+
+
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000372.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000374.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#373">[ date ]</a>
+ <a href="thread.html#373">[ thread ]</a>
+ <a href="subject.html#373">[ subject ]</a>
+ <a href="author.html#373">[ 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-February/000374.html b/zarb-ml/mageia-webteam/2011-February/000374.html
new file mode 100644
index 000000000..cf7416237
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000374.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3CAANLkTi%3D7q66XaqE%2Be6aWTVCWZLT%3DQwAKvP%3DH%3DdqYSMtD%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="000373.html">
+ <LINK REL="Next" HREF="000375.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3CAANLkTi%3D7q66XaqE%2Be6aWTVCWZLT%3DQwAKvP%3DH%3DdqYSMtD%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Feb 23 12:03:52 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000373.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000375.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#374">[ date ]</a>
+ <a href="thread.html#374">[ thread ]</a>
+ <a href="subject.html#374">[ subject ]</a>
+ <a href="author.html#374">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Feb 23, 2011 at 11:54, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Le mercredi 23 f&#233;vrier 2011 &#224; 10:21 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;&gt;<i> Le 23/02/2011 10:06, Michael Scherer a &#233;crit :
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; The phpbb_seo package is under a license called RPL, according to the
+</I>&gt;&gt;<i> &gt; COPYING file. This license &#160;among others force us to provides the source
+</I>&gt;&gt;<i> &gt; code of the forum if we deploy it ( even privately ) for at least for 12
+</I>&gt;&gt;<i> &gt; months after we decided to stop use it.
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; That's quite a strong requirement, but that's not the only issue.
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; FSF say this is not compatible with GPL. ( see
+</I>&gt;&gt;<i> &gt; <A HREF="http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense">http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense</A> ,
+</I>&gt;&gt;<i> &gt; search &quot;reciprocal public license&quot;, there is also others reasons )
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; Phpbb is distributed under the GPL, and I would like to be sure there is
+</I>&gt;&gt;<i> &gt; nothing fishy about that.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> We could relicense the whole under AGPL v3 which fullfills all requirements (and a little more) ?
+</I>&gt;<i>
+</I>&gt;<i> I wish that would be so simple.
+</I>
+Then couldn't we just keep both separate in our repository (with each
+relative licenses) and have those integrated only for the production
+server? or too complex?
+
+(I mean, if that isn't even possible, that would mean that phpbb-seo
+is in a dead end from the beginning wrt to license requirements from
+both its own RPL and phpbb's GPL)
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000373.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000375.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#374">[ date ]</a>
+ <a href="thread.html#374">[ thread ]</a>
+ <a href="subject.html#374">[ subject ]</a>
+ <a href="author.html#374">[ 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-February/000375.html b/zarb-ml/mageia-webteam/2011-February/000375.html
new file mode 100644
index 000000000..e1ffbd8a7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000375.html
@@ -0,0 +1,109 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298463133.11734.37.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000374.html">
+ <LINK REL="Next" HREF="000376.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298463133.11734.37.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">misc at zarb.org
+ </A><BR>
+ <I>Wed Feb 23 13:12:13 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000374.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000376.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#375">[ date ]</a>
+ <a href="thread.html#375">[ thread ]</a>
+ <a href="subject.html#375">[ subject ]</a>
+ <a href="author.html#375">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 23 f&#233;vrier 2011 &#224; 12:03 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> On Wed, Feb 23, 2011 at 11:54, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt; Le mercredi 23 f&#233;vrier 2011 &#224; 10:21 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;<i> &gt;&gt; Le 23/02/2011 10:06, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt;&gt; &gt;
+</I>&gt;<i> &gt;&gt; &gt; The phpbb_seo package is under a license called RPL, according to the
+</I>&gt;<i> &gt;&gt; &gt; COPYING file. This license among others force us to provides the source
+</I>&gt;<i> &gt;&gt; &gt; code of the forum if we deploy it ( even privately ) for at least for 12
+</I>&gt;<i> &gt;&gt; &gt; months after we decided to stop use it.
+</I>&gt;<i> &gt;&gt; &gt;
+</I>&gt;<i> &gt;&gt; &gt; That's quite a strong requirement, but that's not the only issue.
+</I>&gt;<i> &gt;&gt; &gt;
+</I>&gt;<i> &gt;&gt; &gt; FSF say this is not compatible with GPL. ( see
+</I>&gt;<i> &gt;&gt; &gt; <A HREF="http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense">http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense</A> ,
+</I>&gt;<i> &gt;&gt; &gt; search &quot;reciprocal public license&quot;, there is also others reasons )
+</I>&gt;<i> &gt;&gt; &gt;
+</I>&gt;<i> &gt;&gt; &gt; Phpbb is distributed under the GPL, and I would like to be sure there is
+</I>&gt;<i> &gt;&gt; &gt; nothing fishy about that.
+</I>&gt;<i> &gt;&gt;
+</I>&gt;<i> &gt;&gt; We could relicense the whole under AGPL v3 which fullfills all requirements (and a little more) ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I wish that would be so simple.
+</I>&gt;<i>
+</I>&gt;<i> Then couldn't we just keep both separate in our repository (with each
+</I>&gt;<i> relative licenses) and have those integrated only for the production
+</I>&gt;<i> server? or too complex?
+</I>
+phpbb-seo modifie the code of phpbb directly for integration.
+
+See the git snapshot ( <A HREF="git://git.mageia.org/forum/">git://git.mageia.org/forum/</A> using a git client,
+and grep -r -i seo ). So the question is &quot;what is the license of the
+resulting file, as it mix 2 incompatibles licenses&quot;. I am pretty sure
+that the GPL forbid such mix ( as this is the reason of the creation of
+LGPL ).
+
+&gt;<i> (I mean, if that isn't even possible, that would mean that phpbb-seo
+</I>&gt;<i> is in a dead end from the beginning wrt to license requirements from
+</I>&gt;<i> both its own RPL and phpbb's GPL)
+</I>
+Well, yes, they could perfectly do gpl violation without knowing. I am
+not sure about this but this would requires IMHO a opinion from a
+lawyer. I have tried to read the FAQ of the FSF, and the only thing that
+would be similar is this :
+<A HREF="http://www.gnu.org/licenses/gpl-faq.html#GPLIncompatibleAlone">http://www.gnu.org/licenses/gpl-faq.html#GPLIncompatibleAlone</A>
+
+So :
+2 questions :
+1) who is volunteer to contact upstream ?
+2) what do we do in the meantime ?
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000374.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000376.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#375">[ date ]</a>
+ <a href="thread.html#375">[ thread ]</a>
+ <a href="subject.html#375">[ subject ]</a>
+ <a href="author.html#375">[ 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-February/000376.html b/zarb-ml/mageia-webteam/2011-February/000376.html
new file mode 100644
index 000000000..5af155376
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000376.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C12195BBB-AA16-402E-8D9B-378D9B60D88E%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000375.html">
+ <LINK REL="Next" HREF="000379.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C12195BBB-AA16-402E-8D9B-378D9B60D88E%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Feb 23 13:56:37 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000375.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000379.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#376">[ date ]</a>
+ <a href="thread.html#376">[ thread ]</a>
+ <a href="subject.html#376">[ subject ]</a>
+ <a href="author.html#376">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23 f&#233;vr. 2011 &#224; 13:12, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; a &#233;crit :
+&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;<i> phpbb-seo modifie the code of phpbb directly for integration.
+</I>&gt;<i>
+</I>&gt;<i> See the git snapshot ( <A HREF="git://git.mageia.org/forum/">git://git.mageia.org/forum/</A> using a git client,
+</I>&gt;<i> and grep -r -i seo ). So the question is &quot;what is the license of the
+</I>&gt;<i> resulting file, as it mix 2 incompatibles licenses&quot;. I am pretty sure
+</I>&gt;<i> that the GPL forbid such mix ( as this is the reason of the creation of
+</I>&gt;<i> LGPL ).
+</I>
+Unless we don't redistribute it. But the RPL seems to require redistribution of the code?
+
+&gt;<i> 2 questions :
+</I>&gt;<i> 1) who is volunteer to contact upstream ?
+</I>
+I pay him/her a beer!
+
+&gt;<i> 2) what do we do in the meantime ?
+</I>
+Keep the patch separate and deploy without seo? Or is it too complex?
+
+
+Romain
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000375.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000379.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#376">[ date ]</a>
+ <a href="thread.html#376">[ thread ]</a>
+ <a href="subject.html#376">[ subject ]</a>
+ <a href="author.html#376">[ 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-February/000377.html b/zarb-ml/mageia-webteam/2011-February/000377.html
new file mode 100644
index 000000000..20c8b5b78
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000377.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298475975.11734.66.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000379.html">
+ <LINK REL="Next" HREF="000382.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298475975.11734.66.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">misc at zarb.org
+ </A><BR>
+ <I>Wed Feb 23 16:46:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000379.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000382.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#377">[ date ]</a>
+ <a href="thread.html#377">[ thread ]</a>
+ <a href="subject.html#377">[ subject ]</a>
+ <a href="author.html#377">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 22 f&#233;vrier 2011 &#224; 13:42 +0100, Michael Scherer a &#233;crit :
+
+&gt;<i> - There is likely missing write permissions ( I have started to lock
+</I>&gt;<i> down and opened ./cache/, and it was sufficient to have something to
+</I>&gt;<i> see )
+</I>
+almost done, here is the list of what I have added :
+<A HREF="http://svnweb.mageia.org/adm/puppet/modules/phpbb/manifests/init.pp?r1=1177&amp;r2=1181">http://svnweb.mageia.org/adm/puppet/modules/phpbb/manifests/init.pp?r1=1177&amp;r2=1181</A>
+
+&gt;<i> - As using .htaccess cause performance penalty, I have not enabled them,
+</I>&gt;<i> but maybe part of them are required. In any case, we need to review them
+</I>&gt;<i> and add them to the apache configuration if needed. IIRC, most are just
+</I>&gt;<i> &quot;do not go to this directory&quot;.
+</I>
+Done, except the phpbb-seo stuff
+<A HREF="http://svnweb.mageia.org/adm/puppet/modules/phpbb/templates/forums_vhost.conf?r1=1165&amp;r2=1180">http://svnweb.mageia.org/adm/puppet/modules/phpbb/templates/forums_vhost.conf?r1=1165&amp;r2=1180</A>
+
+&gt;<i> - ssl certs should be corrected ( as I discovered during the night ),
+</I>&gt;<i> but that should be quick ( when I mean corrected, I speak of the wrong
+</I>&gt;<i> host, not of the fact they are self signed ).
+</I>
+Done.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000379.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000382.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#377">[ date ]</a>
+ <a href="thread.html#377">[ thread ]</a>
+ <a href="subject.html#377">[ subject ]</a>
+ <a href="author.html#377">[ 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-February/000378.html b/zarb-ml/mageia-webteam/2011-February/000378.html
new file mode 100644
index 000000000..127191462
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000378.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298481375.11734.69.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000382.html">
+ <LINK REL="Next" HREF="000367.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C1298481375.11734.69.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">misc at zarb.org
+ </A><BR>
+ <I>Wed Feb 23 18:16:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000382.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000367.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#378">[ date ]</a>
+ <a href="thread.html#378">[ thread ]</a>
+ <a href="subject.html#378">[ subject ]</a>
+ <a href="author.html#378">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 22 f&#233;vrier 2011 &#224; 13:42 +0100, Michael Scherer a &#233;crit :
+
+&gt;<i> - php deployment should also be hardened and fixed ( fixed because php
+</I>&gt;<i> complain about some timezone issue ).
+</I>
+the php date issue should be fixed soon ( once the fix was propagated ),
+per commit 1185
+( <A HREF="http://svnweb.mageia.org/adm?view=revision&amp;revision=1185">http://svnweb.mageia.org/adm?view=revision&amp;revision=1185</A> )
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000382.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000367.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#378">[ date ]</a>
+ <a href="thread.html#378">[ thread ]</a>
+ <a href="subject.html#378">[ subject ]</a>
+ <a href="author.html#378">[ 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-February/000379.html b/zarb-ml/mageia-webteam/2011-February/000379.html
new file mode 100644
index 000000000..52d17054e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000379.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D654714.30703%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000376.html">
+ <LINK REL="Next" HREF="000377.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D654714.30703%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Feb 23 18:42:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000376.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000377.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#379">[ date ]</a>
+ <a href="thread.html#379">[ thread ]</a>
+ <a href="subject.html#379">[ subject ]</a>
+ <a href="author.html#379">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/02/2011 13:56, Romain d'Alverny a &#233;crit :
+&gt;<i> Le 23 f&#233;vr. 2011 &#224; 13:12, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; a &#233;crit :
+</I>&gt;&gt;<i> phpbb-seo modifie the code of phpbb directly for integration.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> See the git snapshot ( <A HREF="git://git.mageia.org/forum/">git://git.mageia.org/forum/</A> using a git client,
+</I>&gt;&gt;<i> and grep -r -i seo ). So the question is &quot;what is the license of the
+</I>&gt;&gt;<i> resulting file, as it mix 2 incompatibles licenses&quot;. I am pretty sure
+</I>&gt;&gt;<i> that the GPL forbid such mix ( as this is the reason of the creation of
+</I>&gt;&gt;<i> LGPL ).
+</I>&gt;<i> Unless we don't redistribute it. But the RPL seems to require redistribution of the code?
+</I>&gt;<i>
+</I>Asked to phpbb guys... as GPL is viral and as phpbb-seo works only with phpbb and relies on it the mod should probably have been licensed under GPL V2 (TANL &amp; IANAL)
+
+(I guess FSF would be rather upsed with licensing issues like this one)
+
+
+&gt;&gt;<i> 2 questions :
+</I>&gt;&gt;<i> 1) who is volunteer to contact upstream ?
+</I>&gt;<i> I pay him/her a beer!
+</I>&gt;<i>
+</I>Mail sent...
+
+...You owe me a beer :o)
+
+...but i don't have the answer yet :-/
+
+
+&gt;&gt;<i> 2) what do we do in the meantime ?
+</I>&gt;<i> Keep the patch separate and deploy without seo? Or is it too complex?
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>
+With and without seo the forums urls would be very different.
+
+If we start without it (which is possible with a little bit of cleaning on code and database) we loose nice looking urls and easy google indexing (and hence people finding easily our pages)...
+
+Stay tuned,
+
+Ma&#226;t
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000376.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000377.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#379">[ date ]</a>
+ <a href="thread.html#379">[ thread ]</a>
+ <a href="subject.html#379">[ subject ]</a>
+ <a href="author.html#379">[ 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-February/000380.html b/zarb-ml/mageia-webteam/2011-February/000380.html
new file mode 100644
index 000000000..6bc80a90a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000380.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20New%3A%20add%20a%20option%20in%20bugzilla%20profile%20to%0A%20show%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3Cbug-166-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="000368.html">
+ <LINK REL="Next" HREF="000384.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20New%3A%20add%20a%20option%20in%20bugzilla%20profile%20to%0A%20show%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3Cbug-166-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 24 15:45:27 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000368.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000384.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#380">[ date ]</a>
+ <a href="thread.html#380">[ thread ]</a>
+ <a href="subject.html#380">[ subject ]</a>
+ <a href="author.html#380">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+ Summary: add a option in bugzilla profile to show the bugs
+ which a person is CC'ed to
+ 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">dmorganec at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem:
+
+hi,
+
+you can refer to this bug: <A HREF="https://qa.mandriva.com/show_bug.cgi?id=49008">https://qa.mandriva.com/show_bug.cgi?id=49008</A>
+
+
+cheers,
+Marcello
+
+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="000368.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000384.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#380">[ date ]</a>
+ <a href="thread.html#380">[ thread ]</a>
+ <a href="subject.html#380">[ subject ]</a>
+ <a href="author.html#380">[ 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-February/000381.html b/zarb-ml/mageia-webteam/2011-February/000381.html
new file mode 100644
index 000000000..d1b38d84c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000381.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+ </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%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110224222440.9C8A541B81%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="000364.html">
+ <LINK REL="Next" HREF="000254.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110224222440.9C8A541B81%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 24 23:24:40 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000364.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000254.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#381">[ date ]</a>
+ <a href="thread.html#381">[ thread ]</a>
+ <a href="subject.html#381">[ subject ]</a>
+ <a href="author.html#381">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=25">https://bugs.mageia.org/show_bug.cgi?id=25</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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.
+You are the assignee for the bug.
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000364.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000254.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#381">[ date ]</a>
+ <a href="thread.html#381">[ thread ]</a>
+ <a href="subject.html#381">[ subject ]</a>
+ <a href="author.html#381">[ 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-February/000382.html b/zarb-ml/mageia-webteam/2011-February/000382.html
new file mode 100644
index 000000000..d35eeb7f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000382.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum installation (almost) complete
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D6977EC.9030006%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000377.html">
+ <LINK REL="Next" HREF="000378.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum installation (almost) complete</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20installation%20%28almost%29%20complete&In-Reply-To=%3C4D6977EC.9030006%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forum installation (almost) complete">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sat Feb 26 23:00:12 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000377.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000378.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#382">[ date ]</a>
+ <a href="thread.html#382">[ thread ]</a>
+ <a href="subject.html#382">[ subject ]</a>
+ <a href="author.html#382">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/02/2011 16:46, Michael Scherer a &#233;crit :
+&gt;<i> Le mardi 22 f&#233;vrier 2011 &#224; 13:42 +0100, Michael Scherer a &#233;crit :
+</I>&gt;<i>
+</I>I started to check : ldap connexion is ok and forums seems to be up and nearly ready to run
+
+we'll need recruited moderators to log in rather quickly so that we can put them in the right phpbb acl group
+
+&gt;&gt;<i> - There is likely missing write permissions ( I have started to lock
+</I>&gt;&gt;<i> down and opened ./cache/, and it was sufficient to have something to
+</I>&gt;&gt;<i> see )
+</I>&gt;<i> almost done, here is the list of what I have added :
+</I>&gt;<i> <A HREF="http://svnweb.mageia.org/adm/puppet/modules/phpbb/manifests/init.pp?r1=1177&amp;r2=1181">http://svnweb.mageia.org/adm/puppet/modules/phpbb/manifests/init.pp?r1=1177&amp;r2=1181</A>
+</I>&gt;<i>
+</I>phpbb-seo has got also a cache dir needing write perms
+
+&gt;&gt;<i> - As using .htaccess cause performance penalty, I have not enabled them,
+</I>&gt;&gt;<i> but maybe part of them are required. In any case, we need to review them
+</I>&gt;&gt;<i> and add them to the apache configuration if needed. IIRC, most are just
+</I>&gt;&gt;<i> &quot;do not go to this directory&quot;.
+</I>&gt;<i> Done, except the phpbb-seo stuff
+</I>&gt;<i> <A HREF="http://svnweb.mageia.org/adm/puppet/modules/phpbb/templates/forums_vhost.conf?r1=1165&amp;r2=1180">http://svnweb.mageia.org/adm/puppet/modules/phpbb/templates/forums_vhost.conf?r1=1165&amp;r2=1180</A>
+</I>&gt;<i>
+</I>Yup so all links are broken till we either activate rewirte rules or remove phpbb-seo
+
+&gt;&gt;<i> - ssl certs should be corrected ( as I discovered during the night ),
+</I>&gt;&gt;<i> but that should be quick ( when I mean corrected, I speak of the wrong
+</I>&gt;&gt;<i> host, not of the fact they are self signed ).
+</I>&gt;<i> Done.
+</I>&gt;<i>
+</I>I still need to check if forum can do both http and https without side effect
+
+
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000377.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI>Next message: <A HREF="000378.html">[Mageia-webteam] Forum installation (almost) complete
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#382">[ date ]</a>
+ <a href="thread.html#382">[ thread ]</a>
+ <a href="subject.html#382">[ subject ]</a>
+ <a href="author.html#382">[ 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-February/000383.html b/zarb-ml/mageia-webteam/2011-February/000383.html
new file mode 100644
index 000000000..7e48ec7a6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000383.html
@@ -0,0 +1,92 @@
+<!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=%3C20110226230002.CB44A4259B%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="000385.html">
+ <LINK REL="Next" HREF="000386.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=%3C20110226230002.CB44A4259B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Feb 27 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000385.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000386.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#383">[ date ]</a>
+ <a href="thread.html#383">[ thread ]</a>
+ <a href="subject.html#383">[ subject ]</a>
+ <a href="author.html#383">[ 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>
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000385.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000386.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#383">[ date ]</a>
+ <a href="thread.html#383">[ thread ]</a>
+ <a href="subject.html#383">[ subject ]</a>
+ <a href="author.html#383">[ 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-February/000384.html b/zarb-ml/mageia-webteam/2011-February/000384.html
new file mode 100644
index 000000000..c2bf79e6d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000384.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110227221956.0C3AF42694%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="000380.html">
+ <LINK REL="Next" HREF="000385.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110227221956.0C3AF42694%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Feb 27 23:19:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000380.html">[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000385.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#384">[ date ]</a>
+ <a href="thread.html#384">[ thread ]</a>
+ <a href="subject.html#384">[ subject ]</a>
+ <a href="author.html#384">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- 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-02-27 23:19:56 CET ---
+This is really badly worded. You should say &quot;home page&quot; or index.cgi. profile
+sounds like the profiles DB 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="000380.html">[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000385.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#384">[ date ]</a>
+ <a href="thread.html#384">[ thread ]</a>
+ <a href="subject.html#384">[ subject ]</a>
+ <a href="author.html#384">[ 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-February/000385.html b/zarb-ml/mageia-webteam/2011-February/000385.html
new file mode 100644
index 000000000..b5d69c850
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000385.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110227222454.BED1642694%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="000384.html">
+ <LINK REL="Next" HREF="000383.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20option%20in%20bugzilla%20profile%20to%20show%0A%20the%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110227222454.BED1642694%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Feb 27 23:24:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000384.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000383.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#385">[ date ]</a>
+ <a href="thread.html#385">[ thread ]</a>
+ <a href="subject.html#385">[ subject ]</a>
+ <a href="author.html#385">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #2 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-02-27 23:24:55 CET ---
+yes, i plan to redo the home page and add such links
+
+=&gt; WIP
+
+--
+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="000384.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="000383.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#385">[ date ]</a>
+ <a href="thread.html#385">[ thread ]</a>
+ <a href="subject.html#385">[ subject ]</a>
+ <a href="author.html#385">[ 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-February/000386.html b/zarb-ml/mageia-webteam/2011-February/000386.html
new file mode 100644
index 000000000..e9fdc2475
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/000386.html
@@ -0,0 +1,87 @@
+<!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=%3C20110227230002.AE55442697%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="000383.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=%3C20110227230002.AE55442697%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 28 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000383.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#386">[ date ]</a>
+ <a href="thread.html#386">[ thread ]</a>
+ <a href="subject.html#386">[ subject ]</a>
+ <a href="author.html#386">[ 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>
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000383.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#386">[ date ]</a>
+ <a href="thread.html#386">[ thread ]</a>
+ <a href="subject.html#386">[ subject ]</a>
+ <a href="author.html#386">[ 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-February/author.html b/zarb-ml/mageia-webteam/2011-February/author.html
new file mode 100644
index 000000000..27bd213ac
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/author.html
@@ -0,0 +1,937 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam February 2011 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>February 2011 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>Tue Feb 8 19:05:17 CET 2011</i><br>
+ <b>Ending:</b> <i>Mon Feb 28 00:00:02 CET 2011</i><br>
+ <b>Messages:</b> 178<p>
+ <ul>
+
+<LI><A HREF="000299.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A><A NAME="299">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000216.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="216">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<LI><A HREF="000211.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="211">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000213.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="213">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000224.html">[Mageia-webteam] test
+</A><A NAME="224">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000257.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="257">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000367.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A><A NAME="367">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000368.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A><A NAME="368">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000219.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="219">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000220.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="220">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000270.html">[Mageia-webteam] Hello Mageia
+</A><A NAME="270">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000271.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="271">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000272.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="272">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000264.html">[Mageia-webteam] Hello Mageia
+</A><A NAME="264">&nbsp;</A>
+<I>Clod
+</I>
+
+<LI><A HREF="000288.html">[Mageia-webteam] [Mageia-i18n] New page of the website to translate
+</A><A NAME="288">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="000281.html">[Mageia-webteam] New page of the website to translate
+</A><A NAME="281">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000297.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="297">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000298.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A><A NAME="298">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000322.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="322">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000366.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="366">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000370.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="370">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000372.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="372">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000379.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="379">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000382.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="382">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000222.html">[Mageia-webteam] test
+</A><A NAME="222">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<LI><A HREF="000225.html">[Mageia-webteam] test
+</A><A NAME="225">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<LI><A HREF="000215.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="215">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000226.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="226">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000227.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="227">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000365.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="365">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000369.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="369">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000371.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="371">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000373.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="373">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000375.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="375">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000377.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="377">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000378.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="378">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000221.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="221">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000223.html">[Mageia-webteam] test
+</A><A NAME="223">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000228.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="228">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000210.html">[Mageia-webteam] 2011/week 6 meeting
+</A><A NAME="210">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000262.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="262">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000209.html">[Mageia-webteam] 2011/week 6 meeting
+</A><A NAME="209">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000212.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="212">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000214.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="214">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000217.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="217">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000218.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="218">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000374.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="374">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000376.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="376">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000229.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A><A NAME="229">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000230.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A><A NAME="230">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000231.html">[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?
+</A><A NAME="231">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000232.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A><A NAME="232">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000233.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A><A NAME="233">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000234.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="234">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000235.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="235">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000236.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="236">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000237.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="237">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000238.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A><A NAME="238">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000239.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="239">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000240.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="240">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000241.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="241">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000242.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A><A NAME="242">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000243.html">[Mageia-webteam] [Bug 23] New: Testing bugs ML
+</A><A NAME="243">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000244.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="244">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000245.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="245">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000246.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="246">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000247.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="247">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000248.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="248">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000249.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="249">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000250.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="250">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000251.html">[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="251">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000252.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="252">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000253.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="253">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000254.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="254">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000255.html">[Mageia-webteam] [Bug 28] New: Wrong character encoding
+</A><A NAME="255">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000256.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="256">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000258.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="258">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000259.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="259">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000260.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="260">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000261.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="261">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000263.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="263">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000265.html">[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla
+</A><A NAME="265">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000266.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="266">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000267.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="267">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000268.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="268">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000269.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="269">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000273.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="273">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000274.html">[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0
+</A><A NAME="274">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000275.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="275">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000276.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="276">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000277.html">[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted
+</A><A NAME="277">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000278.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="278">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000279.html">[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name
+</A><A NAME="279">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000280.html">[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A><A NAME="280">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000282.html">[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="282">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000283.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="283">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000284.html">[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A><A NAME="284">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000285.html">[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name
+</A><A NAME="285">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000286.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="286">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000287.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="287">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000289.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="289">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000290.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="290">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000291.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="291">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000292.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="292">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000293.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="293">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000294.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="294">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000295.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="295">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000296.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="296">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000300.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="300">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000301.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="301">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000302.html">[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report
+</A><A NAME="302">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000303.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="303">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000304.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="304">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000305.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="305">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000306.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="306">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000307.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="307">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000308.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="308">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000309.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="309">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000310.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="310">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000311.html">[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report
+</A><A NAME="311">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000329.html">[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org
+</A><A NAME="329">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000330.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="330">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000331.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="331">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000332.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="332">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000333.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="333">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000334.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="334">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000335.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="335">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000336.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="336">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000337.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="337">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000338.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="338">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000339.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="339">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000340.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="340">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000341.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="341">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000342.html">[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="342">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000343.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="343">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000344.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="344">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000345.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="345">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000346.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="346">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000347.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="347">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000348.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="348">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000349.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="349">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000350.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="350">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000351.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="351">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000352.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="352">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000353.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="353">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000354.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="354">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000355.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="355">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000356.html">[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla
+</A><A NAME="356">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000357.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="357">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000358.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="358">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000359.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="359">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000360.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="360">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000361.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="361">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000362.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="362">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000363.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="363">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000364.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="364">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000380.html">[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="380">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000381.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="381">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000383.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="383">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000384.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="384">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000385.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="385">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000386.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="386">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000314.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="314">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000312.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="312">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000313.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="313">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000315.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="315">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000316.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="316">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000317.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="317">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000318.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="318">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000319.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="319">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000320.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="320">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000321.html">[Mageia-webteam] test
+</A><A NAME="321">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000323.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="323">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000324.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="324">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000325.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="325">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000326.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="326">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000327.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="327">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000328.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="328">&nbsp;</A>
+<I>root
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Feb 28 00:00:02 CET 2011</i><br>
+ <b>Archived on:</b> <i>Mon Feb 28 00:00:08 CET 2011</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/2011-February/date.html b/zarb-ml/mageia-webteam/2011-February/date.html
new file mode 100644
index 000000000..dc6b7c347
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/date.html
@@ -0,0 +1,937 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam February 2011 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>February 2011 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>Tue Feb 8 19:05:17 CET 2011</i><br>
+ <b>Ending:</b> <i>Mon Feb 28 00:00:02 CET 2011</i><br>
+ <b>Messages:</b> 178<p>
+ <ul>
+
+<LI><A HREF="000209.html">[Mageia-webteam] 2011/week 6 meeting
+</A><A NAME="209">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000210.html">[Mageia-webteam] 2011/week 6 meeting
+</A><A NAME="210">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000211.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="211">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000212.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="212">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000213.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="213">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000214.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="214">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000215.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="215">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000216.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="216">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<LI><A HREF="000217.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="217">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000218.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="218">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000219.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="219">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000220.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="220">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000221.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="221">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000222.html">[Mageia-webteam] test
+</A><A NAME="222">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<LI><A HREF="000223.html">[Mageia-webteam] test
+</A><A NAME="223">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000224.html">[Mageia-webteam] test
+</A><A NAME="224">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000225.html">[Mageia-webteam] test
+</A><A NAME="225">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<LI><A HREF="000226.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="226">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000227.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="227">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000228.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="228">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000229.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A><A NAME="229">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000230.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A><A NAME="230">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000231.html">[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?
+</A><A NAME="231">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000232.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A><A NAME="232">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000233.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A><A NAME="233">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000234.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="234">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000235.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="235">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000236.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="236">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000237.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="237">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000238.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A><A NAME="238">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000239.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="239">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000240.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="240">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000241.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="241">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000242.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A><A NAME="242">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000243.html">[Mageia-webteam] [Bug 23] New: Testing bugs ML
+</A><A NAME="243">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000244.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="244">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000245.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="245">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000246.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="246">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000247.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="247">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000248.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="248">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000249.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="249">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000250.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="250">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000251.html">[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="251">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000252.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="252">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000253.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="253">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000254.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="254">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000255.html">[Mageia-webteam] [Bug 28] New: Wrong character encoding
+</A><A NAME="255">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000256.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="256">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000281.html">[Mageia-webteam] New page of the website to translate
+</A><A NAME="281">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000257.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="257">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000258.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="258">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000259.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="259">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000262.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="262">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000260.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="260">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000261.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="261">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000263.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="263">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000264.html">[Mageia-webteam] Hello Mageia
+</A><A NAME="264">&nbsp;</A>
+<I>Clod
+</I>
+
+<LI><A HREF="000265.html">[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla
+</A><A NAME="265">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000266.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="266">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000267.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="267">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000268.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="268">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000269.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="269">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000270.html">[Mageia-webteam] Hello Mageia
+</A><A NAME="270">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000271.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="271">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000272.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="272">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000273.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="273">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000274.html">[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0
+</A><A NAME="274">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000275.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="275">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000276.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="276">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000277.html">[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted
+</A><A NAME="277">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000278.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="278">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000279.html">[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name
+</A><A NAME="279">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000280.html">[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A><A NAME="280">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000288.html">[Mageia-webteam] [Mageia-i18n] New page of the website to translate
+</A><A NAME="288">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="000282.html">[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="282">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000283.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="283">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000284.html">[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A><A NAME="284">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000285.html">[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name
+</A><A NAME="285">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000286.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="286">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000287.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="287">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000289.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="289">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000290.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="290">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000291.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="291">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000292.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="292">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000293.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="293">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000294.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="294">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000295.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="295">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000296.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="296">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000297.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="297">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000298.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A><A NAME="298">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000299.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A><A NAME="299">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000300.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="300">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000301.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="301">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000302.html">[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report
+</A><A NAME="302">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000303.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="303">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000304.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="304">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000305.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="305">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000306.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="306">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000307.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="307">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000308.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="308">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000309.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="309">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000310.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="310">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000311.html">[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report
+</A><A NAME="311">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000314.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="314">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000312.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="312">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000313.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="313">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000315.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="315">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000316.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="316">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000317.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="317">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000318.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="318">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000319.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="319">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000320.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="320">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000321.html">[Mageia-webteam] test
+</A><A NAME="321">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000322.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="322">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000323.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="323">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000324.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="324">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000325.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="325">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000326.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="326">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000327.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="327">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000328.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="328">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000329.html">[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org
+</A><A NAME="329">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000330.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="330">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000331.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="331">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000332.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="332">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000333.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="333">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000334.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="334">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000335.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="335">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000336.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="336">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000337.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="337">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000338.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="338">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000339.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="339">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000340.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="340">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000341.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="341">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000342.html">[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="342">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000343.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="343">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000344.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="344">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000345.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="345">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000346.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="346">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000347.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="347">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000348.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="348">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000349.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="349">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000350.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="350">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000351.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="351">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000352.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="352">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000353.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="353">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000354.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="354">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000355.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="355">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000356.html">[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla
+</A><A NAME="356">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000357.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="357">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000358.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="358">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000359.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="359">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000360.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="360">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000361.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="361">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000362.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="362">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000363.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="363">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000364.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="364">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000365.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="365">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000366.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="366">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000367.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A><A NAME="367">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000368.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A><A NAME="368">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000369.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="369">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000370.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="370">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000371.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="371">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000372.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="372">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000373.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="373">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000374.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="374">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000375.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="375">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000376.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="376">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000377.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="377">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000378.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="378">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000379.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="379">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000380.html">[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="380">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000381.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="381">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000382.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="382">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000383.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="383">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000384.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="384">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000385.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="385">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000386.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="386">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Feb 28 00:00:02 CET 2011</i><br>
+ <b>Archived on:</b> <i>Mon Feb 28 00:00:08 CET 2011</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/2011-February/index.html b/zarb-ml/mageia-webteam/2011-February/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-February/subject.html b/zarb-ml/mageia-webteam/2011-February/subject.html
new file mode 100644
index 000000000..38723c35e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/subject.html
@@ -0,0 +1,937 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam February 2011 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>February 2011 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>Tue Feb 8 19:05:17 CET 2011</i><br>
+ <b>Ending:</b> <i>Mon Feb 28 00:00:02 CET 2011</i><br>
+ <b>Messages:</b> 178<p>
+ <ul>
+
+<LI><A HREF="000209.html">[Mageia-webteam] 2011/week 6 meeting
+</A><A NAME="209">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000210.html">[Mageia-webteam] 2011/week 6 meeting
+</A><A NAME="210">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000343.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="343">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000344.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="344">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000345.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="345">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000342.html">[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="342">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000232.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A><A NAME="232">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000233.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A><A NAME="233">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000234.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="234">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000235.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="235">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000236.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="236">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000247.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="247">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000356.html">[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla
+</A><A NAME="356">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000357.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="357">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000358.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="358">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000359.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="359">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000360.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="360">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000361.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="361">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000362.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="362">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000363.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="363">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000229.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A><A NAME="229">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000230.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A><A NAME="230">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000231.html">[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?
+</A><A NAME="231">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000384.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="384">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000385.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="385">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000380.html">[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="380">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000254.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="254">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000301.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="301">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000306.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="306">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000351.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="351">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000355.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="355">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000237.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="237">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000239.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="239">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000240.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="240">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000241.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="241">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000352.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="352">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000353.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="353">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000354.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="354">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000238.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A><A NAME="238">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000242.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A><A NAME="242">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000243.html">[Mageia-webteam] [Bug 23] New: Testing bugs ML
+</A><A NAME="243">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000244.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="244">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000245.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="245">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000246.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="246">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000248.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="248">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000249.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="249">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000250.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="250">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000346.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="346">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000347.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="347">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000348.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="348">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000349.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="349">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000350.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="350">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000251.html">[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="251">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000252.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="252">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000253.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="253">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000300.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="300">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000303.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="303">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000364.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="364">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000381.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="381">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000255.html">[Mageia-webteam] [Bug 28] New: Wrong character encoding
+</A><A NAME="255">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000256.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="256">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000258.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="258">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000259.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="259">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000260.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="260">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000261.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="261">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000263.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="263">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000289.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="289">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000290.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="290">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000292.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="292">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000266.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="266">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000267.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="267">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000268.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="268">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000269.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="269">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000273.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="273">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000275.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="275">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000286.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="286">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000291.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="291">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000265.html">[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla
+</A><A NAME="265">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000274.html">[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0
+</A><A NAME="274">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000276.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="276">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000287.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="287">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000293.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="293">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000277.html">[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted
+</A><A NAME="277">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000278.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="278">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000283.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="283">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000294.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="294">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000285.html">[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name
+</A><A NAME="285">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000279.html">[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name
+</A><A NAME="279">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000280.html">[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A><A NAME="280">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000284.html">[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A><A NAME="284">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000282.html">[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="282">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000295.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="295">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000296.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="296">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000304.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="304">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000305.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="305">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000307.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="307">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000308.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="308">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000309.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="309">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000310.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="310">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000333.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="333">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000334.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="334">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000335.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="335">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000337.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="337">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000339.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="339">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000340.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="340">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000341.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="341">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000302.html">[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report
+</A><A NAME="302">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000311.html">[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report
+</A><A NAME="311">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000330.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="330">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000331.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="331">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000332.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="332">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000336.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="336">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000338.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="338">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000329.html">[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org
+</A><A NAME="329">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000288.html">[Mageia-webteam] [Mageia-i18n] New page of the website to translate
+</A><A NAME="288">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="000214.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="214">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000215.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="215">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000216.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="216">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<LI><A HREF="000217.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="217">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000218.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="218">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000365.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="365">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000366.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="366">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000369.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="369">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000370.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="370">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000371.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="371">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000372.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="372">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000373.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="373">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000374.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="374">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000375.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="375">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000376.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="376">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000377.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="377">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000378.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="378">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000379.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="379">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000382.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="382">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000264.html">[Mageia-webteam] Hello Mageia
+</A><A NAME="264">&nbsp;</A>
+<I>Clod
+</I>
+
+<LI><A HREF="000270.html">[Mageia-webteam] Hello Mageia
+</A><A NAME="270">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000219.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="219">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000226.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="226">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000228.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="228">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000272.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="272">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000281.html">[Mageia-webteam] New page of the website to translate
+</A><A NAME="281">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000314.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="314">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000312.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="312">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000313.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="313">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000315.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="315">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000316.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="316">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000317.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="317">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000318.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="318">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000319.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="319">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000320.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="320">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000322.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="322">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000323.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="323">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000324.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="324">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000325.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="325">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000326.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="326">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000327.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="327">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000328.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="328">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000257.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="257">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000262.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="262">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000297.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="297">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000211.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="211">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000212.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="212">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000213.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="213">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000367.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A><A NAME="367">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000368.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A><A NAME="368">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000220.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="220">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000221.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="221">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000227.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="227">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000271.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="271">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000298.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A><A NAME="298">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000299.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A><A NAME="299">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000222.html">[Mageia-webteam] test
+</A><A NAME="222">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<LI><A HREF="000223.html">[Mageia-webteam] test
+</A><A NAME="223">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000224.html">[Mageia-webteam] test
+</A><A NAME="224">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000225.html">[Mageia-webteam] test
+</A><A NAME="225">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<LI><A HREF="000321.html">[Mageia-webteam] test
+</A><A NAME="321">&nbsp;</A>
+<I>root
+</I>
+
+<LI><A HREF="000383.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="383">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000386.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="386">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Feb 28 00:00:02 CET 2011</i><br>
+ <b>Archived on:</b> <i>Mon Feb 28 00:00:08 CET 2011</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/2011-February/thread.html b/zarb-ml/mageia-webteam/2011-February/thread.html
new file mode 100644
index 000000000..d0503d1db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-February/thread.html
@@ -0,0 +1,1189 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam February 2011 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>February 2011 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>Tue Feb 8 19:05:17 CET 2011</i><br>
+ <b>Ending:</b> <i>Mon Feb 28 00:00:02 CET 2011</i><br>
+ <b>Messages:</b> 178<p>
+ <ul>
+
+<!--0 01297188317- -->
+<LI><A HREF="000209.html">[Mageia-webteam] 2011/week 6 meeting
+</A><A NAME="209">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01297188317-01297286728- -->
+<LI><A HREF="000210.html">[Mageia-webteam] 2011/week 6 meeting
+</A><A NAME="210">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+</UL>
+<!--0 01297368134- -->
+<LI><A HREF="000211.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="211">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01297368134-01297381759- -->
+<LI><A HREF="000212.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="212">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01297368134-01297381759-01297411911- -->
+<LI><A HREF="000213.html">[Mageia-webteam] Permissions and procedures
+</A><A NAME="213">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+</UL>
+<!--0 01297444917- -->
+<LI><A HREF="000214.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="214">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01297444917-01297450259- -->
+<LI><A HREF="000215.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="215">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01297444917-01297450259-01297461450- -->
+<LI><A HREF="000217.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="217">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--1 01297444917-01297461011- -->
+<LI><A HREF="000216.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="216">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<UL>
+<!--2 01297444917-01297461011-01297464964- -->
+<LI><A HREF="000218.html">[Mageia-webteam] checklist of web services/issues for alpha 1
+</A><A NAME="218">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+<!--0 01297597326- -->
+<LI><A HREF="000219.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="219">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--1 01297597326-01297626276- -->
+<LI><A HREF="000226.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="226">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01297597326-01297626276-01297634839- -->
+<LI><A HREF="000228.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="228">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<UL>
+<!--3 01297597326-01297626276-01297634839-01297801918- -->
+<LI><A HREF="000272.html">[Mageia-webteam] Maintainers db tasks
+</A><A NAME="272">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01297598205- -->
+<LI><A HREF="000220.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="220">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--1 01297598205-01297598766- -->
+<LI><A HREF="000221.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="221">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--1 01297598205-01297626954- -->
+<LI><A HREF="000227.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="227">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01297598205-01297626954-01297801431- -->
+<LI><A HREF="000271.html">[Mageia-webteam] Server requirements second attempt
+</A><A NAME="271">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+</UL>
+</UL>
+<!--0 01297608243- -->
+<LI><A HREF="000222.html">[Mageia-webteam] test
+</A><A NAME="222">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<UL>
+<!--1 01297608243-01297608434- -->
+<LI><A HREF="000223.html">[Mageia-webteam] test
+</A><A NAME="223">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<UL>
+<!--2 01297608243-01297608434-01297610602- -->
+<LI><A HREF="000224.html">[Mageia-webteam] test
+</A><A NAME="224">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--3 01297608243-01297608434-01297610602-01297615081- -->
+<LI><A HREF="000225.html">[Mageia-webteam] test
+</A><A NAME="225">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01297641062- -->
+<LI><A HREF="000229.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A><A NAME="229">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297641115- -->
+<LI><A HREF="000230.html">[Mageia-webteam] [Bug 14] Automatically CC the webteam ML for relevant products / components
+</A><A NAME="230">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297641680- -->
+<LI><A HREF="000231.html">[Mageia-webteam] [Bug 15] Infrastructure vs Websites products : needed ? coherent ?
+</A><A NAME="231">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297641707- -->
+<LI><A HREF="000232.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A><A NAME="232">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297651490- -->
+<LI><A HREF="000233.html">[Mageia-webteam] [Bug 10] Put the new wiki into production (this is a test bug report)
+</A><A NAME="233">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297686114- -->
+<LI><A HREF="000234.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="234">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297686130- -->
+<LI><A HREF="000235.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="235">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297686142- -->
+<LI><A HREF="000236.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="236">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297702455- -->
+<LI><A HREF="000237.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="237">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297702537- -->
+<LI><A HREF="000238.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A><A NAME="238">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297702589- -->
+<LI><A HREF="000239.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="239">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297702601- -->
+<LI><A HREF="000240.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="240">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297702629- -->
+<LI><A HREF="000241.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="241">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297703766- -->
+<LI><A HREF="000242.html">[Mageia-webteam] [Bug 22] By default, show the same bug report after editing it
+</A><A NAME="242">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297712011- -->
+<LI><A HREF="000243.html">[Mageia-webteam] [Bug 23] New: Testing bugs ML
+</A><A NAME="243">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297712011-01297731065- -->
+<LI><A HREF="000244.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="244">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01297731226- -->
+<LI><A HREF="000245.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="245">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01297731305- -->
+<LI><A HREF="000246.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="246">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01297735349- -->
+<LI><A HREF="000248.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="248">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01297735532- -->
+<LI><A HREF="000249.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="249">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01297741510- -->
+<LI><A HREF="000250.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="250">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01298123483- -->
+<LI><A HREF="000346.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="346">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01298123679- -->
+<LI><A HREF="000347.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="347">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01298123789- -->
+<LI><A HREF="000348.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="348">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01298123979- -->
+<LI><A HREF="000349.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="349">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297712011-01298135086- -->
+<LI><A HREF="000350.html">[Mageia-webteam] [Bug 23] Testing bugs ML
+</A><A NAME="350">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297731715- -->
+<LI><A HREF="000247.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="247">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297756371- -->
+<LI><A HREF="000251.html">[Mageia-webteam] [Bug 25] New: On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="251">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297756371-01297756386- -->
+<LI><A HREF="000252.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="252">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297756371-01297758622- -->
+<LI><A HREF="000253.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="253">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297756371-01297894929- -->
+<LI><A HREF="000300.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="300">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297756371-01297925244- -->
+<LI><A HREF="000303.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="303">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297756371-01298333915- -->
+<LI><A HREF="000364.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="364">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297756371-01298586280- -->
+<LI><A HREF="000381.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="381">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297761320- -->
+<LI><A HREF="000254.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="254">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297763641- -->
+<LI><A HREF="000255.html">[Mageia-webteam] [Bug 28] New: Wrong character encoding
+</A><A NAME="255">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297763641-01297763807- -->
+<LI><A HREF="000256.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="256">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297763641-01297767484- -->
+<LI><A HREF="000258.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="258">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297763641-01297768047- -->
+<LI><A HREF="000259.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="259">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297763641-01297769087- -->
+<LI><A HREF="000260.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="260">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297763641-01297770042- -->
+<LI><A HREF="000261.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="261">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297763641-01297770509- -->
+<LI><A HREF="000263.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="263">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297763641-01297848769- -->
+<LI><A HREF="000289.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="289">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297763641-01297851674- -->
+<LI><A HREF="000290.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="290">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297763641-01297861219- -->
+<LI><A HREF="000292.html">[Mageia-webteam] [Bug 28] Wrong character encoding
+</A><A NAME="292">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297764568- -->
+<LI><A HREF="000281.html">[Mageia-webteam] New page of the website to translate
+</A><A NAME="281">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<UL>
+<!--1 01297764568-01297821823- -->
+<LI><A HREF="000288.html">[Mageia-webteam] [Mageia-i18n] New page of the website to translate
+</A><A NAME="288">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+</UL>
+<!--0 01297767178- -->
+<LI><A HREF="000257.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="257">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01297767178-01297768966- -->
+<LI><A HREF="000262.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="262">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--1 01297767178-01297871786- -->
+<LI><A HREF="000297.html">[Mageia-webteam] Next meeting, February 16th
+</A><A NAME="297">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+</UL>
+<!--0 01297774655- -->
+<LI><A HREF="000264.html">[Mageia-webteam] Hello Mageia
+</A><A NAME="264">&nbsp;</A>
+<I>Clod
+</I>
+
+<UL>
+<!--1 01297774655-01297800961- -->
+<LI><A HREF="000270.html">[Mageia-webteam] Hello Mageia
+</A><A NAME="270">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+</UL>
+<!--0 01297787775- -->
+<LI><A HREF="000265.html">[Mageia-webteam] [Bug 32] New: Mageia identity system not in sync with bugzilla
+</A><A NAME="265">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297787775-01297788628- -->
+<LI><A HREF="000266.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="266">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297787775-01297788656- -->
+<LI><A HREF="000267.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="267">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297787775-01297789082- -->
+<LI><A HREF="000268.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="268">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297787775-01297791887- -->
+<LI><A HREF="000269.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="269">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297787775-01297812450- -->
+<LI><A HREF="000273.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="273">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297787775-01297818431- -->
+<LI><A HREF="000275.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="275">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297787775-01297842452- -->
+<LI><A HREF="000286.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="286">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297787775-01297859890- -->
+<LI><A HREF="000291.html">[Mageia-webteam] [Bug 32] Can create unusable passwords shorter than six chars for bugzilla
+</A><A NAME="291">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297812615- -->
+<LI><A HREF="000274.html">[Mageia-webteam] [Bug 40] New: Upgrade to Bugzilla 4.0
+</A><A NAME="274">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297812615-01297818692- -->
+<LI><A HREF="000276.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="276">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297812615-01297843310- -->
+<LI><A HREF="000287.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="287">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297812615-01297864378- -->
+<LI><A HREF="000293.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A><A NAME="293">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297818823- -->
+<LI><A HREF="000277.html">[Mageia-webteam] [Bug 42] New: Possibility to see bugs reported today is wanted
+</A><A NAME="277">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297818823-01297818834- -->
+<LI><A HREF="000278.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="278">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297818823-01297826850- -->
+<LI><A HREF="000283.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="283">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297818823-01297864646- -->
+<LI><A HREF="000294.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="294">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297820999- -->
+<LI><A HREF="000279.html">[Mageia-webteam] [Bug 45] New: Description when saving Firefox bookmark shoudl include Mageia name
+</A><A NAME="279">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297820999-01297837438- -->
+<LI><A HREF="000285.html">[Mageia-webteam] [Bug 45] Description when saving Firefox bookmark shoudl include Mageia name
+</A><A NAME="285">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297821188- -->
+<LI><A HREF="000280.html">[Mageia-webteam] [Bug 46] New: While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A><A NAME="280">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297821188-01297835765- -->
+<LI><A HREF="000284.html">[Mageia-webteam] [Bug 46] While this page allows the selection of a severity of &quot;Trival&quot;, the system will not accept it
+</A><A NAME="284">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297824741- -->
+<LI><A HREF="000282.html">[Mageia-webteam] [Bug 47] New: The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="282">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297824741-01297864941- -->
+<LI><A HREF="000295.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="295">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297824741-01297865260- -->
+<LI><A HREF="000296.html">[Mageia-webteam] [Bug 47] The Bugzilla userguide link on the front page of BugZilla doesn't work
+</A><A NAME="296">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297880024- -->
+<LI><A HREF="000298.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A><A NAME="298">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<UL>
+<!--1 01297880024-01297880280- -->
+<LI><A HREF="000299.html">[Mageia-webteam] Stop 404 errors due to lack of translation
+</A><A NAME="299">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+</UL>
+<!--0 01297915385- -->
+<LI><A HREF="000301.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="301">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297916252- -->
+<LI><A HREF="000302.html">[Mageia-webteam] [Bug 75] New: Bugzilla adds info about Firefox in each bug report
+</A><A NAME="302">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01297916252-01297930354- -->
+<LI><A HREF="000304.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="304">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01297930731- -->
+<LI><A HREF="000305.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="305">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01297932155- -->
+<LI><A HREF="000307.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="307">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01297932446- -->
+<LI><A HREF="000308.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="308">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01297932779- -->
+<LI><A HREF="000309.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="309">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01297932932- -->
+<LI><A HREF="000310.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="310">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01297939446- -->
+<LI><A HREF="000311.html">[Mageia-webteam] [Bug 75] NEW: Bugzilla adds info about Firefox in each bug report
+</A><A NAME="311">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01298034183- -->
+<LI><A HREF="000333.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="333">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01298035139- -->
+<LI><A HREF="000334.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="334">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01298035762- -->
+<LI><A HREF="000335.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="335">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01298043994- -->
+<LI><A HREF="000337.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="337">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01298055803- -->
+<LI><A HREF="000339.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="339">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01298055973- -->
+<LI><A HREF="000340.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="340">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01297916252-01298060778- -->
+<LI><A HREF="000341.html">[Mageia-webteam] [Bug 75] Bugzilla adds info about Firefox in each bug report
+</A><A NAME="341">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01297930803- -->
+<LI><A HREF="000306.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="306">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01297961162- -->
+<LI><A HREF="000314.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="314">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297961171- -->
+<LI><A HREF="000312.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="312">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297961274- -->
+<LI><A HREF="000313.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="313">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297962875- -->
+<LI><A HREF="000315.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="315">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297962881- -->
+<LI><A HREF="000316.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="316">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297963291- -->
+<LI><A HREF="000317.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="317">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297963295- -->
+<LI><A HREF="000318.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="318">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297963588- -->
+<LI><A HREF="000319.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="319">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297963592- -->
+<LI><A HREF="000320.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="320">&nbsp;</A>
+<I>root
+</I>
+
+<UL>
+<!--1 01297963592-01297968349- -->
+<LI><A HREF="000322.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="322">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+</UL>
+<!--0 01297964100- -->
+<LI><A HREF="000321.html">[Mageia-webteam] test
+</A><A NAME="321">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297972619- -->
+<LI><A HREF="000323.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="323">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297972623- -->
+<LI><A HREF="000324.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="324">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297972629- -->
+<LI><A HREF="000325.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="325">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297972634- -->
+<LI><A HREF="000326.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="326">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297972639- -->
+<LI><A HREF="000327.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="327">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01297972828- -->
+<LI><A HREF="000328.html">[Mageia-webteam] New planet Mageia deployed
+</A><A NAME="328">&nbsp;</A>
+<I>root
+</I>
+
+<!--0 01298015395- -->
+<LI><A HREF="000329.html">[Mageia-webteam] [Bug 92] New: Add your own favicon to bugs.mageia.org
+</A><A NAME="329">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01298015395-01298017493- -->
+<LI><A HREF="000330.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="330">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298015395-01298024236- -->
+<LI><A HREF="000331.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="331">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298015395-01298024565- -->
+<LI><A HREF="000332.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="332">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298015395-01298041689- -->
+<LI><A HREF="000336.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="336">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298015395-01298045240- -->
+<LI><A HREF="000338.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="338">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01298110630- -->
+<LI><A HREF="000342.html">[Mageia-webteam] [Bug 104] New: [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="342">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01298110630-01298110643- -->
+<LI><A HREF="000343.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="343">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298110630-01298113126- -->
+<LI><A HREF="000344.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="344">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298110630-01298116624- -->
+<LI><A HREF="000345.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="345">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01298151749- -->
+<LI><A HREF="000351.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="351">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01298253143- -->
+<LI><A HREF="000352.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="352">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01298253191- -->
+<LI><A HREF="000353.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="353">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01298253235- -->
+<LI><A HREF="000354.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A><A NAME="354">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01298321072- -->
+<LI><A HREF="000355.html">[Mageia-webteam] [Bug 17] Remove unused fields
+</A><A NAME="355">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01298329396- -->
+<LI><A HREF="000356.html">[Mageia-webteam] [Bug 149] New: Vote for bugs at bugzilla
+</A><A NAME="356">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01298329396-01298329695- -->
+<LI><A HREF="000357.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="357">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298329396-01298330343- -->
+<LI><A HREF="000358.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="358">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298329396-01298330991- -->
+<LI><A HREF="000359.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="359">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298329396-01298331035- -->
+<LI><A HREF="000360.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="360">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298329396-01298331052- -->
+<LI><A HREF="000361.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="361">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298329396-01298332914- -->
+<LI><A HREF="000362.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="362">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298329396-01298333096- -->
+<LI><A HREF="000363.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="363">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01298378554- -->
+<LI><A HREF="000365.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="365">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01298378554-01298383696- -->
+<LI><A HREF="000366.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="366">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--2 01298378554-01298383696-01298387367- -->
+<LI><A HREF="000369.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="369">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--3 01298378554-01298383696-01298387367-01298407288- -->
+<LI><A HREF="000370.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="370">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01298378554-01298383696-01298387367-01298407288-01298452010- -->
+<LI><A HREF="000371.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="371">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01298378554-01298383696-01298387367-01298407288-01298452010-01298452889- -->
+<LI><A HREF="000372.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="372">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01298378554-01298383696-01298387367-01298407288-01298452010-01298452889-01298458490- -->
+<LI><A HREF="000373.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="373">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01298378554-01298383696-01298387367-01298407288-01298452010-01298452889-01298458490-01298459032- -->
+<LI><A HREF="000374.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="374">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01298378554-01298383696-01298387367-01298407288-01298452010-01298452889-01298458490-01298459032-01298463133- -->
+<LI><A HREF="000375.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="375">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01298378554-01298383696-01298387367-01298407288-01298452010-01298452889-01298458490-01298459032-01298463133-01298465797- -->
+<LI><A HREF="000376.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="376">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01298378554-01298383696-01298387367-01298407288-01298452010-01298452889-01298458490-01298459032-01298463133-01298465797-01298482964- -->
+<LI><A HREF="000379.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="379">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+</UL>
+</UL>
+<!--1 01298378554-01298475975- -->
+<LI><A HREF="000377.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="377">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01298378554-01298475975-01298757612- -->
+<LI><A HREF="000382.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="382">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+</UL>
+<!--1 01298378554-01298481375- -->
+<LI><A HREF="000378.html">[Mageia-webteam] Forum installation (almost) complete
+</A><A NAME="378">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01298383841- -->
+<LI><A HREF="000367.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A><A NAME="367">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01298385460- -->
+<LI><A HREF="000368.html">[Mageia-webteam] Reminder - Webteam meeting tomorrow, Feb 22nd, 14.00 UTC
+</A><A NAME="368">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01298558727- -->
+<LI><A HREF="000380.html">[Mageia-webteam] [Bug 166] New: add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="380">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01298558727-01298845196- -->
+<LI><A HREF="000384.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="384">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01298558727-01298845494- -->
+<LI><A HREF="000385.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
+</A><A NAME="385">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01298761202- -->
+<LI><A HREF="000383.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="383">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01298847602- -->
+<LI><A HREF="000386.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="386">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Feb 28 00:00:02 CET 2011</i><br>
+ <b>Archived on:</b> <i>Mon Feb 28 00:00:08 CET 2011</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-January.txt.gz b/zarb-ml/mageia-webteam/2011-January.txt.gz
new file mode 100644
index 000000000..70e1562b4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-January/000083.html b/zarb-ml/mageia-webteam/2011-January/000083.html
new file mode 100644
index 000000000..73b3e15a1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000083.html
@@ -0,0 +1,114 @@
+<!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=%3C4D1F4AE0.9050109%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+
+ <LINK REL="Next" HREF="000084.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Need help for mageia-app-db's licence</H1>
+ <B>andre999</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=%3C4D1F4AE0.9050109%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Need help for mageia-app-db's licence">andr55 at laposte.net
+ </A><BR>
+ <I>Sat Jan 1 16:40:16 CET 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="000084.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#83">[ date ]</a>
+ <a href="thread.html#83">[ thread ]</a>
+ <a href="subject.html#83">[ subject ]</a>
+ <a href="author.html#83">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Samuel Verschelde a &#233;crit :
+&gt;<i>
+</I>&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> In the process of releasing mageia-app-db 0.1, we have to fix licensing issues.
+</I>&gt;<i> Could someone help us on that ?
+</I>&gt;<i>
+</I>&gt;<i> I never released free software before, so I'd like to know what to do once the
+</I>&gt;<i> licence has been chosen :
+</I>&gt;<i> - create a simple LICENSE file at the root of the project ?
+</I>&gt;<i> - add a notice in every source file ? (there are lots of them, many
+</I>&gt;<i> automatically generated by the framework mechanisms)
+</I>&gt;<i> - other ?
+</I>&gt;<i>
+</I>&gt;<i> Among the possible licences, there's Gnu Affero GPLv3, which forces anyone
+</I>&gt;<i> running the software (or one of its derivatives) on a server to make the
+</I>&gt;<i> source code available to users. However, I don't know if this license is
+</I>&gt;<i> compatible with our XML-RPC querying sophie.zarb.org when needed (does the Gnu
+</I>&gt;<i> Affero GPLv3 imply that we must also give sophie's source code to users (sophie
+</I>&gt;<i> being a separate project from Olivier Thauvin), and does it imply that sophie
+</I>&gt;<i> should be under the Gnu Affero GPLv3 licence ? I think not but I'd like to be
+</I>&gt;<i> sure.
+</I>&gt;<i>
+</I>&gt;<i> Regards
+</I>&gt;<i>
+</I>&gt;<i> Samuel Verschelde
+</I>
+Hi Samuel
+
+I'm no expert, but reading the Affero GPLv3 licence, it looks like it is
+what you're looking for.
+
+In section (1) Source Code, it requires releasing &quot;Corresponding
+Source&quot;, defined as :
+----
+The &quot;Corresponding Source&quot; for a work in object code form means all the
+source code needed to generate, install, and (for an executable work)
+run the object code and to modify the work, including scripts to control
+those activities. However, it does not include the work's System
+Libraries, or general-purpose tools or generally available free programs
+which are used unmodified in performing those activities but which are
+not part of the work. For example, Corresponding Source includes
+interface definition files associated with source files for the work,
+and the source code for shared libraries and dynamically linked
+subprograms that the work is specifically designed to require, such as
+by intimate data communication or control flow between those subprograms
+and other parts of the work.
+----
+So it wouldn't require you to release sophie source code, since you are
+only using it unmodified. It is not part of mageia-app-db.
+
+Under the heading &quot;How to Apply These Terms to Your New Programs&quot;,
+ it suggests attaching a brief copyright notice at the beginning of
+each source file, with a pointer to where the full notice is found.
+Also adding info on how to contact you by &quot;electronic and paper mail&quot;
+
+See <A HREF="http://www.gnu.org/licenses/agpl.html">http://www.gnu.org/licenses/agpl.html</A>
+
+Regards
+Andr&#233;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="000084.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#83">[ date ]</a>
+ <a href="thread.html#83">[ thread ]</a>
+ <a href="subject.html#83">[ subject ]</a>
+ <a href="author.html#83">[ 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-January/000084.html b/zarb-ml/mageia-webteam/2011-January/000084.html
new file mode 100644
index 000000000..f3a8a4083
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000084.html
@@ -0,0 +1,125 @@
+<!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=%3C201101021307.00283.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="000083.html">
+ <LINK REL="Next" HREF="000085.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=%3C201101021307.00283.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Need help for mageia-app-db's licence">stormi at laposte.net
+ </A><BR>
+ <I>Sun Jan 2 13:07:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000083.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI>Next message: <A HREF="000085.html">[Mageia-webteam] Designing mageia-app-db's homepage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#84">[ date ]</a>
+ <a href="thread.html#84">[ thread ]</a>
+ <a href="subject.html#84">[ subject ]</a>
+ <a href="author.html#84">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le samedi 1 janvier 2011 16:40:16, andre999 a &#233;crit :
+&gt;<i> Samuel Verschelde a &#233;crit :
+</I>&gt;<i> &gt; Hi,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; In the process of releasing mageia-app-db 0.1, we have to fix licensing
+</I>&gt;<i> &gt; issues. Could someone help us on that ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I never released free software before, so I'd like to know what to do
+</I>&gt;<i> &gt; once the licence has been chosen :
+</I>&gt;<i> &gt; - create a simple LICENSE file at the root of the project ?
+</I>&gt;<i> &gt; - add a notice in every source file ? (there are lots of them, many
+</I>&gt;<i> &gt; automatically generated by the framework mechanisms)
+</I>&gt;<i> &gt; - other ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Among the possible licences, there's Gnu Affero GPLv3, which forces
+</I>&gt;<i> &gt; anyone running the software (or one of its derivatives) on a server to
+</I>&gt;<i> &gt; make the source code available to users. However, I don't know if this
+</I>&gt;<i> &gt; license is compatible with our XML-RPC querying sophie.zarb.org when
+</I>&gt;<i> &gt; needed (does the Gnu Affero GPLv3 imply that we must also give sophie's
+</I>&gt;<i> &gt; source code to users (sophie being a separate project from Olivier
+</I>&gt;<i> &gt; Thauvin), and does it imply that sophie should be under the Gnu Affero
+</I>&gt;<i> &gt; GPLv3 licence ? I think not but I'd like to be sure.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Regards
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Samuel Verschelde
+</I>&gt;<i>
+</I>&gt;<i> Hi Samuel
+</I>&gt;<i>
+</I>&gt;<i> I'm no expert, but reading the Affero GPLv3 licence, it looks like it is
+</I>&gt;<i> what you're looking for.
+</I>&gt;<i>
+</I>&gt;<i> In section (1) Source Code, it requires releasing &quot;Corresponding
+</I>&gt;<i> Source&quot;, defined as :
+</I>&gt;<i> ----
+</I>&gt;<i> The &quot;Corresponding Source&quot; for a work in object code form means all the
+</I>&gt;<i> source code needed to generate, install, and (for an executable work)
+</I>&gt;<i> run the object code and to modify the work, including scripts to control
+</I>&gt;<i> those activities. However, it does not include the work's System
+</I>&gt;<i> Libraries, or general-purpose tools or generally available free programs
+</I>&gt;<i> which are used unmodified in performing those activities but which are
+</I>&gt;<i> not part of the work. For example, Corresponding Source includes
+</I>&gt;<i> interface definition files associated with source files for the work,
+</I>&gt;<i> and the source code for shared libraries and dynamically linked
+</I>&gt;<i> subprograms that the work is specifically designed to require, such as
+</I>&gt;<i> by intimate data communication or control flow between those subprograms
+</I>&gt;<i> and other parts of the work.
+</I>&gt;<i> ----
+</I>&gt;<i> So it wouldn't require you to release sophie source code, since you are
+</I>&gt;<i> only using it unmodified. It is not part of mageia-app-db.
+</I>&gt;<i>
+</I>&gt;<i> Under the heading &quot;How to Apply These Terms to Your New Programs&quot;,
+</I>&gt;<i> it suggests attaching a brief copyright notice at the beginning of
+</I>&gt;<i> each source file, with a pointer to where the full notice is found.
+</I>&gt;<i> Also adding info on how to contact you by &quot;electronic and paper mail&quot;
+</I>&gt;<i>
+</I>&gt;<i> See <A HREF="http://www.gnu.org/licenses/agpl.html">http://www.gnu.org/licenses/agpl.html</A>
+</I>&gt;<i>
+</I>&gt;<i> Regards
+</I>&gt;<i> Andr&#233;
+</I>
+Thanks, this is the license we finally chose.
+
+I added a LICENSE file at the project's root. We'll try to add a copyright
+notice at the beginning of most source files.
+
+Regards
+
+Samuel
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000083.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI>Next message: <A HREF="000085.html">[Mageia-webteam] Designing mageia-app-db's homepage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#84">[ date ]</a>
+ <a href="thread.html#84">[ thread ]</a>
+ <a href="subject.html#84">[ subject ]</a>
+ <a href="author.html#84">[ 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-January/000085.html b/zarb-ml/mageia-webteam/2011-January/000085.html
new file mode 100644
index 000000000..879f3749e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000085.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Designing mageia-app-db's homepage
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Designing%20mageia-app-db%27s%20homepage&In-Reply-To=%3C201101021312.54646.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="000084.html">
+ <LINK REL="Next" HREF="000086.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Designing mageia-app-db's homepage</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Designing%20mageia-app-db%27s%20homepage&In-Reply-To=%3C201101021312.54646.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Designing mageia-app-db's homepage">stormi at laposte.net
+ </A><BR>
+ <I>Sun Jan 2 13:12:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000084.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI>Next message: <A HREF="000086.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#85">[ date ]</a>
+ <a href="thread.html#85">[ thread ]</a>
+ <a href="subject.html#85">[ subject ]</a>
+ <a href="author.html#85">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi
+
+If someone is interested, there's a new available task to help mageia-app-db :
+help designing the home page (layout, contents...) :)
+
+I started to write down some ideas in
+<A HREF="http://mageia-app-db.tuxette.fr/projects/mageia-app-db/wiki/Homepage">http://mageia-app-db.tuxette.fr/projects/mageia-app-db/wiki/Homepage</A>
+
+Any contribution is welcome :
+- comments
+- ideas
+- mock-up
+
+Have a nice day !
+
+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="000084.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI>Next message: <A HREF="000086.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#85">[ date ]</a>
+ <a href="thread.html#85">[ thread ]</a>
+ <a href="subject.html#85">[ subject ]</a>
+ <a href="author.html#85">[ 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-January/000086.html b/zarb-ml/mageia-webteam/2011-January/000086.html
new file mode 100644
index 000000000..bad8ef590
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000086.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011 first 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%20first%20meeting&In-Reply-To=%3CAANLkTinWbeEtKDHjqHsP6vjtoEND56QDTmuBJyfjLO%3DG%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="000085.html">
+ <LINK REL="Next" HREF="000088.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011 first meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%20first%20meeting&In-Reply-To=%3CAANLkTinWbeEtKDHjqHsP6vjtoEND56QDTmuBJyfjLO%3DG%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011 first meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 3 11:17:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000085.html">[Mageia-webteam] Designing mageia-app-db's homepage
+</A></li>
+ <LI>Next message: <A HREF="000088.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#86">[ date ]</a>
+ <a href="thread.html#86">[ thread ]</a>
+ <a href="subject.html#86">[ subject ]</a>
+ <a href="author.html#86">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi everyone,
+
+have a great, happy new year 2011! Again, thank you to be part of this
+and to make it happen.
+
+We're going to hold our meeting on coming Wednesday, 6th, at 14:00 UTC
+on <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> as always (please note that we
+hold a doodle-like check for the preferred meeting time, here:
+<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> - feel
+free to add your own, so we can refine later).
+
+So, topics:
+ * past meeting action status - see
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-15-14.52.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-15-14.52.html</A>
+ - transifex
+ - catdap/identity
+ - forum
+ - bugzilla
+ * maintainers db - <A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> (kosmas)
+ * team org, FOSDEM meeting
+ * wishes for a long term roadmap for the web side of things
+ * other?
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000085.html">[Mageia-webteam] Designing mageia-app-db's homepage
+</A></li>
+ <LI>Next message: <A HREF="000088.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#86">[ date ]</a>
+ <a href="thread.html#86">[ thread ]</a>
+ <a href="subject.html#86">[ subject ]</a>
+ <a href="author.html#86">[ 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-January/000087.html b/zarb-ml/mageia-webteam/2011-January/000087.html
new file mode 100644
index 000000000..c02bcf8b3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000087.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Donation pages update &amp; redirection
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Donation%20pages%20update%20%26%20redirection&In-Reply-To=%3CAANLkTinH%2BOSoRWMWRSHJXUzowNB6H3bJNRybLqTABHVr%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="000089.html">
+ <LINK REL="Next" HREF="000090.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Donation pages update &amp; redirection</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Donation%20pages%20update%20%26%20redirection&In-Reply-To=%3CAANLkTinH%2BOSoRWMWRSHJXUzowNB6H3bJNRybLqTABHVr%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Donation pages update &amp; redirection">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 3 21:00:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000089.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI>Next message: <A HREF="000090.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#87">[ date ]</a>
+ <a href="thread.html#87">[ thread ]</a>
+ <a href="subject.html#87">[ subject ]</a>
+ <a href="author.html#87">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+as some noticed it after my previous message, we moved the donation
+pages from donate.mageia.org/* to www.mageia.org/*/donate.
+
+The rationale is that:
+ - Mageia got its own bank &amp; paypal accounts
+ - we wanted to move it under www.mageia.org
+
+Things have been made a little in a hurry just before the holidays,
+and we benefited from several translations already (not all). We still
+need to port the donation reporting script (amount, donators) from
+Paypal notifications (we have a copy of the previous code).
+
+In the meantime, we should have done this sooner; we have updated all
+mageia.org links to not to point to donate.mageia.org anymore, but...
+there still may be some somewhere. So we're going to move/update DNS
+records for donate.mageia.org and rewrite all URLs to new pages. It's
+a matter of a few hours.
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000089.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI>Next message: <A HREF="000090.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#87">[ date ]</a>
+ <a href="thread.html#87">[ thread ]</a>
+ <a href="subject.html#87">[ subject ]</a>
+ <a href="author.html#87">[ 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-January/000088.html b/zarb-ml/mageia-webteam/2011-January/000088.html
new file mode 100644
index 000000000..ef9fac84c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000088.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011 first 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%20first%20meeting&In-Reply-To=%3CAANLkTi%3D9N_EeoTrSh4hxVpARBfsTUosZUUABvm65R%3DCt%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="000086.html">
+ <LINK REL="Next" HREF="000089.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011 first meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%20first%20meeting&In-Reply-To=%3CAANLkTi%3D9N_EeoTrSh4hxVpARBfsTUosZUUABvm65R%3DCt%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011 first meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 5 12:25:52 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000086.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI>Next message: <A HREF="000089.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#88">[ date ]</a>
+ <a href="thread.html#88">[ thread ]</a>
+ <a href="subject.html#88">[ subject ]</a>
+ <a href="author.html#88">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, Jan 3, 2011 at 11:17, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> Hi everyone,
+</I>&gt;<i>
+</I>&gt;<i> have a great, happy new year 2011! Again, thank you to be part of this
+</I>&gt;<i> and to make it happen.
+</I>&gt;<i>
+</I>&gt;<i> We're going to hold our meeting on coming Wednesday, 6th, at 14:00 UTC
+</I>&gt;<i> on <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> as always (please note that we
+</I>&gt;<i> hold a doodle-like check for the preferred meeting time, here:
+</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> - feel
+</I>&gt;<i> free to add your own, so we can refine later).
+</I>&gt;<i>
+</I>&gt;<i> So, topics:
+</I>&gt;<i> &#160;* past meeting action status - see
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-15-14.52.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-15-14.52.html</A>
+</I>&gt;<i> &#160; &#160;- transifex
+</I>&gt;<i> &#160; &#160;- catdap/identity
+</I>&gt;<i> &#160; &#160;- forum
+</I>&gt;<i> &#160; &#160;- bugzilla
+</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> (kosmas)
+</I>&gt;<i> &#160;* team org, FOSDEM meeting
+</I>&gt;<i> &#160;* wishes for a long term roadmap for the web side of things
+</I>&gt;<i> &#160;* other?
+</I>
+Adding:
+ * calendaring solution;
+ - caldav servers (found DAViCal, <A HREF="http://www.davical.org/">http://www.davical.org/</A> ;
+Radicale, <A HREF="http://www.radicale.org/">http://www.radicale.org/</A> ),
+ - clients (web facing and others),
+ - boths?
+ - <A HREF="http://www.agendadulibre.org/">http://www.agendadulibre.org/</A> w/
+<A HREF="http://www.agendadulibre.org/svn/">http://www.agendadulibre.org/svn/</A> (specific, PHP-based)
+ - <A HREF="http://www.agendadulibre.qc.ca/">http://www.agendadulibre.qc.ca/</A> w/
+<A HREF="http://gitorious.org/agenda-du-libre">http://gitorious.org/agenda-du-libre</A> inspired from above, but
+reimplemented in Python/Django
+ - <A HREF="http://www.php-calendar.com/">http://www.php-calendar.com/</A> (generic)
+ - <A HREF="http://phpicalendar.net/">http://phpicalendar.net/</A> (generic)
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000086.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI>Next message: <A HREF="000089.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#88">[ date ]</a>
+ <a href="thread.html#88">[ thread ]</a>
+ <a href="subject.html#88">[ subject ]</a>
+ <a href="author.html#88">[ 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-January/000089.html b/zarb-ml/mageia-webteam/2011-January/000089.html
new file mode 100644
index 000000000..fcbdc5afb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000089.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011 first 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%20first%20meeting&In-Reply-To=%3CAANLkTimhg6czT6quhGFELKDC9rPFnGZipGSg-4Ybyqoq%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="000088.html">
+ <LINK REL="Next" HREF="000087.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011 first meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%20first%20meeting&In-Reply-To=%3CAANLkTimhg6czT6quhGFELKDC9rPFnGZipGSg-4Ybyqoq%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011 first meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 5 16:26:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000088.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI>Next message: <A HREF="000087.html">[Mageia-webteam] Donation pages update &amp; redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#89">[ date ]</a>
+ <a href="thread.html#89">[ thread ]</a>
+ <a href="subject.html#89">[ subject ]</a>
+ <a href="author.html#89">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+meeting notes &amp; log are here:
+ * notes: <A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-05-14.07.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-05-14.07.html</A>
+ * log: <A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-05-14.07.log.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-05-14.07.log.html</A>
+
+Cheers,
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000088.html">[Mageia-webteam] 2011 first meeting
+</A></li>
+ <LI>Next message: <A HREF="000087.html">[Mageia-webteam] Donation pages update &amp; redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#89">[ date ]</a>
+ <a href="thread.html#89">[ thread ]</a>
+ <a href="subject.html#89">[ subject ]</a>
+ <a href="author.html#89">[ 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-January/000090.html b/zarb-ml/mageia-webteam/2011-January/000090.html
new file mode 100644
index 000000000..36fb30da9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000090.html
@@ -0,0 +1,82 @@
+<!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=%3CAANLkTikJdwNT9o2vA6sMR%3DmNSBUujQNRL6tWxbmFw%2ByA%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="000087.html">
+ <LINK REL="Next" HREF="000091.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=%3CAANLkTikJdwNT9o2vA6sMR%3DmNSBUujQNRL6tWxbmFw%2ByA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Webteam Meeting, Dec 01 2010">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 5 18:11:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000087.html">[Mageia-webteam] Donation pages update &amp; redirection
+</A></li>
+ <LI>Next message: <A HREF="000091.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#90">[ date ]</a>
+ <a href="thread.html#90">[ thread ]</a>
+ <a href="subject.html#90">[ subject ]</a>
+ <a href="author.html#90">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Dec 28, 2010 at 19:03, 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 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;&gt;<i> That's ok and that was done by all three meetings till now. My point was: We
+</I>&gt;&gt;&gt;<i> have 32 people registeres in the wiki and how many did say sth.?
+</I>&gt;<i>
+</I>&gt;<i> There obviously is a delta between people that registered on the wiki
+</I>&gt;<i> at first, and people that actually stand up (or that are just able to
+</I>&gt;<i> keep up through the IRC at these times).
+</I>&gt;<i>
+</I>&gt;<i> Not all 32 on the wiki registered on the mageia-webteam ml (and some
+</I>&gt;<i> are on the ml and not in the wiki list); we can notify them once more
+</I>&gt;<i> on January and then clean up the list I guess?
+</I>
+I just notified people that were in the wiki list and not yet
+subscribed to this list (about 20 I think). I will clean up the list
+later and change the contact/join instructions.
+
+Note that there are already 33 subscribers to the list.
+
+&gt;<i> Anyway, what's is really important is that we have enough people
+</I>&gt;<i> showing up and building/releasing things within the team. We're
+</I>&gt;<i> reaching that point I believe.
+</I>
+Cheers,
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000087.html">[Mageia-webteam] Donation pages update &amp; redirection
+</A></li>
+ <LI>Next message: <A HREF="000091.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#90">[ date ]</a>
+ <a href="thread.html#90">[ thread ]</a>
+ <a href="subject.html#90">[ subject ]</a>
+ <a href="author.html#90">[ 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-January/000091.html b/zarb-ml/mageia-webteam/2011-January/000091.html
new file mode 100644
index 000000000..dd285495d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000091.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Catdap trunk instance, and update
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Catdap%20trunk%20instance%2C%20and%20update&In-Reply-To=%3C1294268872.29097.64.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000090.html">
+ <LINK REL="Next" HREF="000092.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Catdap trunk instance, and update</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Catdap%20trunk%20instance%2C%20and%20update&In-Reply-To=%3C1294268872.29097.64.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Catdap trunk instance, and update">misc at zarb.org
+ </A><BR>
+ <I>Thu Jan 6 00:07:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000090.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000092.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#91">[ date ]</a>
+ <a href="thread.html#91">[ thread ]</a>
+ <a href="subject.html#91">[ subject ]</a>
+ <a href="author.html#91">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+some people asked us^W to have a trunk installation of catdap, and so
+here it is :
+<A HREF="https://identity-trunk.mageia.org/">https://identity-trunk.mageia.org/</A>
+
+Updated every 15 minutes, from trunk.
+
+yes, it look nicer than <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A> . I suspect the
+merge didn't went as well as I thought.
+
+I plan to announce it to the unsuspecting world once trunk is fully
+merged in branch/live and then ask people to register to it for sympa
+ml, and tx, and so on, unless someone give a raeson to not do it.
+
+There is several forms to enhance ( so far, i only work on login and
+register one, and I would get ride of captcha on the register one if
+possible ), I followed mainly this guide to refresh my memory
+<A HREF="http://www.lukew.com/resources/articles/WebForms_LukeW.pdf">http://www.lukew.com/resources/articles/WebForms_LukeW.pdf</A> , but not
+everything is done.
+
+For example, the register page could be more usable if the title was not
+so huge ( IMHO ) ( and getting ride of the captcha would also help, it
+depend on what we want to prevent, a simple mathematical question would
+be better ).
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000090.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000092.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#91">[ date ]</a>
+ <a href="thread.html#91">[ thread ]</a>
+ <a href="subject.html#91">[ subject ]</a>
+ <a href="author.html#91">[ 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-January/000092.html b/zarb-ml/mageia-webteam/2011-January/000092.html
new file mode 100644
index 000000000..1f3688676
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000092.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Catdap trunk instance, and update
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Catdap%20trunk%20instance%2C%20and%20update&In-Reply-To=%3CAANLkTi%3D_MQ8JpWuFz1pEWbvvwpArpMOSQZE%2BJL6ZLjt1%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="000091.html">
+ <LINK REL="Next" HREF="000095.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Catdap trunk instance, and update</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Catdap%20trunk%20instance%2C%20and%20update&In-Reply-To=%3CAANLkTi%3D_MQ8JpWuFz1pEWbvvwpArpMOSQZE%2BJL6ZLjt1%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Catdap trunk instance, and update">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Jan 6 09:45:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000091.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI>Next message: <A HREF="000095.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#92">[ date ]</a>
+ <a href="thread.html#92">[ thread ]</a>
+ <a href="subject.html#92">[ subject ]</a>
+ <a href="author.html#92">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jan 6, 2011 at 00:07, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> some people asked us^W to have a trunk installation of catdap, and so
+</I>&gt;<i> here it is :
+</I>&gt;<i> <A HREF="https://identity-trunk.mageia.org/">https://identity-trunk.mageia.org/</A>
+</I>&gt;<i>
+</I>&gt;<i> Updated every 15 minutes, from trunk.
+</I>&gt;<i>
+</I>&gt;<i> yes, it look nicer than <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A> . I suspect the
+</I>&gt;<i> merge didn't went as well as I thought.
+</I>
+I did the merge (from live to trunk, several weeks ago) but I believe
+trunk evolved on its afterwise.
+
+So probably yes, no merge has been done from trunk to live afterwise.
+
+&gt;<i> For example, the register page could be more usable if the title was not
+</I>&gt;<i> so huge ( IMHO ) ( and getting ride of the captcha would also help, it
+</I>&gt;<i> depend on what we want to prevent, a simple mathematical question would
+</I>&gt;<i> be better ).
+</I>
+Yep.
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000091.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI>Next message: <A HREF="000095.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#92">[ date ]</a>
+ <a href="thread.html#92">[ thread ]</a>
+ <a href="subject.html#92">[ subject ]</a>
+ <a href="author.html#92">[ 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-January/000093.html b/zarb-ml/mageia-webteam/2011-January/000093.html
new file mode 100644
index 000000000..5f9c9d140
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000093.html
@@ -0,0 +1,121 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam peers, bootstrapping
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTimKFwPkb5ys%3DdEP5JYu06xhVE8nBFgZFM8JNDMV%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="000095.html">
+ <LINK REL="Next" HREF="000094.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam peers, bootstrapping</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTimKFwPkb5ys%3DdEP5JYu06xhVE8nBFgZFM8JNDMV%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Webteam peers, bootstrapping">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Jan 6 12:09:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000095.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI>Next message: <A HREF="000094.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#93">[ date ]</a>
+ <a href="thread.html#93">[ thread ]</a>
+ <a href="subject.html#93">[ subject ]</a>
+ <a href="author.html#93">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+we need to bootstrap the team organisation, so we can know especially
+who is _in_ the team, can elect/be elected team
+representative/leader/deputy leader, and vote for team formal
+decisions (as well as having a base to dispatch some credentials, such
+as having the production commit button, for instance). And start to
+think about the mentoring process.
+
+As suggested by misc during yesterday's meeting (notes:
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-05-14.07.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-05-14.07.html</A>
+), I will, as &quot;first fellow&quot;, name first peers. Here they are:
+
+ * Oliver Burger (obgr): wiki, calendar, catdap
+ * Kosmas Chatzimichalis (kosmas): maint-db
+ * Toni Korpela (TMKCodes): secretary
+ * Damien Lallement (damsweb): infra, blog, website
+ * Buchan Milne (blingme): catdap
+ * Olivier Thauvin (nanar): epoll
+ * Samuel Verschelde (stormi): mageia-app-db
+ * Pascal Villarem (ma&#226;t): forum
+ * Rapha&#235;l Jadot (ash): forum
+
+Of course, as usual, I may have forgotten someone. So, the new peers
+are welcome to suggest others if any.
+
+I left some people out, who are especially active in other teams
+(sysadm, marketing, artwork, packaging), follow the web team (and
+that's good) but I'm not sure it's relevant to have a decisive voice
+in the team's decisions; open for discussion.
+
+(what is below is a draft)
+
+What do peers have that non-peers do not?
+ * they have a decisive voice in team decisions (they vote). Non-peers
+have a consultative voice.
+ * any peer can be elected representative to the Council, leader or
+deputy leader.
+
+After this first designation process is done, how to become a team peer?
+ * you must demonstrate your constructive contributions to the team
+work (patches, development, design insights, other); and your
+understanding of the project's code of conduct
+(<A HREF="http://mageia.org/en/about/code-of-conduct/">http://mageia.org/en/about/code-of-conduct/</A> );
+ * you must find a mentor (that is, an existing peer that recommends
+you and mentors you for your first steps in the team); just ask;
+ * your mentor proposes you to the team peers; and explain why (during
+a meeting or on the list); should be short/quick/clear;
+ * unless a significant number (?) of peers refuse, you're in.
+
+This process can take from a few hours to a few months, depending on
+you (already known, obvious contributions; or fresh new comer, no
+active work yet). Of course, one can start contributing in many ways
+before having a mentor and before applying.
+
+What is mentoring here? explaining/demonstrating the whole Web setup,
+a specific application, conventions, team processes. Validating the
+apprentice work and that s/he can be a peer.
+
+Here we are.
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000095.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI>Next message: <A HREF="000094.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#93">[ date ]</a>
+ <a href="thread.html#93">[ thread ]</a>
+ <a href="subject.html#93">[ subject ]</a>
+ <a href="author.html#93">[ 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-January/000094.html b/zarb-ml/mageia-webteam/2011-January/000094.html
new file mode 100644
index 000000000..589d08971
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000094.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam peers, bootstrapping
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3C1294316373.3329.3.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000093.html">
+ <LINK REL="Next" HREF="000096.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam peers, bootstrapping</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3C1294316373.3329.3.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Webteam peers, bootstrapping">misc at zarb.org
+ </A><BR>
+ <I>Thu Jan 6 13:19:33 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000093.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000096.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#94">[ date ]</a>
+ <a href="thread.html#94">[ thread ]</a>
+ <a href="subject.html#94">[ subject ]</a>
+ <a href="author.html#94">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 06 janvier 2011 &#224; 12:09 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> Hi there,
+</I>
+&gt;<i> (what is below is a draft)
+</I>&gt;<i>
+</I>&gt;<i> What do peers have that non-peers do not?
+</I>&gt;<i> * they have a decisive voice in team decisions (they vote). Non-peers
+</I>&gt;<i> have a consultative voice.
+</I>&gt;<i> * any peer can be elected representative to the Council, leader or
+</I>&gt;<i> deputy leader.
+</I>
+How are access to $VCS will be handled ?
+
+The possibility of having access to server to either read logs or run
+some limited commands was also asked, how would it articulate with this
+scheme ?
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000093.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000096.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#94">[ date ]</a>
+ <a href="thread.html#94">[ thread ]</a>
+ <a href="subject.html#94">[ subject ]</a>
+ <a href="author.html#94">[ 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-January/000095.html b/zarb-ml/mageia-webteam/2011-January/000095.html
new file mode 100644
index 000000000..5a7f01823
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000095.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Catdap trunk instance, and update
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Catdap%20trunk%20instance%2C%20and%20update&In-Reply-To=%3C1294318127.3329.9.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000092.html">
+ <LINK REL="Next" HREF="000093.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Catdap trunk instance, and update</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Catdap%20trunk%20instance%2C%20and%20update&In-Reply-To=%3C1294318127.3329.9.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Catdap trunk instance, and update">misc at zarb.org
+ </A><BR>
+ <I>Thu Jan 6 13:48:47 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000092.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI>Next message: <A HREF="000093.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#95">[ date ]</a>
+ <a href="thread.html#95">[ thread ]</a>
+ <a href="subject.html#95">[ subject ]</a>
+ <a href="author.html#95">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 06 janvier 2011 &#224; 09:45 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> On Thu, Jan 6, 2011 at 00:07, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt; some people asked us^W to have a trunk installation of catdap, and so
+</I>&gt;<i> &gt; here it is :
+</I>&gt;<i> &gt; <A HREF="https://identity-trunk.mageia.org/">https://identity-trunk.mageia.org/</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Updated every 15 minutes, from trunk.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; yes, it look nicer than <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A> . I suspect the
+</I>&gt;<i> &gt; merge didn't went as well as I thought.
+</I>&gt;<i>
+</I>&gt;<i> I did the merge (from live to trunk, several weeks ago) but I believe
+</I>&gt;<i> trunk evolved on its afterwise.
+</I>&gt;<i>
+</I>&gt;<i> So probably yes, no merge has been done from trunk to live afterwise.
+</I>
+I did one yesterday see commit 212 and 211, without much success
+despites reading the doc and using svn since years ( granted, i never do
+merge ).
+
+So I will fix it by hand, or do it with git-svn, whatever.
+
+--
+Michael Scherer
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000092.html">[Mageia-webteam] Catdap trunk instance, and update
+</A></li>
+ <LI>Next message: <A HREF="000093.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#95">[ date ]</a>
+ <a href="thread.html#95">[ thread ]</a>
+ <a href="subject.html#95">[ subject ]</a>
+ <a href="author.html#95">[ 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-January/000096.html b/zarb-ml/mageia-webteam/2011-January/000096.html
new file mode 100644
index 000000000..15f1682d8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000096.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam peers, bootstrapping
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTi%3DpW-CA%3D171xaOZQbEr0Rbzw97Bq2ru%2Bc%3DMo_jG%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="000094.html">
+ <LINK REL="Next" HREF="000097.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam peers, bootstrapping</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTi%3DpW-CA%3D171xaOZQbEr0Rbzw97Bq2ru%2Bc%3DMo_jG%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Webteam peers, bootstrapping">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Jan 6 14:27:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000094.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000097.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#96">[ date ]</a>
+ <a href="thread.html#96">[ thread ]</a>
+ <a href="subject.html#96">[ subject ]</a>
+ <a href="author.html#96">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jan 6, 2011 at 13:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Le jeudi 06 janvier 2011 &#224; 12:09 +0100, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i> What do peers have that non-peers do not?
+</I>&gt;&gt;<i> [...]
+</I>&gt;<i> How are access to $VCS will be handled ?
+</I>&gt;<i>
+</I>&gt;<i> The possibility of having access to server to either read logs or run
+</I>&gt;<i> some limited commands was also asked, how would it articulate with this
+</I>&gt;<i> scheme ?
+</I>
+I had written a &#167; about it but thought it was too early here. Anyway,
+here are my thoughts:
+
+ * VCSes:
+ - read access for everyone (peers &amp; non-peers);
+ - write access for:
+ - webmasters (specific role, see below)
+ - app manager, who should in turn be able to provide a write
+access to other peers (developers), on demand? if that's possible
+ - or for all peers, with each developer/app manager having a
+careful look at what happens.
+ - or maybe it can be app-specific (depending on the app-criticity)
+ - of course, something making push/merge requests possible could
+help (writable only by manager+webmasters, leaving everyone else push
+changes to be merged after review)
+
+ * server logs:
+ - read access to webmasters
+ - some limited commands? what type? rsync/svn/git types?
+
+ * server deployment:
+ - staging from a branch available to all peers
+ - production push from staging available to webmasters only
+
+Webmasters are necessarily peers; they do master the whole websites,
+deploy into production with the assistance of app developers (in
+short, with sysadm, they are the ones having the production-push
+button and the ability to check on logs). Of course, this requires
+webmasters &amp; sysadm to go along well. So sysadm would have at least a
+consultative say on who can become a webmaster.
+
+At this time, this role is managed by (non-sysadm people): me and
+damsweb for blog/www (editorial stuff), I believe all the rest is
+pushed by sysadm at this time.
+
+Advice?
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000094.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000097.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#96">[ date ]</a>
+ <a href="thread.html#96">[ thread ]</a>
+ <a href="subject.html#96">[ subject ]</a>
+ <a href="author.html#96">[ 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-January/000097.html b/zarb-ml/mageia-webteam/2011-January/000097.html
new file mode 100644
index 000000000..6ac753f0b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000097.html
@@ -0,0 +1,123 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam peers, bootstrapping
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3C4D25D0E9.3060704%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000096.html">
+ <LINK REL="Next" HREF="000099.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam peers, bootstrapping</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3C4D25D0E9.3060704%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Webteam peers, bootstrapping">maat-ml at vilarem.net
+ </A><BR>
+ <I>Thu Jan 6 15:25:45 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000096.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000099.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#97">[ date ]</a>
+ <a href="thread.html#97">[ thread ]</a>
+ <a href="subject.html#97">[ subject ]</a>
+ <a href="author.html#97">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 06/01/2011 14:27, Romain d'Alverny a &#233;crit :
+&gt;<i> On Thu, Jan 6, 2011 at 13:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;&gt;<i> Le jeudi 06 janvier 2011 &#224; 12:09 +0100, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;&gt;<i> What do peers have that non-peers do not?
+</I>&gt;&gt;&gt;<i> [...]
+</I>&gt;&gt;<i> How are access to $VCS will be handled ?
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> The possibility of having access to server to either read logs or run
+</I>&gt;&gt;<i> some limited commands was also asked, how would it articulate with this
+</I>&gt;&gt;<i> scheme ?
+</I>&gt;<i> I had written a &#167; about it but thought it was too early here. Anyway,
+</I>&gt;<i> here are my thoughts:
+</I>&gt;<i>
+</I>&gt;<i> * VCSes:
+</I>&gt;<i> - read access for everyone (peers &amp; non-peers);
+</I>&gt;<i> - write access for:
+</I>&gt;<i> - webmasters (specific role, see below)
+</I>&gt;<i> - app manager, who should in turn be able to provide a write
+</I>&gt;<i> access to other peers (developers), on demand? if that's possible
+</I>&gt;<i> - or for all peers, with each developer/app manager having a
+</I>&gt;<i> careful look at what happens.
+</I>Indeed integration and merging need to be controlled by a restricted number of people
+
+but we could also provide branches or repos with write access to developpers (subversions sub-repos are perfect for that unless we decide to use things like git or mercurial)
+
+but if i'm not mitaken there is nothing available offering such a fine grained access control :-/
+
+&gt;<i> - or maybe it can be app-specific (depending on the app-criticity)
+</I>&gt;<i> - of course, something making push/merge requests possible could
+</I>&gt;<i> help (writable only by manager+webmasters, leaving everyone else push
+</I>&gt;<i> changes to be merged after review)
+</I>&gt;<i>
+</I>Have we designed the standard lifecycles for patches and the standard merge/qualification processes ?
+&gt;<i> * server logs:
+</I>&gt;<i> - read access to webmasters
+</I>&gt;<i> - some limited commands? what type? rsync/svn/git types?
+</I>&gt;<i>
+</I>for example : forums we'll be deploying forums versions with git
+&gt;<i> * server deployment:
+</I>&gt;<i> - staging from a branch available to all peers
+</I>??
+&gt;<i> - production push from staging available to webmasters only
+</I>ok
+&gt;<i> Webmasters are necessarily peers; they do master the whole websites,
+</I>&gt;<i> deploy into production with the assistance of app developers (in
+</I>&gt;<i> short, with sysadm, they are the ones having the production-push
+</I>&gt;<i> button and the ability to check on logs). Of course, this requires
+</I>&gt;<i> webmasters &amp; sysadm to go along well.
+</I>yup
+&gt;<i> So sysadm would have at least a
+</I>&gt;<i> consultative say on who can become a webmaster.
+</I>&gt;<i>
+</I>agreed
+&gt;<i> At this time, this role is managed by (non-sysadm people): me and
+</I>&gt;<i> damsweb for blog/www (editorial stuff), I believe all the rest is
+</I>&gt;<i> pushed by sysadm at this time.
+</I>&gt;<i>
+</I>&gt;<i> Advice?
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>OK with the schema but i wonder how we'll manage ACL part without pain :-/
+
+Ma&#226;t
+
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000096.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000099.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#97">[ date ]</a>
+ <a href="thread.html#97">[ thread ]</a>
+ <a href="subject.html#97">[ subject ]</a>
+ <a href="author.html#97">[ 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-January/000098.html b/zarb-ml/mageia-webteam/2011-January/000098.html
new file mode 100644
index 000000000..8260a794b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000098.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam peers, bootstrapping
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3C1294325052.3329.47.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000105.html">
+ <LINK REL="Next" HREF="000100.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam peers, bootstrapping</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3C1294325052.3329.47.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Webteam peers, bootstrapping">misc at zarb.org
+ </A><BR>
+ <I>Thu Jan 6 15:44:12 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000105.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000100.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#98">[ date ]</a>
+ <a href="thread.html#98">[ thread ]</a>
+ <a href="subject.html#98">[ subject ]</a>
+ <a href="author.html#98">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 06 janvier 2011 &#224; 14:27 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> On Thu, Jan 6, 2011 at 13:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt; Le jeudi 06 janvier 2011 &#224; 12:09 +0100, Romain d'Alverny a &#233;crit :
+</I>&gt;<i> &gt;&gt; What do peers have that non-peers do not?
+</I>&gt;<i> &gt;&gt; [...]
+</I>&gt;<i> &gt; How are access to $VCS will be handled ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; The possibility of having access to server to either read logs or run
+</I>&gt;<i> &gt; some limited commands was also asked, how would it articulate with this
+</I>&gt;<i> &gt; scheme ?
+</I>&gt;<i>
+</I>&gt;<i> I had written a &#167; about it but thought it was too early here. Anyway,
+</I>&gt;<i> here are my thoughts:
+</I>&gt;<i>
+</I>&gt;<i> * VCSes:
+</I>&gt;<i> - read access for everyone (peers &amp; non-peers);
+</I>the easy part
+
+&gt;<i> - write access for:
+</I>&gt;<i> - webmasters (specific role, see below)
+</I>so we need a group in ldap for that, i guess ?
+
+&gt;<i> - app manager, who should in turn be able to provide a write
+</I>&gt;<i> access to other peers (developers), on demand? if that's possible
+</I>
+everything is possible, but IMHO, question is &quot;wouldn't it be better to
+have one single group&quot;.
+
+Historically at Mandriva, once you had commit right, you could commit
+everywhere, and few problem arised from that. Same goes to gnome. I am
+not keen on adding acl everywhere given the increased administrative
+load it create ( for sysadmin as we either have to do it, or write some
+delegation tools, for people who need to request before fixing anything,
+and for app manager who need to approve requests ).
+
+&gt;<i> - or for all peers, with each developer/app manager having a
+</I>&gt;<i> careful look at what happens.
+</I>&gt;<i> - or maybe it can be app-specific (depending on the app-criticity)
+</I>&gt;<i> - of course, something making push/merge requests possible could
+</I>&gt;<i> help (writable only by manager+webmasters, leaving everyone else push
+</I>&gt;<i> changes to be merged after review)
+</I>
+I would let people decide, with a strong emphasis on letting people in
+mga-commiters group by default. In 7 years at mdv, I never seen any
+problem of mis commiting, and I think the potential problem a separation
+would solve do not suffice to justify the cost.
+
+Now, I only speak of a svn centric view and workflow, as for git, it
+could be much more different ( or not ).
+
+For git like all dvcs, we are slightly more free in term of workflow, as
+explained for example here
+<A HREF="http://doc.bazaar.canonical.com/bzr.1.18-html/en/user-guide/bazaar_workflows.html">http://doc.bazaar.canonical.com/bzr.1.18-html/en/user-guide/bazaar_workflows.html</A> .
+
+And so I feel that industrialisation of project hosting ( as we are
+somehow starting to do ) will be detrimental to the freedom of choice,
+and we should agree on a few workflow before starting to deploy too much
+things. ( ie, if we do want to automate thing, and that's one of the
+sysadmin team goal ).
+
+Deploying a simple git repository managed like a svn one would be easy
+and fast. But that would be marginally better than git-svn.
+
+Deploying a full system with workflow delegation is much more difficult,
+but that's what we would want.
+
+So a compromise would be to decide for 1 simple workflow, use for
+everything in the first place, and postpone the deployment of a full
+system to later.
+
+&gt;<i> * server logs:
+</I>&gt;<i> - read access to webmasters
+</I>&gt;<i> - some limited commands? what type? rsync/svn/git types?
+</I>
+Well, limited command could be hard to achieve. I assume that read logs
+is just &quot;set permission properly&quot; ( easy to do ). Limitation of command
+could be done with sudo, but wouldn't change much if we give access to
+shell.
+
+&gt;<i> * server deployment:
+</I>&gt;<i> - staging from a branch available to all peers
+</I>&gt;<i> - production push from staging available to webmasters only
+</I>
+We can :
+- use sudo + script + ldap group
+- use $VCS based tags/branch + acl ( potentially based on ldap group
+again )
+
+&gt;<i> Webmasters are necessarily peers; they do master the whole websites,
+</I>&gt;<i> deploy into production with the assistance of app developers (in
+</I>&gt;<i> short, with sysadm, they are the ones having the production-push
+</I>&gt;<i> button and the ability to check on logs). Of course, this requires
+</I>&gt;<i> webmasters &amp; sysadm to go along well. So sysadm would have at least a
+</I>&gt;<i> consultative say on who can become a webmaster.
+</I>&gt;<i>
+</I>&gt;<i> At this time, this role is managed by (non-sysadm people): me and
+</I>&gt;<i> damsweb for blog/www (editorial stuff), I believe all the rest is
+</I>&gt;<i> pushed by sysadm at this time.
+</I>
+dams is sysadmin ( and I am picky, but sysadmin is the name of the team
+in ldap, I do not know why people say sysadm everywhere, likely because
+of the name of the list and irc channel :/ ).
+
+So to summarize :
+- external people
+- webteam members
+- webmasters
+
+So 1st step, adding 2 group to ldap ?
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000105.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000100.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#98">[ date ]</a>
+ <a href="thread.html#98">[ thread ]</a>
+ <a href="subject.html#98">[ subject ]</a>
+ <a href="author.html#98">[ 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-January/000099.html b/zarb-ml/mageia-webteam/2011-January/000099.html
new file mode 100644
index 000000000..3a364e408
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000099.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam peers, bootstrapping
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTin%2BkHDshv-AHs8SbXX6%3D1x_Qf6f8nkh_0%3D8x0HX%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="000097.html">
+ <LINK REL="Next" HREF="000102.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam peers, bootstrapping</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTin%2BkHDshv-AHs8SbXX6%3D1x_Qf6f8nkh_0%3D8x0HX%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Webteam peers, bootstrapping">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Jan 6 17:44:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000097.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000102.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#99">[ date ]</a>
+ <a href="thread.html#99">[ thread ]</a>
+ <a href="subject.html#99">[ subject ]</a>
+ <a href="author.html#99">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jan 6, 2011 at 15:25, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+&gt;<i> Le 06/01/2011 14:27, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i> &#160; &#160; &#160;- of course, something making push/merge requests possible could
+</I>&gt;&gt;<i> help (writable only by manager+webmasters, leaving everyone else push
+</I>&gt;&gt;<i> changes to be merged after review)
+</I>&gt;&gt;<i>
+</I>&gt;<i> Have we designed the standard lifecycles for patches and the standard merge/qualification processes ?
+</I>
+Not. We need some practice on this first I guess.
+
+&gt;&gt;<i> &#160; &#160;- some limited commands? what type? rsync/svn/git types?
+</I>&gt;&gt;<i>
+</I>&gt;<i> for example : forums we'll be deploying forums versions with git
+</I>
+Ok, but that does not necessarily mean access to the server (this can
+be triggered indirectly).
+
+&gt;&gt;<i> &#160;* server deployment:
+</I>&gt;&gt;<i> &#160; &#160;- staging from a branch available to all peers
+</I>
+That is, ability to sync trunk (or whatever branch) to staging server.
+That's an option that allows everyone to see up-to-date working apps
+(and to quickly acknolewge broken ones). Or we can have a cron from
+VCS to staging.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000097.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000102.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#99">[ date ]</a>
+ <a href="thread.html#99">[ thread ]</a>
+ <a href="subject.html#99">[ subject ]</a>
+ <a href="author.html#99">[ 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-January/000100.html b/zarb-ml/mageia-webteam/2011-January/000100.html
new file mode 100644
index 000000000..5fd8a1975
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000100.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam peers, bootstrapping
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTimfTXnEhsivYnLeXk%3DS5P42mZNEFN%3DOJvj-izP6%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="000098.html">
+ <LINK REL="Next" HREF="000101.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam peers, bootstrapping</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTimfTXnEhsivYnLeXk%3DS5P42mZNEFN%3DOJvj-izP6%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Webteam peers, bootstrapping">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Jan 6 18:05:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000098.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000101.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#100">[ date ]</a>
+ <a href="thread.html#100">[ thread ]</a>
+ <a href="subject.html#100">[ subject ]</a>
+ <a href="author.html#100">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jan 6, 2011 at 15:44, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Le jeudi 06 janvier 2011 &#224; 14:27 +0100, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i> &#160;* VCSes:
+</I>&gt;&gt;<i> &#160; &#160;- read access for everyone (peers &amp; non-peers);
+</I>&gt;<i> the easy part
+</I>
+Always start with the easy part.
+
+&gt;&gt;<i> &#160; &#160;- write access for:
+</I>&gt;&gt;<i> &#160; &#160; &#160;- webmasters (specific role, see below)
+</I>&gt;<i> so we need a group in ldap for that, i guess ?
+</I>
+Yes.
+
+&gt;<i> For git like all dvcs, we are slightly more free in term of workflow, as
+</I>&gt;<i> explained for example here
+</I>&gt;<i> <A HREF="http://doc.bazaar.canonical.com/bzr.1.18-html/en/user-guide/bazaar_workflows.html">http://doc.bazaar.canonical.com/bzr.1.18-html/en/user-guide/bazaar_workflows.html</A> .
+</I>&gt;<i>
+</I>&gt;<i> And so I feel that industrialisation of project hosting ( as we are
+</I>&gt;<i> somehow starting to do ) will be detrimental to the freedom of choice,
+</I>&gt;<i> and we should agree on a few workflow before starting to deploy too much
+</I>&gt;<i> things. ( ie, if we do want to automate thing, and that's one of the
+</I>&gt;<i> sysadmin team goal ).
+</I>&gt;<i>
+</I>&gt;<i> Deploying a simple git repository managed like a svn one would be easy
+</I>&gt;<i> and fast. But that would be marginally better than git-svn.
+</I>
+Indeed, unless you adapt manually for each project (one with a
+gatekeeper merging changes, one with open bar^Waccess, etc.)
+
+&gt;<i> Deploying a full system with workflow delegation is much more difficult,
+</I>&gt;<i> but that's what we would want.
+</I>
+Well... I may write it too fast, but I am not sure that, for instance
+a gitorious setup (hard part) would prevent several workflows to grow
+depending on the team working on it.
+
+&gt;<i> So a compromise would be to decide for 1 simple workflow, use for
+</I>&gt;<i> everything in the first place, and postpone the deployment of a full
+</I>&gt;<i> system to later.
+</I>
+Yes, but what workflow then?
+
+&gt;&gt;<i> &#160;* server logs:
+</I>&gt;&gt;<i> &#160; &#160;- read access to webmasters
+</I>&gt;&gt;<i> &#160; &#160;- some limited commands? what type? rsync/svn/git types?
+</I>&gt;<i>
+</I>&gt;<i> Well, limited command could be hard to achieve. I assume that read logs
+</I>&gt;<i> is just &quot;set permission properly&quot; ( easy to do ). Limitation of command
+</I>&gt;<i> could be done with sudo, but wouldn't change much if we give access to
+</I>&gt;<i> shell.
+</I>&gt;<i>
+</I>&gt;&gt;<i> &#160;* server deployment:
+</I>&gt;&gt;<i> &#160; &#160;- staging from a branch available to all peers
+</I>&gt;&gt;<i> &#160; &#160;- production push from staging available to webmasters only
+</I>&gt;<i>
+</I>&gt;<i> We can :
+</I>&gt;<i> - use sudo + script + ldap group
+</I>&gt;<i> - use $VCS based tags/branch + acl ( potentially based on ldap group
+</I>&gt;<i> again )
+</I>
+Hmm, sorry I'm lost here.
+
+&gt;<i> ( and I am picky, but sysadmin is the name of the team
+</I>&gt;<i> in ldap, I do not know why people say sysadm everywhere, likely because
+</I>&gt;<i> of the name of the list and irc channel &#160;:/ ).
+</I>
+Indeed :-p and that's 2 (!) chars less to type.
+
+&gt;<i> So to summarize :
+</I>&gt;<i> - external people
+</I>&gt;<i> - webteam members
+</I>&gt;<i> - webmasters
+</I>&gt;<i>
+</I>&gt;<i> So 1st step, adding 2 group to ldap ?
+</I>
+Yep. webmasters and webpeers (or webteam members).
+
+Romain
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000098.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000101.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#100">[ date ]</a>
+ <a href="thread.html#100">[ thread ]</a>
+ <a href="subject.html#100">[ subject ]</a>
+ <a href="author.html#100">[ 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-January/000101.html b/zarb-ml/mageia-webteam/2011-January/000101.html
new file mode 100644
index 000000000..4e18b2328
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000101.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=%3C201101061802.23501.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="000100.html">
+ <LINK REL="Next" HREF="000104.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=%3C201101061802.23501.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Calendar on the website">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu Jan 6 18:02:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000100.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000104.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#101">[ date ]</a>
+ <a href="thread.html#101">[ thread ]</a>
+ <a href="subject.html#101">[ subject ]</a>
+ <a href="author.html#101">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>About the calendar solution we were talking about last meeting:
+
+I have created a wiki page to gather our needs and the possible
+solutions.
+<A HREF="http://www.mageia.org/wiki/doku.php?id=web:calendar">http://www.mageia.org/wiki/doku.php?id=web:calendar</A>
+
+Feel free to add needs and solutions. I will then try and create some
+kind of table matching those two lists to have sth. for decide, what
+solution to take.
+
+Oliver aka obgr_seneca
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000100.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000104.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#101">[ date ]</a>
+ <a href="thread.html#101">[ thread ]</a>
+ <a href="subject.html#101">[ subject ]</a>
+ <a href="author.html#101">[ 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-January/000102.html b/zarb-ml/mageia-webteam/2011-January/000102.html
new file mode 100644
index 000000000..d3e93ff03
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000102.html
@@ -0,0 +1,111 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam peers, bootstrapping
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3C4D25FA88.9050403%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000099.html">
+ <LINK REL="Next" HREF="000105.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam peers, bootstrapping</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3C4D25FA88.9050403%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Webteam peers, bootstrapping">maat-ml at vilarem.net
+ </A><BR>
+ <I>Thu Jan 6 18:23:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000099.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000105.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#102">[ date ]</a>
+ <a href="thread.html#102">[ thread ]</a>
+ <a href="subject.html#102">[ subject ]</a>
+ <a href="author.html#102">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 06/01/2011 17:44, Romain d'Alverny a &#233;crit :
+&gt;<i> On Thu, Jan 6, 2011 at 15:25, 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;<i> Le 06/01/2011 14:27, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;&gt;<i> - of course, something making push/merge requests possible could
+</I>&gt;&gt;&gt;<i> help (writable only by manager+webmasters, leaving everyone else push
+</I>&gt;&gt;&gt;<i> changes to be merged after review)
+</I>&gt;&gt;<i> Have we designed the standard lifecycles for patches and the standard merge/qualification processes ?
+</I>&gt;<i> Not. We need some practice on this first I guess.
+</I>k
+
+&gt;&gt;&gt;<i> - some limited commands? what type? rsync/svn/git types?
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> for example : forums we'll be deploying forums versions with git
+</I>&gt;<i> Ok, but that does not necessarily mean access to the server (this can
+</I>&gt;<i> be triggered indirectly).
+</I>Yup but this means coding yet an other specific wrapper ?
+
+
+&gt;&gt;&gt;<i> * server deployment:
+</I>&gt;&gt;&gt;<i> - staging from a branch available to all peers
+</I>&gt;<i> That is, ability to sync trunk (or whatever branch) to staging server.
+</I>&gt;<i> That's an option that allows everyone to see up-to-date working apps
+</I>&gt;<i> (and to quickly acknolewge broken ones). Or we can have a cron from
+</I>&gt;<i> VCS to staging.
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>This imply limiting ourselves to one trunk and limiting our capacity to thread features developement nope ?
+
+I'd rather see a model with many trunks/tags/branches available for (one for each active dev) and ~user dirs allowing people to switch their personnal instance to the trunk/tag/branch they want to play with...
+
+for a given project we would have a SVN repos organization like that :
+
+$baseurl/$project_root/main/{trunk|tags|branches}
+
+
+$baseurl/$project_root/devs/$nickname/{trunk|tags|branches}
+
+
+$baseurl/$project_root = name of the application
+
+
+$baseurl/$project_root/devs/$nickname =&gt; repos dedicated to $nickname developer work
+
+
+$baseurl/$project_root/main =&gt; official public repos where &quot;webmasters&quot; merge developpers work
+
+Then for apache testing organization we could have :
+
+<A HREF="http://thesdeverver.mageia.org/manager">http://thesdeverver.mageia.org/manager</A> =&gt; where $nickname can log on and click to switch it's own instance to what he wants (application,repository,tag or branch or trunk)
+
+<A HREF="http://the-dev-server.mageia.org/testing/~$nickname/">http://the-dev-server.mageia.org/testing/~$nickname/</A> =&gt; where he tests the application he just switched to
+
+what do you think ?
+
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000099.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000105.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#102">[ date ]</a>
+ <a href="thread.html#102">[ thread ]</a>
+ <a href="subject.html#102">[ subject ]</a>
+ <a href="author.html#102">[ 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-January/000103.html b/zarb-ml/mageia-webteam/2011-January/000103.html
new file mode 100644
index 000000000..9586b0cf0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000103.html
@@ -0,0 +1,113 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Gitorious%20-%20LDAP%20installation-integration%0A%09Feasibilty&In-Reply-To=%3CAANLkTikWUTJyJeiMpFj51-b8GhvrObP5hGqU86Y7Mym3%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="000106.html">
+ <LINK REL="Next" HREF="000123.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Gitorious%20-%20LDAP%20installation-integration%0A%09Feasibilty&In-Reply-To=%3CAANLkTikWUTJyJeiMpFj51-b8GhvrObP5hGqU86Y7Mym3%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty">Kosmas at mach7x.com
+ </A><BR>
+ <I>Thu Jan 6 18:48:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000106.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000123.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#103">[ date ]</a>
+ <a href="thread.html#103">[ thread ]</a>
+ <a href="subject.html#103">[ subject ]</a>
+ <a href="author.html#103">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Further to the discussion about gitorious setup and integration with ldap:
+
+First there is a need for a git setup, as at this moment there are two
+projects using git (mageia-app-db, mageia-maintainers-db).
+
+In order to be able to use git, we can either host the projects
+externally, or install git in the mageia servers and host the projects
+there.
+At the moment both projects are hosted externally, but when the mageia
+servers have a git installation they can be transferred there.
+
+For installing git on the mageia servers, we can either install plain
+git or an application like gitorious, as suggested in the list
+previously.
+
+The first option about the plain git installation should be straight
+forward and as simple as: urpmi git-core. Some more information about
+transferring or creating git repositories from one server to another
+can be found here: [1][2]
+
+For the gitorious setup as it is a Ruby on Rails application there are
+some requirements to be able to install it.
+A blog post with full details can be found here: [3]
+During the installation of gitorious there are two options:
+Either install the application from source code or from the available rpm [4].
+Before this stage though a few dependencies and requirements would
+need to be installed.
+Most of them are also relevant to the mageia-maintenainers-db.
+
+NOTE: As mentioned before, I'm available to help on this stage, as
+I've done similar installations before.
+
+Finally, about the integration with ldap.
+After a quick search, it seems that is possible and there are people
+out there that have done that.
+There are probably two different ways of achieving this.
+First one seems to be through Apache and mod_ldap and smart http ([5][6])
+Second one seem to be through PAM authentication ([6][7])
+
+So, at this stage and without going into the actual installation
+details, it seems that is possible to use git/gitorious and ldap.
+
+
+[1] <A HREF="http://www.42.mach7x.com/2010/03/12/getting-your-github-git-project-to-dreamhost/">http://www.42.mach7x.com/2010/03/12/getting-your-github-git-project-to-dreamhost/</A>
+[2] <A HREF="http://railstips.org/blog/archives/2008/11/23/gitn-your-shared-host-on/">http://railstips.org/blog/archives/2008/11/23/gitn-your-shared-host-on/</A>
+[3] <A HREF="http://cjohansen.no/en/ruby/setting_up_gitorious_on_your_own_server">http://cjohansen.no/en/ruby/setting_up_gitorious_on_your_own_server</A>
+[4] <A HREF="http://rpmfind.net//linux/RPM/mandriva/devel/cooker/i586/media/contrib/release/gitorious-0.9-4mdv2011.0.noarch.html">http://rpmfind.net//linux/RPM/mandriva/devel/cooker/i586/media/contrib/release/gitorious-0.9-4mdv2011.0.noarch.html</A>
+[5] <A HREF="http://progit.org/2010/03/04/smart-http.html">http://progit.org/2010/03/04/smart-http.html</A>
+[6] <A HREF="http://serverfault.com/questions/139426/updating-the-path-for-running-an-command-through-ssh-with-ldap-user-account">http://serverfault.com/questions/139426/updating-the-path-for-running-an-command-through-ssh-with-ldap-user-account</A>
+[7] <A HREF="http://serverfault.com/questions/75566/which-version-control-systems-support-ldap-ad-users-and-groups/75656#75656">http://serverfault.com/questions/75566/which-version-control-systems-support-ldap-ad-users-and-groups/75656#75656</A>
+[6] <A HREF="http://serverfault.com/questions/133090/using-ldap-as-auth-method-for-git-repositories">http://serverfault.com/questions/133090/using-ldap-as-auth-method-for-git-repositories</A>
+
+Kosmas
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000106.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000123.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#103">[ date ]</a>
+ <a href="thread.html#103">[ thread ]</a>
+ <a href="subject.html#103">[ subject ]</a>
+ <a href="author.html#103">[ 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-January/000104.html b/zarb-ml/mageia-webteam/2011-January/000104.html
new file mode 100644
index 000000000..9f1adffa6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000104.html
@@ -0,0 +1,80 @@
+<!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=%3CAANLkTimFqa5TfMUXX1AJYZXpJW0_bCZ8UfSEuruZh7uN%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="000101.html">
+ <LINK REL="Next" HREF="000106.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=%3CAANLkTimFqa5TfMUXX1AJYZXpJW0_bCZ8UfSEuruZh7uN%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Calendar on the website">Kosmas at mach7x.com
+ </A><BR>
+ <I>Thu Jan 6 18:59:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000101.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000106.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#104">[ date ]</a>
+ <a href="thread.html#104">[ thread ]</a>
+ <a href="subject.html#104">[ subject ]</a>
+ <a href="author.html#104">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 6 January 2011 17:02, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; wrote:
+&gt;<i> About the calendar solution we were talking about last meeting:
+</I>&gt;<i>
+</I>&gt;<i> I have created a wiki page to gather our needs and the possible
+</I>&gt;<i> solutions.
+</I>&gt;<i> <A HREF="http://www.mageia.org/wiki/doku.php?id=web:calendar">http://www.mageia.org/wiki/doku.php?id=web:calendar</A>
+</I>&gt;<i>
+</I>&gt;<i> Feel free to add needs and solutions. I will then try and create some
+</I>&gt;<i> kind of table matching those two lists to have sth. for decide, what
+</I>&gt;<i> solution to take.
+</I>&gt;<i>
+</I>&gt;<i> Oliver aka obgr_seneca
+</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>
+Or, if we wanted to create our own solution:
+
+<A HREF="http://media.railscasts.com/videos/213_calendars.mov">http://media.railscasts.com/videos/213_calendars.mov</A>
+
+Kosmas
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000101.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000106.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#104">[ date ]</a>
+ <a href="thread.html#104">[ thread ]</a>
+ <a href="subject.html#104">[ subject ]</a>
+ <a href="author.html#104">[ 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-January/000105.html b/zarb-ml/mageia-webteam/2011-January/000105.html
new file mode 100644
index 000000000..0fce14360
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000105.html
@@ -0,0 +1,117 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam peers, bootstrapping
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTinO8hSNSp6weq-cT4FX2i4rgcOWRhnGYzEV66VN%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="000102.html">
+ <LINK REL="Next" HREF="000098.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam peers, bootstrapping</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20peers%2C%20bootstrapping&In-Reply-To=%3CAANLkTinO8hSNSp6weq-cT4FX2i4rgcOWRhnGYzEV66VN%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Webteam peers, bootstrapping">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Jan 6 19:06:47 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000102.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000098.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#105">[ date ]</a>
+ <a href="thread.html#105">[ thread ]</a>
+ <a href="subject.html#105">[ subject ]</a>
+ <a href="author.html#105">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jan 6, 2011 at 18:23, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+&gt;&gt;&gt;<i> for example : forums we'll be deploying forums versions with git
+</I>&gt;&gt;<i> Ok, but that does not necessarily mean access to the server (this can
+</I>&gt;&gt;<i> be triggered indirectly).
+</I>&gt;<i> Yup but this means coding yet an other specific wrapper ?
+</I>
+Hmm yes. That's maybe too soon. But that would allow to integrate with
+a test suite on the test server (+ reporting + blocking production
+push in case of tests failures).
+
+&gt;&gt;&gt;&gt;<i> &#160;* server deployment:
+</I>&gt;&gt;&gt;&gt;<i> &#160; &#160;- staging from a branch available to all peers
+</I>&gt;&gt;<i> That is, ability to sync trunk (or whatever branch) to staging server.
+</I>&gt;&gt;<i> That's an option that allows everyone to see up-to-date working apps
+</I>&gt;&gt;<i> (and to quickly acknolewge broken ones). Or we can have a cron from
+</I>&gt;&gt;<i> VCS to staging.
+</I>&gt;<i>
+</I>&gt;<i> This imply limiting ourselves to one trunk and limiting our capacity to thread features developement nope ?
+</I>
+Somehow, yes. :-/
+
+&gt;<i> I'd rather see a model with many trunks/tags/branches available for (one for each active dev) and ~user dirs allowing people to switch their personnal instance to the trunk/tag/branch they want to play with...
+</I>&gt;<i>
+</I>&gt;<i> for a given project we would have a SVN repos organization like that :
+</I>&gt;<i> [...]
+</I>
+Well, that makes a lot of branches to create for each project and for
+each new peer in a team.
+
+That's where I like git and even more tools such as gitorious/github
+(everyone gets his own branches on his own public space and can push
+their changes back). It automates some tedious parts.
+
+&gt;<i> Then for apache testing organization we could have :
+</I>&gt;<i> <A HREF="http://thesdeverver.mageia.org/manager">http://thesdeverver.mageia.org/manager</A> =&gt; where $nickname can log on and click to switch it's own instance to what he wants (application,repository,tag or branch or trunk)
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://the-dev-server.mageia.org/testing/~$nickname/">http://the-dev-server.mageia.org/testing/~$nickname/</A> =&gt; where he tests the application he just switched to
+</I>&gt;<i>
+</I>&gt;<i> what do you think ?
+</I>
+Hmmm why not. Will need some work for the testing deployment
+(especially for db-based apps).
+
+As for the workflow, if it's not too inconsistent/repetitive (?):
+ * a dev (team peer or not) works on her platform, tests there; keeps
+a branch on mageia.org;
+ * pushes changes for code review and merge into trunk (by any
+available peer) from her branch;
+ * tests/staging are done with the trunk - if it breaks, it depends:
+fix it easily/quickly or reverse the merge;
+ * the trunk is merged/branched in a production branch before being
+moved to production server;
+ * production fixes are merged back into the trunk;
+ * and so on.
+
+This in the perspective of encouraging small features increments to be
+pushed to production as soon as possible (instead of waiting of having
+all pieces fall together). That's not a general rule of course but...
+a preference.
+
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000102.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI>Next message: <A HREF="000098.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#105">[ date ]</a>
+ <a href="thread.html#105">[ thread ]</a>
+ <a href="subject.html#105">[ subject ]</a>
+ <a href="author.html#105">[ 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-January/000106.html b/zarb-ml/mageia-webteam/2011-January/000106.html
new file mode 100644
index 000000000..40e7fb448
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000106.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=%3CAANLkTikO8uTnn99%3DZ5m64V2et4416JsWpG4BVyjGHLNx%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="000104.html">
+ <LINK REL="Next" HREF="000103.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Calendar on the website</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3CAANLkTikO8uTnn99%3DZ5m64V2et4416JsWpG4BVyjGHLNx%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Calendar on the website">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Jan 6 19:09:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000104.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000103.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#106">[ date ]</a>
+ <a href="thread.html#106">[ thread ]</a>
+ <a href="subject.html#106">[ subject ]</a>
+ <a href="author.html#106">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jan 6, 2011 at 18:59, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> Or, if we wanted to create our own solution:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://media.railscasts.com/videos/213_calendars.mov">http://media.railscasts.com/videos/213_calendars.mov</A>
+</I>
+Thanks for the tip but here we would better use something existing.
+It's really a generic utility at this point. :)
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000104.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000103.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#106">[ date ]</a>
+ <a href="thread.html#106">[ thread ]</a>
+ <a href="subject.html#106">[ subject ]</a>
+ <a href="author.html#106">[ 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-January/000107.html b/zarb-ml/mageia-webteam/2011-January/000107.html
new file mode 100644
index 000000000..d73d903bd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000107.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] catdap deployment
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C1294346382.3329.168.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000123.html">
+ <LINK REL="Next" HREF="000108.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] catdap deployment</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C1294346382.3329.168.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] catdap deployment">misc at zarb.org
+ </A><BR>
+ <I>Thu Jan 6 21:39:42 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000123.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A></li>
+ <LI>Next message: <A HREF="000108.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#107">[ date ]</a>
+ <a href="thread.html#107">[ thread ]</a>
+ <a href="subject.html#107">[ subject ]</a>
+ <a href="author.html#107">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+so I finally finish the merge of catdap ( by hand ). I will do a quick
+test of merging the last change in trunk, creating a account and then
+announce it to people on -i18n for sympa.
+
+And say to send their remark here, so prepare to be flooded :)
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000123.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A></li>
+ <LI>Next message: <A HREF="000108.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#107">[ date ]</a>
+ <a href="thread.html#107">[ thread ]</a>
+ <a href="subject.html#107">[ subject ]</a>
+ <a href="author.html#107">[ 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-January/000108.html b/zarb-ml/mageia-webteam/2011-January/000108.html
new file mode 100644
index 000000000..0b0c5ab0a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000108.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] catdap deployment
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C1294364718.3329.174.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000107.html">
+ <LINK REL="Next" HREF="000109.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] catdap deployment</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C1294364718.3329.174.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] catdap deployment">misc at zarb.org
+ </A><BR>
+ <I>Fri Jan 7 02:45:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000107.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000109.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#108">[ date ]</a>
+ <a href="thread.html#108">[ thread ]</a>
+ <a href="subject.html#108">[ subject ]</a>
+ <a href="author.html#108">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 06 janvier 2011 &#224; 21:39 +0100, Michael Scherer a &#233;crit :
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> so I finally finish the merge of catdap ( by hand ). I will do a quick
+</I>&gt;<i> test of merging the last change in trunk, creating a account and then
+</I>&gt;<i> announce it to people on -i18n for sympa.
+</I>&gt;<i>
+</I>&gt;<i> And say to send their remark here, so prepare to be flooded :)
+</I>
+So, among the bug that I have seen and that will likely be reported by
+people :
+- the template link lead to non existant page
+ - <A HREF="http://mageia.org/policies/privacy/">http://mageia.org/policies/privacy/</A>
+ - <A HREF="http://mageia.org/faq/accounts/">http://mageia.org/faq/accounts/</A>
+- the registration mail suffer from a problem when using utf8 ( ie, &#233;
+are missing, which make it look weird in french )
+- we still have self signed certs
+
+and we do not have the &quot;beta&quot; stamp i proposed to add :/
+
+I am working a less generic form for editing user, but I do not think it
+will be ready soon.
+
+So the only thing left is announcing.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000107.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000109.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#108">[ date ]</a>
+ <a href="thread.html#108">[ thread ]</a>
+ <a href="subject.html#108">[ subject ]</a>
+ <a href="author.html#108">[ 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-January/000109.html b/zarb-ml/mageia-webteam/2011-January/000109.html
new file mode 100644
index 000000000..334056e32
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000109.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] catdap deployment
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C201101070306.43663.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000108.html">
+ <LINK REL="Next" HREF="000110.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] catdap deployment</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C201101070306.43663.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] catdap deployment">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Fri Jan 7 03:06:43 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000108.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000110.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#109">[ date ]</a>
+ <a href="thread.html#109">[ thread ]</a>
+ <a href="subject.html#109">[ subject ]</a>
+ <a href="author.html#109">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op vrijdag 07 januari 2011 02:45:17 schreef Michael Scherer:
+&gt;<i> Le jeudi 06 janvier 2011 &#224; 21:39 +0100, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; Hi,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; so I finally finish the merge of catdap ( by hand ). I will do a quick
+</I>&gt;<i> &gt; test of merging the last change in trunk, creating a account and then
+</I>&gt;<i> &gt; announce it to people on -i18n for sympa.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; And say to send their remark here, so prepare to be flooded :)
+</I>&gt;<i>
+</I>&gt;<i> So, among the bug that I have seen and that will likely be reported by
+</I>&gt;<i> people :
+</I>&gt;<i> - the template link lead to non existant page
+</I>&gt;<i> - <A HREF="http://mageia.org/policies/privacy/">http://mageia.org/policies/privacy/</A>
+</I>&gt;<i> - <A HREF="http://mageia.org/faq/accounts/">http://mageia.org/faq/accounts/</A>
+</I>&gt;<i> - the registration mail suffer from a problem when using utf8 ( ie, &#233;
+</I>&gt;<i> are missing, which make it look weird in french )
+</I>&gt;<i> - we still have self signed certs
+</I>&gt;<i>
+</I>&gt;<i> and we do not have the &quot;beta&quot; stamp i proposed to add :/
+</I>&gt;<i>
+</I>&gt;<i> I am working a less generic form for editing user, but I do not think it
+</I>&gt;<i> will be ready soon.
+</I>&gt;<i>
+</I>&gt;<i> So the only thing left is announcing.
+</I>
+small question,
+
+why isn't the forgot_password in there?
+
+was it even useful for me to do all that work?
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000108.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000110.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#109">[ date ]</a>
+ <a href="thread.html#109">[ thread ]</a>
+ <a href="subject.html#109">[ subject ]</a>
+ <a href="author.html#109">[ 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-January/000110.html b/zarb-ml/mageia-webteam/2011-January/000110.html
new file mode 100644
index 000000000..d7b4cadf8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000110.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] catdap deployment
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C1294367770.3329.179.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000109.html">
+ <LINK REL="Next" HREF="000111.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] catdap deployment</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C1294367770.3329.179.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] catdap deployment">misc at zarb.org
+ </A><BR>
+ <I>Fri Jan 7 03:36:10 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000109.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000111.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#110">[ date ]</a>
+ <a href="thread.html#110">[ thread ]</a>
+ <a href="subject.html#110">[ subject ]</a>
+ <a href="author.html#110">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le vendredi 07 janvier 2011 &#224; 03:06 +0100, Maarten Vanraes a &#233;crit :
+&gt;<i> Op vrijdag 07 januari 2011 02:45:17 schreef Michael Scherer:
+</I>&gt;<i> &gt; Le jeudi 06 janvier 2011 &#224; 21:39 +0100, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; &gt; Hi,
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; so I finally finish the merge of catdap ( by hand ). I will do a quick
+</I>&gt;<i> &gt; &gt; test of merging the last change in trunk, creating a account and then
+</I>&gt;<i> &gt; &gt; announce it to people on -i18n for sympa.
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; And say to send their remark here, so prepare to be flooded :)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; So, among the bug that I have seen and that will likely be reported by
+</I>&gt;<i> &gt; people :
+</I>&gt;<i> &gt; - the template link lead to non existant page
+</I>&gt;<i> &gt; - <A HREF="http://mageia.org/policies/privacy/">http://mageia.org/policies/privacy/</A>
+</I>&gt;<i> &gt; - <A HREF="http://mageia.org/faq/accounts/">http://mageia.org/faq/accounts/</A>
+</I>&gt;<i> &gt; - the registration mail suffer from a problem when using utf8 ( ie, &#233;
+</I>&gt;<i> &gt; are missing, which make it look weird in french )
+</I>&gt;<i> &gt; - we still have self signed certs
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; and we do not have the &quot;beta&quot; stamp i proposed to add :/
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I am working a less generic form for editing user, but I do not think it
+</I>&gt;<i> &gt; will be ready soon.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; So the only thing left is announcing.
+</I>&gt;<i>
+</I>&gt;<i> small question,
+</I>&gt;<i>
+</I>&gt;<i> why isn't the forgot_password in there?
+</I>&gt;<i>
+</I>&gt;<i> was it even useful for me to do all that work?
+</I>
+I guess I forgot to merge it before my holidays.
+I do not remember what were the issue, sorry.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000109.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000111.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#110">[ date ]</a>
+ <a href="thread.html#110">[ thread ]</a>
+ <a href="subject.html#110">[ subject ]</a>
+ <a href="author.html#110">[ 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-January/000111.html b/zarb-ml/mageia-webteam/2011-January/000111.html
new file mode 100644
index 000000000..cf534cab5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000111.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] catdap deployment
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C201101071827.35905.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000110.html">
+ <LINK REL="Next" HREF="000113.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] catdap deployment</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3C201101071827.35905.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] catdap deployment">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Fri Jan 7 18:27:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000110.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000113.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#111">[ date ]</a>
+ <a href="thread.html#111">[ thread ]</a>
+ <a href="subject.html#111">[ subject ]</a>
+ <a href="author.html#111">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op vrijdag 07 januari 2011 03:36:10 schreef Michael Scherer:
+&gt;<i> Le vendredi 07 janvier 2011 &#224; 03:06 +0100, Maarten Vanraes a &#233;crit :
+</I>&gt;<i> &gt; Op vrijdag 07 januari 2011 02:45:17 schreef Michael Scherer:
+</I>&gt;<i> &gt; &gt; Le jeudi 06 janvier 2011 &#224; 21:39 +0100, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; &gt; &gt; Hi,
+</I>&gt;<i> &gt; &gt; &gt;
+</I>&gt;<i> &gt; &gt; &gt; so I finally finish the merge of catdap ( by hand ). I will do a
+</I>&gt;<i> &gt; &gt; &gt; quick test of merging the last change in trunk, creating a account
+</I>&gt;<i> &gt; &gt; &gt; and then announce it to people on -i18n for sympa.
+</I>&gt;<i> &gt; &gt; &gt;
+</I>&gt;<i> &gt; &gt; &gt; And say to send their remark here, so prepare to be flooded :)
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; So, among the bug that I have seen and that will likely be reported by
+</I>&gt;<i> &gt; &gt; people :
+</I>&gt;<i> &gt; &gt; - the template link lead to non existant page
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; - <A HREF="http://mageia.org/policies/privacy/">http://mageia.org/policies/privacy/</A>
+</I>&gt;<i> &gt; &gt; - <A HREF="http://mageia.org/faq/accounts/">http://mageia.org/faq/accounts/</A>
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; - the registration mail suffer from a problem when using utf8 ( ie, &#233;
+</I>&gt;<i> &gt; &gt; are missing, which make it look weird in french )
+</I>&gt;<i> &gt; &gt; - we still have self signed certs
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; and we do not have the &quot;beta&quot; stamp i proposed to add :/
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; I am working a less generic form for editing user, but I do not think
+</I>&gt;<i> &gt; &gt; it will be ready soon.
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; So the only thing left is announcing.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; small question,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; why isn't the forgot_password in there?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; was it even useful for me to do all that work?
+</I>&gt;<i>
+</I>&gt;<i> I guess I forgot to merge it before my holidays.
+</I>&gt;<i> I do not remember what were the issue, sorry.
+</I>
+IIRC, you didn't want to review that, because of your limited Catdap knowledge
+and wanted blingme to review it.
+
+tbf, this is also a feature that will attract attention, and since it works,
+it would be a good idea to put it on trunk and test it out.
+
+you could even rework the style of the page to match the register (you've done
+that before)
+
+I'm sure you can understand my feelings about this.
+
+if you weren't planning on using it, it would have appreciated you telling me
+so in the beginning.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000110.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000113.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#111">[ date ]</a>
+ <a href="thread.html#111">[ thread ]</a>
+ <a href="subject.html#111">[ subject ]</a>
+ <a href="author.html#111">[ 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-January/000112.html b/zarb-ml/mageia-webteam/2011-January/000112.html
new file mode 100644
index 000000000..a3c1f6de0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000112.html
@@ -0,0 +1,91 @@
+<!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=%3C201101071832.21955.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000113.html">
+ <LINK REL="Next" HREF="000114.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Need help for mageia-app-db's licence</H1>
+ <B>Maarten Vanraes</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=%3C201101071832.21955.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Need help for mageia-app-db's licence">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Fri Jan 7 18:32:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000113.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000114.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#112">[ date ]</a>
+ <a href="thread.html#112">[ thread ]</a>
+ <a href="subject.html#112">[ subject ]</a>
+ <a href="author.html#112">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op vrijdag 31 december 2010 19:12:47 schreef Samuel Verschelde:
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> In the process of releasing mageia-app-db 0.1, we have to fix licensing
+</I>&gt;<i> issues. Could someone help us on that ?
+</I>&gt;<i>
+</I>&gt;<i> I never released free software before, so I'd like to know what to do once
+</I>&gt;<i> the licence has been chosen :
+</I>&gt;<i> - create a simple LICENSE file at the root of the project ?
+</I>&gt;<i> - add a notice in every source file ? (there are lots of them, many
+</I>&gt;<i> automatically generated by the framework mechanisms)
+</I>&gt;<i> - other ?
+</I>&gt;<i>
+</I>&gt;<i> Among the possible licences, there's Gnu Affero GPLv3, which forces anyone
+</I>&gt;<i> running the software (or one of its derivatives) on a server to make the
+</I>&gt;<i> source code available to users. However, I don't know if this license is
+</I>&gt;<i> compatible with our XML-RPC querying sophie.zarb.org when needed (does the
+</I>&gt;<i> Gnu Affero GPLv3 imply that we must also give sophie's source code to
+</I>&gt;<i> users (sophie being a separate project from Olivier Thauvin), and does it
+</I>&gt;<i> imply that sophie should be under the Gnu Affero GPLv3 licence ? I think
+</I>&gt;<i> not but I'd like to be sure.
+</I>
+usually a file with license is enough
+
+about sophie:
+ - usually there's some kind of config file where host or url is put in, you
+release it with example.com and the people deploying the app can then configure
+it.
+
+the important part is that this should be easily forkable, if desired. i would
+suggest GPL compatibility, also, put in a spec file so we can package it.
+
+-------------------------------------------------------
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000113.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000114.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#112">[ date ]</a>
+ <a href="thread.html#112">[ thread ]</a>
+ <a href="subject.html#112">[ subject ]</a>
+ <a href="author.html#112">[ 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-January/000113.html b/zarb-ml/mageia-webteam/2011-January/000113.html
new file mode 100644
index 000000000..cf1756635
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000113.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] catdap deployment
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3CAANLkTiknzwJyts%2BZGHANx%2Bwwgu-sJHQc-3op%2BU-7gF_5%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="000111.html">
+ <LINK REL="Next" HREF="000112.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] catdap deployment</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20catdap%20deployment&In-Reply-To=%3CAANLkTiknzwJyts%2BZGHANx%2Bwwgu-sJHQc-3op%2BU-7gF_5%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] catdap deployment">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Jan 7 18:35:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000111.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000112.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#113">[ date ]</a>
+ <a href="thread.html#113">[ thread ]</a>
+ <a href="subject.html#113">[ subject ]</a>
+ <a href="author.html#113">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, Jan 7, 2011 at 03:06, Maarten Vanraes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; wrote:
+&gt;<i> Op vrijdag 07 januari 2011 02:45:17 schreef Michael Scherer:
+</I>&gt;&gt;<i> So, among the bug that I have seen and that will likely be reported by
+</I>&gt;&gt;<i> people :
+</I>&gt;&gt;<i> - the template link lead to non existant page
+</I>&gt;&gt;<i> &#160; - <A HREF="http://mageia.org/policies/privacy/">http://mageia.org/policies/privacy/</A>
+</I>
+Will rewrite the URL.
+
+&gt;&gt;<i> &#160; - <A HREF="http://mageia.org/faq/accounts/">http://mageia.org/faq/accounts/</A>
+</I>
+Need to be created.
+
+&gt;&gt;<i> and we do not have the &quot;beta&quot; stamp i proposed to add :/
+</I>
+Ok, we can see that with artwork, or here. I guess it's more a matter
+of how we put it than a difficulty to do so.
+ - top banner, 10px height, orange with &quot;beta&quot; centered so it's very obvious?
+ - &quot;beta&quot; red superscript label next to the title?
+ - other?
+
+&gt;<i> why isn't the forgot_password in there?
+</I>&gt;<i>
+</I>&gt;<i> was it even useful for me to do all that work?
+</I>
+I believe it's a matter of putting it into the trunk. We do need it.
+
+But maybe we could have a more clear view of how branches/features are
+used/merged here (and who are reviewers)? (not sure)
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000111.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI>Next message: <A HREF="000112.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#113">[ date ]</a>
+ <a href="thread.html#113">[ thread ]</a>
+ <a href="subject.html#113">[ subject ]</a>
+ <a href="author.html#113">[ 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-January/000114.html b/zarb-ml/mageia-webteam/2011-January/000114.html
new file mode 100644
index 000000000..d1dec4baf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000114.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] license at the bottom of temporary wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20license%20at%20the%20bottom%20of%20temporary%20wiki&In-Reply-To=%3CAANLkTikPHf1_GvtJC6jBg1jJO-A5ymbpst604S0VVd%3DL%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="000112.html">
+ <LINK REL="Next" HREF="000119.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] license at the bottom of temporary wiki</H1>
+ <B>Benoit Audouard</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20license%20at%20the%20bottom%20of%20temporary%20wiki&In-Reply-To=%3CAANLkTikPHf1_GvtJC6jBg1jJO-A5ymbpst604S0VVd%3DL%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] license at the bottom of temporary wiki">baud123 at gmail.com
+ </A><BR>
+ <I>Sun Jan 9 01:40:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000112.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI>Next message: <A HREF="000119.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#114">[ date ]</a>
+ <a href="thread.html#114">[ thread ]</a>
+ <a href="subject.html#114">[ subject ]</a>
+ <a href="author.html#114">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+You may not have seen my request of changing license of temporary wiki
+ after the end of latest packagers meeting on 5th january (when shikamaru
+identified that he may &quot;migrate&quot; some policies pages to temporary wiki).
+
+So, maybe change the license at the bottom of <A HREF="http://mageia.org/wiki">http://mageia.org/wiki</A> to
+CC-by-sa instead of CC-by-NC-sa if things are inspired from mdv wiki (for
+license compliancy),
+the change is in a conf' file of dokuwiki
+- iirc conf/local.php according to
+<A HREF="http://www.dokuwiki.org/config:license(yep">http://www.dokuwiki.org/config:license(yep</A> yet another 5 min changes
+/o\)
+- and BTW I'll look how to change donation link to
+<A HREF="http://mageia.org/en/donate/">http://mageia.org/en/donate/</A> at the bottom too... (for the moment being,
+seems it can be changed in the php page not in the conf')
+I don't think it would be seen as a bad move as the current wiki mainly
+holds content that we all approved to share (though we forgot to enforce a
+license to begin with...).
+
+furthermore, as the name implies, temporary wiki may not benefit from
+&quot;automatic&quot; migration, so people may have to migrate manually the content
+(losing the history of it), hence, better to have no licensing issues with
+destination (even if from the participants state of mind, it's not really
+imho).
+I see only 2 problems :
+- attribution is usually lost (as was the case when vdanen moved from Twiki
+to mediawiki in former time), that's not a problem for me as I understand we
+do what we can, though adding a phrase like &quot;derived from [original link]
+under license CC-by-sa&quot; at the bottom may do it, or to go farther &quot;including
+contribution from [list of contributers from history page]&quot; to be more
+royalist than the king, not compulsory imho , may _really__ be welcomed well
+by some people though
+- license (share alike) should not be overlooked or set aside, as it's
+important for some people like me, as an incentive to contribute to libre
+software (which NC is not)
+
+Thanks for your involvement, I keep another mail about wiki requirements for
+tomorrow^Wtoday :-) one thing at a time, even if it takes 5 mn each time.
+@++
+Ben' aka baud123
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110109/ba5548ee/attachment.html&gt;
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000112.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI>Next message: <A HREF="000119.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#114">[ date ]</a>
+ <a href="thread.html#114">[ thread ]</a>
+ <a href="subject.html#114">[ subject ]</a>
+ <a href="author.html#114">[ 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-January/000115.html b/zarb-ml/mageia-webteam/2011-January/000115.html
new file mode 100644
index 000000000..8837ce2e1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000115.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Comments about identity-trunk
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Comments%20about%20identity-trunk&In-Reply-To=%3CAANLkTik%2BQA-SborcXaNU2JUOY42HkyNkOJdZUqp8HDhg%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="000119.html">
+ <LINK REL="Next" HREF="000120.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Comments about identity-trunk</H1>
+ <B>Ludovic Belli&#232;re</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Comments%20about%20identity-trunk&In-Reply-To=%3CAANLkTik%2BQA-SborcXaNU2JUOY42HkyNkOJdZUqp8HDhg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Comments about identity-trunk">xrogaan at gmail.com
+ </A><BR>
+ <I>Sun Jan 9 14:22:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000119.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A></li>
+ <LI>Next message: <A HREF="000120.html">[Mageia-webteam] Comments about identity-trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#115">[ date ]</a>
+ <a href="thread.html#115">[ thread ]</a>
+ <a href="subject.html#115">[ subject ]</a>
+ <a href="author.html#115">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello there, I just register myself on the mageia identity trunk, and
+I just ran in a couple of trivial issues.
+
+First, there is no indication of whom created this soft and whom to
+contact nor any link to a source code. I know, this software was made
+in a hurry, but still, it could help.
+
+Second, there is an option to add attributes. But somehow, I can
+register more information on myself and I don't understand why.
+Somebody on the irc said it was for &quot;security reasons&quot;... Really ? Are
+you afraid of my initials or my phone number ? ;) You should filter
+sensitive attributes and non-sensitive. Also, I could have helped but
+I'm afraid to not knowing perl.
+
+Also, it appears that the names with accents are badly displayed or
+registered. My name is Belli&#232;re, and with it, I always see when
+something is wrong with charset :).
+
+I wish you good luck and patience.
+
+--
+Ludovic Belli&#232;re
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000119.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A></li>
+ <LI>Next message: <A HREF="000120.html">[Mageia-webteam] Comments about identity-trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#115">[ date ]</a>
+ <a href="thread.html#115">[ thread ]</a>
+ <a href="subject.html#115">[ subject ]</a>
+ <a href="author.html#115">[ 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-January/000116.html b/zarb-ml/mageia-webteam/2011-January/000116.html
new file mode 100644
index 000000000..3c8094973
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000116.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Wiki setup
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Wiki%20setup&In-Reply-To=%3C201101091515.36069.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="000120.html">
+ <LINK REL="Next" HREF="000117.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Wiki setup</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Wiki%20setup&In-Reply-To=%3C201101091515.36069.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Wiki setup">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Sun Jan 9 15:15:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000120.html">[Mageia-webteam] Comments about identity-trunk
+</A></li>
+ <LI>Next message: <A HREF="000117.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#116">[ date ]</a>
+ <a href="thread.html#116">[ thread ]</a>
+ <a href="subject.html#116">[ subject ]</a>
+ <a href="author.html#116">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I'm exploring the multilingual setup (including scripts for easy
+adding of additional languages if necessary).
+I've done a demo setup on a local machine, but before I'm going any
+further, I'd like to know which approach to follow.
+Using e.g. &quot;wiki.mageia.org/de&quot; or &quot;de.wiki.mageia.org&quot; for the German
+wiki?
+
+Oliver
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000120.html">[Mageia-webteam] Comments about identity-trunk
+</A></li>
+ <LI>Next message: <A HREF="000117.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#116">[ date ]</a>
+ <a href="thread.html#116">[ thread ]</a>
+ <a href="subject.html#116">[ subject ]</a>
+ <a href="author.html#116">[ 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-January/000117.html b/zarb-ml/mageia-webteam/2011-January/000117.html
new file mode 100644
index 000000000..e346974a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000117.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Wiki setup
+ </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-sysadm%5D%20Wiki%20setup&In-Reply-To=%3CAANLkTik3NRPMbFcW%2BdQMZ0r4jAX1PJO-8C0x0cHAkprM%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="000116.html">
+ <LINK REL="Next" HREF="000118.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Wiki setup</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Wiki%20setup&In-Reply-To=%3CAANLkTik3NRPMbFcW%2BdQMZ0r4jAX1PJO-8C0x0cHAkprM%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Wiki setup">rdalverny at gmail.com
+ </A><BR>
+ <I>Sun Jan 9 18:04:12 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000116.html">[Mageia-webteam] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000118.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#117">[ date ]</a>
+ <a href="thread.html#117">[ thread ]</a>
+ <a href="subject.html#117">[ subject ]</a>
+ <a href="author.html#117">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Sun, Jan 9, 2011 at 15:55, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> 2011/1/9 Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt;:
+</I>&gt;&gt;<i> I'm exploring the multilingual setup (including scripts for easy
+</I>&gt;&gt;<i> adding of additional languages if necessary).
+</I>&gt;&gt;<i> I've done a demo setup on a local machine, but before I'm going any
+</I>&gt;&gt;<i> further, I'd like to know which approach to follow.
+</I>&gt;&gt;<i> Using e.g. &quot;wiki.mageia.org/de&quot; or &quot;de.wiki.mageia.org&quot; for the German
+</I>&gt;&gt;<i> wiki?
+</I>&gt;<i>
+</I>&gt;<i> I'd go for the pattern that is mostly used on the net: &quot;name.tld/&lt;language&gt;&quot;,
+</I>&gt;<i> as we already see it with &quot;blog.mageia.org/en&quot;
+</I>
+Yes. And we would use wiki.mageia.org for either a locale negotatied
+redirection, or a summary of all existing wikis.
+
+Romain
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000116.html">[Mageia-webteam] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000118.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#117">[ date ]</a>
+ <a href="thread.html#117">[ thread ]</a>
+ <a href="subject.html#117">[ subject ]</a>
+ <a href="author.html#117">[ 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-January/000118.html b/zarb-ml/mageia-webteam/2011-January/000118.html
new file mode 100644
index 000000000..7debaabdd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000118.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Wiki setup
+ </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-sysadm%5D%20Wiki%20setup&In-Reply-To=%3C201101092132.38384.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="000117.html">
+ <LINK REL="Next" HREF="000121.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Wiki setup</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Wiki%20setup&In-Reply-To=%3C201101092132.38384.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Wiki setup">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Sun Jan 9 21:32:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000117.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000121.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#118">[ date ]</a>
+ <a href="thread.html#118">[ thread ]</a>
+ <a href="subject.html#118">[ subject ]</a>
+ <a href="author.html#118">[ 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 2011-01-09
+&gt;<i> On Sun, Jan 9, 2011 at 15:55, Wolfgang Bornath
+</I>&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> &gt; 2011/1/9 Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt;:
+</I>&gt;<i> &gt;&gt; I'm exploring the multilingual setup (including scripts for easy
+</I>&gt;<i> &gt;&gt; adding of additional languages if necessary).
+</I>&gt;<i> &gt;&gt; I've done a demo setup on a local machine, but before I'm going
+</I>&gt;<i> &gt;&gt; any further, I'd like to know which approach to follow.
+</I>&gt;<i> &gt;&gt; Using e.g. &quot;wiki.mageia.org/de&quot; or &quot;de.wiki.mageia.org&quot; for the
+</I>&gt;<i> &gt;&gt; German wiki?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I'd go for the pattern that is mostly used on the net:
+</I>&gt;<i> &gt; &quot;name.tld/&lt;language&gt;&quot;, as we already see it with
+</I>&gt;<i> &gt; &quot;blog.mageia.org/en&quot;
+</I>&gt;<i>
+</I>&gt;<i> Yes. And we would use wiki.mageia.org for either a locale
+</I>&gt;<i> negotatied redirection, or a summary of all existing wikis.
+</I>&gt;<i>
+</I>And on further consideration. It's easier to add languages cause you
+don't need to change anything in apache/dns config as you would have to
+using sub domains.
+Didn't think about that!
+
+So I'll use name.tld/&lt;language&gt; and write some script for adding
+languages. Should be done till web team meeting.
+
+Oliver
+Oliver
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000117.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000121.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#118">[ date ]</a>
+ <a href="thread.html#118">[ thread ]</a>
+ <a href="subject.html#118">[ subject ]</a>
+ <a href="author.html#118">[ 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-January/000119.html b/zarb-ml/mageia-webteam/2011-January/000119.html
new file mode 100644
index 000000000..f091b8a88
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000119.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] license at the bottom of temporary wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20license%20at%20the%20bottom%20of%20temporary%20wiki&In-Reply-To=%3CAANLkTinrs%3D1%3D7BgLhPJORq_f4n5xBjgToVWJ%3DDxmaPxY%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="000114.html">
+ <LINK REL="Next" HREF="000115.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] license at the bottom of temporary wiki</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20license%20at%20the%20bottom%20of%20temporary%20wiki&In-Reply-To=%3CAANLkTinrs%3D1%3D7BgLhPJORq_f4n5xBjgToVWJ%3DDxmaPxY%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] license at the bottom of temporary wiki">rdalverny at gmail.com
+ </A><BR>
+ <I>Sun Jan 9 22:54:34 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000114.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A></li>
+ <LI>Next message: <A HREF="000115.html">[Mageia-webteam] Comments about identity-trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#119">[ date ]</a>
+ <a href="thread.html#119">[ thread ]</a>
+ <a href="subject.html#119">[ subject ]</a>
+ <a href="author.html#119">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Sun, Jan 9, 2011 at 01:40, Benoit Audouard &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">baud123 at gmail.com</A>&gt; wrote:
+&gt;<i> You may not have seen my request of changing license of temporary wiki
+</I>&gt;<i> &#160;after the end of latest packagers meeting on 5th january (when shikamaru
+</I>&gt;<i> identified that he may &quot;migrate&quot; some policies pages to temporary wiki).
+</I>&gt;<i> So, maybe change the license at the bottom of <A HREF="http://mageia.org/wiki">http://mageia.org/wiki</A> to
+</I>&gt;<i> CC-by-sa instead of CC-by-NC-sa if things are inspired from mdv wiki (for
+</I>&gt;<i> license compliancy),
+</I>&gt;<i> the change is in a conf' file of dokuwiki
+</I>
+Thanks for the notification. Indeed that would be an issue.
+
+The footer page license is the default of dokuwiki it seems. We just
+didn't check this. And in no way are we ever going to use the NC
+provision that is, at best, just unpracticable.
+
+&gt;<i> - iirc conf/local.php according to <A HREF="http://www.dokuwiki.org/config:license">http://www.dokuwiki.org/config:license</A>
+</I>&gt;<i> (yep yet another 5 min changes /o\)
+</I>
+Fixed already.
+
+&gt;<i> - and BTW I'll look how to change donation link to
+</I>&gt;<i> <A HREF="http://mageia.org/en/donate/">http://mageia.org/en/donate/</A> at the bottom too... (for the moment being,
+</I>&gt;<i> seems it can be changed in the php page not in the conf')
+</I>
+Not critical, but yes, if you have a recipe for that...
+
+&gt;<i> furthermore, as the name implies, temporary wiki may not benefit from
+</I>&gt;<i> &quot;automatic&quot; migration, so people may have to migrate manually the content
+</I>&gt;<i> (losing the history of it), hence, better to have &#160;no licensing issues with
+</I>&gt;<i> destination (even if from the participants state of mind, it's not really
+</I>&gt;<i> imho).
+</I>&gt;<i> I see only 2 problems :
+</I>&gt;<i> - attribution is usually lost (as was the case when vdanen moved from Twiki
+</I>&gt;<i> to mediawiki in former time), that's not a problem for me as I understand we
+</I>&gt;<i> do what we can, though adding a phrase like &quot;derived from [original link]
+</I>&gt;<i> under license CC-by-sa&quot; at the bottom may do it, or to go farther &quot;including
+</I>&gt;<i> contribution from [list of contributers from history page]&quot; to be more
+</I>&gt;<i> royalist than the king, not compulsory imho , may _really__ be welcomed well
+</I>&gt;<i> by some people though
+</I>
+We may set up a page in the next wiki stating the list of various
+contributors to the previous wiki. But one has to raise his hand to do
+that.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000114.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A></li>
+ <LI>Next message: <A HREF="000115.html">[Mageia-webteam] Comments about identity-trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#119">[ date ]</a>
+ <a href="thread.html#119">[ thread ]</a>
+ <a href="subject.html#119">[ subject ]</a>
+ <a href="author.html#119">[ 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-January/000120.html b/zarb-ml/mageia-webteam/2011-January/000120.html
new file mode 100644
index 000000000..2d0c9f64b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000120.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Comments about identity-trunk
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Comments%20about%20identity-trunk&In-Reply-To=%3CAANLkTim3aPuWeeS9FnUBbbMfmfBdXc9pgKrmJUgVeyhz%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="000115.html">
+ <LINK REL="Next" HREF="000116.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Comments about identity-trunk</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Comments%20about%20identity-trunk&In-Reply-To=%3CAANLkTim3aPuWeeS9FnUBbbMfmfBdXc9pgKrmJUgVeyhz%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Comments about identity-trunk">rdalverny at gmail.com
+ </A><BR>
+ <I>Sun Jan 9 23:45:53 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000115.html">[Mageia-webteam] Comments about identity-trunk
+</A></li>
+ <LI>Next message: <A HREF="000116.html">[Mageia-webteam] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#120">[ date ]</a>
+ <a href="thread.html#120">[ thread ]</a>
+ <a href="subject.html#120">[ subject ]</a>
+ <a href="author.html#120">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+thank you for your remarks.
+
+2011/1/9 Ludovic Belli&#232;re &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">xrogaan at gmail.com</A>&gt;:
+&gt;<i> First, there is no indication of whom created this soft and whom to
+</I>&gt;<i> contact nor any link to a source code. I know, this software was made
+</I>&gt;<i> in a hurry, but still, it could help.
+</I>
+Yes. I will add a link in the footer to the wiki project page (that
+will need to be updated later), or maybe on a section that is more of
+interest for everyone.
+
+&gt;<i> Second, there is an option to add attributes. But somehow, I can
+</I>&gt;<i> register more information on myself and I don't understand why.
+</I>&gt;<i> Somebody on the irc said it was for &quot;security reasons&quot;... Really ? Are
+</I>&gt;<i> you afraid of my initials or my phone number ? ;) You should filter
+</I>&gt;<i> sensitive attributes and non-sensitive. Also, I could have helped but
+</I>&gt;<i> I'm afraid to not knowing perl.
+</I>
+As you said, this app is being brought up in a relative hurry. We can
+improve on that.
+
+&gt;<i> Also, it appears that the names with accents are badly displayed or
+</I>&gt;<i> registered. My name is Belli&#232;re, and with it, I always see when
+</I>&gt;<i> something is wrong with charset :).
+</I>
+Yep.
+
+Added your points to the list of issues:
+<A HREF="http://mageia.org/wiki/doku.php?id=web:identity#issues">http://mageia.org/wiki/doku.php?id=web:identity#issues</A>
+
+Cheers!
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000115.html">[Mageia-webteam] Comments about identity-trunk
+</A></li>
+ <LI>Next message: <A HREF="000116.html">[Mageia-webteam] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#120">[ date ]</a>
+ <a href="thread.html#120">[ thread ]</a>
+ <a href="subject.html#120">[ subject ]</a>
+ <a href="author.html#120">[ 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-January/000121.html b/zarb-ml/mageia-webteam/2011-January/000121.html
new file mode 100644
index 000000000..d7c7cd71d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000121.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Wiki setup
+ </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-sysadm%5D%20Wiki%20setup&In-Reply-To=%3C1294614254.30856.12.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000118.html">
+ <LINK REL="Next" HREF="000122.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Wiki setup</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Wiki%20setup&In-Reply-To=%3C1294614254.30856.12.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Wiki setup">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 10 00:04:14 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000118.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000122.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#121">[ date ]</a>
+ <a href="thread.html#121">[ thread ]</a>
+ <a href="subject.html#121">[ subject ]</a>
+ <a href="author.html#121">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le dimanche 09 janvier 2011 &#224; 21:32 +0100, 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 2011-01-09
+</I>&gt;<i> &gt; On Sun, Jan 9, 2011 at 15:55, Wolfgang Bornath
+</I>&gt;<i> &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;<i> &gt; &gt; 2011/1/9 Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt;:
+</I>&gt;<i> &gt; &gt;&gt; I'm exploring the multilingual setup (including scripts for easy
+</I>&gt;<i> &gt; &gt;&gt; adding of additional languages if necessary).
+</I>
+Scripts are nice, puppet recipe are better ( because well, I will
+rewrite scripts to be puppet configuration )
+
+
+&gt;<i> &gt; &gt;&gt; I've done a demo setup on a local machine, but before I'm going
+</I>&gt;<i> &gt; &gt;&gt; any further, I'd like to know which approach to follow.
+</I>&gt;<i> &gt; &gt;&gt; Using e.g. &quot;wiki.mageia.org/de&quot; or &quot;de.wiki.mageia.org&quot; for the
+</I>&gt;<i> &gt; &gt;&gt; German wiki?
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; I'd go for the pattern that is mostly used on the net:
+</I>&gt;<i> &gt; &gt; &quot;name.tld/&lt;language&gt;&quot;, as we already see it with
+</I>&gt;<i> &gt; &gt; &quot;blog.mageia.org/en&quot;
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Yes. And we would use wiki.mageia.org for either a locale
+</I>&gt;<i> &gt; negotatied redirection, or a summary of all existing wikis.
+</I>&gt;<i> &gt;
+</I>&gt;<i> And on further consideration. It's easier to add languages cause you
+</I>&gt;<i> don't need to change anything in apache/dns config as you would have to
+</I>&gt;<i> using sub domains.
+</I>&gt;<i> Didn't think about that!
+</I>
+Depend on how the setup is done. I am pretty sure that we will still
+have apache configuration job to do none the less. And I think adding a
+language is a pretty rare moment so we can tolerate to do it. I am also
+thinking into tying dns, apache and all with a list of language
+declaration, provided enough work is done.
+
+
+
+And the downside is that you will have one and only one server for wiki,
+no way to split among many server ( as noted by Benoit Audouard ).
+
+Now, what I would want to see is :
+1) who decide the language that goes ( because someone has to decide, I
+do not think that media is so flexible that anybody can start here own
+language, and if there
+
+2) How many database do we need ( ie, creation of 1 big db, or several
+smaller one ).
+
+3) is this : 1 big wiki instance, or several smaller one ?
+
+Do we ever plan to have wiki not linked to language content ? ( like per
+team wiki, or that will be section on the english one ? )
+
+I guess I can also take for granted that we will not manage 1 set of
+extension per language ?
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000118.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000122.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#121">[ date ]</a>
+ <a href="thread.html#121">[ thread ]</a>
+ <a href="subject.html#121">[ subject ]</a>
+ <a href="author.html#121">[ 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-January/000122.html b/zarb-ml/mageia-webteam/2011-January/000122.html
new file mode 100644
index 000000000..f202abf2d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000122.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Wiki setup
+ </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-sysadm%5D%20Wiki%20setup&In-Reply-To=%3C1294618023.30856.41.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000121.html">
+ <LINK REL="Next" HREF="000124.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Wiki setup</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Wiki%20setup&In-Reply-To=%3C1294618023.30856.41.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Wiki setup">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 10 01:07:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000121.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000124.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#122">[ date ]</a>
+ <a href="thread.html#122">[ thread ]</a>
+ <a href="subject.html#122">[ subject ]</a>
+ <a href="author.html#122">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 10 janvier 2011 &#224; 00:24 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> On Mon, Jan 10, 2011 at 00:04, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt; And the downside is that you will have one and only one server for wiki,
+</I>&gt;<i> &gt; no way to split among many server ( as noted by Benoit Audouard ).
+</I>&gt;<i>
+</I>&gt;<i> There would be ways to do so, if needed (front prox[y|ies] with
+</I>&gt;<i> rewrite/redirection rules to name one).
+</I>&gt;<i>
+</I>&gt;<i> The question is, do we need to plan today for this kind of scaling issue?
+</I>
+I do not think, but on the other hand, it may much easier now that
+later. And well, even if there is lots of ram on alamut, I wonder what
+would happen if we do have a crash ( ie, would we be able to cope with
+the load spread on other server in case of crash ).
+
+We do not intend to have a crash, and so far, i think we would be mostly
+safe ( once we do have a backup server ), but it is not to me to remind
+the fate of Mandriva servers :/
+
+&gt;<i> &gt; Now, what I would want to see is :
+</I>&gt;<i> &gt; 1) who decide the language that goes ( because someone has to decide, I
+</I>&gt;<i> &gt; do not think that media is so flexible that anybody can start here own
+</I>&gt;<i> &gt; language, and if there
+</I>&gt;<i>
+</I>&gt;<i> That would be a wiki team (that is a mix of i18n and doc team I
+</I>&gt;<i> guess?). Against a specific policy (like, having a sufficient list of
+</I>&gt;<i> involved-enough people to take care of a newly open wiki locale).
+</I>
+Yup, so that should be decided ( not right now, but taken care if
+possible before announcing the wiki ).
+
+Just also to be sure, we do not plan for any specific complex acl ?
+( IMHO, we should try to avoid, and if not possible, use group acl if
+possible, and in last ressort, login based acl to avoid duplication ).
+
+
+&gt;<i> &gt; 2) How many database do we need ( ie, creation of 1 big db, or several
+</I>&gt;<i> &gt; smaller one ).
+</I>&gt;<i>
+</I>&gt;<i> 1 per language.
+</I>
+Good.
+Can I also remind that we try to use postgresql everywhere, and that
+would be nice to keep it this way ( mediawiki does support it, so that's
+just to remind when doing the test ) ?
+
+&gt;<i> &gt; 3) is this : 1 big wiki instance, or several smaller one ?
+</I>&gt;<i>
+</I>&gt;<i> Depends how you set it up. @ Mandriva, we had a single code instance,
+</I>&gt;<i> and small custom config files (1 per locale).
+</I>
+I would favor this too because that's seems simpler.
+
+&gt;<i> &gt; Do we ever plan to have wiki not linked to language content ? ( like per
+</I>&gt;<i> &gt; team wiki, or that will be section on the english one ? )
+</I>&gt;<i>
+</I>&gt;<i> I did not understand this one. :)
+</I>
+Ie, there will be only wiki/en, wiki/de, wiki/pt ?
+
+No wiki/team/sysadmin/ , or something like that, or per project wiki if
+any ?
+
+&gt;<i> &gt; I guess I can also take for granted that we will not manage 1 set of
+</I>&gt;<i> &gt; extension per language ?
+</I>&gt;<i>
+</I>&gt;<i> Same codebase for every locale if possible (that's achievable).
+</I>
+Good, so that mean that there is only 1 wiki team, and not several one
+( like it was at Mandriva (or at least, like i thought it was)).
+
+I assume that this will be handled like i18n ?
+Otherwise, each team will want a different set of extensions ( or at
+least, the risk is not null that 2 teams request 2 redundant or
+incompatible extensions, based on personal preference ).
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000121.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000124.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#122">[ date ]</a>
+ <a href="thread.html#122">[ thread ]</a>
+ <a href="subject.html#122">[ subject ]</a>
+ <a href="author.html#122">[ 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-January/000123.html b/zarb-ml/mageia-webteam/2011-January/000123.html
new file mode 100644
index 000000000..35da80ff5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000123.html
@@ -0,0 +1,264 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Gitorious%20-%20LDAP%20installation-integration%0A%20Feasibilty&In-Reply-To=%3C1294662328.30856.237.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000103.html">
+ <LINK REL="Next" HREF="000107.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Gitorious%20-%20LDAP%20installation-integration%0A%20Feasibilty&In-Reply-To=%3C1294662328.30856.237.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 10 13:25:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000103.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A></li>
+ <LI>Next message: <A HREF="000107.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#123">[ date ]</a>
+ <a href="thread.html#123">[ thread ]</a>
+ <a href="subject.html#123">[ subject ]</a>
+ <a href="author.html#123">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 06 janvier 2011 &#224; 17:48 +0000, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> Further to the discussion about gitorious setup and integration with ldap:
+</I>
+First, I am likely to be quite undiplomatic ( yeah as usual ), and
+basically say &quot;no&quot; so beware :)
+
+&gt;<i> First there is a need for a git setup, as at this moment there are two
+</I>&gt;<i> projects using git (mageia-app-db, mageia-maintainers-db).
+</I>
+Sorry, but I would not call this a need, but a personal preference.
+2 teams deciding on their own to use whatever suit them is not what I
+call a need.
+
+Yes, I would also love git, but that's because I would love it that I
+recognize it as a personal preference. While I guess several people does
+it too, I am not a fool enough to claim that git is the vcs that
+everybody will love. So &quot;setting up $product&quot; is not a need. Once the
+community have decided ( ie, more than the few people that participate
+on this thread ), yes, this would be a need.
+
+Since the choice of a DVCS is traditionally a total flamewar ( see for
+example the gnome migration ), I would prefer to have community opinion
+on the subject before calling this a need. Ie, see with developers, see
+with I18N, see with sysadmin.
+
+If someone did start to use darcs for a project ( like usually Nanar
+does as this is his favorite VCS ), would we be saying &quot;we need to host
+darcs ?&quot;. Likely. And yet, I would not think we should, because we would
+finish by requiring to host everything. This is exactly what is
+happening now for the web server, where we will end doing python, php,
+perl and ruby. And that's why I think we can do better in term of
+ressources planning than just saying &quot;we need that because me and some
+others decided&quot;.
+
+Ask to developers their opinion, ask to i18n too, and that would be fine
+with me. I am pretty sure that most people will be ok, but we cannot be
+sure.
+
+In the case of gnome, the cost of learning to use git was a problem for
+translators. We do plan to reduce that with transifex, but some people
+asked if tx was mandatory, so you can see that some people may have a
+opinion on that, and should in all case be aware of such change, even if
+it will likely cause no problem.
+
+&gt;<i> In order to be able to use git, we can either host the projects
+</I>&gt;<i> externally, or install git in the mageia servers and host the projects
+</I>&gt;<i> there.
+</I>&gt;<i> At the moment both projects are hosted externally, but when the mageia
+</I>&gt;<i> servers have a git installation they can be transferred there.
+</I>
+So what about the bugs, wiki, etc are you ready to move this to bugzilla
+and others software ?
+
+&gt;<i> For installing git on the mageia servers, we can either install plain
+</I>&gt;<i> git or an application like gitorious, as suggested in the list
+</I>&gt;<i> previously.
+</I>
+Again &quot;setting gitorious&quot; is not a need, it is a personal choice. No one
+has a need of &quot;we need to use this product&quot;. It should be &quot;here is what
+the community as a whole need, let's find something to fulfill it&quot;.
+
+Otherwise, we end with people each pushing their own personal preference
+without first discussing with others, causing frustration, likely
+duplication, and so causing inadequate installation, more work and less
+contribution ( du to the complexity ).
+
+For example, gitorious can be used as review tool. Since Derek already
+proposed reviewboard for this
+( <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2010-November/000323.html">https://www.mageia.org/pipermail/mageia-sysadm/2010-November/000323.html</A> ), it would be better to first assess our needs, then decide. I do not think having 2 tools to achieve the same thing is a good idea.
+( not to mention that there is others tools like this, for example
+gerrit ).
+
+Code review is indeed a good idea, and both gitorious and reviewboard
+would be usable for that. But that doesn't mean that's a so good idea
+that we should setup 2 or 3 systems for that, nor rush to have it right
+now. First a process, later a product.
+
+Gitorious is also likely to overlap with the forge project that we are
+speaking from time to time ( and that's still unspecified ). As Romain
+said, maybe this will be bugzilla + $VCS, and some people asked for
+trac, some for redmine. This would also be a lot of duplication.
+
+Gitorious does wiki + git viewer + review. We need to define what
+features we need, and in the case of a forge , what we would want for it
+( likely adding a bug tracker, a download area ), and see how it
+integrate with that.
+
+I like the idea of gitorious, don't get me wrong, I even did a test
+installation of the rpm because that's what was planned for mdv. But we
+need to do things in order, think on what we want to achieve. And that
+mean to think of needs without saying the name of a product, with
+community input, with proper process.
+
+Ie, what is gitorious used for ?
+Social coding ( ie, review of patch ) ?
+Glorified git repository viewer ?
+Others ( like web interface to mange git ) ?
+
+( yes, I know that a long way to say &quot;no&quot; )
+
+&gt;<i> The first option about the plain git installation should be straight
+</I>&gt;<i> forward and as simple as: urpmi git-core. Some more information about
+</I>&gt;<i> transferring or creating git repositories from one server to another
+</I>&gt;<i> can be found here: [1][2]
+</I>
+Again, sorry to disagree, that's not as straightforward as it seems.
+
+First, we need to decide basic things, like &quot;where do people push
+personal branch&quot; ( because that sound like a use case for git, or people
+would have used git-svn ).
+
+And &quot;what is our policy around the various thing that people can do with
+git&quot;, like rewriting history ( that we should forbid I guess ), etc.
+
+Depending on the usage, we also need various things like a git
+repository browser, various checks ( see post-commit hook for svn ),
+maybe acl ( and therefor, integration with ldap ), commit mail, etc.
+
+That's unfortunately slightly not as simple than &quot;urpmi git-core&quot;.
+
+And that would requires community input first, like all policies ( or at
+least, that's what we should achieve ).
+
+&gt;<i> For the gitorious setup as it is a Ruby on Rails application there are
+</I>&gt;<i> some requirements to be able to install it.
+</I>&gt;<i> A blog post with full details can be found here: [3]
+</I>&gt;<i> During the installation of gitorious there are two options:
+</I>&gt;<i> Either install the application from source code or from the available rpm [4].
+</I>&gt;<i> Before this stage though a few dependencies and requirements would
+</I>&gt;<i> need to be installed.
+</I>&gt;<i> Most of them are also relevant to the mageia-maintenainers-db.
+</I>
+I doubt having sphinxsearch or a message queuing server is gonna be
+needed for any kind of maintainer db ( I hope not ). And the fact that
+most of them are also used by another project is not much helping, since
+we didn't even decided on the infrastructure to deploy. More ever, what
+is shared is likely the simpler part ( ruby modules ). The problematic
+one are more complex to setup ( ie, indexing daemon, git/ssh management
+integration, message queuing using a java daemon ).
+
+There is also others issues, for example, the documentation speak of
+phusion and mod_passenger. If we use it on alamut ( our current
+application server ), since mod_perl is already used for bugzilla,
+apache will have ruby and perl interpreter embedded, a combination that
+I would prefer to avoid for basic performance reason ( and that's why I
+asked for fast cgi support, to at least keep sanity to a acceptable
+level ). So we may need to setup more than just a web application, like
+2nd ruby application server.
+
+And it would also be nice to take in account the fact that we try to use
+postgresql as much as possible, but since that's a rails app, I take for
+granted it does ( even if some bug report say it
+doesn't :<A HREF="http://gitorious.lighthouseapp.com/projects/53751/tickets/2-group-by-query-error-on-postgresql">http://gitorious.lighthouseapp.com/projects/53751/tickets/2-group-by-query-error-on-postgresql</A> ).
+
+&gt;<i> NOTE: As mentioned before, I'm available to help on this stage, as
+</I>&gt;<i> I've done similar installations before.
+</I>
+Well, the goal is not to set it as a one time setup. We can perfectly do
+that without much problem ( even if for gitorious, the installation
+procedure is bigger than the note I took for installing our newest
+server ).
+
+The goal is to make a repeatable installation using puppet ( and a
+maintainable one too ), since puppet give us automation ( useful for
+testing upgrade, for disaster recovery, for ensuring everything is
+correctly setup ), and is backed with a vcs ( useful for automated
+communication, for traceability, for sharing our work, and for easier
+integration of external contribution ).
+
+&gt;<i> Finally, about the integration with ldap.
+</I>&gt;<i> After a quick search, it seems that is possible and there are people
+</I>&gt;<i> out there that have done that.
+</I>&gt;<i> There are probably two different ways of achieving this.
+</I>&gt;<i> First one seems to be through Apache and mod_ldap and smart http
+</I>&gt;<i> ([5][6])
+</I>&gt;<i> Second one seem to be through PAM authentication ([6][7])
+</I>
+You are speaking of git or gitorious ?
+
+If this is for git, yes, we know how to integrate it, that should be
+trivial using git + ssh ( at least if no acl are involved and to use it
+like we use svn with a single reference repository ).
+
+Now for gitorious, that's more complex. Does it support ldap to the
+point that the ssh key is managed by ldap outside of gitorious ?
+
+I was under the impression that gitorious used a system like gitosis
+where the acl and ssh keys are managed for a unique account by
+gitorious, duplicating the information we have in our ldap, and that's
+not optimal, and in fact would quite a duplication of what we do with
+current group based acl.
+
+If it support ldap in the web interface, does it support it fully ?
+Ie, if someone change name or email, is it updated ? Can we force people
+to go to catdap to register and prevent non ldap login ?
+
+Etc.
+
+So to summarize :
+- I think we need community input for git, at least for the policy and
+workflow that should be setup, and to confirm it will not cause trouble
+in unexpected way.
+
+- gitorious is likely to be more problematic, for all aformentioned
+technical and organisational reason I outlined.
+
+--
+Michael Scherer
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000103.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A></li>
+ <LI>Next message: <A HREF="000107.html">[Mageia-webteam] catdap deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#123">[ date ]</a>
+ <a href="thread.html#123">[ thread ]</a>
+ <a href="subject.html#123">[ subject ]</a>
+ <a href="author.html#123">[ 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-January/000124.html b/zarb-ml/mageia-webteam/2011-January/000124.html
new file mode 100644
index 000000000..631ab014b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000124.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mailling lists for 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%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C1294665724.30856.253.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000122.html">
+ <LINK REL="Next" HREF="000125.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mailling lists for web team</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C1294665724.30856.253.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Mailling lists for web team">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 10 14:22:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000122.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000125.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#124">[ date ]</a>
+ <a href="thread.html#124">[ thread ]</a>
+ <a href="subject.html#124">[ subject ]</a>
+ <a href="author.html#124">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+since it seems that finally, sympa is working, I can now do the 2nd part
+of the job, aka getting mls for all teams.
+
+here is what I propose :
+
+a public discussion list :
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-discuss at ml</A> ( or <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-team at ml</A> or <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web at ml</A> , but I would prefer to have a
+consistant naming across all teams, as exceptions are usually confusing
+and annoying ).
+
+a public list for various svn commits :
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-commits at ml</A>
+getting the one of web/ svn repository for the moment, catdap ( unless
+we do per project ml ), maybe others.
+
+Anything else needed ?
+
+
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000122.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A></li>
+ <LI>Next message: <A HREF="000125.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#124">[ date ]</a>
+ <a href="thread.html#124">[ thread ]</a>
+ <a href="subject.html#124">[ subject ]</a>
+ <a href="author.html#124">[ 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-January/000125.html b/zarb-ml/mageia-webteam/2011-January/000125.html
new file mode 100644
index 000000000..7a766f822
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000125.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mailling lists for 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%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C34FA1DB7-C7C1-45F1-B743-99DB13CBA49F%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000124.html">
+ <LINK REL="Next" HREF="000126.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mailling lists for web team</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C34FA1DB7-C7C1-45F1-B743-99DB13CBA49F%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Mailling lists for web team">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 10 14:52:37 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000124.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000126.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#125">[ date ]</a>
+ <a href="thread.html#125">[ thread ]</a>
+ <a href="subject.html#125">[ subject ]</a>
+ <a href="author.html#125">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 10 janv. 2011 &#224; 14:22, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; a &#233;crit :
+&gt;<i> a public discussion list :
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-discuss at ml</A> ( or <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-team at ml</A> or <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web at ml</A> , but I would prefer to have a
+</I>&gt;<i> consistant naming across all teams, as exceptions are usually confusing
+</I>&gt;<i> and annoying ).
+</I>
+What is the consistent scheme? (if there is one emerging already)
+
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web at ml</A> would be straight to the point I guess.
+
+&gt;<i> a public list for various svn commits :
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-commits at ml</A>
+</I>&gt;<i> getting the one of web/ svn repository for the moment, catdap ( unless
+</I>&gt;<i> we do per project ml ), maybe others.
+</I>
+Tes.
+
+&gt;<i> Anything else ?
+</I>
+At this point it looks good.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000124.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000126.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#125">[ date ]</a>
+ <a href="thread.html#125">[ thread ]</a>
+ <a href="subject.html#125">[ subject ]</a>
+ <a href="author.html#125">[ 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-January/000126.html b/zarb-ml/mageia-webteam/2011-January/000126.html
new file mode 100644
index 000000000..b040b8d96
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000126.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mailling lists for 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%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C1294669343.30856.259.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000125.html">
+ <LINK REL="Next" HREF="000128.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mailling lists for web team</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C1294669343.30856.259.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Mailling lists for web team">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 10 15:22:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000125.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000128.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#126">[ date ]</a>
+ <a href="thread.html#126">[ thread ]</a>
+ <a href="subject.html#126">[ subject ]</a>
+ <a href="author.html#126">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 10 janvier 2011 &#224; 14:52 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> Le 10 janv. 2011 &#224; 14:22, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; a &#233;crit :
+</I>&gt;<i> &gt; a public discussion list :
+</I>&gt;<i> &gt; <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-discuss at ml</A> ( or <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-team at ml</A> or <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web at ml</A> , but I would prefer to have a
+</I>&gt;<i> &gt; consistant naming across all teams, as exceptions are usually confusing
+</I>&gt;<i> &gt; and annoying ).
+</I>&gt;<i>
+</I>&gt;<i> What is the consistent scheme? (if there is one emerging already)
+</I>
+Well, it would be easier if there was one :)
+
+&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web at ml</A> would be straight to the point I guess.
+</I>
+ok.
+
+&gt;<i> &gt; a public list for various svn commits :
+</I>&gt;<i> &gt; <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-commits at ml</A>
+</I>&gt;<i> &gt; getting the one of web/ svn repository for the moment, catdap ( unless
+</I>&gt;<i> &gt; we do per project ml ), maybe others.
+</I>&gt;<i>
+</I>&gt;<i> Tes.
+</I>
+Missing a t ?
+
+If we setup monitoring of website ( and well, we likely will ), I guess
+we could add another ml for that, or depending on the tool, directly
+mail people.
+
+&gt;<i> &gt; Anything else ?
+</I>&gt;<i>
+</I>&gt;<i> At this point it looks good.
+</I>
+As proposed in the past, we could also have $<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ldap_group_name at team.mageia</A>
+alias, to contact all team members ( ie, all peers, or all webmasters ),
+but the use case seemed rather limited in the past. But just in case
+this changed, I will ask to each team, do we have a usage ?
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000125.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000128.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#126">[ date ]</a>
+ <a href="thread.html#126">[ thread ]</a>
+ <a href="subject.html#126">[ subject ]</a>
+ <a href="author.html#126">[ 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-January/000127.html b/zarb-ml/mageia-webteam/2011-January/000127.html
new file mode 100644
index 000000000..78fb132c3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000127.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mailling lists for 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%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C4D2B18D6.2080808%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000128.html">
+ <LINK REL="Next" HREF="000129.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mailling lists for web team</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C4D2B18D6.2080808%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Mailling lists for web team">maat-ml at vilarem.net
+ </A><BR>
+ <I>Mon Jan 10 15:33:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000128.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000129.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#127">[ date ]</a>
+ <a href="thread.html#127">[ thread ]</a>
+ <a href="subject.html#127">[ subject ]</a>
+ <a href="author.html#127">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 10/01/2011 14:22, Michael Scherer a &#233;crit :
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> since it seems that finally, sympa is working, I can now do the 2nd part
+</I>&gt;<i> of the job, aka getting mls for all teams.
+</I>&gt;<i>
+</I>&gt;<i> here is what I propose :
+</I>&gt;<i>
+</I>&gt;<i> a public discussion list :
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-discuss at ml</A> ( or <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-team at ml</A> or <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web at ml</A> , but I would prefer to have a
+</I>&gt;<i> consistant naming across all teams, as exceptions are usually confusing
+</I>&gt;<i> and annoying )
+</I>ok for me web-discuss or web or whatever :)
+
+&gt;<i> ) ?a public list for various svn commits :
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-commits at ml</A>
+</I>&gt;<i> getting the one of web/ svn repository for the moment, catdap ( unless
+</I>&gt;<i> we do per project ml ), maybe others.
+</I>cool :)
+
+&gt;<i> Anything else needed ?
+</I>&gt;<i>
+</I>web-security (non public) for security alerts, security holes and things like that ?
+(ut to us to keep it only for that and disclose afterwards on -discuss if we can)
+
+what do u think ?
+
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000128.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000129.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#127">[ date ]</a>
+ <a href="thread.html#127">[ thread ]</a>
+ <a href="subject.html#127">[ subject ]</a>
+ <a href="author.html#127">[ 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-January/000128.html b/zarb-ml/mageia-webteam/2011-January/000128.html
new file mode 100644
index 000000000..c4d7c5e63
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000128.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mailling lists for 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%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3CB3E0CB51-3493-4041-AD6B-D626AEEAA16B%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000126.html">
+ <LINK REL="Next" HREF="000127.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mailling lists for web team</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3CB3E0CB51-3493-4041-AD6B-D626AEEAA16B%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Mailling lists for web team">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 10 15:55:45 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000126.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000127.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#128">[ date ]</a>
+ <a href="thread.html#128">[ thread ]</a>
+ <a href="subject.html#128">[ subject ]</a>
+ <a href="author.html#128">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 10 janv. 2011 &#224; 15:22, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; a &#233;crit :
+&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> a public list for various svn commits :
+</I>&gt;&gt;&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">web-commits at ml</A>
+</I>&gt;&gt;&gt;<i> getting the one of web/ svn repository for the moment, catdap ( unless
+</I>&gt;&gt;&gt;<i> we do per project ml ), maybe others.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Tes.
+</I>&gt;<i>
+</I>&gt;<i> Missing a t ?
+</I>
+Nah. I meant &quot;yes&quot; but auto-correct &quot;fixed&quot; it. :-)
+
+&gt;<i> If we setup monitoring of website ( and well, we likely will ), I guess
+</I>&gt;<i> we could add another ml for that, or depending on the tool, directly
+</I>&gt;<i> mail people.
+</I>
+-commit would make sense too + direct notification and public (web) status report. But one step at a time.
+
+&gt;&gt;<i>
+</I>&gt;<i> we could also have $<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ldap_group_name at team.mageia</A>
+</I>&gt;<i> alias, to contact all team members [...] But just in case
+</I>&gt;<i> this changed, I will ask to each team, do we have a usage ?
+</I>
+Decisions/elections calls a least, but I don't see more than that.
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000126.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000127.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#128">[ date ]</a>
+ <a href="thread.html#128">[ thread ]</a>
+ <a href="subject.html#128">[ subject ]</a>
+ <a href="author.html#128">[ 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-January/000129.html b/zarb-ml/mageia-webteam/2011-January/000129.html
new file mode 100644
index 000000000..19508304f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000129.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mailling lists for 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%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C6D474D0E-E152-47ED-9DAA-8FDC355AE5E2%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000127.html">
+ <LINK REL="Next" HREF="000131.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mailling lists for web team</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C6D474D0E-E152-47ED-9DAA-8FDC355AE5E2%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Mailling lists for web team">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 10 15:58:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000127.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000131.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#129">[ date ]</a>
+ <a href="thread.html#129">[ thread ]</a>
+ <a href="subject.html#129">[ subject ]</a>
+ <a href="author.html#129">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 10 janv. 2011 &#224; 15:33, Ma&#226;t :
+&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;<i> web-security (non public) for security alerts, security holes and things like that ?
+</I>
+Ah yes. Who would read this? All peers? Webmasters only?
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000127.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000131.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#129">[ date ]</a>
+ <a href="thread.html#129">[ thread ]</a>
+ <a href="subject.html#129">[ subject ]</a>
+ <a href="author.html#129">[ 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-January/000130.html b/zarb-ml/mageia-webteam/2011-January/000130.html
new file mode 100644
index 000000000..7f0526713
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000130.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mailling lists for 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%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C1294672336.30856.267.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000131.html">
+ <LINK REL="Next" HREF="000132.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mailling lists for web team</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C1294672336.30856.267.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Mailling lists for web team">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 10 16:12:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000131.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000132.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#130">[ date ]</a>
+ <a href="thread.html#130">[ thread ]</a>
+ <a href="subject.html#130">[ subject ]</a>
+ <a href="author.html#130">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 10 janvier 2011 &#224; 15:33 +0100, Ma&#226;t a &#233;crit :
+&gt;<i> Le 10/01/2011 14:22, Michael Scherer a &#233;crit :
+</I>
+&gt;<i> &gt; Anything else needed ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> web-security (non public) for security alerts, security holes and things like that ?
+</I>&gt;<i> (ut to us to keep it only for that and disclose afterwards on -discuss if we can)
+</I>&gt;<i>
+</I>&gt;<i> what do u think ?
+</I>
+IMHO, security should be handled by a dedicated group, who would be
+cross team.
+
+IE, while web is likely to be the one where most attack will occurs,
+since it is likely where we will have most of the code, security problem
+can also happen on various non web level ( likely lower one handled by
+sysadmin ).
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000131.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000132.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#130">[ date ]</a>
+ <a href="thread.html#130">[ thread ]</a>
+ <a href="subject.html#130">[ subject ]</a>
+ <a href="author.html#130">[ 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-January/000131.html b/zarb-ml/mageia-webteam/2011-January/000131.html
new file mode 100644
index 000000000..2f18a1964
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000131.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mailling lists for 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%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C4D2B2201.6070104%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000129.html">
+ <LINK REL="Next" HREF="000130.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mailling lists for web team</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailling%20lists%20for%20web%20team&In-Reply-To=%3C4D2B2201.6070104%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Mailling lists for web team">maat-ml at vilarem.net
+ </A><BR>
+ <I>Mon Jan 10 16:13:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000129.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000130.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#131">[ date ]</a>
+ <a href="thread.html#131">[ thread ]</a>
+ <a href="subject.html#131">[ subject ]</a>
+ <a href="author.html#131">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 10/01/2011 15:58, Romain d'Alverny a &#233;crit :
+&gt;<i> Le 10 janv. 2011 &#224; 15:33, Ma&#226;t :
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> web-security (non public) for security alerts, security holes and things like that ?
+</I>&gt;<i> Ah yes. Who would read this? All peers? Webmasters only?
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>dunno... i guess at least webmasters ans sysadmins...
+
+...perhaps more : App lead devs ? Peers with &quot;security&quot; label printed on them ?
+
+(the goal is to have security problems quickly fixed)
+
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000129.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000130.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#131">[ date ]</a>
+ <a href="thread.html#131">[ thread ]</a>
+ <a href="subject.html#131">[ subject ]</a>
+ <a href="author.html#131">[ 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-January/000132.html b/zarb-ml/mageia-webteam/2011-January/000132.html
new file mode 100644
index 000000000..866fb1388
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000132.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTimBVNbpL0nzxTzaDHNUh%3D142%3DoEEW%2BKspB3h-Mv%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="000130.html">
+ <LINK REL="Next" HREF="000133.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTimBVNbpL0nzxTzaDHNUh%3D142%3DoEEW%2BKspB3h-Mv%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Jan 12 00:07:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000130.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000133.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#132">[ date ]</a>
+ <a href="thread.html#132">[ thread ]</a>
+ <a href="subject.html#132">[ subject ]</a>
+ <a href="author.html#132">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>The initial requirements for installing the maintainers db in the
+mageia server are:
+
+1. RVM (Ruby version manager)
+2. Rubygems (1.3.7)
+3. Rails (3.0.3)
+4. MySQL or PostgreSQL (if everything else is using it).
+5. Passenger (Apache mod_rails)
+
+Kosmas
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000130.html">[Mageia-webteam] Mailling lists for web team
+</A></li>
+ <LI>Next message: <A HREF="000133.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#132">[ date ]</a>
+ <a href="thread.html#132">[ thread ]</a>
+ <a href="subject.html#132">[ subject ]</a>
+ <a href="author.html#132">[ 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-January/000133.html b/zarb-ml/mageia-webteam/2011-January/000133.html
new file mode 100644
index 000000000..19b614070
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000133.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3C1294796195.32187.210.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000132.html">
+ <LINK REL="Next" HREF="000134.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3C1294796195.32187.210.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">misc at zarb.org
+ </A><BR>
+ <I>Wed Jan 12 02:36:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000132.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000134.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#133">[ date ]</a>
+ <a href="thread.html#133">[ thread ]</a>
+ <a href="subject.html#133">[ subject ]</a>
+ <a href="author.html#133">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 11 janvier 2011 &#224; 23:07 +0000, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> The initial requirements for installing the maintainers db in the
+</I>&gt;<i> mageia server are:
+</I>
+Again I am sorry to be harsh and quite direct, but the requirements
+seems rather &quot;too much&quot;.
+
+I do not think it would be wise for us to host a full environment for
+each application based on every coder preference, especially when taking
+in account that our main product is a Linux distribution, ie basically a
+environnement that serve as a base for running other softwares.
+
+So bypassing this seems rather odd. I would maybe do it for a business
+critical complex application whose fate of my company depend on, but I
+do not think this project belong on this category for the moment, nor
+that it couldn't be fulfilled by what we offer in the distribution so
+far.
+
+&gt;<i> 1. RVM (Ruby version manager)
+</I>
+&gt;<i>From what I know, that would likely mean compiling our own ruby version
+</I>on the server, using its own separate set of gems. In term of work, it
+would like adding a specific chroot, or a special vm of a different
+distribution just to host the application. ( different distribution
+since that would be totally unintegrated with the rest of the servers )
+
+I am sorry to say that I do not really see this as a good idea, because
+that put the burden of taking care of the environnement on sysadmin
+(especially security wise), and totally bypass the collaboration system
+that we have setup ( ie puppet + svn + integrated shared hosting ).
+
+&gt;<i> 2. Rubygems (1.3.7)
+</I>&gt;<i> 3. Rails (3.0.3)
+</I>
+Again, I would rather use the package given by the distribution used on
+the server ( ie a Mandriva 2010.1 for the moment, soon to be upgraded to
+the first Mageia release ). This would mean for the moment rails 2.3.10
+and ruby-RubyGems 1.3.5.
+
+A small minor backport would be of course ok ( ie for rubygems ), but a
+full update of the rails stack is likely be more work, especially since
+it would requires others updates ( like the various active-* parts ).
+
+Moreover, using distribution rpm give everybody the same set of module
+to work with, if the need to host/develop multiple rails applications
+arise ( and I think we cannot exclude this possibility ) without having
+to have 1 set of gems per application. And again, we will not need to
+handle security ourself ( or at least, no need to do the hard work as
+this is the goal of the security team ).
+
+So far, we were perfectly able to do it for every perl web application
+we wrote ( be it epoll, mga-mirrors, catdap ), and also for external
+applications in python and perl ( sympa, bugzilla, transifex ).
+
+&gt;<i> 4. MySQL or PostgreSQL (if everything else is using it).
+</I>
+I would strongly support Postgresql, as we do have a server running, and
+that everything is using it on the web server so far ( ie, the 5
+database enabled application use it, and wiki should also ).
+
+Given the fact that the maintainer db is basically a simple CRUD web
+application, I doubt that this will change much for you as I do not
+expect any advanced mysql features, except the old &quot;autoincrement vs
+trigger&quot; trick. But I also hope that modern ORM used nowadays are able
+to hide that sort of low level details.
+
+Again, if there is no other way but to use mysql, we could, but I do not
+think this is the case.
+
+&gt;<i> 5. Passenger (Apache mod_rails)
+</I>
+As I told in my answer on the git topic, could we avoid using passenger,
+and switch to fastcgi ?
+
+Otherwise, the web server will likely suffer of bloat since each process
+will bundle perl interpreter + modules (due to bugzilla installation
+that requires mod_perl) and a ruby interpreter + modules. And I think we
+should avoid this for performance reasons, since processes are reused
+between each request by apache ( standard mpm-prefork, as I am not sure
+that everything will be thread safe ).
+
+We also use fastcgi to be able to finely tune application, by deciding
+how much server should be started per web application. And so far, every
+application we use are able to do it, except bugzilla who requires
+mod_perl for the moment.
+
+I know that rails support it too, and we will take care of using static
+mode to avoid the issue of slow startup of the server, problem which is
+basically the same for catalyst, who is used on 3 of our applications
+( epoll, catdap, mga-mirrors ) at the moment, the same for django, used
+for transifex .
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000132.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000134.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#133">[ date ]</a>
+ <a href="thread.html#133">[ thread ]</a>
+ <a href="subject.html#133">[ subject ]</a>
+ <a href="author.html#133">[ 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-January/000134.html b/zarb-ml/mageia-webteam/2011-January/000134.html
new file mode 100644
index 000000000..a231225fa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000134.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTinv0PWw-sgZvca-R%2BoeT6Z0eOufKZsrrrz_Ezqc%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="000133.html">
+ <LINK REL="Next" HREF="000135.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTinv0PWw-sgZvca-R%2BoeT6Z0eOufKZsrrrz_Ezqc%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 12 10:36:55 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000133.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000135.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#134">[ date ]</a>
+ <a href="thread.html#134">[ thread ]</a>
+ <a href="subject.html#134">[ subject ]</a>
+ <a href="author.html#134">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Jan 12, 2011 at 02:36, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Le mardi 11 janvier 2011 &#224; 23:07 +0000, Kosmas Chatzimichalis a &#233;crit :
+</I>&gt;&gt;<i> The initial requirements for installing the maintainers db in the
+</I>&gt;&gt;<i> mageia server are: [...]
+</I>&gt;&gt;<i> 1. RVM (Ruby version manager)
+</I>&gt;<i>
+</I>&gt;<i> From what I know, that would likely mean compiling our own ruby version
+</I>&gt;<i> on the server, using its own separate set of gems. In term of work, it
+</I>&gt;<i> would like adding a specific chroot, or a special vm of a different
+</I>&gt;<i> distribution just to host the application. ( different distribution
+</I>&gt;<i> since that would be totally unintegrated with the rest of the servers )
+</I>
+What's the possible alternative?
+
+&gt;&gt;<i> 2. Rubygems (1.3.7)
+</I>&gt;&gt;<i> 3. Rails (3.0.3)
+</I>&gt;<i>
+</I>&gt;<i> [...] This would mean for the moment rails 2.3.10
+</I>&gt;<i> and ruby-RubyGems 1.3.5.
+</I>
+Kosmas, can you backport your app to these versions?
+
+&gt;<i> Moreover, using distribution rpm give everybody the same set of module
+</I>&gt;<i> to work with, if the need to host/develop multiple rails applications
+</I>&gt;<i> arise ( and I think we cannot exclude this possibility ) without having
+</I>&gt;<i> to have 1 set of gems per application. And again, we will not need to
+</I>&gt;<i> handle security ourself ( or at least, no need to do the hard work as
+</I>&gt;<i> this is the goal of the security team ).
+</I>
+What about seeing with ruby packagers about this? (Kosmas?)
+
+&gt;&gt;<i> 5. Passenger (Apache mod_rails)
+</I>&gt;<i>
+</I>&gt;<i> As I told in my answer on the git topic, could we avoid using passenger,
+</I>&gt;<i> and switch to fastcgi ?
+</I>
+Kosmas, can you check this?
+
+
+Cheers,
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000133.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000135.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#134">[ date ]</a>
+ <a href="thread.html#134">[ thread ]</a>
+ <a href="subject.html#134">[ subject ]</a>
+ <a href="author.html#134">[ 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-January/000135.html b/zarb-ml/mageia-webteam/2011-January/000135.html
new file mode 100644
index 000000000..6e4f648c1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000135.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTi%3DUnG9QChb6Z9G5neru%2BfN1g%2BRXJiUCJymXB%2Bq3%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="000134.html">
+ <LINK REL="Next" HREF="000136.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTi%3DUnG9QChb6Z9G5neru%2BfN1g%2BRXJiUCJymXB%2Bq3%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Jan 12 11:10:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000134.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000136.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#135">[ date ]</a>
+ <a href="thread.html#135">[ thread ]</a>
+ <a href="subject.html#135">[ subject ]</a>
+ <a href="author.html#135">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 12 January 2011 09:36, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> On Wed, Jan 12, 2011 at 02:36, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;&gt;<i> Le mardi 11 janvier 2011 &#224; 23:07 +0000, Kosmas Chatzimichalis a &#233;crit :
+</I>&gt;&gt;&gt;<i> The initial requirements for installing the maintainers db in the
+</I>&gt;&gt;&gt;<i> mageia server are: [...]
+</I>&gt;&gt;&gt;<i> 1. RVM (Ruby version manager)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> From what I know, that would likely mean compiling our own ruby version
+</I>&gt;&gt;<i> on the server, using its own separate set of gems. In term of work, it
+</I>&gt;&gt;<i> would like adding a specific chroot, or a special vm of a different
+</I>&gt;&gt;<i> distribution just to host the application. ( different distribution
+</I>&gt;&gt;<i> since that would be totally unintegrated with the rest of the servers )
+</I>&gt;<i>
+</I>&gt;<i> What's the possible alternative?
+</I>&gt;<i>
+</I>By using RVM, we won't need a chroot environment for gem installation
+as installation can be done in a user's account.
+Consequent gem installations don't need sudo permission and are
+installed on user's account.
+Some information about the installation is here:
+
+<A HREF="http://rvm.beginrescueend.com/rvm/install/">http://rvm.beginrescueend.com/rvm/install/</A>
+
+I also believe that the actual ruby installation is handled by the rvm.
+
+Alternatively, the ruby version needed is either 1.8.7 or 1.9.2, but
+that will actually depend on the rails version used.
+
+
+
+&gt;&gt;&gt;<i> 2. Rubygems (1.3.7)
+</I>&gt;&gt;&gt;<i> 3. Rails (3.0.3)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> [...] This would mean for the moment rails 2.3.10
+</I>&gt;&gt;<i> and ruby-RubyGems 1.3.5.
+</I>&gt;<i>
+</I>&gt;<i> Kosmas, can you backport your app to these versions?
+</I>&gt;<i>
+</I>Can definitely try Romain.
+
+Just as a note dreamhost updated all their servers to 3.0.3 and
+RubyGems 1.3..6 in a matter of few weeks, and although I don't know if
+they had problems, I'm sure that they are security conscious about
+their servers as well.
+
+&gt;&gt;<i> Moreover, using distribution rpm give everybody the same set of module
+</I>&gt;&gt;<i> to work with, if the need to host/develop multiple rails applications
+</I>&gt;&gt;<i> arise ( and I think we cannot exclude this possibility ) without having
+</I>&gt;&gt;<i> to have 1 set of gems per application. And again, we will not need to
+</I>&gt;&gt;<i> handle security ourself ( or at least, no need to do the hard work as
+</I>&gt;&gt;<i> this is the goal of the security team ).
+</I>&gt;<i>
+</I>&gt;<i> What about seeing with ruby packagers about this? (Kosmas?)
+</I>
+I can see about that Romain, but using Rails 3 makes gem installation
+and dependency solving much easier.
+Any suggestion about who I should be contacting?
+
+&gt;<i>
+</I>&gt;&gt;&gt;<i> 5. Passenger (Apache mod_rails)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> As I told in my answer on the git topic, could we avoid using passenger,
+</I>&gt;&gt;<i> and switch to fastcgi ?
+</I>&gt;<i>
+</I>&gt;<i> Kosmas, can you check this?
+</I>
+Yes, this one shouldn't be a problem as I don't have to deal with the
+server setup, although having used fastcgi in the past, I can remember
+having issues with loading of the application and sometimes not
+responding.
+But if Michael is willing to look after that it shouldn't be a problem.
+
+Kosmas
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000134.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000136.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#135">[ date ]</a>
+ <a href="thread.html#135">[ thread ]</a>
+ <a href="subject.html#135">[ subject ]</a>
+ <a href="author.html#135">[ 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-January/000136.html b/zarb-ml/mageia-webteam/2011-January/000136.html
new file mode 100644
index 000000000..f8ad31c77
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000136.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTimDD-WexCZp2Br2pOnEOcr9w-f1SNWzZNwpHaFQ%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="000135.html">
+ <LINK REL="Next" HREF="000137.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTimDD-WexCZp2Br2pOnEOcr9w-f1SNWzZNwpHaFQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 12 11:22:10 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000135.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000137.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#136">[ date ]</a>
+ <a href="thread.html#136">[ thread ]</a>
+ <a href="subject.html#136">[ subject ]</a>
+ <a href="author.html#136">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Jan 12, 2011 at 11:10, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> On 12 January 2011 09:36, 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> On Wed, Jan 12, 2011 at 02:36, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;&gt;&gt;<i> Le mardi 11 janvier 2011 &#224; 23:07 +0000, Kosmas Chatzimichalis a &#233;crit :
+</I>&gt;&gt;&gt;&gt;<i> The initial requirements for installing the maintainers db in the
+</I>&gt;&gt;&gt;&gt;<i> mageia server are: [...]
+</I>&gt;&gt;&gt;&gt;<i> 1. RVM (Ruby version manager)
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> From what I know, that would likely mean compiling our own ruby version
+</I>&gt;&gt;&gt;<i> on the server, using its own separate set of gems. [...]
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> What's the possible alternative?
+</I>&gt;<i>
+</I>&gt;<i> By using RVM, we won't need a chroot environment for gem installation
+</I>&gt;<i> as installation can be done in a user's account.
+</I>&gt;<i> Consequent gem installations don't need sudo permission and are
+</I>&gt;<i> installed on user's account.
+</I>
+Something tells me that misc won't find this a consolation. :-p
+
+Misc, if in the end, hosting a rails stack does make things less
+consistent than with other stacks, we may as well set up a host on a
+Gandi server and dedicate it (package management and security
+mgmt-wise to the rails stack).
+
+I'm not saying this should be this way but that would be an option to consider.
+
+&gt;&gt;&gt;&gt;<i> 2. Rubygems (1.3.7)
+</I>&gt;&gt;&gt;&gt;<i> 3. Rails (3.0.3)
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> [...] This would mean for the moment rails 2.3.10
+</I>&gt;&gt;&gt;<i> and ruby-RubyGems 1.3.5.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Kosmas, can you backport your app to these versions?
+</I>&gt;&gt;<i>
+</I>&gt;<i> Can definitely try Romain.
+</I>
+See with packagers first, but thank you to try Kosmas.
+
+&gt;<i> Just as a note dreamhost updated all their servers to 3.0.3 and
+</I>&gt;<i> RubyGems 1.3..6 in a matter of few weeks, and although I don't know if
+</I>&gt;<i> they had problems, I'm sure that they are security conscious about
+</I>&gt;<i> their servers as well.
+</I>
+There's no question about it. But Dreamhost is a business, moreover, a
+hosting business so they can dedicate way more people/servers about it
+than us, at this time.
+
+&gt;&gt;&gt;<i> Moreover, using distribution rpm give everybody the same set of module
+</I>&gt;&gt;&gt;<i> to work with, if the need to host/develop multiple rails applications
+</I>&gt;&gt;&gt;<i> arise ( and I think we cannot exclude this possibility ) without having
+</I>&gt;&gt;&gt;<i> to have 1 set of gems per application. And again, we will not need to
+</I>&gt;&gt;&gt;<i> handle security ourself ( or at least, no need to do the hard work as
+</I>&gt;&gt;&gt;<i> this is the goal of the security team ).
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> What about seeing with ruby packagers about this? (Kosmas?)
+</I>&gt;<i>
+</I>&gt;<i> I can see about that Romain, but using Rails 3 makes gem installation
+</I>&gt;<i> and dependency solving much easier.
+</I>&gt;<i>
+</I>&gt;<i> Any suggestion about who I should be contacting?
+</I>
+Try contact pterjan (past maintainers, not sure if he's still active)
+and/or shikamaru on #mageia-dev. That would really help I guess.
+Thanks a lot!
+
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000135.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000137.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#136">[ date ]</a>
+ <a href="thread.html#136">[ thread ]</a>
+ <a href="subject.html#136">[ subject ]</a>
+ <a href="author.html#136">[ 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-January/000137.html b/zarb-ml/mageia-webteam/2011-January/000137.html
new file mode 100644
index 000000000..6fc2fdd3d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000137.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3C1294829551.32187.293.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000136.html">
+ <LINK REL="Next" HREF="000138.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3C1294829551.32187.293.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">misc at zarb.org
+ </A><BR>
+ <I>Wed Jan 12 11:52:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000136.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000138.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#137">[ date ]</a>
+ <a href="thread.html#137">[ thread ]</a>
+ <a href="subject.html#137">[ subject ]</a>
+ <a href="author.html#137">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 12 janvier 2011 &#224; 11:22 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> On Wed, Jan 12, 2011 at 11:10, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+</I>&gt;<i> &gt; On 12 January 2011 09:36, 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;&gt; On Wed, Jan 12, 2011 at 02:36, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt;&gt;&gt; Le mardi 11 janvier 2011 &#224; 23:07 +0000, Kosmas Chatzimichalis a &#233;crit :
+</I>&gt;<i> &gt;&gt;&gt;&gt; The initial requirements for installing the maintainers db in the
+</I>&gt;<i> &gt;&gt;&gt;&gt; mageia server are: [...]
+</I>&gt;<i> &gt;&gt;&gt;&gt; 1. RVM (Ruby version manager)
+</I>&gt;<i> &gt;&gt;&gt;
+</I>&gt;<i> &gt;&gt;&gt; From what I know, that would likely mean compiling our own ruby version
+</I>&gt;<i> &gt;&gt;&gt; on the server, using its own separate set of gems. [...]
+</I>&gt;<i> &gt;&gt;
+</I>&gt;<i> &gt;&gt; What's the possible alternative?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; By using RVM, we won't need a chroot environment for gem installation
+</I>&gt;<i> &gt; as installation can be done in a user's account.
+</I>&gt;<i> &gt; Consequent gem installations don't need sudo permission and are
+</I>&gt;<i> &gt; installed on user's account.
+</I>
+You do install a self compiled separate ruby in a separate prefix, with
+a separate set of gems in a different prefix. If the only difference
+with a chroot is that you do not need to use &quot;chroot&quot;, then there isn't
+much difference to me, and then my point was not clear enough.
+
+&gt;<i> Something tells me that misc won't find this a consolation. :-p
+</I>&gt;<i>
+</I>&gt;<i> Misc, if in the end, hosting a rails stack does make things less
+</I>&gt;<i> consistent than with other stacks, we may as well set up a host on a
+</I>&gt;<i> Gandi server and dedicate it (package management and security
+</I>&gt;<i> mgmt-wise to the rails stack).
+</I>
+How would that making it more consistent ?
+Moreover, dedicating a vm just mean one more server to handle, that's
+hardly can be counted as &quot;less work&quot;.
+
+
+&gt;<i> I'm not saying this should be this way but that would be an option to consider.
+</I>
+I do think people do not really understand what I am saying, despite me
+asking to 2 set people to read my mail twice.
+
+Hosting this on alamut ( our shared application server ) or on a gandi
+server is the same, we would a different set of non integrated packages.
+
+Non integrated because that use a totally different system ( ie gem/rvm
+vs rpm/urpmi ) with totally different versions ( ie, defined by coders
+instead of the one agreed when we decided to use the distribution ),
+totally different update mechanism, and with different requirements.
+
+And those gems would need to be taken care like we do for package since
+they are packages. Except we would be on out own. No people to make sure
+they work together ( as upstream developers usually do not care at all,
+ask shikamaru about the gitorious rpm in cooker and some rpm requiring
+older version, and some not ), no people to make sure that security
+update occurs with minimal change ( usually that &quot;let's pack all changes
+together&quot;, which result in more version update than required, with code
+changes ).
+
+
+Another option that I consider would be to use another stack. Nanar
+already told me that he would be able to do it quite fast in catalyst,
+and I consider myself being able to do it in django without much problem
+if I dedicate enough time ( I am quite rusty but for a simple CRUD
+application, it would be quite ok ).
+
+&gt;<i> &gt; Just as a note dreamhost updated all their servers to 3.0.3 and
+</I>&gt;<i> &gt; RubyGems 1.3..6 in a matter of few weeks, and although I don't know if
+</I>&gt;<i> &gt; they had problems, I'm sure that they are security conscious about
+</I>&gt;<i> &gt; their servers as well.
+</I>&gt;<i>
+</I>&gt;<i> There's no question about it. But Dreamhost is a business, moreover, a
+</I>&gt;<i> hosting business so they can dedicate way more people/servers about it
+</I>&gt;<i> than us, at this time.
+</I>
+And well, the equivalent with dreamhost would be you to ask them to keep
+a custom or old version of rails just for you. I am not sure they would
+say &quot;yes&quot;.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000136.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000138.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#137">[ date ]</a>
+ <a href="thread.html#137">[ thread ]</a>
+ <a href="subject.html#137">[ subject ]</a>
+ <a href="author.html#137">[ 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-January/000138.html b/zarb-ml/mageia-webteam/2011-January/000138.html
new file mode 100644
index 000000000..ae048df8d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000138.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTi%3DTEN9ik4tbyc0dajz1VF9s11VneP3pTwrW%2B_-%3D%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="000137.html">
+ <LINK REL="Next" HREF="000139.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTi%3DTEN9ik4tbyc0dajz1VF9s11VneP3pTwrW%2B_-%3D%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Jan 12 12:04:55 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000137.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000139.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#138">[ date ]</a>
+ <a href="thread.html#138">[ thread ]</a>
+ <a href="subject.html#138">[ subject ]</a>
+ <a href="author.html#138">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> Another option that I consider would be to use another stack. Nanar
+</I>&gt;<i> already told me that he would be able to do it quite fast in catalyst,
+</I>&gt;<i> and I consider myself being able to do it in django without much problem
+</I>&gt;<i> if I dedicate enough time ( I am quite rusty but for a simple CRUD
+</I>&gt;<i> application, it would be quite ok ).
+</I>&gt;<i>
+</I>
+Romain,
+
+As I've said in the past, I haven't tried to force the building of
+this application in the Rails stack.
+As this is the stack I'm working with and I like at the moment, and I
+would like to help, that's why I've offered to to do it.
+
+Now if other people can build it in other stacks, that it wouldn't
+cause any problem, I don't have any problem with that.
+
+Just let me know if you need any Ruby on Rails application in the
+future, that I can help with.
+
+Kosmas
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000137.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000139.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#138">[ date ]</a>
+ <a href="thread.html#138">[ thread ]</a>
+ <a href="subject.html#138">[ subject ]</a>
+ <a href="author.html#138">[ 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-January/000139.html b/zarb-ml/mageia-webteam/2011-January/000139.html
new file mode 100644
index 000000000..f940b1d7d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000139.html
@@ -0,0 +1,120 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTimoUoMs37nTinws8-HHRfinA2Q0kzOvOtJfOxeU%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="000138.html">
+ <LINK REL="Next" HREF="000140.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTimoUoMs37nTinws8-HHRfinA2Q0kzOvOtJfOxeU%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 12 12:29:14 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000138.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000140.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#139">[ date ]</a>
+ <a href="thread.html#139">[ thread ]</a>
+ <a href="subject.html#139">[ subject ]</a>
+ <a href="author.html#139">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Jan 12, 2011 at 11:52, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Le mercredi 12 janvier 2011 &#224; 11:22 +0100, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i> Misc, if in the end, hosting a rails stack does make things less
+</I>&gt;&gt;<i> consistent than with other stacks, we may as well set up a host on a
+</I>&gt;&gt;<i> Gandi server and dedicate it (package management and security
+</I>&gt;&gt;<i> mgmt-wise to the rails stack).
+</I>&gt;<i>
+</I>&gt;<i> How would that making it more consistent ?
+</I>&gt;<i> Moreover, dedicating a vm just mean one more server to handle, that's
+</I>&gt;<i> hardly can be counted as &quot;less work&quot;.
+</I>
+I never said that. At best, it would just mean, more &quot;isolated&quot;/delegable.
+
+&gt;<i> Non integrated because that use a totally different system ( ie gem/rvm
+</I>&gt;<i> vs rpm/urpmi ) with totally different versions ( ie, defined by coders
+</I>&gt;<i> instead of the one agreed when we decided to use the distribution ),
+</I>&gt;<i> totally different update mechanism, and with different requirements.
+</I>
+Perfectly aware of that. Or we could as well host it somewhere else,
+just to host the application on a matching stack. I'm not saying it's
+the best solution, but it may be a temporary option to keep open.
+
+&gt;<i> Another option that I consider would be to use another stack. Nanar
+</I>&gt;<i> already told me that he would be able to do it quite fast in catalyst,
+</I>&gt;<i> and I consider myself being able to do it in django without much problem
+</I>&gt;<i> if I dedicate enough time ( I am quite rusty but for a simple CRUD
+</I>&gt;<i> application, it would be quite ok ).
+</I>
+Obviously we still have to learn to let it go at some times, delegate,
+welcome newcomers and new ideas, new stacks, if we want ever to grow
+the whole thing. It has a cost (flexibility and work), sure, but it
+has a payback too.
+
+Look here: <A HREF="http://mageia.org/wiki/doku.php?id=web#list_of_registered_people">http://mageia.org/wiki/doku.php?id=web#list_of_registered_people</A>
+
+There's a huge pool of skills in PHP, Ruby and Django, comparatively
+to Perl (that is quoted only once).
+
+It's not by sticking to a single stack mostly only handled by
+sysadmins (Catalyst in this case) that we will achieve that delegation
+and growth. I'm not saying it's crap, I'm saying it does not fit the
+pool of volunteers we have for contributions in web development.
+
+That's precisely why I suggested that other stacks may be considered
+(Rails, Django, Symfony) for maintainers db. Because it first more our
+volunteers.
+
+&gt;<i> And well, the equivalent with dreamhost would be you to ask them to keep
+</I>&gt;<i> a custom or old version of rails just for you. I am not sure they would
+</I>&gt;<i> say &quot;yes&quot;.
+</I>
+Sure. But they may have to keep up with updates at some pace because
+there is competition on this ground with other hosting services. And
+that forces developers, sometimes, to migrate their apps to higher
+revisions.
+
+But it's not the same context as here. Still, and this is why I asked
+Kosmas to see with packagers, it would help somehow to find a
+solution, if sustainable, to get packages a little bit more up to
+date. In this regard, it helps maintainers to have feedback from
+developers I guess.
+
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000138.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000140.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#139">[ date ]</a>
+ <a href="thread.html#139">[ thread ]</a>
+ <a href="subject.html#139">[ subject ]</a>
+ <a href="author.html#139">[ 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-January/000140.html b/zarb-ml/mageia-webteam/2011-January/000140.html
new file mode 100644
index 000000000..3e4f75c82
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000140.html
@@ -0,0 +1,153 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3C1294835393.32187.350.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000139.html">
+ <LINK REL="Next" HREF="000141.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3C1294835393.32187.350.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">misc at zarb.org
+ </A><BR>
+ <I>Wed Jan 12 13:29:53 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000139.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000141.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#140">[ date ]</a>
+ <a href="thread.html#140">[ thread ]</a>
+ <a href="subject.html#140">[ subject ]</a>
+ <a href="author.html#140">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 12 janvier 2011 &#224; 12:29 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> On Wed, Jan 12, 2011 at 11:52, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i>
+</I>&gt;<i> &gt; Non integrated because that use a totally different system ( ie gem/rvm
+</I>&gt;<i> &gt; vs rpm/urpmi ) with totally different versions ( ie, defined by coders
+</I>&gt;<i> &gt; instead of the one agreed when we decided to use the distribution ),
+</I>&gt;<i> &gt; totally different update mechanism, and with different requirements.
+</I>&gt;<i>
+</I>&gt;<i> Perfectly aware of that. Or we could as well host it somewhere else,
+</I>&gt;<i> just to host the application on a matching stack. I'm not saying it's
+</I>&gt;<i> the best solution, but it may be a temporary option to keep open.
+</I>
+Then, as decided in the past for the case of the forum hosting done by
+MLO, that would mean no access to ldap if the sysadmin team do not
+manage the server.
+
+However, having a separate account database could be done indeed.
+But I think we will quickly agree that it is not a good idea.
+
+
+
+&gt;<i> &gt; Another option that I consider would be to use another stack. Nanar
+</I>&gt;<i> &gt; already told me that he would be able to do it quite fast in catalyst,
+</I>&gt;<i> &gt; and I consider myself being able to do it in django without much problem
+</I>&gt;<i> &gt; if I dedicate enough time ( I am quite rusty but for a simple CRUD
+</I>&gt;<i> &gt; application, it would be quite ok ).
+</I>&gt;<i>
+</I>&gt;<i> Obviously we still have to learn to let it go at some times, delegate,
+</I>&gt;<i> welcome newcomers and new ideas, new stacks, if we want ever to grow
+</I>&gt;<i> the whole thing. It has a cost (flexibility and work), sure, but it
+</I>&gt;<i> has a payback too.
+</I>
+I am just mentioning it for completeness, telling another alternative
+that should be also be kept open.
+
+I am not against rails hosting. I would have told exactly the same to
+someone asking to use python-virtualenv and django, or similar
+technology on any other language.
+
+I just ask that using it do not totally disrupt our hosting and
+procedures. And I would not ask if I was not sure that it could be
+done.
+
+The current rails stack in Mandriva do not seems to be unusable to the
+point to compile our own, as gitorious worked with it among others. And
+while I understand that it can be a pain to use older versions of the
+stack for a coders, it does seems a so strong requirement. That's still
+ruby, that's still rails.
+
+&gt;<i> It's not by sticking to a single stack mostly only handled by
+</I>&gt;<i> sysadmins (Catalyst in this case) that we will achieve that delegation
+</I>&gt;<i> and growth. I'm not saying it's crap, I'm saying it does not fit the
+</I>&gt;<i> pool of volunteers we have for contributions in web development.
+</I>
+I didn't ask to stick to one stack so sorry if I gave that impression.
+
+And given the current state of the server, we are already supporting 2
+stack ( django is the other one for transifex ), and also applications
+without any kind of web stack ( like bugzilla and sympa ), and planning
+to support a 3rd one ( symphony for stormi web application ).
+
+I would even be ok if people used custom fastcgi from my point of view
+( but you prefer to have people use a popular web stack, I perfectly
+understand that you set some requirement on that part and concur in that
+sense ).
+
+I am not even against supporting a 4th stack ( namely rails ), despites
+the fact that is is more than most commercial shop, since we engineered
+the server for that ( ie fast-cgi ). We anticipated the fact that we
+would have to cope with everybody using his preferred stack, be it here
+or upstream ( ie transifex vs epoll vs gitorious vs custom php
+application ).
+
+So my request is &quot;make and test the application to work with :
+- fastcgi, should not be a problem, rails support it
+- postgresql ( again, i do not see any complex request that would cause
+trouble )
+- our version of rails and ruby ( ie 1.8 or 1.9.1 ), and rails 2.3.
+&quot;
+
+I do not have the impression to ask for the moon, I do not ask for a rpm
+package to be done, nor to have a rigorous code review regarding
+security, or specific development method, requirement on the
+documentation, memory usage, time of response, etc.
+
+There is nothing exotic to my eye :
+- standard version of ruby
+- a well know database, respecting SQL 2003 standard
+- a specific version of rails, which is unfortunately not the latest
+
+Nothing that can't be installed ( server just run Mandriva 2010.1 so a
+vm or rvm could perfectly mimic the setup ruby wise ), nothing that
+would requires esoteric knowledge.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000139.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000141.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#140">[ date ]</a>
+ <a href="thread.html#140">[ thread ]</a>
+ <a href="subject.html#140">[ subject ]</a>
+ <a href="author.html#140">[ 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-January/000141.html b/zarb-ml/mageia-webteam/2011-January/000141.html
new file mode 100644
index 000000000..5d322bc85
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000141.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTi%3Dfw4z6S6wpaiHfj7BKk2HsCaK%2BjzGg4QfxOP%3Dy%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="000140.html">
+ <LINK REL="Next" HREF="000146.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3CAANLkTi%3Dfw4z6S6wpaiHfj7BKk2HsCaK%2BjzGg4QfxOP%3Dy%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 12 13:57:18 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000140.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000146.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#141">[ date ]</a>
+ <a href="thread.html#141">[ thread ]</a>
+ <a href="subject.html#141">[ subject ]</a>
+ <a href="author.html#141">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Jan 12, 2011 at 13:29, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> The current rails stack in Mandriva do not seems to be unusable to the
+</I>&gt;<i> point to compile our own, as gitorious worked with it among others. And
+</I>&gt;<i> while I understand that it can be a pain to use older versions of the
+</I>&gt;<i> stack for a coders, it does seems a so strong requirement. That's still
+</I>&gt;<i> ruby, that's still rails.
+</I>
+That's why I asked Kosmas to report the situation to ruby* packagers
+of the distribution. We would rather improve ruby-based development
+content on Mageia than encourage developers to stay behind.
+
+&gt;<i> So my request is &quot;make and test the application to work with :
+</I>&gt;<i> - fastcgi, should not be a problem, rails support it
+</I>&gt;<i> - postgresql ( again, i do not see any complex request that would cause
+</I>&gt;<i> trouble )
+</I>&gt;<i> - our version of rails and ruby ( ie 1.8 or 1.9.1 ), and rails 2.3.
+</I>
+Already said this morning too.
+
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000140.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000146.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#141">[ date ]</a>
+ <a href="thread.html#141">[ thread ]</a>
+ <a href="subject.html#141">[ subject ]</a>
+ <a href="author.html#141">[ 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-January/000142.html b/zarb-ml/mageia-webteam/2011-January/000142.html
new file mode 100644
index 000000000..c7f30be81
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000142.html
@@ -0,0 +1,116 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum VM needs
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3C4D2E0EC4.3040308%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000146.html">
+ <LINK REL="Next" HREF="000143.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum VM needs</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3C4D2E0EC4.3040308%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forum VM needs">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Jan 12 21:27:48 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000146.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000143.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#142">[ date ]</a>
+ <a href="thread.html#142">[ thread ]</a>
+ <a href="subject.html#142">[ subject ]</a>
+ <a href="author.html#142">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+As it seems VM creation takes a little bit of time due to people being under heavy load at work Anne and misc considered the option of creation the Xen VM on one of our servers (we could migrate the VM on atalante later)
+
+For that misc asked for Forum needs...
+
+For the beginning i'll consider that we are going to put everything on the same machine (DB and PHP). This is not rally brilliant to virtualize DB servers but i guess this will not kill the VM in the first monthes as the tables will not be big.
+
+So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+
+And we'll need with php the optional :
+-- zlib compression (better having it)
+-- remote ftp support (well... i'm not in favor even if documentation asks for it)
+-- XML support (better having it)
+-- Image Magick support (better having it)
+-- GD support (same as Image magick)
+
+For source management git will be used... so we'll need it too :)
+
+As forum have often to face bruteforce having Fail2ban would be really great... for every open service like ssh but also for forums... i'd like to have Fail2ban parse a file of phpBB failed login to trigger a IP low level ban during a few hours or more...
+
+For forum management we'll need :
+-- access to sources (read/write)
+-- access to data zones (avatars and uploaded things) (read/write)
+-- access to accesslogs and errorlogs (read)
+-- hability to change php log levels
+-- access to php logs (read)
+-- console access to database(s) (i'd prefer to avoid completely phpMyadmin on the forum server)
+
+For performance questions : i guess forum opening will trigger a rather vast amount of people coming (at least to register their nicks)... i'd be happy to avoid the server being loaded to death.
+
+So i'm targetting at least one thousand simultaneous users being active on the forum... that will do for apache tuning.
+
+For database that will mean 800 to 1200 requests per seconds...
+
+We'll have 2 - 3 monthes to see the tables grow and tune the indexes and the memory accordingly.
+
+But i think our needs will stabilize around 4-6 GO for RAM if the forum gets really used (we'll have to tune mysql to keep many requests in cache) apache+mysql all included... if we split later apache and mysql on separate machines the needs on each machine will be obviously lower.
+
+For app disk space code is under 50 megs... and with hundred of avatars uploader we will not grow above 1GO
+
+For database disk space even after years of activity we'll remain under 5GO
+
+We'll need to set up some tables with havy read and write accesses with InnoDB (not all) : that would be great to have one file per table innodb option enabled
+
+Nota : i'd like to use https (at least for admin accesses)... so that will mean to enable ssl and open 443 port also
+
+That's all for system level... i think directory structures (Which concerns apache web root config) can be dealt with later...
+
+Tell me if you have got everything you need for VM creation...
+
+Cheers,
+
+Ma&#226;t
+
+
+
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000146.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000143.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#142">[ date ]</a>
+ <a href="thread.html#142">[ thread ]</a>
+ <a href="subject.html#142">[ subject ]</a>
+ <a href="author.html#142">[ 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-January/000143.html b/zarb-ml/mageia-webteam/2011-January/000143.html
new file mode 100644
index 000000000..b57b9fca8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000143.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum VM needs
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3CA31E65CCB1B23F49A8B97A3A0947018D02D24C7D%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="000142.html">
+ <LINK REL="Next" HREF="000144.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum VM needs</H1>
+ <B>Dubeau, Patrick</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3CA31E65CCB1B23F49A8B97A3A0947018D02D24C7D%40EXCHANGE2003.ccq.org%3E"
+ TITLE="[Mageia-webteam] Forum VM needs">Patrick.Dubeau at ccq.org
+ </A><BR>
+ <I>Wed Jan 12 22:02:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000142.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000144.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#143">[ date ]</a>
+ <a href="thread.html#143">[ thread ]</a>
+ <a href="subject.html#143">[ subject ]</a>
+ <a href="author.html#143">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> As it seems VM creation takes a little bit of time due to people being
+</I>&gt;<i> under heavy load at work Anne and misc considered the option of
+</I>&gt;<i> creation the Xen VM on one of our servers (we could migrate the VM on
+</I>&gt;<i> atalante later)
+</I>&gt;<i>
+</I>&gt;<i> For that misc asked for Forum needs...
+</I>&gt;<i>
+</I>&gt;<i> For the beginning i'll consider that we are going to put everything on
+</I>&gt;<i> the same machine (DB and PHP). This is not rally brilliant to
+</I>&gt;<i> virtualize DB servers but i guess this will not kill the VM in the
+</I>&gt;<i> first monthes as the tables will not be big.
+</I>&gt;<i>
+</I>&gt;<i> So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to
+</I>&gt;<i> have MySQLi extention)
+</I>&gt;<i>
+</I>&gt;<i> And we'll need with php the optional :
+</I>&gt;<i> -- zlib compression (better having it)
+</I>&gt;<i> -- remote ftp support (well... i'm not in favor even if documentation
+</I>&gt;<i> asks for it)
+</I>&gt;<i> -- XML support (better having it)
+</I>&gt;<i> -- Image Magick support (better having it)
+</I>&gt;<i> -- GD support (same as Image magick)
+</I>&gt;<i>
+</I>&gt;<i> For source management git will be used... so we'll need it too :)
+</I>&gt;<i>
+</I>&gt;<i> As forum have often to face bruteforce having Fail2ban would be really
+</I>&gt;<i> great... for every open service like ssh but also for forums... i'd
+</I>&gt;<i> like to have Fail2ban parse a file of phpBB failed login to trigger a
+</I>&gt;<i> IP low level ban during a few hours or more...
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> For forum management we'll need :
+</I>&gt;<i> -- access to sources (read/write)
+</I>&gt;<i> -- access to data zones (avatars and uploaded things) (read/write)
+</I>&gt;<i> -- access to accesslogs and errorlogs (read)
+</I>&gt;<i> -- hability to change php log levels
+</I>&gt;<i> -- access to php logs (read)
+</I>&gt;<i> -- console access to database(s) (i'd prefer to avoid completely
+</I>&gt;<i> phpMyadmin on the forum server)
+</I>&gt;<i>
+</I>&gt;<i> For performance questions : i guess forum opening will trigger a rather
+</I>&gt;<i> vast amount of people coming (at least to register their nicks)... i'd
+</I>&gt;<i> be happy to avoid the server being loaded to death.
+</I>&gt;<i>
+</I>&gt;<i> So i'm targetting at least one thousand simultaneous users being active
+</I>&gt;<i> on the forum... that will do for apache tuning.
+</I>&gt;<i>
+</I>&gt;<i> For database that will mean 800 to 1200 requests per seconds...
+</I>&gt;<i>
+</I>&gt;<i> We'll have 2 - 3 monthes to see the tables grow and tune the indexes
+</I>&gt;<i> and the memory accordingly.
+</I>&gt;<i>
+</I>&gt;<i> But i think our needs will stabilize around 4-6 GO for RAM if the forum
+</I>&gt;<i> gets really used (we'll have to tune mysql to keep many requests in
+</I>&gt;<i> cache) apache+mysql all included... if we split later apache and mysql
+</I>&gt;<i> on separate machines the needs on each machine will be obviously lower.
+</I>&gt;<i>
+</I>&gt;<i> For app disk space code is under 50 megs... and with hundred of avatars
+</I>&gt;<i> uploader we will not grow above 1GO
+</I>&gt;<i>
+</I>&gt;<i> For database disk space even after years of activity we'll remain under
+</I>&gt;<i> 5GO
+</I>&gt;<i>
+</I>&gt;<i> We'll need to set up some tables with havy read and write accesses with
+</I>&gt;<i> InnoDB (not all) : that would be great to have one file per table
+</I>&gt;<i> innodb option enabled
+</I>&gt;<i>
+</I>&gt;<i> Nota : i'd like to use https (at least for admin accesses)... so that
+</I>&gt;<i> will mean to enable ssl and open 443 port also
+</I>&gt;<i>
+</I>&gt;<i> That's all for system level... i think directory structures (Which
+</I>&gt;<i> concerns apache web root config) can be dealt with later...
+</I>&gt;<i>
+</I>&gt;<i> Tell me if you have got everything you need for VM creation...
+</I>&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i>
+</I>&gt;<i> Ma&#226;t
+</I>
+Hi Maat,
+
+I am sincerely happy you suggest it. It could ease and speed things up a
+little. xkomodor and I are under pretty heavy load of work right now and for
+myself I also have technical issues in installing and connecting to the vms
+right now and don't have enough time to spare on it as I would like to. Sorry
+for the inconveniences...
+
+
+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="000142.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000144.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#143">[ date ]</a>
+ <a href="thread.html#143">[ thread ]</a>
+ <a href="subject.html#143">[ subject ]</a>
+ <a href="author.html#143">[ 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-January/000144.html b/zarb-ml/mageia-webteam/2011-January/000144.html
new file mode 100644
index 000000000..1eec9ccc3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000144.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C20110112213734.GL21938%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="000143.html">
+ <LINK REL="Next" HREF="000145.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C20110112213734.GL21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">boklm at mars-attacks.org
+ </A><BR>
+ <I>Wed Jan 12 22:37:34 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000143.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000145.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#144">[ date ]</a>
+ <a href="thread.html#144">[ thread ]</a>
+ <a href="subject.html#144">[ subject ]</a>
+ <a href="author.html#144">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, 12 Jan 2011, Ma&#226;t wrote:
+
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> As it seems VM creation takes a little bit of time due to people being under heavy load at work Anne and misc considered the option of creation the Xen VM on one of our servers (we could migrate the VM on atalante later)
+</I>&gt;<i>
+</I>&gt;<i> For that misc asked for Forum needs...
+</I>&gt;<i>
+</I>&gt;<i> For the beginning i'll consider that we are going to put everything on the same machine (DB and PHP). This is not rally brilliant to virtualize DB servers but i guess this will not kill the VM in the first monthes as the tables will not be big.
+</I>&gt;<i>
+</I>&gt;<i> So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+</I>
+Do you know if it would be possible to use Postgresql instead of MySQL ?
+We already have a Postgresql server running on alamut that we could use.
+
+&gt;<i>
+</I>&gt;<i> And we'll need with php the optional :
+</I>&gt;<i> -- zlib compression (better having it)
+</I>&gt;<i> -- remote ftp support (well... i'm not in favor even if documentation asks for it)
+</I>&gt;<i> -- XML support (better having it)
+</I>&gt;<i> -- Image Magick support (better having it)
+</I>&gt;<i> -- GD support (same as Image magick)
+</I>
+Do you have a list of packages needed ? Or config files to change ?
+
+&gt;<i>
+</I>&gt;<i> For source management git will be used... so we'll need it too :)
+</I>
+Why do you need source management ? What would be hosted in this
+source repository exactly ?
+
+Do you need modifications in phpBB sources ?
+
+If that's only for configuration files, we can host them on puppet svn
+and deploy them with puppet.
+
+Can we have access to the sources, list of changes (if changes are
+needed), and configuration files somewhere ?
+
+If a source management is needed, I would use Mageia svn for now, and
+later an other source management software when it is setup on Mageia
+servers.
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000143.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000145.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#144">[ date ]</a>
+ <a href="thread.html#144">[ thread ]</a>
+ <a href="subject.html#144">[ subject ]</a>
+ <a href="author.html#144">[ 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-January/000145.html b/zarb-ml/mageia-webteam/2011-January/000145.html
new file mode 100644
index 000000000..3d356bce4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000145.html
@@ -0,0 +1,123 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C4D2E25B8.6070509%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000144.html">
+ <LINK REL="Next" HREF="000149.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C4D2E25B8.6070509%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Jan 12 23:05:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000144.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000149.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#145">[ date ]</a>
+ <a href="thread.html#145">[ thread ]</a>
+ <a href="subject.html#145">[ subject ]</a>
+ <a href="author.html#145">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 12/01/2011 22:37, nicolas vigier a &#233;crit :
+&gt;<i> On Wed, 12 Jan 2011, Ma&#226;t wrote:
+</I>&gt;&gt;<i> Hi there,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> As it seems VM creation takes a little bit of time due to people being under heavy load at work Anne and misc considered the option of creation the Xen VM on one of our servers (we could migrate the VM on atalante later)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> For that misc asked for Forum needs...
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> For the beginning i'll consider that we are going to put everything on the same machine (DB and PHP). This is not rally brilliant to virtualize DB servers but i guess this will not kill the VM in the first monthes as the tables will not be big.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+</I>&gt;<i> Do you know if it would be possible to use Postgresql instead of MySQL ?
+</I>&gt;<i> We already have a Postgresql server running on alamut that we could use.
+</I>phpBB3 is supposed to work with PostgreSQL 7.3+ though it's not as widely used as MySQL as a phpBB backend.
+
+The problem (for me) is that i just know the basic of PostgreSQL... so we'll need someone else skilled enough to tune it (and i'd be truly happy to learn from him/her)
+
+&gt;&gt;<i> And we'll need with php the optional :
+</I>&gt;&gt;<i> -- zlib compression (better having it)
+</I>&gt;&gt;<i> -- remote ftp support (well... i'm not in favor even if documentation asks for it)
+</I>&gt;&gt;<i> -- XML support (better having it)
+</I>&gt;&gt;<i> -- Image Magick support (better having it)
+</I>&gt;&gt;<i> -- GD support (same as Image magick)
+</I>&gt;<i> Do you have a list of packages needed ? Or config files to change ?
+</I>Nothing to change or configure for these so packaged version would be ok
+
+(we'll need to play with php.ini, my.cnf and apache config i think that's all)
+
+I guess all of these come automatically with task-lamp-php
+
+&gt;&gt;<i> For source management git will be used... so we'll need it too :)
+</I>&gt;<i> Why do you need source management ? What would be hosted in this
+</I>&gt;<i> source repository exactly ?
+</I>&gt;<i>
+</I>Because wel'll use git to switch from version to version... (.git part will not be under apache web root so this will not affect security)
+
+There will be a central node repos (somewhere... perhaps github or gitorious) cloned from upstream phpbb... from there we'll clone dev repos to add our changes... templates, mods integrations, specific patches etc.
+
+We'll clone also integration repos (used for first test level) from which test repos will be cloned and then production will be at the end
+
+Of these 3 i'd like at least to have test on the server (and production obviously)
+
+&gt;<i> Do you need modifications in phpBB sources ?
+</I>&gt;<i>
+</I>yes... some coming from (more or less) official patches (called &quot;mods&quot;) some coming from ash and i and perhaps other php devs
+
+&gt;<i> If that's only for configuration files, we can host them on puppet svn
+</I>&gt;<i> and deploy them with puppet.
+</I>&gt;<i>
+</I>if you want to play with puppet for production and having us not touching it with our dirty hands (^^) i'm perfectly ok with that... but i neeed a integration and testing forum with cascaded by git cloning (and i need to sync database of test from production to simulate version migration then cancel and replay as much a i need) so that we test our changes (and the migration process) on a perfectly identic env before putting them in production.
+
+(And git will be the spine of all that process)
+
+&gt;<i> Can we have access to the sources, list of changes (if changes are
+</I>&gt;<i> needed), and configuration files somewhere ?
+</I>&gt;<i>
+</I>&gt;<i> If a source management is needed, I would use Mageia svn for now, and
+</I>&gt;<i> later an other source management software when it is setup on Mageia
+</I>&gt;<i> servers.
+</I>Svn does not offer enough flexibility for playing with our repository while keeping a true link with upstream to merge their change with ours without pain :-/
+
+(Sorry but here SVN is not an option we should consider viable imho)
+
+
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000144.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000149.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#145">[ date ]</a>
+ <a href="thread.html#145">[ thread ]</a>
+ <a href="subject.html#145">[ subject ]</a>
+ <a href="author.html#145">[ 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-January/000146.html b/zarb-ml/mageia-webteam/2011-January/000146.html
new file mode 100644
index 000000000..7fef1aa0b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000146.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Initial hosting requirements for maintainers db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3C201101130036.32516.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000141.html">
+ <LINK REL="Next" HREF="000142.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Initial hosting requirements for maintainers db</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Initial%20hosting%20requirements%20for%20maintainers%20db&In-Reply-To=%3C201101130036.32516.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Initial hosting requirements for maintainers db">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Thu Jan 13 00:36:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000141.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000142.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#146">[ date ]</a>
+ <a href="thread.html#146">[ thread ]</a>
+ <a href="subject.html#146">[ subject ]</a>
+ <a href="author.html#146">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op woensdag 12 januari 2011 13:57:18 schreef Romain d'Alverny:
+&gt;<i> On Wed, Jan 12, 2011 at 13:29, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt; The current rails stack in Mandriva do not seems to be unusable to the
+</I>&gt;<i> &gt; point to compile our own, as gitorious worked with it among others. And
+</I>&gt;<i> &gt; while I understand that it can be a pain to use older versions of the
+</I>&gt;<i> &gt; stack for a coders, it does seems a so strong requirement. That's still
+</I>&gt;<i> &gt; ruby, that's still rails.
+</I>&gt;<i>
+</I>&gt;<i> That's why I asked Kosmas to report the situation to ruby* packagers
+</I>&gt;<i> of the distribution. We would rather improve ruby-based development
+</I>&gt;<i> content on Mageia than encourage developers to stay behind.
+</I>&gt;<i>
+</I>&gt;<i> &gt; So my request is &quot;make and test the application to work with :
+</I>&gt;<i> &gt; - fastcgi, should not be a problem, rails support it
+</I>&gt;<i> &gt; - postgresql ( again, i do not see any complex request that would cause
+</I>&gt;<i> &gt; trouble )
+</I>&gt;<i> &gt; - our version of rails and ruby ( ie 1.8 or 1.9.1 ), and rails 2.3.
+</I>&gt;<i>
+</I>&gt;<i> Already said this morning too.
+</I>
+I don't mean to intrude, but i thought the idea was to have a quick solution (
+that's why a framework would be best).
+
+if this needs to be built and tested and configured in puppet; perhaps we
+should not use this sort of framework. because the installation and discussion
+between teams takes too much time to begin with, imho.
+
+We can always do it properly later. but i think we need a quick solution.
+perhaps something that is already installed like Catalyst or that other
+framework.
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000141.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A></li>
+ <LI>Next message: <A HREF="000142.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#146">[ date ]</a>
+ <a href="thread.html#146">[ thread ]</a>
+ <a href="subject.html#146">[ subject ]</a>
+ <a href="author.html#146">[ 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-January/000147.html b/zarb-ml/mageia-webteam/2011-January/000147.html
new file mode 100644
index 000000000..3fd308b1f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000147.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C1294921144.32187.514.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000159.html">
+ <LINK REL="Next" HREF="000151.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C1294921144.32187.514.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">misc at zarb.org
+ </A><BR>
+ <I>Thu Jan 13 13:19:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000159.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000151.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#147">[ date ]</a>
+ <a href="thread.html#147">[ thread ]</a>
+ <a href="subject.html#147">[ subject ]</a>
+ <a href="author.html#147">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 13 janvier 2011 &#224; 13:06 +0100, Thierry Vignaud a &#233;crit :
+&gt;<i> On 12 January 2011 21:27, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+</I>&gt;<i> &gt; So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+</I>&gt;<i>
+</I>&gt;<i> (...)
+</I>&gt;<i>
+</I>&gt;<i> &gt; For performance questions : i guess forum opening will trigger a rather vast amount of people coming
+</I>&gt;<i> &gt; (at least to register their nicks)... i'd be happy to avoid the server being loaded to death.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; So i'm targetting at least one thousand simultaneous users being active on the forum... that will do for apache tuning.
+</I>&gt;<i>
+</I>&gt;<i> or use nginx instead of apache.
+</I>&gt;<i> Load peaks are exactly where nginx beats apache (one process per core
+</I>&gt;<i> vs one process/thread per connection):
+</I>&gt;<i> - stable memory usage over time
+</I>&gt;<i> - less unhandled requests on load
+</I>&gt;<i>
+</I>&gt;<i> On one server I set up, nginx+php-fpm+mysql handled 1.5 millions
+</I>&gt;<i> request in one hour with ridiculous load
+</I>&gt;<i> as well as ridiculous stable memory usage (2gb where most where system
+</I>&gt;<i> buffers &amp; cache)
+</I>
+With php as fast-cgi, or using fpm ?
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000159.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000151.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#147">[ date ]</a>
+ <a href="thread.html#147">[ thread ]</a>
+ <a href="subject.html#147">[ subject ]</a>
+ <a href="author.html#147">[ 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-January/000148.html b/zarb-ml/mageia-webteam/2011-January/000148.html
new file mode 100644
index 000000000..fcfcd4ee0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000148.html
@@ -0,0 +1,324 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum VM needs
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3C1294921744.6060.0.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000150.html">
+ <LINK REL="Next" HREF="000153.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum VM needs</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3C1294921744.6060.0.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Forum VM needs">misc at zarb.org
+ </A><BR>
+ <I>Thu Jan 13 13:29:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000150.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000153.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#148">[ date ]</a>
+ <a href="thread.html#148">[ thread ]</a>
+ <a href="subject.html#148">[ subject ]</a>
+ <a href="author.html#148">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 12 janvier 2011 &#224; 21:27 +0100, Ma&#226;t a &#233;crit :
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> As it seems VM creation takes a little bit of time due
+</I>&gt;<i> to people being under heavy load at work Anne and misc
+</I>&gt;<i> considered the option of creation the Xen VM on one of
+</I>&gt;<i> our servers (we could migrate the VM on atalante later)
+</I>
+The exact technology should not matter much, that's also what puppet is
+made for. Ie, unless we plan to do a migration at the system image
+level, we could simply install the 2nd vm, put puppet, clone the
+computer, migrate the db and ip.
+
+( not that I do not like xen, but I would prefer something else ).
+
+&gt;<i> For that misc asked for Forum needs...
+</I>
+I think I didn't make myself clear. I wanted information to deploy it
+like where is the git stored ( a url, not &quot;it is on a server&quot; ), who
+will need what access, etc. But the information you gave are also
+important ( and bring lots of question as you can see ).
+
+&gt;<i> For the beginning i'll consider that we are going to put everything on the same machine
+</I>&gt;<i> (DB and PHP). This is not rally brilliant to virtualize DB servers but i guess this will
+</I>&gt;<i> not kill the VM in the first monthes as the tables will not be big.
+</I>
+AFAIK, using virtio and proper cache, this should not be much a problem.
+
+&gt;<i> So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+</I>
+No specific requirement in term of version, using 2010.1 rpm should be
+ok, I assume ?
+
+&gt;<i> And we'll need with php the optional :
+</I>&gt;<i> -- zlib compression (better having it)
+</I>&gt;<i> -- remote ftp support (well... i'm not in favor even if documentation asks for it)
+</I>We could drop outgoing connexion if needed.
+
+( yes, php make me paranoid in term of security )
+
+&gt;<i> -- XML support (better having it)
+</I>&gt;<i> -- Image Magick support (better having it)
+</I>
+php-image-magick. I do think there is a conspiration to make me have a
+stroke. Security research by a friend of mine on ImageMagick do not make
+feel safe to know we will use it, but if this is required, we have no
+choice.
+
+Just to know, what will it be used for ( I assume this will be used to
+resize avatar ) ?
+
+&gt;<i> -- GD support (same as Image magick)
+</I>
+Does the forum support suhoshin, or various php hardening measures ?
+
+Did you do various testing with a hardened configuration with dangerous
+call disabled ( mainly remote url access for a start, but i also think
+we can use opendir restriction, etc, etc ).
+
+Does it have non regression testing ( so we can enable stuff and see if
+anything break ? ) ?
+
+&gt;<i> For source management git will be used... so we'll need it too :)
+</I>
+Just git clone ?
+I have a puppet module for this, just need tests before I commit.
+
+For git hosting, again, while I am in favor, there is a few questions to
+answer and prepare it, see my previous mail about what is needed.
+
+&gt;<i> As forum have often to face bruteforce having Fail2ban would be really great...
+</I>&gt;<i> for every open service like ssh
+</I>
+On ssh level, and for me, that's a vote in favor of &quot;no&quot;. We use ssh
+keys only for admins, so fail2ban will just cause trouble.
+
+&gt;<i> but also for forums... i'd like to have Fail2ban
+</I>&gt;<i> parse a file of phpBB failed login to trigger a IP low level ban during a
+</I>&gt;<i> few hours or more...
+</I>
+Well, if you give us the configuration, we can see.
+We can also use the trick that Olivier deployed on d-c to avoid numerous
+connexions from the same IP ( in case someone decide to be smart and do
+simultaneous attempts to log ).
+
+&gt;<i> For forum management we'll need :
+</I>
+&gt;&gt;&gt;<i> we
+</I>Traceback (most recent call last):
+ File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;
+NameError: name 'we' is not defined
+
+or for those who are not CxO-fluent ( private joke ), who is 'we', in
+term of organisation ( ie, do we need to create a ldap group, etc ) ?
+
+&gt;<i> -- access to sources (read/write)
+</I>I rather keep this automated from git, for security reasons and to avoid
+human errors. I would even add a cron job that does a git diff or
+something similar, to detect if someone uploaded a file manually, or
+touched to it using apache.
+
+In fact, as a security measure, I think the user that will write the
+source should put it read only for apache. Ie, use a separate system
+user for that.
+
+&gt;<i> -- access to data zones (avatars and uploaded things) (read/write)
+</I>You mean apache will need it, no ?
+
+Direct access seems to me a pretty rare event, we can grant access if
+there is a really lots of request, ie if you annoy admin enough to make
+them give it rather than doing themselves.
+
+&gt;<i> -- access to accesslogs and errorlogs (read)
+</I>then this should be merged with the webmasters concept that romain
+explained. For now, we didn't setup anything ( we didn't even split log
+file on alamut, even if this should be trivial ).
+
+&gt;<i> -- ability to change php log levels
+</I>This can be done by php, I think.
+
+&gt;<i> -- access to php logs (read)
+</I>same as accesslogs
+
+&gt;<i> -- console access to database(s) (i'd prefer to avoid completely phpMyadmin on the forum server)
+</I>I would prefer avoid giving console access until there is a real need. I would favor then a remote
+mysql access, and forcing ssl, maybe even limited by fixed ip address if you wish to avoid bruteforce.
+
+( I will not go to the point of proposing to use a vpn too, but
+almost ).
+
+Maybe we could think of some kind of ssh bastion for such access ( or
+maybe that's overkill too ).
+
+&gt;<i> For performance questions : i guess forum opening will trigger a rather vast
+</I>&gt;<i> amount of people coming (at least to register their nicks)... i'd be happy to
+</I>&gt;<i> avoid the server being loaded to death.
+</I>
+Registration will be done on catdap from what I think we agreed on, no ?
+( correct me if I am wrong ).
+
+So we need to work on that part ( starting more processes, and so
+letting us tune that with puppet ( this is hardcoded now, AFAIK ). So
+depending on where we host the forum, we can surely avoid this effect.
+
+&gt;<i> So i'm targetting at least one thousand simultaneous users being active on the
+</I>&gt;<i> forum... that will do for apache tuning.
+</I>
+Ok so let's say 120 simultaneous process for apache, which also mean we
+need to keep apache process as lean as possible ( ie, no unused module
+loaded ). I assume that there is no guarantee on being thread safe from
+php and associated library, so we will use mpm-prefork.
+
+Since the server is isolated and serve only for php hosting, I guess
+using fast-cgi will not bring much to the equation, when compared to
+mod_php.
+
+Let's also assume 30 processes for forum registration on catdap ( if I
+am not wrong on that part, of course ) ? We could surely mitigate the
+potential overload by not announcing this on every possible channel at
+the same time ( ie, first a mail, then a blog post, then
+identica/twitter ).
+
+Should we also maybe need to tune ldap ?
+
+&gt;<i> For database that will mean 800 to 1200 requests per seconds...
+</I>&gt;<i>
+</I>&gt;<i> We'll have 2 - 3 months to see the tables grow and tune the indexes and the memory accordingly.
+</I>
+That mean that we will have to deploy some monitoring, and we didn't
+decided anything ( buchan proposed hobbit, I proposed munin, purely by
+familiarity ).
+
+What metrics would you need so we can work on them in priority ( once we
+start to set up something ) ?
+
+&gt;<i> But i think our needs will stabilize around 4-6 GO for RAM if the forum gets really
+</I>&gt;<i> used (we'll have to tune mysql to keep many requests in cache) apache+mysql all
+</I>&gt;<i> included... if we split later apache and mysql on separate machines the needs on
+</I>&gt;<i> each machine will be obviously lower.
+</I>
+No cache ( squid, varnish ) ?
+No php level cache too ?
+
+( not that it may be requested now )
+
+&gt;<i> For app disk space code is under 50 megs... and with hundred of avatars uploader
+</I>&gt;<i> we will not grow above 1GO
+</I>&gt;<i>
+</I>&gt;<i> For database disk space even after years of activity we'll remain under 5GO
+</I>
+Ok so let's allocate a 10 g partition for the db + ssthat on lvm.
+We should take in account logs, and logs backup ( french law requires 1
+year of logs ).
+
+How many logs are to be expected per day ?
+The only busy webserver I can think of is d-c, but Nanar and I just
+discovered that the configuration is not good.
+So now, that's 5g of log, uncompressed, per month.
+
+
+&gt;<i> We'll need to set up some tables with heavy read and write accesses with InnoDB (not all) :
+</I>&gt;<i> that would be great to have one file per table innodb option enabled
+</I>
+Ok, I guess it should be safe to enable it for all mysql db I guess.
+
+&gt;<i> Nota : i'd like to use https (at least for admin accesses)... so that will mean to enable
+</I>&gt;<i> ssl and open 443 port also
+</I>
+We did not plan to let people use their password under cleartext at all.
+Centralized auth have been setup ( and should be used for forum too ),
+so people will reuse their password, the same used at others part of the
+infrastructure, and that mean svn, or bugzilla, etc. Since people with
+access will use it, no cleartext at all when the password is sent ( or
+over my dead body, after fighting my ghost ).
+
+I guess we can make exception for the cookie, as long as it is not
+shared ( ie, we will have to rethink the scheme if we deploy SSO ).
+
+That also mean that people will complain because of firefox if we do not
+buy a certificate.
+
+
+&gt;<i> That's all for system level... i think directory structures (Which concerns apache web root config) can be dealt with later...
+</I>&gt;<i>
+</I>&gt;<i> Tell me if you have got everything you need for VM creation...
+</I>
+What I needed was more information for forum deployment, not vm
+requirements, I guess I didn't express myself clearly. The requirement
+for the vm in term of memory/disk have been roughly drafted before. What
+I would prefer is a deployment document.
+
+Ideally, I would also prefer that discussion regarding forum development
+occurs on public ml ( for webteam here ) rather than private mail
+exchange.
+
+So @sysadmins, where do we host this ( for temporary creation and setup
+until MLO do it ) :
+
+10 g of disk ( let's say 20 )
+4 to 6 g of ram
+( and I guess 1 or cpu ).
+
+Alamut ?
+
+
+In term of network, do we use a reverse proxy, or do we ask for a ip to
+LO. I would suggest a reverse proxy, easier to setup ( and no fiddling
+with bridge ).
+
+
+What virt technology ?
+
+I am quite biased in favor of libvirtd + kvm + virt-manager, as this is
+supported by upstream and redhat, but maybe other have different
+experiences.
+
+--
+Michael Scherer
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000150.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000153.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#148">[ date ]</a>
+ <a href="thread.html#148">[ thread ]</a>
+ <a href="subject.html#148">[ subject ]</a>
+ <a href="author.html#148">[ 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-January/000149.html b/zarb-ml/mageia-webteam/2011-January/000149.html
new file mode 100644
index 000000000..47731a910
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000149.html
@@ -0,0 +1,168 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C1294921772.6060.1.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000145.html">
+ <LINK REL="Next" HREF="000152.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C1294921772.6060.1.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">misc at zarb.org
+ </A><BR>
+ <I>Thu Jan 13 13:29:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000145.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000152.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#149">[ date ]</a>
+ <a href="thread.html#149">[ thread ]</a>
+ <a href="subject.html#149">[ subject ]</a>
+ <a href="author.html#149">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 12 janvier 2011 &#224; 23:05 +0100, Ma&#226;t a &#233;crit :
+&gt;<i> Le 12/01/2011 22:37, nicolas vigier a &#233;crit :
+</I>&gt;<i> &gt; On Wed, 12 Jan 2011, Ma&#226;t wrote:
+</I>
+&gt;<i> &gt;&gt; So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+</I>&gt;<i> &gt; Do you know if it would be possible to use Postgresql instead of MySQL ?
+</I>&gt;<i> &gt; We already have a Postgresql server running on alamut that we could use.
+</I>&gt;<i> phpBB3 is supposed to work with PostgreSQL 7.3+ though it's not as widely used as MySQL as a phpBB backend.
+</I>
+Great, so more testing to do /o\
+
+&gt;<i> The problem (for me) is that i just know the basic of PostgreSQL... so we'll need someone else skilled
+</I>&gt;<i> enough to tune it (and i'd be truly happy to learn from him/her)
+</I>
+Nanar will be able to do it, even if hosting a small database like this
+may not be very appealing to him. There is just 5g, when compared to
+sophie, I let him give the numbers.
+
+But I would prefer to have it hosted on mysql if we later migrate to
+another vm. The lag Marseille &lt;-&gt; Toulouse will not be good if it can be
+avoided. We could also setup a different postgresql server on the forum
+vm in this case.
+
+In any case, postgresql to mysql conversion doesn't look doable.
+
+&gt;<i> There will be a central node repos (somewhere... perhaps github or gitorious) cloned from upstream
+</I>&gt;<i> phpbb... from there we'll clone dev repos to add our changes... templates, mods integrations, specific patches etc.
+</I>
+I would prefer to have it hosted on our servers, for various and obvious
+reasons ( like : &quot;handling the auth and permission ourself&quot; &quot;proper
+bugtracker integration&quot;, etc ).
+
+But we are not ready, see my answer about gitorious. So here is a
+proposal in 4 steps :
+
+Now :
+- we do a git checkout every 5 minutes ( just need the url, and
+testing )
+
+Later ( like short term ):
+- sysadmins do work to have a git repository, who will be the exact
+state of production, and be the reference. That where changes are
+pushed, and where the server take his checkout. So this way, the project
+handle who can push to it using ldap (unification of auth, delegatation
+etc ).
+
+Later again ( like mid term ) :
+- you express your needs in term of hosting ( like what type of hook,
+requirement in term of web interface, &quot;need to do review&quot; &quot;need to show
+dancing hamster&quot; , etc ) when we do a call for that ( you can do before,
+but this will potentially be lost ).
+
+Once we have installed this :
+- you switch to our infrastructure.
+
+&gt;<i> We'll clone also integration repos (used for first test level) from which test
+</I>&gt;<i> repos will be cloned and then production will be at the end
+</I>&gt;<i>
+</I>&gt;<i> Of these 3 i'd like at least to have test on the server (and production obviously)
+</I>
+Since we do have puppet and can clone machine, I would then prefer to
+have a separate vm for test than for production, unless there is problem
+with the intended usage (like you really need to have the exact same
+hardware, for load testing purpose ).
+
+&gt;<i> &gt; Do you need modifications in phpBB sources ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> yes... some coming from (more or less) official patches (called &quot;mods&quot;) some coming from ash and i and perhaps other php devs
+</I>
+/me close eyes when reading &quot;(more of less) official patches&quot;.
+
+&gt;<i> &gt; If that's only for configuration files, we can host them on puppet svn
+</I>&gt;<i> &gt; and deploy them with puppet.
+</I>&gt;<i> &gt;
+</I>&gt;<i> if you want to play with puppet for production and having us not touching it with our dirty hands (^^) i'm perfectly ok with
+</I>&gt;<i> that... but i neeed a integration and testing forum with cascaded by git cloning
+</I>&gt;<i> (and i need to sync database of test from production to simulate version migration then cancel and replay as much a i need)
+</I>
+Could we do it with a master/slave replication without much trouble ?
+( and possibly, one that would automatically recreate the db once it is
+dropped )
+
+Or we can do snapshot using lvm, but I think this can be quite fragile.
+
+
+&gt;<i> so that we test our changes (and the migration process) on a perfectly identic env before putting them in production.
+</I>
+As said, I would strongly favor a automated deployment using git, at
+least on production server.
+
+&gt;<i> (And git will be the spine of all that process)
+</I>&gt;<i>
+</I>&gt;<i> &gt; Can we have access to the sources, list of changes (if changes are
+</I>&gt;<i> &gt; needed), and configuration files somewhere ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; If a source management is needed, I would use Mageia svn for now, and
+</I>&gt;<i> &gt; later an other source management software when it is setup on Mageia
+</I>&gt;<i> &gt; servers.
+</I>&gt;<i> Svn does not offer enough flexibility for playing with our repository while
+</I>&gt;<i> keeping a true link with upstream to merge their change with ours without pain :-/
+</I>&gt;<i>
+</I>&gt;<i> (Sorry but here SVN is not an option we should consider viable imho)
+</I>
+As I said, if people want us to host git, there is a few questions to
+answer first ( I guess that 2 weeks to gather requirement should
+suffice, given proper flamewar handling )
+
+--
+Michael Scherer
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000145.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000152.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#149">[ date ]</a>
+ <a href="thread.html#149">[ thread ]</a>
+ <a href="subject.html#149">[ subject ]</a>
+ <a href="author.html#149">[ 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-January/000150.html b/zarb-ml/mageia-webteam/2011-January/000150.html
new file mode 100644
index 000000000..d9f641c25
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000150.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3CAANLkTimbSg3AkAhhtUh_W3KuTz7Q_OgeXdTcxZyJ3E0C%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="000160.html">
+ <LINK REL="Next" HREF="000148.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3CAANLkTimbSg3AkAhhtUh_W3KuTz7Q_OgeXdTcxZyJ3E0C%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">thierry.vignaud at gmail.com
+ </A><BR>
+ <I>Thu Jan 13 13:06:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000160.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000148.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#150">[ date ]</a>
+ <a href="thread.html#150">[ thread ]</a>
+ <a href="subject.html#150">[ subject ]</a>
+ <a href="author.html#150">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 12 January 2011 21:27, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+&gt;<i> So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+</I>
+(...)
+
+&gt;<i> For performance questions : i guess forum opening will trigger a rather vast amount of people coming (at least to register their nicks)... i'd be happy to avoid the server being loaded to death.
+</I>&gt;<i>
+</I>&gt;<i> So i'm targetting at least one thousand simultaneous users being active on the forum... that will do for apache tuning.
+</I>
+or use nginx instead of apache.
+Load peaks are exactly where nginx beats apache (one process per core
+vs one process/thread per connection):
+- stable memory usage over time
+- less unhandled requests on load
+
+On one server I set up, nginx+php-fpm+mysql handled 1.5 millions
+request in one hour with ridiculous load
+as well as ridiculous stable memory usage (2gb where most where system
+buffers &amp; cache)
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000160.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000148.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#150">[ date ]</a>
+ <a href="thread.html#150">[ thread ]</a>
+ <a href="subject.html#150">[ subject ]</a>
+ <a href="author.html#150">[ 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-January/000151.html b/zarb-ml/mageia-webteam/2011-January/000151.html
new file mode 100644
index 000000000..48f2bd4e5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000151.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3CAANLkTimLfkNBuKSOE00v99AW3j%3Du5WPw-u8-7OemZrsQ%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="000147.html">
+ <LINK REL="Next" HREF="000161.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3CAANLkTimLfkNBuKSOE00v99AW3j%3Du5WPw-u8-7OemZrsQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">thierry.vignaud at gmail.com
+ </A><BR>
+ <I>Thu Jan 13 13:33:46 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000147.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000161.html">[Mageia-webteam] 2011/week 3 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#151">[ date ]</a>
+ <a href="thread.html#151">[ thread ]</a>
+ <a href="subject.html#151">[ subject ]</a>
+ <a href="author.html#151">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 13 January 2011 13:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;&gt;<i> or use nginx instead of apache.
+</I>&gt;&gt;<i> Load peaks are exactly where nginx beats apache (one process per core
+</I>&gt;&gt;<i> vs one process/thread per connection):
+</I>&gt;&gt;<i> - stable memory usage over time
+</I>&gt;&gt;<i> - less unhandled requests on load
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> On one server I set up, nginx+php-fpm+mysql handled 1.5 millions
+</I>&gt;&gt;<i> request in one hour with ridiculous load
+</I>&gt;&gt;<i> as well as ridiculous stable memory usage (2gb where most where system
+</I>&gt;&gt;<i> buffers &amp; cache)
+</I>&gt;<i>
+</I>&gt;<i> With php as fast-cgi, or using fpm ?
+</I>
+with php-fpm (which was finally merged into php-5.3.3)
+The db is on another host though but usually it's apache fork bomb who bits
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000147.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000161.html">[Mageia-webteam] 2011/week 3 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#151">[ date ]</a>
+ <a href="thread.html#151">[ thread ]</a>
+ <a href="subject.html#151">[ subject ]</a>
+ <a href="author.html#151">[ 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-January/000152.html b/zarb-ml/mageia-webteam/2011-January/000152.html
new file mode 100644
index 000000000..2303bfbc8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000152.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C20110113125038.GO10402%40virgo.home.nanardon.zarb.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000149.html">
+ <LINK REL="Next" HREF="000154.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Olivier Thauvin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C20110113125038.GO10402%40virgo.home.nanardon.zarb.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">nanardon at nanardon.zarb.org
+ </A><BR>
+ <I>Thu Jan 13 13:50:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000149.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000154.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#152">[ date ]</a>
+ <a href="thread.html#152">[ thread ]</a>
+ <a href="subject.html#152">[ subject ]</a>
+ <a href="author.html#152">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>* Michael Scherer (<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>) wrote:
+&gt;<i> Le mercredi 12 janvier 2011 &#224; 23:05 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;<i> &gt; Le 12/01/2011 22:37, nicolas vigier a &#233;crit :
+</I>&gt;<i> &gt; &gt; On Wed, 12 Jan 2011, Ma&#226;t wrote:
+</I>&gt;<i>
+</I>&gt;<i> &gt; &gt;&gt; So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+</I>&gt;<i> &gt; &gt; Do you know if it would be possible to use Postgresql instead of MySQL ?
+</I>&gt;<i> &gt; &gt; We already have a Postgresql server running on alamut that we could use.
+</I>&gt;<i> &gt; phpBB3 is supposed to work with PostgreSQL 7.3+ though it's not as widely used as MySQL as a phpBB backend.
+</I>&gt;<i>
+</I>&gt;<i> Great, so more testing to do /o\
+</I>
+In practice, if the SQL was properly written, the SQL must work on any
+PGSQL version, especially since it have to work on other SQL server
+(mysql).
+
+But who know with php apps.
+
+&gt;<i>
+</I>&gt;<i> &gt; The problem (for me) is that i just know the basic of PostgreSQL... so we'll need someone else skilled
+</I>&gt;<i> &gt; enough to tune it (and i'd be truly happy to learn from him/her)
+</I>&gt;<i>
+</I>&gt;<i> Nanar will be able to do it, even if hosting a small database like this
+</I>&gt;<i> may not be very appealing to him. There is just 5g, when compared to
+</I>&gt;<i> sophie, I let him give the numbers.
+</I>
+Sophie:
+- on disk size: ~ 200GB
+- biggers tables, rows estimated to 150 millions, next table 16 millions
+- 1208570 rpms in it currently
+
+I manage 5 posgresql servers at works.
+
+--
+
+Olivier Thauvin
+CNRS - LATMOS
+&#9814; &#9816; &#9815; &#9813; &#9812; &#9815; &#9816; &#9814;
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: not available
+Type: application/pgp-signature
+Size: 197 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110113/3ae129a4/attachment-0001.asc&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000149.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000154.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#152">[ date ]</a>
+ <a href="thread.html#152">[ thread ]</a>
+ <a href="subject.html#152">[ subject ]</a>
+ <a href="author.html#152">[ 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-January/000153.html b/zarb-ml/mageia-webteam/2011-January/000153.html
new file mode 100644
index 000000000..1ed87c965
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000153.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum VM needs
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3C1294924501.6060.7.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000148.html">
+ <LINK REL="Next" HREF="000156.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum VM needs</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3C1294924501.6060.7.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Forum VM needs">misc at zarb.org
+ </A><BR>
+ <I>Thu Jan 13 14:15:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000148.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000156.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#153">[ date ]</a>
+ <a href="thread.html#153">[ thread ]</a>
+ <a href="subject.html#153">[ subject ]</a>
+ <a href="author.html#153">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 13 janvier 2011 &#224; 13:29 +0100, Michael Scherer a &#233;crit :
+
+&gt;<i> How many logs are to be expected per day ?
+</I>&gt;<i> The only busy webserver I can think of is d-c, but Nanar and I just
+</I>&gt;<i> discovered that the configuration is not good.
+</I>&gt;<i> So now, that's 5g of log, uncompressed, per month.
+</I>
+And 165m, once compressed in bz2 ( but it took like 1 hour )
+
+( for access.log ).
+
+I guess we should dedicate 30/35g to logs, maybe more ?
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000148.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000156.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#153">[ date ]</a>
+ <a href="thread.html#153">[ thread ]</a>
+ <a href="subject.html#153">[ subject ]</a>
+ <a href="author.html#153">[ 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-January/000154.html b/zarb-ml/mageia-webteam/2011-January/000154.html
new file mode 100644
index 000000000..815dd6f12
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000154.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C4D3031C1.1010008%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000152.html">
+ <LINK REL="Next" HREF="000155.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C4D3031C1.1010008%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">maat-ml at vilarem.net
+ </A><BR>
+ <I>Fri Jan 14 12:21:37 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000152.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000155.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#154">[ date ]</a>
+ <a href="thread.html#154">[ thread ]</a>
+ <a href="subject.html#154">[ subject ]</a>
+ <a href="author.html#154">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 13/01/2011 13:50, Olivier Thauvin a &#233;crit :
+&gt;<i> * Michael Scherer (<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>) wrote:
+</I>&gt;&gt;<i> Le mercredi 12 janvier 2011 &#224; 23:05 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;&gt;&gt;<i> Le 12/01/2011 22:37, nicolas vigier a &#233;crit :
+</I>&gt;&gt;&gt;&gt;<i> On Wed, 12 Jan 2011, Ma&#226;t wrote:
+</I>&gt;&gt;&gt;&gt;&gt;<i> So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+</I>&gt;&gt;&gt;&gt;<i> Do you know if it would be possible to use Postgresql instead of MySQL ?
+</I>&gt;&gt;&gt;&gt;<i> We already have a Postgresql server running on alamut that we could use.
+</I>&gt;&gt;&gt;<i> phpBB3 is supposed to work with PostgreSQL 7.3+ though it's not as widely used as MySQL as a phpBB backend.
+</I>&gt;&gt;<i> Great, so more testing to do /o\
+</I>&gt;<i> In practice, if the SQL was properly written, the SQL must work on any
+</I>&gt;<i> PGSQL version, especially since it have to work on other SQL server
+</I>&gt;<i> (mysql).
+</I>&gt;<i>
+</I>&gt;<i> But who know with php apps.
+</I>&gt;<i>
+</I>Troll&#8482; detected ^^
+
+&gt;&gt;&gt;<i> The problem (for me) is that i just know the basic of PostgreSQL... so we'll need someone else skilled
+</I>&gt;&gt;&gt;<i> enough to tune it (and i'd be truly happy to learn from him/her)
+</I>&gt;&gt;<i> Nanar will be able to do it, even if hosting a small database like this
+</I>&gt;&gt;<i> may not be very appealing to him. There is just 5g, when compared to
+</I>&gt;&gt;<i> sophie, I let him give the numbers.
+</I>&gt;<i> Sophie:
+</I>&gt;<i> - on disk size: ~ 200GB
+</I>&gt;<i> - biggers tables, rows estimated to 150 millions, next table 16 millions
+</I>&gt;<i> - 1208570 rpms in it currently
+</I>&gt;<i>
+</I>&gt;<i> I manage 5 posgresql servers at works.
+</I>&gt;<i>
+</I>&gt;<i>
+</I>\o/ Master !
+
+Teach me :)
+
+Nota : the difficult part with a forum is not really in the table size for tuning but in the complexity of requests with lots of joins mixed with the number of simultaneous read&amp;write calls which can quickly make the server bite the dust :-/
+
+=&gt; clever indexing, good cache and memory tuning, good storage format (to avoid pessimistic table locking and to allow quick parsing with sometimes fulltext indexes)
+
+(and database backup while users are using the forum without making it unusable can also be a challenge)
+
+cheers,
+Ma&#226;t
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000152.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000155.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#154">[ date ]</a>
+ <a href="thread.html#154">[ thread ]</a>
+ <a href="subject.html#154">[ subject ]</a>
+ <a href="author.html#154">[ 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-January/000155.html b/zarb-ml/mageia-webteam/2011-January/000155.html
new file mode 100644
index 000000000..64df57738
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000155.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C4D317B0E.2000905%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000154.html">
+ <LINK REL="Next" HREF="000157.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Forum%20VM%20needs&In-Reply-To=%3C4D317B0E.2000905%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sat Jan 15 11:46:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000154.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000157.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#155">[ date ]</a>
+ <a href="thread.html#155">[ thread ]</a>
+ <a href="subject.html#155">[ subject ]</a>
+ <a href="author.html#155">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 13/01/2011 13:29, Michael Scherer a &#233;crit :
+
+----8&lt;----
+&gt;<i> In any case, postgresql to mysql conversion doesn't look doable.
+</I>&gt;<i>
+</I>It could be done using things like TOS
+
+&gt;&gt;<i> There will be a central node repos (somewhere... perhaps github or gitorious) cloned from upstream
+</I>&gt;&gt;<i> phpbb... from there we'll clone dev repos to add our changes... templates, mods integrations, specific patches etc.
+</I>&gt;<i> I would prefer to have it hosted on our servers, for various and obvious
+</I>&gt;<i> reasons ( like : &quot;handling the auth and permission ourself&quot; &quot;proper
+</I>&gt;<i> bugtracker integration&quot;, etc ).
+</I>Indeed
+
+&gt;<i> But we are not ready, see my answer about gitorious. So here is a
+</I>&gt;<i> proposal in 4 steps :
+</I>&gt;<i>
+</I>&gt;<i> Now :
+</I>&gt;<i> - we do a git checkout every 5 minutes ( just need the url, and
+</I>&gt;<i> testing )
+</I>Ouch
+
+&gt;<i> Later ( like short term ):
+</I>&gt;<i> - sysadmins do work to have a git repository, who will be the exact
+</I>&gt;<i> state of production, and be the reference. That where changes are
+</I>&gt;<i> pushed, and where the server take his checkout. So this way, the project
+</I>&gt;<i> handle who can push to it using ldap (unification of auth, delegatation
+</I>&gt;<i> etc ).
+</I>&gt;<i>
+</I>&gt;<i> Later again ( like mid term ) :
+</I>&gt;<i> - you express your needs in term of hosting ( like what type of hook,
+</I>&gt;<i> requirement in term of web interface, &quot;need to do review&quot; &quot;need to show
+</I>&gt;<i> dancing hamster&quot; , etc ) when we do a call for that ( you can do before,
+</I>&gt;<i> but this will potentially be lost ).
+</I>ok for that
+
+&gt;<i> Once we have installed this :
+</I>&gt;<i> - you switch to our infrastructure.
+</I>&gt;<i>
+</I>&gt;&gt;<i> We'll clone also integration repos (used for first test level) from which test
+</I>&gt;&gt;<i> repos will be cloned and then production will be at the end
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Of these 3 i'd like at least to have test on the server (and production obviously)
+</I>&gt;<i> Since we do have puppet and can clone machine, I would then prefer to
+</I>&gt;<i> have a separate vm for test than for production, unless there is problem
+</I>&gt;<i> with the intended usage (like you really need to have the exact same
+</I>&gt;<i> hardware, for load testing purpose ).
+</I>Nope... the we don't need to have cascading git repos... each integration/testing/production can be cloned from reference
+
+&gt;&gt;&gt;<i> Do you need modifications in phpBB sources ?
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> yes... some coming from (more or less) official patches (called &quot;mods&quot;) some coming from ash and i and perhaps other php devs
+</I>&gt;<i> /me close eyes when reading &quot;(more of less) official patches&quot;.
+</I>&gt;<i>
+</I>That's the way phpBB people deals with &quot;mods&quot; : authors (not phpBB Team) publish them on the mods dedicated forum, and you are free to use (or not) them without warranty at all some are widely used and well known to be stable...
+
+That's why integration and testing stages are so important
+
+&gt;&gt;&gt;<i> If that's only for configuration files, we can host them on puppet svn
+</I>&gt;&gt;&gt;<i> and deploy them with puppet.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> if you want to play with puppet for production and having us not touching it with our dirty hands (^^) i'm perfectly ok with
+</I>&gt;&gt;<i> that... but i neeed a integration and testing forum with cascaded by git cloning
+</I>&gt;&gt;<i> (and i need to sync database of test from production to simulate version migration then cancel and replay as much a i need)
+</I>&gt;<i> Could we do it with a master/slave replication without much trouble ?
+</I>&gt;<i> ( and possibly, one that would automatically recreate the db once it is
+</I>&gt;<i> dropped )
+</I>&gt;<i>
+</I>&gt;<i> Or we can do snapshot using lvm, but I think this can be quite fragile.
+</I>&gt;<i>
+</I>Nope... master/slave replication will not fit my needs : i need 2 separate bases. The production i won't play with it.
+
+For testing : once i updated the code to the new version there can be SQL modifications : new tables, alter tables, insert or update for rows...
+
+This will be triggered from admin board of phpBB... with a master/slave this would be forbidden or would brake replication
+
+But we could perfectly use the last (nightly ,) production backup to populate the test base when i need to go back to &quot;clean production state&quot;
+
+
+&gt;&gt;<i> so that we test our changes (and the migration process) on a perfectly identic env before putting them in production.
+</I>&gt;<i> As said, I would strongly favor a automated deployment using git, at
+</I>&gt;<i> least on production server.
+</I>ok for me
+
+&gt;&gt;<i> (And git will be the spine of all that process)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Can we have access to the sources, list of changes (if changes are
+</I>&gt;&gt;&gt;<i> needed), and configuration files somewhere ?
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> If a source management is needed, I would use Mageia svn for now, and
+</I>&gt;&gt;&gt;<i> later an other source management software when it is setup on Mageia
+</I>&gt;&gt;&gt;<i> servers.
+</I>&gt;&gt;<i> Svn does not offer enough flexibility for playing with our repository while
+</I>&gt;&gt;<i> keeping a true link with upstream to merge their change with ours without pain :-/
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> (Sorry but here SVN is not an option we should consider viable imho)
+</I>&gt;<i> As I said, if people want us to host git, there is a few questions to
+</I>&gt;<i> answer first ( I guess that 2 weeks to gather requirement should
+</I>&gt;<i> suffice, given proper flamewar handling )
+</I>
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000154.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000157.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#155">[ date ]</a>
+ <a href="thread.html#155">[ thread ]</a>
+ <a href="subject.html#155">[ subject ]</a>
+ <a href="author.html#155">[ 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-January/000156.html b/zarb-ml/mageia-webteam/2011-January/000156.html
new file mode 100644
index 000000000..6fe1b44de
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000156.html
@@ -0,0 +1,335 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum VM needs
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3C4D3187E0.8090504%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000153.html">
+ <LINK REL="Next" HREF="000159.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum VM needs</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3C4D3187E0.8090504%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forum VM needs">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sat Jan 15 12:41:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000153.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000159.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#156">[ date ]</a>
+ <a href="thread.html#156">[ thread ]</a>
+ <a href="subject.html#156">[ subject ]</a>
+ <a href="author.html#156">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 13/01/2011 13:29, Michael Scherer a &#233;crit :
+&gt;<i> Le mercredi 12 janvier 2011 &#224; 21:27 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;&gt;<i> Hi there,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> As it seems VM creation takes a little bit of time due
+</I>&gt;&gt;<i> to people being under heavy load at work Anne and misc
+</I>&gt;&gt;<i> considered the option of creation the Xen VM on one of
+</I>&gt;&gt;<i> our servers (we could migrate the VM on atalante later)
+</I>&gt;<i> The exact technology should not matter much, that's also what puppet is
+</I>&gt;<i> made for. Ie, unless we plan to do a migration at the system image
+</I>&gt;<i> level, we could simply install the 2nd vm, put puppet, clone the
+</I>&gt;<i> computer, migrate the db and ip.
+</I>&gt;<i>
+</I>&gt;<i> ( not that I do not like xen, but I would prefer something else ).
+</I>Well I mentionned Xen because Atalante uses it... but if this is not a problem for puppet then ok for me :)
+
+
+&gt;&gt;<i> For that misc asked for Forum needs...
+</I>&gt;<i> I think I didn't make myself clear. I wanted information to deploy it
+</I>&gt;<i> like where is the git stored ( a url, not &quot;it is on a server&quot; ), who
+</I>&gt;<i> will need what access, etc. But the information you gave are also
+</I>&gt;<i> important ( and bring lots of question as you can see ).
+</I>&gt;<i>
+</I>Atm it's stored on Ennael's dedibox :)
+
+
+
+&gt;&gt;<i> For the beginning i'll consider that we are going to put everything on the same machine
+</I>&gt;&gt;<i> (DB and PHP). This is not rally brilliant to virtualize DB servers but i guess this will
+</I>&gt;&gt;<i> not kill the VM in the first monthes as the tables will not be big.
+</I>&gt;<i> AFAIK, using virtio and proper cache, this should not be much a problem.
+</I>ok then
+
+&gt;&gt;<i> So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have MySQLi extention)
+</I>&gt;<i> No specific requirement in term of version, using 2010.1 rpm should be
+</I>&gt;<i> ok, I assume ?
+</I>indeed
+
+&gt;&gt;<i> And we'll need with php the optional :
+</I>&gt;&gt;<i> -- zlib compression (better having it)
+</I>&gt;&gt;<i> -- remote ftp support (well... i'm not in favor even if documentation asks for it)
+</I>&gt;<i> We could drop outgoing connexion if needed.
+</I>&gt;<i>
+</I>&gt;<i> ( yes, php make me paranoid in term of security )
+</I>&gt;<i>
+</I>quite understandable :o)
+
+&gt;&gt;<i> -- XML support (better having it)
+</I>&gt;&gt;<i> -- Image Magick support (better having it)
+</I>&gt;<i> php-image-magick. I do think there is a conspiration to make me have a
+</I>&gt;<i> stroke. Security research by a friend of mine on ImageMagick do not make
+</I>&gt;<i> feel safe to know we will use it, but if this is required, we have no
+</I>&gt;<i> choice.
+</I>&gt;<i>
+</I>&gt;<i> Just to know, what will it be used for ( I assume this will be used to
+</I>&gt;<i> resize avatar ) ?
+</I>yes
+&gt;&gt;<i> -- GD support (same as Image magick)
+</I>&gt;<i> Does the forum support suhoshin, or various php hardening measures ?
+</I>&gt;<i>
+</I>Dunno... but we can check that. phpBB forum's got a few threads of errors mentionning suhosin but i suspect they did not try very hard
+
+&gt;<i> Did you do various testing with a hardened configuration with dangerous
+</I>&gt;<i> call disabled ( mainly remote url access for a start, but i also think
+</I>&gt;<i> we can use opendir restriction, etc, etc ).
+</I>&gt;<i>
+</I>&gt;<i> Does it have non regression testing ( so we can enable stuff and see if
+</I>&gt;<i> anything break ? ) ?
+</I>&gt;<i>
+</I>Testing and integration envs are perfect for that :)
+
+
+&gt;&gt;<i> For source management git will be used... so we'll need it too :)
+</I>&gt;<i> Just git clone ?
+</I>&gt;<i> I have a puppet module for this, just need tests before I commit.
+</I>&gt;<i>
+</I>&gt;<i> For git hosting, again, while I am in favor, there is a few questions to
+</I>&gt;<i> answer and prepare it, see my previous mail about what is needed.
+</I>&gt;<i>
+</I>we need cloning, branch/tag switching and sync with reference repos
+
+&gt;&gt;<i> As forum have often to face bruteforce having Fail2ban would be really great...
+</I>&gt;&gt;<i> for every open service like ssh
+</I>&gt;<i> On ssh level, and for me, that's a vote in favor of &quot;no&quot;. We use ssh
+</I>&gt;<i> keys only for admins, so fail2ban will just cause trouble.
+</I>...
+
+&gt;&gt;<i> but also for forums... i'd like to have Fail2ban
+</I>&gt;&gt;<i> parse a file of phpBB failed login to trigger a IP low level ban during a
+</I>&gt;&gt;<i> few hours or more...
+</I>&gt;<i> Well, if you give us the configuration, we can see.
+</I>ok
+
+&gt;<i> We can also use the trick that Olivier deployed on d-c to avoid numerous
+</I>&gt;<i> connexions from the same IP ( in case someone decide to be smart and do
+</I>&gt;<i> simultaneous attempts to log ).
+</I>ok too... i'm curious to see what the trick is :)
+
+&gt;&gt;<i> For forum management we'll need :
+</I>&gt;<i> ---- 8&lt;----
+</I>&gt;<i> or for those who are not CxO-fluent ( private joke ), who is 'we', in
+</I>&gt;<i> term of organisation ( ie, do we need to create a ldap group, etc ) ?
+</I>&gt;<i>
+</I>We = those who maintain forum at forum admin level (ash and i atm)
+
+For integration and testing we'll prehaps need a little bit more
+
+For production you can keep that for sysadmins i guess (till now i got to be sysadmin &amp; forum admin so this will need a little bit of tuning to adapt myself)
+
+&gt;&gt;<i> -- access to sources (read/write)
+</I>&gt;<i> I rather keep this automated from git, for security reasons and to avoid
+</I>&gt;<i> human errors. I would even add a cron job that does a git diff or
+</I>&gt;<i> something similar, to detect if someone uploaded a file manually, or
+</I>&gt;<i> touched to it using apache.
+</I>&gt;<i>
+</I>&gt;<i> In fact, as a security measure, I think the user that will write the
+</I>&gt;<i> source should put it read only for apache. Ie, use a separate system
+</I>&gt;<i> user for that.
+</I>yup that's wise
+
+but some dirs (avatars upload dir, file upload dir, emoticon uplad dir, cache dir) will need to be writable for apache...
+
+&gt;&gt;<i> -- access to data zones (avatars and uploaded things) (read/write)
+</I>&gt;<i> You mean apache will need it, no ?
+</I>indeed... apache will need it in the fist place, but sometimes there can be need to delete an avatar, resize it, replace it with something not offensive, make it read only to prevent user re-changing again and again...
+
+&gt;<i> Direct access seems to me a pretty rare event, we can grant access if
+</I>&gt;<i> there is a really lots of request, ie if you annoy admin enough to make
+</I>&gt;<i> them give it rather than doing themselves.
+</I>Well you're right we can tune organisation later... so let's say that sysadmin will take care of low level tasks on production forum...
+
+&gt;&gt;<i> -- access to accesslogs and errorlogs (read)
+</I>&gt;<i> then this should be merged with the webmasters concept that romain
+</I>&gt;<i> explained. For now, we didn't setup anything ( we didn't even split log
+</I>&gt;<i> file on alamut, even if this should be trivial ).
+</I>&gt;<i>
+</I>indeed forum admins have obviously tasks that are close to this &quot;webmaster&quot; concept
+
+&gt;&gt;<i> -- ability to change php log levels
+</I>&gt;<i> This can be done by php, I think.
+</I>&gt;<i>
+</I>if php global config allows it.
+
+&gt;&gt;<i> -- access to php logs (read)
+</I>&gt;<i> same as accesslogs
+</I>yup
+
+&gt;&gt;<i> -- console access to database(s) (i'd prefer to avoid completely phpMyadmin on the forum server)
+</I>&gt;<i> I would prefer avoid giving console access until there is a real need. I would favor then a remote
+</I>&gt;<i> mysql access, and forcing ssl, maybe even limited by fixed ip address if you wish to avoid bruteforce.
+</I>&gt;<i>
+</I>&gt;<i> ( I will not go to the point of proposing to use a vpn too, but
+</I>&gt;<i> almost ).
+</I>&gt;<i>
+</I>&gt;<i> Maybe we could think of some kind of ssh bastion for such access ( or
+</I>&gt;<i> maybe that's overkill too ).
+</I>&gt;<i>
+</I>well for forum administration i daily use sql CLI because that's loads more effective than using phpBB SQL interface or uglier things like phpMyadmin :-/
+
+&gt;&gt;<i> For performance questions : i guess forum opening will trigger a rather vast
+</I>&gt;&gt;<i> amount of people coming (at least to register their nicks)... i'd be happy to
+</I>&gt;&gt;<i> avoid the server being loaded to death.
+</I>&gt;<i> Registration will be done on catdap from what I think we agreed on, no ?
+</I>&gt;<i> ( correct me if I am wrong ).
+</I>you are right but once registered they'll go to the forum (in particular if they came to registration form through a link on the forum)
+
+&gt;<i> So we need to work on that part ( starting more processes, and so
+</I>&gt;<i> letting us tune that with puppet ( this is hardcoded now, AFAIK ). So
+</I>&gt;<i> depending on where we host the forum, we can surely avoid this effect.
+</I>:<i>-/
+</I>
+&gt;&gt;<i> So i'm targetting at least one thousand simultaneous users being active on the
+</I>&gt;&gt;<i> forum... that will do for apache tuning.
+</I>&gt;<i> Ok so let's say 120 simultaneous process for apache, which also mean we
+</I>&gt;<i> need to keep apache process as lean as possible ( ie, no unused module
+</I>&gt;<i> loaded ). I assume that there is no guarantee on being thread safe from
+</I>&gt;<i> php and associated library, so we will use mpm-prefork.
+</I>&gt;<i>
+</I>&gt;<i> Since the server is isolated and serve only for php hosting, I guess
+</I>&gt;<i> using fast-cgi will not bring much to the equation, when compared to
+</I>&gt;<i> mod_php.
+</I>&gt;<i>
+</I>&gt;<i> Let's also assume 30 processes for forum registration on catdap ( if I
+</I>&gt;<i> am not wrong on that part, of course ) ? We could surely mitigate the
+</I>&gt;<i> potential overload by not announcing this on every possible channel at
+</I>&gt;<i> the same time ( ie, first a mail, then a blog post, then
+</I>&gt;<i> identica/twitter ).
+</I>&gt;<i>
+</I>&gt;<i> Should we also maybe need to tune ldap ?
+</I>well nginx could be an option as Thierry said... dunno if ldap will be loaded though
+
+
+&gt;&gt;<i> For database that will mean 800 to 1200 requests per seconds...
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> We'll have 2 - 3 months to see the tables grow and tune the indexes and the memory accordingly.
+</I>&gt;<i> That mean that we will have to deploy some monitoring, and we didn't
+</I>&gt;<i> decided anything ( buchan proposed hobbit, I proposed munin, purely by
+</I>&gt;<i> familiarity ).
+</I>&gt;<i>
+</I>That can be done a little bit later :)
+
+&gt;<i> What metrics would you need so we can work on them in priority ( once we
+</I>&gt;<i> start to set up something ) ?
+</I>&gt;<i>
+</I>the ram used by database and by the web server, the number of threads, the cpu load, and perhaps some data from the database server (cache fill level, number of locked requests, time taken by long requests - over 1 sec -)...
+
+&gt;&gt;<i> But i think our needs will stabilize around 4-6 GO for RAM if the forum gets really
+</I>&gt;&gt;<i> used (we'll have to tune mysql to keep many requests in cache) apache+mysql all
+</I>&gt;&gt;<i> included... if we split later apache and mysql on separate machines the needs on
+</I>&gt;&gt;<i> each machine will be obviously lower.
+</I>&gt;<i> No cache ( squid, varnish ) ?
+</I>&gt;<i> No php level cache too ?
+</I>&gt;<i>
+</I>&gt;<i> ( not that it may be requested now )
+</I>we can see that later indeed :)
+
+&gt;&gt;<i> For app disk space code is under 50 megs... and with hundred of avatars uploader
+</I>&gt;&gt;<i> we will not grow above 1GO
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> For database disk space even after years of activity we'll remain under 5GO
+</I>&gt;<i> Ok so let's allocate a 10 g partition for the db + ssthat on lvm.
+</I>&gt;<i> We should take in account logs, and logs backup ( french law requires 1
+</I>&gt;<i> year of logs ).
+</I>&gt;<i>
+</I>&gt;<i> How many logs are to be expected per day ?
+</I>&gt;<i> The only busy webserver I can think of is d-c, but Nanar and I just
+</I>&gt;<i> discovered that the configuration is not good.
+</I>&gt;<i> So now, that's 5g of log, uncompressed, per month.
+</I>&gt;<i>
+</I>it will depend on the success of mageia but that can be rather high
+
+
+&gt;&gt;<i> We'll need to set up some tables with heavy read and write accesses with InnoDB (not all) :
+</I>&gt;&gt;<i> that would be great to have one file per table innodb option enabled
+</I>&gt;<i> Ok, I guess it should be safe to enable it for all mysql db I guess.
+</I>yes
+
+&gt;&gt;<i> Nota : i'd like to use https (at least for admin accesses)... so that will mean to enable
+</I>&gt;&gt;<i> ssl and open 443 port also
+</I>&gt;<i> We did not plan to let people use their password under cleartext at all.
+</I>&gt;<i> Centralized auth have been setup ( and should be used for forum too ),
+</I>&gt;<i> so people will reuse their password, the same used at others part of the
+</I>&gt;<i> infrastructure, and that mean svn, or bugzilla, etc. Since people with
+</I>&gt;<i> access will use it, no cleartext at all when the password is sent ( or
+</I>&gt;<i> over my dead body, after fighting my ghost ).
+</I>so https for all ? ok for me but that will be a little bit heavier for cpu
+
+&gt;<i> I guess we can make exception for the cookie, as long as it is not
+</I>&gt;<i> shared ( ie, we will have to rethink the scheme if we deploy SSO ).
+</I>&gt;<i>
+</I>&gt;<i> That also mean that people will complain because of firefox if we do not
+</I>&gt;<i> buy a certificate.
+</I>&gt;<i>
+</I>:<i>-(
+</I>
+&gt;&gt;<i> That's all for system level... i think directory structures (Which concerns apache web root config) can be dealt with later...
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Tell me if you have got everything you need for VM creation...
+</I>&gt;<i> What I needed was more information for forum deployment, not vm
+</I>&gt;<i> requirements, I guess I didn't express myself clearly. The requirement
+</I>&gt;<i> for the vm in term of memory/disk have been roughly drafted before. What
+</I>&gt;<i> I would prefer is a deployment document.
+</I>&gt;<i>
+</I>ash and i are writing one atm
+
+your mail changes some things... so let's adapt it :)
+
+----8&lt;----
+
+(pfeeew... sorry for the length guy)
+
+Ma&#226;t
+
+
+
+
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000153.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000159.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#156">[ date ]</a>
+ <a href="thread.html#156">[ thread ]</a>
+ <a href="subject.html#156">[ subject ]</a>
+ <a href="author.html#156">[ 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-January/000157.html b/zarb-ml/mageia-webteam/2011-January/000157.html
new file mode 100644
index 000000000..717ce154c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000157.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C20110115151159.GB23639%40sisay.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000155.html">
+ <LINK REL="Next" HREF="000158.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Michael scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C20110115151159.GB23639%40sisay.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">misc at zarb.org
+ </A><BR>
+ <I>Sat Jan 15 16:11:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000155.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000158.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#157">[ date ]</a>
+ <a href="thread.html#157">[ thread ]</a>
+ <a href="subject.html#157">[ subject ]</a>
+ <a href="author.html#157">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Sat, Jan 15, 2011 at 11:46:38AM +0100, Ma&#226;t wrote:
+&gt;<i> Le 13/01/2011 13:29, Michael Scherer a &#233;crit :
+</I>&gt;<i>
+</I>&gt;<i> ----8&lt;----
+</I>&gt;<i> &gt; In any case, postgresql to mysql conversion doesn't look doable.
+</I>&gt;<i> &gt;
+</I>&gt;<i> It could be done using things like TOS
+</I>
+Url ?
+
+&gt;<i> &gt; But we are not ready, see my answer about gitorious. So here is a
+</I>&gt;<i> &gt; proposal in 4 steps :
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Now :
+</I>&gt;<i> &gt; - we do a git checkout every 5 minutes ( just need the url, and
+</I>&gt;<i> &gt; testing )
+</I>&gt;<i> Ouch
+</I>
+Why ouch ?
+
+5 minutes is too often, not often enough ?
+( this is configurable, as this is based on cron )
+
+I would prefer a pull based approach rather than push, because
+1) this is already written
+2) this is more secure
+
+But it may not be good for deployment.
+
+&gt;<i> &gt;&gt;&gt; Do you need modifications in phpBB sources ?
+</I>&gt;<i> &gt;&gt;&gt;
+</I>&gt;<i> &gt;&gt; yes... some coming from (more or less) official patches (called &quot;mods&quot;) some coming from ash
+</I>&gt;<i> &gt;&gt; and i and perhaps other php devs
+</I>&gt;<i> &gt; /me close eyes when reading &quot;(more of less) official patches&quot;.
+</I>&gt;<i> &gt;
+</I>&gt;<i> That's the way phpBB people deals with &quot;mods&quot; : authors (not phpBB Team) publish them on the mods
+</I>&gt;<i> dedicated forum, and you are free to use (or not) them without warranty at all some are widely
+</I>&gt;<i> used and well known to be stable...
+</I>&gt;<i>
+</I>&gt;<i> That's why integration and testing stages are so important
+</I>
+Because software distribution is crappy ?
+That's indeed a good reason ( now, do not be asthonished if we joke on php... )
+
+&gt;<i> &gt;&gt;&gt; If that's only for configuration files, we can host them on puppet svn
+</I>&gt;<i> &gt;&gt;&gt; and deploy them with puppet.
+</I>&gt;<i> &gt;&gt;&gt;
+</I>&gt;<i> &gt;&gt; if you want to play with puppet for production and having us not touching it with our dirty hands (^^) i'm perfectly ok with
+</I>&gt;<i> &gt;&gt; that... but i neeed a integration and testing forum with cascaded by git cloning
+</I>&gt;<i> &gt;&gt; (and i need to sync database of test from production to simulate version migration then cancel and replay as much a i need)
+</I>&gt;<i> &gt; Could we do it with a master/slave replication without much trouble ?
+</I>&gt;<i> &gt; ( and possibly, one that would automatically recreate the db once it is
+</I>&gt;<i> &gt; dropped )
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Or we can do snapshot using lvm, but I think this can be quite fragile.
+</I>&gt;<i> &gt;
+</I>&gt;<i> Nope... master/slave replication will not fit my needs : i need 2 separate bases. The production i won't play
+</I>&gt;<i> with it.
+</I>&gt;<i>
+</I>&gt;<i> For testing : once i updated the code to the new version there can be SQL modifications : new tables, alter tables,
+</I>&gt;<i> insert or update for rows...
+</I>&gt;<i>
+</I>&gt;<i> This will be triggered from admin board of phpBB... with a master/slave this would be forbidden or would brake
+</I>&gt;<i> replication
+</I>
+That's the idea, stop the replication for testing purposes. Hence my note about recreating it once we
+drop the slave.
+
+We start with a clean db, we replicate.
+Once we want to test the upgrade, we stop replication, we test.
+We drop the db, we resync if needed
+
+Once we finished the test, we drop the tables, and we restart the synchronisation.
+
+&gt;<i> But we could perfectly use the last (nightly ,) production backup to populate the test base when i need to go
+</I>&gt;<i> back to &quot;clean production state&quot;
+</I>
+This requires use to do backup, and so have at least a backup process
+But we can also do it. I just think that replication would be less heavy
+on IO than dump/reload when needed ( and would be easier to automate ).
+
+I wonder if we could distribute sql dump of the forum on mirror ( like we could for bugs ). I see
+no obvious use for that at the moment, but liberating data can lead to unexpected usages, and would
+be a interesting move ( or a at least, a interesting thought experiment, since there is private messages
+involved, so this would requires cleaning )
+
+--
+Michael Scherer
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000155.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000158.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#157">[ date ]</a>
+ <a href="thread.html#157">[ thread ]</a>
+ <a href="subject.html#157">[ subject ]</a>
+ <a href="author.html#157">[ 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-January/000158.html b/zarb-ml/mageia-webteam/2011-January/000158.html
new file mode 100644
index 000000000..9169e9d40
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000158.html
@@ -0,0 +1,161 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C4D31C15F.70104%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000157.html">
+ <LINK REL="Next" HREF="000160.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C4D31C15F.70104%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sat Jan 15 16:46:39 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000157.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000160.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#158">[ date ]</a>
+ <a href="thread.html#158">[ thread ]</a>
+ <a href="subject.html#158">[ subject ]</a>
+ <a href="author.html#158">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 15/01/2011 16:11, Michael scherer a &#233;crit :
+&gt;<i> On Sat, Jan 15, 2011 at 11:46:38AM +0100, Ma&#226;t wrote:
+</I>&gt;&gt;<i> Le 13/01/2011 13:29, Michael Scherer a &#233;crit :
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> ----8&lt;----
+</I>&gt;&gt;&gt;<i> In any case, postgresql to mysql conversion doesn't look doable.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> It could be done using things like TOS
+</I>&gt;<i> Url ?
+</I><A HREF="http://fr.talend.com/products-data-integration/talend-open-studio.php">http://fr.talend.com/products-data-integration/talend-open-studio.php</A>
+
+&gt;&gt;&gt;<i> But we are not ready, see my answer about gitorious. So here is a
+</I>&gt;&gt;&gt;<i> proposal in 4 steps :
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Now :
+</I>&gt;&gt;&gt;<i> - we do a git checkout every 5 minutes ( just need the url, and
+</I>&gt;&gt;&gt;<i> testing )
+</I>&gt;&gt;<i> Ouch
+</I>&gt;<i> Why ouch ?
+</I>&gt;<i>
+</I>&gt;<i> 5 minutes is too often, not often enough ?
+</I>&gt;<i> ( this is configurable, as this is based on cron )
+</I>&gt;<i>
+</I>&gt;<i> I would prefer a pull based approach rather than push, because
+</I>&gt;<i> 1) this is already written
+</I>&gt;<i> 2) this is more secure
+</I>&gt;<i>
+</I>&gt;<i> But it may not be good for deployment.
+</I>&gt;<i>
+</I>ok for pull but human-triggered !
+
+in case of a commit pushed by error i don't want production forum follow the move by itself !
+
+&gt;&gt;&gt;&gt;&gt;<i> Do you need modifications in phpBB sources ?
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> yes... some coming from (more or less) official patches (called &quot;mods&quot;) some coming from ash
+</I>&gt;&gt;&gt;&gt;<i> and i and perhaps other php devs
+</I>&gt;&gt;&gt;<i> /me close eyes when reading &quot;(more of less) official patches&quot;.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> That's the way phpBB people deals with &quot;mods&quot; : authors (not phpBB Team) publish them on the mods
+</I>&gt;&gt;<i> dedicated forum, and you are free to use (or not) them without warranty at all some are widely
+</I>&gt;&gt;<i> used and well known to be stable...
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> That's why integration and testing stages are so important
+</I>&gt;<i> Because software distribution is crappy ?
+</I>&gt;<i> That's indeed a good reason ( now, do not be asthonished if we joke on php... )
+</I>cleanlyness of projet is not linked with the language or technology used... it's much more linked to the way people are organized inside the communities :)
+&gt;&gt;&gt;&gt;&gt;<i> If that's only for configuration files, we can host them on puppet svn
+</I>&gt;&gt;&gt;&gt;&gt;<i> and deploy them with puppet.
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> if you want to play with puppet for production and having us not touching it with our dirty hands (^^) i'm perfectly ok with
+</I>&gt;&gt;&gt;&gt;<i> that... but i neeed a integration and testing forum with cascaded by git cloning
+</I>&gt;&gt;&gt;&gt;<i> (and i need to sync database of test from production to simulate version migration then cancel and replay as much a i need)
+</I>&gt;&gt;&gt;<i> Could we do it with a master/slave replication without much trouble ?
+</I>&gt;&gt;&gt;<i> ( and possibly, one that would automatically recreate the db once it is
+</I>&gt;&gt;&gt;<i> dropped )
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Or we can do snapshot using lvm, but I think this can be quite fragile.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> Nope... master/slave replication will not fit my needs : i need 2 separate bases. The production i won't play
+</I>&gt;&gt;<i> with it.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> For testing : once i updated the code to the new version there can be SQL modifications : new tables, alter tables,
+</I>&gt;&gt;<i> insert or update for rows...
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> This will be triggered from admin board of phpBB... with a master/slave this would be forbidden or would brake
+</I>&gt;&gt;<i> replication
+</I>&gt;<i> That's the idea, stop the replication for testing purposes. Hence my note about recreating it once we
+</I>&gt;<i> drop the slave.
+</I>&gt;<i>
+</I>&gt;<i> We start with a clean db, we replicate.
+</I>&gt;<i> Once we want to test the upgrade, we stop replication, we test.
+</I>&gt;<i> We drop the db, we resync if needed
+</I>&gt;<i>
+</I>&gt;<i> Once we finished the test, we drop the tables, and we restart the synchronisation.
+</I>&gt;<i>
+</I>Haaaaaa !
+
+that's brilliant !
+
+(i'm ashamed to admit that i did not imagine to use db synchronization this way)
+
+Of course if this is doable i'm ok more twice than one :)
+
+&gt;&gt;<i> But we could perfectly use the last (nightly ,) production backup to populate the test base when i need to go
+</I>&gt;&gt;<i> back to &quot;clean production state&quot;
+</I>&gt;<i> This requires use to do backup, and so have at least a backup process
+</I>&gt;<i> But we can also do it. I just think that replication would be less heavy
+</I>&gt;<i> on IO than dump/reload when needed ( and would be easier to automate ).
+</I>&gt;<i>
+</I>doing backups would be a good idea imho
+
+&gt;<i> I wonder if we could distribute sql dump of the forum on mirror ( like we could for bugs ). I see
+</I>&gt;<i> no obvious use for that at the moment, but liberating data can lead to unexpected usages, and would
+</I>&gt;<i> be a interesting move ( or a at least, a interesting thought experiment, since there is private messages
+</I>&gt;<i> involved, so this would requires cleaning )
+</I>&gt;<i>
+</I>that would need cleaning indeed as french law (and imho ethics too wether legally enforced or not) protects personal data
+
+cheers
+
+Ma&#226;t
+
+
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000157.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000160.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#158">[ date ]</a>
+ <a href="thread.html#158">[ thread ]</a>
+ <a href="subject.html#158">[ subject ]</a>
+ <a href="author.html#158">[ 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-January/000159.html b/zarb-ml/mageia-webteam/2011-January/000159.html
new file mode 100644
index 000000000..85611b712
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000159.html
@@ -0,0 +1,378 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum VM needs
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3CA31E65CCB1B23F49A8B97A3A0947018D01870767%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="000156.html">
+ <LINK REL="Next" HREF="000147.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum VM needs</H1>
+ <B>Dubeau, Patrick</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forum%20VM%20needs&In-Reply-To=%3CA31E65CCB1B23F49A8B97A3A0947018D01870767%40EXCHANGE2003.ccq.org%3E"
+ TITLE="[Mageia-webteam] Forum VM needs">Patrick.Dubeau at ccq.org
+ </A><BR>
+ <I>Sat Jan 15 19:04:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000156.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000147.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#159">[ date ]</a>
+ <a href="thread.html#159">[ thread ]</a>
+ <a href="subject.html#159">[ subject ]</a>
+ <a href="author.html#159">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+
+----- Message d'origine -----
+De : Ma&#226;t [mailto:<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>]
+Envoy&#233; : Saturday, January 15, 2011 06:41 AM
+&#192; : Mageia Web team discussion list &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>&gt;
+Objet : Re: [Mageia-webteam] Forum VM needs
+
+Le 13/01/2011 13:29, Michael Scherer a &#233;crit :
+&gt;<i> Le mercredi 12 janvier 2011 &#224; 21:27 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;&gt;<i> Hi there,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> As it seems VM creation takes a little bit of time due
+</I>&gt;&gt;<i> to people being under heavy load at work Anne and misc
+</I>&gt;&gt;<i> considered the option of creation the Xen VM on one of
+</I>&gt;&gt;<i> our servers (we could migrate the VM on atalante later)
+</I>&gt;<i> The exact technology should not matter much, that's also what puppet is
+</I>&gt;<i> made for. Ie, unless we plan to do a migration at the system image
+</I>&gt;<i> level, we could simply install the 2nd vm, put puppet, clone the
+</I>&gt;<i> computer, migrate the db and ip.
+</I>&gt;<i>
+</I>&gt;<i> ( not that I do not like xen, but I would prefer something else ).
+</I>Well I mentionned Xen because Atalante uses it... but if this is not a
+problem for puppet then ok for me :)
+
+
+&gt;&gt;<i> For that misc asked for Forum needs...
+</I>&gt;<i> I think I didn't make myself clear. I wanted information to deploy it
+</I>&gt;<i> like where is the git stored ( a url, not &quot;it is on a server&quot; ), who
+</I>&gt;<i> will need what access, etc. But the information you gave are also
+</I>&gt;<i> important ( and bring lots of question as you can see ).
+</I>&gt;<i>
+</I>Atm it's stored on Ennael's dedibox :)
+
+
+
+&gt;&gt;<i> For the beginning i'll consider that we are going to put everything on the
+</I>same machine
+&gt;&gt;<i> (DB and PHP). This is not rally brilliant to virtualize DB servers but i
+</I>guess this will
+&gt;&gt;<i> not kill the VM in the first monthes as the tables will not be big.
+</I>&gt;<i> AFAIK, using virtio and proper cache, this should not be much a problem.
+</I>ok then
+
+&gt;&gt;<i> So phpBB needs a LAMP Stack : Apache + PHP5 + MysSQL5 (it prefers to have
+</I>MySQLi extention)
+&gt;<i> No specific requirement in term of version, using 2010.1 rpm should be
+</I>&gt;<i> ok, I assume ?
+</I>indeed
+
+&gt;&gt;<i> And we'll need with php the optional :
+</I>&gt;&gt;<i> -- zlib compression (better having it)
+</I>&gt;&gt;<i> -- remote ftp support (well... i'm not in favor even if documentation asks
+</I>for it)
+&gt;<i> We could drop outgoing connexion if needed.
+</I>&gt;<i>
+</I>&gt;<i> ( yes, php make me paranoid in term of security )
+</I>&gt;<i>
+</I>quite understandable :o)
+
+&gt;&gt;<i> -- XML support (better having it)
+</I>&gt;&gt;<i> -- Image Magick support (better having it)
+</I>&gt;<i> php-image-magick. I do think there is a conspiration to make me have a
+</I>&gt;<i> stroke. Security research by a friend of mine on ImageMagick do not make
+</I>&gt;<i> feel safe to know we will use it, but if this is required, we have no
+</I>&gt;<i> choice.
+</I>&gt;<i>
+</I>&gt;<i> Just to know, what will it be used for ( I assume this will be used to
+</I>&gt;<i> resize avatar ) ?
+</I>yes
+&gt;&gt;<i> -- GD support (same as Image magick)
+</I>&gt;<i> Does the forum support suhoshin, or various php hardening measures ?
+</I>&gt;<i>
+</I>Dunno... but we can check that. phpBB forum's got a few threads of errors
+mentionning suhosin but i suspect they did not try very hard
+
+&gt;<i> Did you do various testing with a hardened configuration with dangerous
+</I>&gt;<i> call disabled ( mainly remote url access for a start, but i also think
+</I>&gt;<i> we can use opendir restriction, etc, etc ).
+</I>&gt;<i>
+</I>&gt;<i> Does it have non regression testing ( so we can enable stuff and see if
+</I>&gt;<i> anything break ? ) ?
+</I>&gt;<i>
+</I>Testing and integration envs are perfect for that :)
+
+
+&gt;&gt;<i> For source management git will be used... so we'll need it too :)
+</I>&gt;<i> Just git clone ?
+</I>&gt;<i> I have a puppet module for this, just need tests before I commit.
+</I>&gt;<i>
+</I>&gt;<i> For git hosting, again, while I am in favor, there is a few questions to
+</I>&gt;<i> answer and prepare it, see my previous mail about what is needed.
+</I>&gt;<i>
+</I>we need cloning, branch/tag switching and sync with reference repos
+
+&gt;&gt;<i> As forum have often to face bruteforce having Fail2ban would be really
+</I>great...
+&gt;&gt;<i> for every open service like ssh
+</I>&gt;<i> On ssh level, and for me, that's a vote in favor of &quot;no&quot;. We use ssh
+</I>&gt;<i> keys only for admins, so fail2ban will just cause trouble.
+</I>...
+
+&gt;&gt;<i> but also for forums... i'd like to have Fail2ban
+</I>&gt;&gt;<i> parse a file of phpBB failed login to trigger a IP low level ban during a
+</I>&gt;&gt;<i> few hours or more...
+</I>&gt;<i> Well, if you give us the configuration, we can see.
+</I>ok
+
+&gt;<i> We can also use the trick that Olivier deployed on d-c to avoid numerous
+</I>&gt;<i> connexions from the same IP ( in case someone decide to be smart and do
+</I>&gt;<i> simultaneous attempts to log ).
+</I>ok too... i'm curious to see what the trick is :)
+
+&gt;&gt;<i> For forum management we'll need :
+</I>&gt;<i> ---- 8&lt;----
+</I>&gt;<i> or for those who are not CxO-fluent ( private joke ), who is 'we', in
+</I>&gt;<i> term of organisation ( ie, do we need to create a ldap group, etc ) ?
+</I>&gt;<i>
+</I>We = those who maintain forum at forum admin level (ash and i atm)
+
+For integration and testing we'll prehaps need a little bit more
+
+For production you can keep that for sysadmins i guess (till now i got to be
+sysadmin &amp; forum admin so this will need a little bit of tuning to adapt
+myself)
+
+&gt;&gt;<i> -- access to sources (read/write)
+</I>&gt;<i> I rather keep this automated from git, for security reasons and to avoid
+</I>&gt;<i> human errors. I would even add a cron job that does a git diff or
+</I>&gt;<i> something similar, to detect if someone uploaded a file manually, or
+</I>&gt;<i> touched to it using apache.
+</I>&gt;<i>
+</I>&gt;<i> In fact, as a security measure, I think the user that will write the
+</I>&gt;<i> source should put it read only for apache. Ie, use a separate system
+</I>&gt;<i> user for that.
+</I>yup that's wise
+
+but some dirs (avatars upload dir, file upload dir, emoticon uplad dir, cache
+dir) will need to be writable for apache...
+
+&gt;&gt;<i> -- access to data zones (avatars and uploaded things) (read/write)
+</I>&gt;<i> You mean apache will need it, no ?
+</I>indeed... apache will need it in the fist place, but sometimes there can be
+need to delete an avatar, resize it, replace it with something not offensive,
+make it read only to prevent user re-changing again and again...
+
+&gt;<i> Direct access seems to me a pretty rare event, we can grant access if
+</I>&gt;<i> there is a really lots of request, ie if you annoy admin enough to make
+</I>&gt;<i> them give it rather than doing themselves.
+</I>Well you're right we can tune organisation later... so let's say that
+sysadmin will take care of low level tasks on production forum...
+
+&gt;&gt;<i> -- access to accesslogs and errorlogs (read)
+</I>&gt;<i> then this should be merged with the webmasters concept that romain
+</I>&gt;<i> explained. For now, we didn't setup anything ( we didn't even split log
+</I>&gt;<i> file on alamut, even if this should be trivial ).
+</I>&gt;<i>
+</I>indeed forum admins have obviously tasks that are close to this &quot;webmaster&quot;
+concept
+
+&gt;&gt;<i> -- ability to change php log levels
+</I>&gt;<i> This can be done by php, I think.
+</I>&gt;<i>
+</I>if php global config allows it.
+
+&gt;&gt;<i> -- access to php logs (read)
+</I>&gt;<i> same as accesslogs
+</I>yup
+
+&gt;&gt;<i> -- console access to database(s) (i'd prefer to avoid completely
+</I>phpMyadmin on the forum server)
+&gt;<i> I would prefer avoid giving console access until there is a real need. I
+</I>would favor then a remote
+&gt;<i> mysql access, and forcing ssl, maybe even limited by fixed ip address if
+</I>you wish to avoid bruteforce.
+&gt;<i>
+</I>&gt;<i> ( I will not go to the point of proposing to use a vpn too, but
+</I>&gt;<i> almost ).
+</I>&gt;<i>
+</I>&gt;<i> Maybe we could think of some kind of ssh bastion for such access ( or
+</I>&gt;<i> maybe that's overkill too ).
+</I>&gt;<i>
+</I>well for forum administration i daily use sql CLI because that's loads more
+effective than using phpBB SQL interface or uglier things like phpMyadmin :-/
+
+&gt;&gt;<i> For performance questions : i guess forum opening will trigger a rather
+</I>vast
+&gt;&gt;<i> amount of people coming (at least to register their nicks)... i'd be happy
+</I>to
+&gt;&gt;<i> avoid the server being loaded to death.
+</I>&gt;<i> Registration will be done on catdap from what I think we agreed on, no ?
+</I>&gt;<i> ( correct me if I am wrong ).
+</I>you are right but once registered they'll go to the forum (in particular if
+they came to registration form through a link on the forum)
+
+&gt;<i> So we need to work on that part ( starting more processes, and so
+</I>&gt;<i> letting us tune that with puppet ( this is hardcoded now, AFAIK ). So
+</I>&gt;<i> depending on where we host the forum, we can surely avoid this effect.
+</I>:<i>-/
+</I>
+&gt;&gt;<i> So i'm targetting at least one thousand simultaneous users being active on
+</I>the
+&gt;&gt;<i> forum... that will do for apache tuning.
+</I>&gt;<i> Ok so let's say 120 simultaneous process for apache, which also mean we
+</I>&gt;<i> need to keep apache process as lean as possible ( ie, no unused module
+</I>&gt;<i> loaded ). I assume that there is no guarantee on being thread safe from
+</I>&gt;<i> php and associated library, so we will use mpm-prefork.
+</I>&gt;<i>
+</I>&gt;<i> Since the server is isolated and serve only for php hosting, I guess
+</I>&gt;<i> using fast-cgi will not bring much to the equation, when compared to
+</I>&gt;<i> mod_php.
+</I>&gt;<i>
+</I>&gt;<i> Let's also assume 30 processes for forum registration on catdap ( if I
+</I>&gt;<i> am not wrong on that part, of course ) ? We could surely mitigate the
+</I>&gt;<i> potential overload by not announcing this on every possible channel at
+</I>&gt;<i> the same time ( ie, first a mail, then a blog post, then
+</I>&gt;<i> identica/twitter ).
+</I>&gt;<i>
+</I>&gt;<i> Should we also maybe need to tune ldap ?
+</I>well nginx could be an option as Thierry said... dunno if ldap will be loaded
+though
+
+
+&gt;&gt;<i> For database that will mean 800 to 1200 requests per seconds...
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> We'll have 2 - 3 months to see the tables grow and tune the indexes and
+</I>the memory accordingly.
+&gt;<i> That mean that we will have to deploy some monitoring, and we didn't
+</I>&gt;<i> decided anything ( buchan proposed hobbit, I proposed munin, purely by
+</I>&gt;<i> familiarity ).
+</I>&gt;<i>
+</I>That can be done a little bit later :)
+
+&gt;<i> What metrics would you need so we can work on them in priority ( once we
+</I>&gt;<i> start to set up something ) ?
+</I>&gt;<i>
+</I>the ram used by database and by the web server, the number of threads, the
+cpu load, and perhaps some data from the database server (cache fill level,
+number of locked requests, time taken by long requests - over 1 sec -)...
+
+&gt;&gt;<i> But i think our needs will stabilize around 4-6 GO for RAM if the forum
+</I>gets really
+&gt;&gt;<i> used (we'll have to tune mysql to keep many requests in cache)
+</I>apache+mysql all
+&gt;&gt;<i> included... if we split later apache and mysql on separate machines the
+</I>needs on
+&gt;&gt;<i> each machine will be obviously lower.
+</I>&gt;<i> No cache ( squid, varnish ) ?
+</I>&gt;<i> No php level cache too ?
+</I>&gt;<i>
+</I>&gt;<i> ( not that it may be requested now )
+</I>we can see that later indeed :)
+
+&gt;&gt;<i> For app disk space code is under 50 megs... and with hundred of avatars
+</I>uploader
+&gt;&gt;<i> we will not grow above 1GO
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> For database disk space even after years of activity we'll remain under
+</I>5GO
+&gt;<i> Ok so let's allocate a 10 g partition for the db + ssthat on lvm.
+</I>&gt;<i> We should take in account logs, and logs backup ( french law requires 1
+</I>&gt;<i> year of logs ).
+</I>&gt;<i>
+</I>&gt;<i> How many logs are to be expected per day ?
+</I>&gt;<i> The only busy webserver I can think of is d-c, but Nanar and I just
+</I>&gt;<i> discovered that the configuration is not good.
+</I>&gt;<i> So now, that's 5g of log, uncompressed, per month.
+</I>&gt;<i>
+</I>it will depend on the success of mageia but that can be rather high
+
+
+&gt;&gt;<i> We'll need to set up some tables with heavy read and write accesses with
+</I>InnoDB (not all) :
+&gt;&gt;<i> that would be great to have one file per table innodb option enabled
+</I>&gt;<i> Ok, I guess it should be safe to enable it for all mysql db I guess.
+</I>yes
+
+&gt;&gt;<i> Nota : i'd like to use https (at least for admin accesses)... so that will
+</I>mean to enable
+&gt;&gt;<i> ssl and open 443 port also
+</I>&gt;<i> We did not plan to let people use their password under cleartext at all.
+</I>&gt;<i> Centralized auth have been setup ( and should be used for forum too ),
+</I>&gt;<i> so people will reuse their password, the same used at others part of the
+</I>&gt;<i> infrastructure, and that mean svn, or bugzilla, etc. Since people with
+</I>&gt;<i> access will use it, no cleartext at all when the password is sent ( or
+</I>&gt;<i> over my dead body, after fighting my ghost ).
+</I>so https for all ? ok for me but that will be a little bit heavier for cpu
+
+&gt;<i> I guess we can make exception for the cookie, as long as it is not
+</I>&gt;<i> shared ( ie, we will have to rethink the scheme if we deploy SSO ).
+</I>&gt;<i>
+</I>&gt;<i> That also mean that people will complain because of firefox if we do not
+</I>&gt;<i> buy a certificate.
+</I>&gt;<i>
+</I>:<i>-(
+</I>
+&gt;&gt;<i> That's all for system level... i think directory structures (Which
+</I>concerns apache web root config) can be dealt with later...
+&gt;&gt;<i>
+</I>&gt;&gt;<i> Tell me if you have got everything you need for VM creation...
+</I>&gt;<i> What I needed was more information for forum deployment, not vm
+</I>&gt;<i> requirements, I guess I didn't express myself clearly. The requirement
+</I>&gt;<i> for the vm in term of memory/disk have been roughly drafted before. What
+</I>&gt;<i> I would prefer is a deployment document.
+</I>&gt;<i>
+</I>ash and i are writing one atm
+
+your mail changes some things... so let's adapt it :)
+
+----8&lt;----
+
+(pfeeew... sorry for the length guy)
+
+Ma&#226;t
+
+
+
+
+_______________________________________________
+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="000156.html">[Mageia-webteam] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000147.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#159">[ date ]</a>
+ <a href="thread.html#159">[ thread ]</a>
+ <a href="subject.html#159">[ subject ]</a>
+ <a href="author.html#159">[ 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-January/000160.html b/zarb-ml/mageia-webteam/2011-January/000160.html
new file mode 100644
index 000000000..3090887db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000160.html
@@ -0,0 +1,116 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C1295268131.24697.7.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000158.html">
+ <LINK REL="Next" HREF="000150.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20%20Forum%20VM%20needs&In-Reply-To=%3C1295268131.24697.7.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 17 13:42:10 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000158.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000150.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#160">[ date ]</a>
+ <a href="thread.html#160">[ thread ]</a>
+ <a href="subject.html#160">[ subject ]</a>
+ <a href="author.html#160">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le samedi 15 janvier 2011 &#224; 16:46 +0100, Ma&#226;t a &#233;crit :
+&gt;<i> Le 15/01/2011 16:11, Michael scherer a &#233;crit :
+</I>&gt;<i> &gt; On Sat, Jan 15, 2011 at 11:46:38AM +0100, Ma&#226;t wrote:
+</I>&gt;<i> &gt;&gt; Le 13/01/2011 13:29, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt;&gt;
+</I>&gt;<i> &gt;&gt; ----8&lt;----
+</I>&gt;<i> &gt;&gt;&gt; In any case, postgresql to mysql conversion doesn't look doable.
+</I>&gt;<i> &gt;&gt;&gt;
+</I>&gt;<i> &gt;&gt; It could be done using things like TOS
+</I>&gt;<i> &gt; Url ?
+</I>&gt;<i> <A HREF="http://fr.talend.com/products-data-integration/talend-open-studio.php">http://fr.talend.com/products-data-integration/talend-open-studio.php</A>
+</I>&gt;<i>
+</I>&gt;<i> &gt;&gt;&gt; But we are not ready, see my answer about gitorious. So here is a
+</I>&gt;<i> &gt;&gt;&gt; proposal in 4 steps :
+</I>&gt;<i> &gt;&gt;&gt;
+</I>&gt;<i> &gt;&gt;&gt; Now :
+</I>&gt;<i> &gt;&gt;&gt; - we do a git checkout every 5 minutes ( just need the url, and
+</I>&gt;<i> &gt;&gt;&gt; testing )
+</I>&gt;<i> &gt;&gt; Ouch
+</I>&gt;<i> &gt; Why ouch ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; 5 minutes is too often, not often enough ?
+</I>&gt;<i> &gt; ( this is configurable, as this is based on cron )
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I would prefer a pull based approach rather than push, because
+</I>&gt;<i> &gt; 1) this is already written
+</I>&gt;<i> &gt; 2) this is more secure
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; But it may not be good for deployment.
+</I>&gt;<i> &gt;
+</I>&gt;<i> ok for pull but human-triggered !
+</I>&gt;<i>
+</I>&gt;<i> in case of a commit pushed by error i don't want production forum follow the move by itself !
+</I>
+We could had a post receive hook that check that any commit comes from
+testing first. Ie, no way to commit to production without pushing to
+testing first.
+
+I would even check that the commit was in testing for at least X days or
+X hours. But this may cause trouble for security fix. On the other hand,
+you don't want to rush a security fix...
+
+&gt;<i> &gt;&gt; But we could perfectly use the last (nightly ,) production backup to populate the test base when i need to go
+</I>&gt;<i> &gt;&gt; back to &quot;clean production state&quot;
+</I>&gt;<i> &gt; This requires use to do backup, and so have at least a backup process
+</I>&gt;<i> &gt; But we can also do it. I just think that replication would be less heavy
+</I>&gt;<i> &gt; on IO than dump/reload when needed ( and would be easier to automate ).
+</I>&gt;<i> &gt;
+</I>&gt;<i> doing backups would be a good idea imho
+</I>
+Yeah, obviously yes. But we either do them on the same server ( and
+that's kinda useless I fear ), or we do this cross servers ( and that's
+kinda complex ).
+
+We could for a start dump pgsql on valstar, and sync svn on alamut.
+
+Or use rabbit, there is 2 To, we could spare some for backups ?
+
+--
+Michael Scherer
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000158.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000150.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#160">[ date ]</a>
+ <a href="thread.html#160">[ thread ]</a>
+ <a href="subject.html#160">[ subject ]</a>
+ <a href="author.html#160">[ 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-January/000161.html b/zarb-ml/mageia-webteam/2011-January/000161.html
new file mode 100644
index 000000000..36d4b7c5e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000161.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 3 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%203%20meeting&In-Reply-To=%3CAANLkTimCnuNJ8BfL_4%3Dp6o2DhTuZ1T8BzTPghT7SAZZr%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="000151.html">
+ <LINK REL="Next" HREF="000166.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 3 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%203%20meeting&In-Reply-To=%3CAANLkTimCnuNJ8BfL_4%3Dp6o2DhTuZ1T8BzTPghT7SAZZr%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 3 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Jan 18 10:40:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000151.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000166.html">[Mageia-webteam] 2011/week 3 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#161">[ date ]</a>
+ <a href="thread.html#161">[ thread ]</a>
+ <a href="subject.html#161">[ subject ]</a>
+ <a href="author.html#161">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+as usual: <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> at 14:00 UTC.
+
+ * big one: progress review (forum, catdap/identity, bugzilla, wiki,
+calendar, maint db, transifex)
+ * call for help: web editor wanted
+ - tasks: help content integration, coordinate with me, marcom &amp;
+i18n for future website info architecture/design/edition; define
+generic tasks for a more-distributed edition/translation team
+ - requires: basic PHP knowledge, basic design/typography skills,
+serious mastering at HTML/CSS
+ * team peers review &amp; mentoring process (is the list ok, someone to
+add/start to mentor)
+
+Cheers!
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000151.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000166.html">[Mageia-webteam] 2011/week 3 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#161">[ date ]</a>
+ <a href="thread.html#161">[ thread ]</a>
+ <a href="subject.html#161">[ subject ]</a>
+ <a href="author.html#161">[ 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-January/000162.html b/zarb-ml/mageia-webteam/2011-January/000162.html
new file mode 100644
index 000000000..f391c5ef3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000162.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Calendars - maint db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendars%20-%20maint%20db&In-Reply-To=%3CAANLkTikvJ6RJix9Pm4y0%2B4LyA4q4k7epM4keiM6_YCY9%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="000166.html">
+ <LINK REL="Next" HREF="000165.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Calendars - maint db</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendars%20-%20maint%20db&In-Reply-To=%3CAANLkTikvJ6RJix9Pm4y0%2B4LyA4q4k7epM4keiM6_YCY9%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Calendars - maint db">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Jan 18 20:32:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000166.html">[Mageia-webteam] 2011/week 3 meeting
+</A></li>
+ <LI>Next message: <A HREF="000165.html">[Mageia-webteam] Calendars - maint db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#162">[ date ]</a>
+ <a href="thread.html#162">[ thread ]</a>
+ <a href="subject.html#162">[ subject ]</a>
+ <a href="author.html#162">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Sorry for not being able to attend tomorrow's meeting :-(
+
+Just to report about the progress so far:
+
+Calendars:
+I had a look at the last three options:
+1. <A HREF="http://gitorious.org/agenda-du-libre">http://gitorious.org/agenda-du-libre</A> - There is not a lot of
+documentation about the project, and by looking at the code it seems it's a
+reimplimentation of agenta-du-libre from PHP to Python/Django
+2. <A HREF="http://www.php-calendar.com/">http://www.php-calendar.com/</A> - Again not a lot of documentation but it's
+a PHP based with Apache 2 licence (notes added to wiki)
+3. <A HREF="http://phpicalendar.net/">http://phpicalendar.net/</A> - According to their documentation that's only
+to display calendars and not to create them (more info here:
+<A HREF="http://phpicalendar.net/documentation/index.php/Creating_calendars">http://phpicalendar.net/documentation/index.php/Creating_calendars</A>)
+
+Maint db:
+More development done and the staging server is in:
+<A HREF="http://maintdb.mageia.org.uk/">http://maintdb.mageia.org.uk/</A>
+
+The source code as mentioned before is here:
+<A HREF="http://gitorious.org/mageia-maintainers-database">http://gitorious.org/mageia-maintainers-database</A>
+
+The acceptance test (cucumber tests) are here (files ending in .feature):
+<A HREF="http://gitorious.org/mageia-maintainers-database/mageia-maint-db/trees/master/features">http://gitorious.org/mageia-maintainers-database/mageia-maint-db/trees/master/features</A>
+
+And the RSpec model,view,controller tests here:
+<A HREF="http://gitorious.org/mageia-maintainers-database/mageia-maint-db/trees/master/spec">http://gitorious.org/mageia-maintainers-database/mageia-maint-db/trees/master/spec</A>
+
+Did not have the chance to find out about packaging the necessary stack.
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110118/55724d7e/attachment.html&gt;
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000166.html">[Mageia-webteam] 2011/week 3 meeting
+</A></li>
+ <LI>Next message: <A HREF="000165.html">[Mageia-webteam] Calendars - maint db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#162">[ date ]</a>
+ <a href="thread.html#162">[ thread ]</a>
+ <a href="subject.html#162">[ subject ]</a>
+ <a href="author.html#162">[ 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-January/000163.html b/zarb-ml/mageia-webteam/2011-January/000163.html
new file mode 100644
index 000000000..0b4ea9f2d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000163.html
@@ -0,0 +1,71 @@
+<!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=%3C201101191339.54805.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="000165.html">
+ <LINK REL="Next" HREF="000164.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting today</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20today&In-Reply-To=%3C201101191339.54805.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Meeting today">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed Jan 19 13:39:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000165.html">[Mageia-webteam] Calendars - maint db
+</A></li>
+ <LI>Next message: <A HREF="000164.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#163">[ date ]</a>
+ <a href="thread.html#163">[ thread ]</a>
+ <a href="subject.html#163">[ subject ]</a>
+ <a href="author.html#163">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Sorry,
+
+I can't attend the meeting today because I have too much work in the
+office.
+
+The state of my assignments:
+- wiki: ready, just write some things up and talk with sysadmin team
+about it
+
+- calendar: didn't get to it. If someone else wants to have a look at
+it?
+
+Oliver
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000165.html">[Mageia-webteam] Calendars - maint db
+</A></li>
+ <LI>Next message: <A HREF="000164.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#163">[ date ]</a>
+ <a href="thread.html#163">[ thread ]</a>
+ <a href="subject.html#163">[ subject ]</a>
+ <a href="author.html#163">[ 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-January/000164.html b/zarb-ml/mageia-webteam/2011-January/000164.html
new file mode 100644
index 000000000..84fe34642
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000164.html
@@ -0,0 +1,69 @@
+<!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=%3CAANLkTiko4sCoPzjaSNkiZWgUvUuRwBa-homK9tC8QWX6%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="000163.html">
+ <LINK REL="Next" HREF="000167.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=%3CAANLkTiko4sCoPzjaSNkiZWgUvUuRwBa-homK9tC8QWX6%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting today">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 19 14:57:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000163.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000167.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#164">[ date ]</a>
+ <a href="thread.html#164">[ thread ]</a>
+ <a href="subject.html#164">[ subject ]</a>
+ <a href="author.html#164">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Jan 19, 2011 at 13:39, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; wrote:
+&gt;<i> The state of my assignments:
+</I>&gt;<i> - wiki: ready, just write some things up and talk with sysadmin team
+</I>&gt;<i> about it
+</I>&gt;<i>
+</I>&gt;<i> - calendar: didn't get to it. If someone else wants to have a look at
+</I>&gt;<i> it?
+</I>
+Thanks for the notice Oliver, good luck with your work!
+
+Romain
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000163.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000167.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#164">[ date ]</a>
+ <a href="thread.html#164">[ thread ]</a>
+ <a href="subject.html#164">[ subject ]</a>
+ <a href="author.html#164">[ 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-January/000165.html b/zarb-ml/mageia-webteam/2011-January/000165.html
new file mode 100644
index 000000000..f79dfe8d9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000165.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Calendars - maint db
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendars%20-%20maint%20db&In-Reply-To=%3CAANLkTikPZN5jPAw%2BD0NukRT72NBg3Sx-Tuav__czy3hB%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="000162.html">
+ <LINK REL="Next" HREF="000163.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Calendars - maint db</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendars%20-%20maint%20db&In-Reply-To=%3CAANLkTikPZN5jPAw%2BD0NukRT72NBg3Sx-Tuav__czy3hB%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Calendars - maint db">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 19 15:03:49 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000162.html">[Mageia-webteam] Calendars - maint db
+</A></li>
+ <LI>Next message: <A HREF="000163.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#165">[ date ]</a>
+ <a href="thread.html#165">[ thread ]</a>
+ <a href="subject.html#165">[ subject ]</a>
+ <a href="author.html#165">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Jan 18, 2011 at 20:32, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> Sorry for not being able to attend tomorrow's meeting :-(
+</I>&gt;<i>
+</I>&gt;<i> Just to report about the progress so far: [...]
+</I>
+Thanks for the notice Kosmas.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000162.html">[Mageia-webteam] Calendars - maint db
+</A></li>
+ <LI>Next message: <A HREF="000163.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#165">[ date ]</a>
+ <a href="thread.html#165">[ thread ]</a>
+ <a href="subject.html#165">[ subject ]</a>
+ <a href="author.html#165">[ 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-January/000166.html b/zarb-ml/mageia-webteam/2011-January/000166.html
new file mode 100644
index 000000000..037cd97d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000166.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 3 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%203%20meeting&In-Reply-To=%3CAANLkTimoMh0Yfkcytr5EXHqLivPQkvbSL7sSUBR1UgzR%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="000161.html">
+ <LINK REL="Next" HREF="000162.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 3 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%203%20meeting&In-Reply-To=%3CAANLkTimoMh0Yfkcytr5EXHqLivPQkvbSL7sSUBR1UgzR%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 3 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 19 17:22:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000161.html">[Mageia-webteam] 2011/week 3 meeting
+</A></li>
+ <LI>Next message: <A HREF="000162.html">[Mageia-webteam] Calendars - maint db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#166">[ date ]</a>
+ <a href="thread.html#166">[ thread ]</a>
+ <a href="subject.html#166">[ subject ]</a>
+ <a href="author.html#166">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Jan 18, 2011 at 10:40, 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> as usual: <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> at 14:00 UTC.
+</I>
+Here are the meeting notes and logs:
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-19-14.12.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-19-14.12.html</A>
+
+Cheers,
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000161.html">[Mageia-webteam] 2011/week 3 meeting
+</A></li>
+ <LI>Next message: <A HREF="000162.html">[Mageia-webteam] Calendars - maint db
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#166">[ date ]</a>
+ <a href="thread.html#166">[ thread ]</a>
+ <a href="subject.html#166">[ subject ]</a>
+ <a href="author.html#166">[ 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-January/000167.html b/zarb-ml/mageia-webteam/2011-January/000167.html
new file mode 100644
index 000000000..8618629f5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000167.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Forum VM needs
+ </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-sysadm%5D%20%20Forum%20VM%20needs&In-Reply-To=%3C4D3C3D38.1080303%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000164.html">
+ <LINK REL="Next" HREF="000168.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Forum VM needs</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20Forum%20VM%20needs&In-Reply-To=%3C4D3C3D38.1080303%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Forum VM needs">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sun Jan 23 15:37:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000164.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000168.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#167">[ date ]</a>
+ <a href="thread.html#167">[ thread ]</a>
+ <a href="subject.html#167">[ subject ]</a>
+ <a href="author.html#167">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/01/2011 14:53, Michael Scherer a &#233;crit :
+&gt;<i> ----8&lt;----
+</I>&gt;<i>
+</I>&gt;<i> So :
+</I>&gt;<i> - iptables is required by libvirt, so there is a missing requires. Like
+</I>&gt;<i> 1 hour of fun debbuging to found out the exact issue.
+</I>&gt;<i>
+</I>&gt;<i> - I found out after upgrading qemu and libvirtd ( so again 1 hour of fun
+</I>&gt;<i> to rebuild on mdv cluster without success )
+</I>&gt;<i>
+</I>&gt;<i> - kernel-server do not work in qemu, for some reason. Again, 1 hour of
+</I>&gt;<i> fun to found out.
+</I>&gt;<i>
+</I>&gt;<i> Current status : server is booting.
+</I>&gt;<i>
+</I>&gt;<i> Soon to be puppetified and installed. ( and kinda documented too )
+</I>&gt;<i>
+</I>\o/
+
+Good news !
+
+Thanks a lot Misc...
+
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000164.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000168.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#167">[ date ]</a>
+ <a href="thread.html#167">[ thread ]</a>
+ <a href="subject.html#167">[ subject ]</a>
+ <a href="author.html#167">[ 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-January/000168.html b/zarb-ml/mageia-webteam/2011-January/000168.html
new file mode 100644
index 000000000..daec2ed15
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000168.html
@@ -0,0 +1,118 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+ </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-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C4D3D4952.3060905%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000167.html">
+ <LINK REL="Next" HREF="000169.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] New test tree in ldap</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C4D3D4952.3060905%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] New test tree in ldap">maat-ml at vilarem.net
+ </A><BR>
+ <I>Mon Jan 24 10:41:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000167.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000169.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#168">[ date ]</a>
+ <a href="thread.html#168">[ thread ]</a>
+ <a href="subject.html#168">[ subject ]</a>
+ <a href="author.html#168">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 24/01/2011 10:18, Michael Scherer a &#233;crit :
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> As asked by forum team, I have created a ldap subtree for testing the
+</I>&gt;<i> phpbb ldap integration, since they want to test on a server that is not
+</I>&gt;<i> managed by us, and so this could cause security issues ie, if a remote
+</I>&gt;<i> server is compromised for various reasons ( like not being treated as
+</I>&gt;<i> production, which is a reasonable assumption for a test server ) and
+</I>&gt;<i> someone start to gather username, email, and so on.
+</I>great ! Thank you Misc :)
+
+&gt;<i> The tree is dc=test_ldap, there is just the top level entry and there is
+</I>&gt;<i> no acl. ( maybe I should have called it test_ldap_forum )
+</I>&gt;<i>
+</I>ok
+
+&gt;<i> I am ok to give the manager password of this tree for testing and
+</I>&gt;<i> letting people create what they want ( that's just a test one, after
+</I>&gt;<i> all ), but maybe we can organize ourself better.
+</I>&gt;<i>
+</I>&gt;<i> Maat, besides this, what do you need ?
+</I>I need a &quot;system account&quot; (used by phpbb to log itself on the ldap) with it's password
+
+The one given previously by Buchan was :
+
+cn=phpbb,ou=System Accounts,dc=mageia,dc=org
+
+Then i need a few &quot;users&quot; and &quot;admin&quot; accounts on ldap test :
+
+-- forumadmin
+-- maat
+-- ashledombos
+-- test_user
+-- test_moderator
+
+That's all for ldap &lt;-&gt; forum connection
+
+Then we'll need to decide where our git reference repository will be hosted
+
+Atm on ennael's dedibox we have a repos cloned from phpBB's github official repos which i started while phpBB stable version was 3.0.7PL1.
+
+Now phpBB stable version is 3.0.8... as our customization is not heavy i want to take the opportunity (that we'll never have again) to fresh-start from upstream and re-apply our changes (theme, seo, umil...) so i just need a fresh git repos cloned from <A HREF="https://github.com/phpbb/phpbb3.git">https://github.com/phpbb/phpbb3.git</A> with at least write access for ashledombos and i
+
+That's all i think...
+
+Cheers,
+Ma&#226;t
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000167.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A></li>
+ <LI>Next message: <A HREF="000169.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#168">[ date ]</a>
+ <a href="thread.html#168">[ thread ]</a>
+ <a href="subject.html#168">[ subject ]</a>
+ <a href="author.html#168">[ 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-January/000169.html b/zarb-ml/mageia-webteam/2011-January/000169.html
new file mode 100644
index 000000000..a514b068e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000169.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+ </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-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3CAANLkTi%3DJnGFpG_ZiEmdAT2VTJO1arzueHgxTs8hTESZT%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="000168.html">
+ <LINK REL="Next" HREF="000174.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] New test tree in ldap</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3CAANLkTi%3DJnGFpG_ZiEmdAT2VTJO1arzueHgxTs8hTESZT%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] New test tree in ldap">Kosmas at mach7x.com
+ </A><BR>
+ <I>Mon Jan 24 12:20:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000168.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000174.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#169">[ date ]</a>
+ <a href="thread.html#169">[ thread ]</a>
+ <a href="subject.html#169">[ subject ]</a>
+ <a href="author.html#169">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 24 January 2011 09:41, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+
+&gt;<i> Le 24/01/2011 10:18, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; Hi,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; As asked by forum team, I have created a ldap subtree for testing the
+</I>&gt;<i> &gt; phpbb ldap integration, since they want to test on a server that is not
+</I>&gt;<i> &gt; managed by us, and so this could cause security issues ie, if a remote
+</I>&gt;<i> &gt; server is compromised for various reasons ( like not being treated as
+</I>&gt;<i> &gt; production, which is a reasonable assumption for a test server ) and
+</I>&gt;<i> &gt; someone start to gather username, email, and so on.
+</I>&gt;<i> great ! Thank you Misc :)
+</I>&gt;<i>
+</I>&gt;<i> &gt; The tree is dc=test_ldap, there is just the top level entry and there is
+</I>&gt;<i> &gt; no acl. ( maybe I should have called it test_ldap_forum )
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>
+Wouldn't a similar integration needed for the maintainer's db?
+Would we need a different user name for the application, or we would have a
+group that exists there and has admin permissions in the app?
+
+I was going to ask about the integration options and how we are actually
+need to get the data, so that was good timing :-)
+
+Should I be using the details mentioned in previous emails, for connecting
+to the server and testing?
+
+Thanks
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110124/7f6238a1/attachment.html&gt;
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000168.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000174.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#169">[ date ]</a>
+ <a href="thread.html#169">[ thread ]</a>
+ <a href="subject.html#169">[ subject ]</a>
+ <a href="author.html#169">[ 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-January/000170.html b/zarb-ml/mageia-webteam/2011-January/000170.html
new file mode 100644
index 000000000..ff256bd21
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000170.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Viewvc installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Viewvc%20installation&In-Reply-To=%3C1295876769.29541.9.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000178.html">
+ <LINK REL="Next" HREF="000172.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Viewvc installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Viewvc%20installation&In-Reply-To=%3C1295876769.29541.9.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Viewvc installation">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 24 14:46:09 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000178.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000172.html">[Mageia-webteam] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#170">[ date ]</a>
+ <a href="thread.html#170">[ thread ]</a>
+ <a href="subject.html#170">[ subject ]</a>
+ <a href="author.html#170">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+since people have asked for it since a long time, and since no much
+people commented on viewvc vs websvn
+( <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html">https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html</A> ), and so based on the fact that websvn run svn to get information ( thus would potentially overload the server when google bot team with yahoo to explore the server and our patches ), I have setup viewvc.
+
+I can also setup websvn if someone really need, but a quick check showed
+that both tools are quite similar in term of features, the only
+difference being the usage of svn commandline.
+
+There is 2 questions left ( with a default answer with a timeout of 2
+days ) :
+- what should be the name ( svn.mageia.org cannot be used, as it point
+to a different server, a redirect can be setup to another url
+however ) ?
+( default answer : viewvc.mageia.org )
+
+- do people from the web team want to customize it ( ie, if someone
+devote time for that, i can add it to web like the others web
+application ) ?
+( default answer : I will report this to when it will be needed )
+
+For the moment, it is not in the dns, but should soon be so people can
+take a look at it.
+
+I would just ask to not take the url as granted, in case someone find a
+better name ( I am not completely satisfied by viewvc.mageia.org, but it
+the easiest to type that I could find, and was more than enough for the
+test I add to do ).
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000178.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000172.html">[Mageia-webteam] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#170">[ date ]</a>
+ <a href="thread.html#170">[ thread ]</a>
+ <a href="subject.html#170">[ subject ]</a>
+ <a href="author.html#170">[ 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-January/000171.html b/zarb-ml/mageia-webteam/2011-January/000171.html
new file mode 100644
index 000000000..d418c8c23
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000171.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Current bugzilla status
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Current%20bugzilla%20status&In-Reply-To=%3CAANLkTikcP7hhH5frXPDMbm4SJF1Tp-bDQYSwcTe5V3Ah%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="000189.html">
+ <LINK REL="Next" HREF="000176.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Current bugzilla status</H1>
+ <B>Dexter Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Current%20bugzilla%20status&In-Reply-To=%3CAANLkTikcP7hhH5frXPDMbm4SJF1Tp-bDQYSwcTe5V3Ah%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Current bugzilla status">dmorganec at gmail.com
+ </A><BR>
+ <I>Mon Jan 24 16:09:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000189.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000176.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#171">[ date ]</a>
+ <a href="thread.html#171">[ thread ]</a>
+ <a href="subject.html#171">[ subject ]</a>
+ <a href="author.html#171">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello to all,
+
+i wanted to mail you before but missed some time.
+
+Regarding the bugzilla, the install have been done,
+categories/componments/... have been added.
+
+I added the same page as mdv to report bugs (
+<A HREF="http://bugs.mageia.org/enter_bug.cgi?format=guided&amp;classification=__all">http://bugs.mageia.org/enter_bug.cgi?format=guided&amp;classification=__all</A>
+) .
+
+What's left is the page that show the bugs when done because for now
+we use the std page but which doesn't show the rpm field.
+
+does someone have time to do it ?
+If yes please send me the diff so i can test on my wm.
+
+
+thanks in advance
+D.Morgan
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000189.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000176.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#171">[ date ]</a>
+ <a href="thread.html#171">[ thread ]</a>
+ <a href="subject.html#171">[ subject ]</a>
+ <a href="author.html#171">[ 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-January/000172.html b/zarb-ml/mageia-webteam/2011-January/000172.html
new file mode 100644
index 000000000..a4bde4f4f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000172.html
@@ -0,0 +1,109 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Viewvc installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Viewvc%20installation&In-Reply-To=%3CAANLkTi%3D%3DdioqyJkWm5ymXaYTvfak8DOLOKaLiB9wGk6Z%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="000170.html">
+ <LINK REL="Next" HREF="000181.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Viewvc installation</H1>
+ <B>Benoit Audouard</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Viewvc%20installation&In-Reply-To=%3CAANLkTi%3D%3DdioqyJkWm5ymXaYTvfak8DOLOKaLiB9wGk6Z%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Viewvc installation">baud123 at gmail.com
+ </A><BR>
+ <I>Mon Jan 24 17:17:30 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000170.html">[Mageia-webteam] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000181.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#172">[ date ]</a>
+ <a href="thread.html#172">[ thread ]</a>
+ <a href="subject.html#172">[ subject ]</a>
+ <a href="author.html#172">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Re,
+
+2011/1/24 Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;
+
+&gt;<i> people commented on viewvc vs websvn
+</I>&gt;<i> ( <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html">https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html</A>), and so based on the fact that websvn run svn to get information ( thus
+</I>&gt;<i> would potentially overload the server when google bot team with yahoo to
+</I>&gt;<i> explore the server and our patches ), I have setup viewvc.
+</I>&gt;<i>
+</I>&gt;<i> I can also setup websvn if someone really need, but a quick check showed
+</I>&gt;<i> that both tools are quite similar in term of features, the only
+</I>&gt;<i> difference being the usage of svn commandline.
+</I>&gt;<i>
+</I>
+Just as an example, at tuxfamily we have both
+- <A HREF="http://websvn.tuxfamily.org">http://websvn.tuxfamily.org</A> with webSVN
+- and <A HREF="http://svn.tuxfamily.org">http://svn.tuxfamily.org</A> with viewvc (which works with cvs too iirc)
+
+one functionality in viewvc may be disabled : &quot;Download tarball&quot; (it's
+sometimes epic when google or any search-crawler begins to work on these
+links...). The equivalent in websvn exists and could be disabled too.
+
+There is 2 questions left ( with a default answer with a timeout of 2
+&gt;<i> days ) :
+</I>&gt;<i> - what should be the name ( svn.mageia.org cannot be used, as it point
+</I>&gt;<i> to a different server, a redirect can be setup to another url
+</I>&gt;<i> however ) ?
+</I>&gt;<i> ( default answer : viewvc.mageia.org )
+</I>
+
+websvn.mageia.org may be an alternative not depending on the tool used (or
+webvcs to be even more general, though git or hg have their own source code
+webviewer, so imho it's not that much relevant to find a generic name... as
+we would end with webgit / webhg depending on future &quot;wishes&quot;). In the end,
+there may even be a generic forge.mageia.org listing all source code
+repositories and related projects that will emerge one day or the other :-)
+
+I did not find the 2nd question to be answered^Wcommented ? (perhaps it was
+the &quot;redirect thing&quot;, that webteam or sysadm can answer directly ?).
+
+tl;dr ;-) well <A HREF="http://websvn.mageia.org">http://websvn.mageia.org</A> or <A HREF="http://viewvc.mageia.org">http://viewvc.mageia.org</A> are ok
+for me.
+
+@++
+Ben'. aka baud123
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110124/48e8778a/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000170.html">[Mageia-webteam] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000181.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#172">[ date ]</a>
+ <a href="thread.html#172">[ thread ]</a>
+ <a href="subject.html#172">[ subject ]</a>
+ <a href="author.html#172">[ 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-January/000173.html b/zarb-ml/mageia-webteam/2011-January/000173.html
new file mode 100644
index 000000000..57c15a97f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000173.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+ </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-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C1295889032.31817.14.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000177.html">
+ <LINK REL="Next" HREF="000178.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] New test tree in ldap</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C1295889032.31817.14.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] New test tree in ldap">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 24 18:10:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000177.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000178.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#173">[ date ]</a>
+ <a href="thread.html#173">[ thread ]</a>
+ <a href="subject.html#173">[ subject ]</a>
+ <a href="author.html#173">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 24 janvier 2011 &#224; 10:41 +0100, Ma&#226;t a &#233;crit :
+
+&gt;<i> Then we'll need to decide where our git reference repository will be hosted
+</I>&gt;<i>
+</I>&gt;<i> Atm on ennael's dedibox we have a repos cloned from phpBB's github official
+</I>&gt;<i> repos which i started while phpBB stable version was 3.0.7PL1.
+</I>&gt;<i>
+</I>&gt;<i> Now phpBB stable version is 3.0.8... as our customization is not heavy i want
+</I>&gt;<i> to take the opportunity (that we'll never have again) to fresh-start from upstream
+</I>&gt;<i> and re-apply our changes (theme, seo, umil...) so i just need a fresh git repos
+</I>&gt;<i> cloned from <A HREF="https://github.com/phpbb/phpbb3.git">https://github.com/phpbb/phpbb3.git</A> with at least write access for
+</I>&gt;<i> ashledombos and i
+</I>
+I have created ( or at least pushed on valstar after tested it on a vm )
+a git repository. I will add soon the various bits ( like a more
+suitable dns host, check that anonymous checkout is ok ), and tell you
+more definitive connexion information. ( And look on syntax check and
+commit mail ).
+
+There is no plan to install a web interface soon ( as the default one is
+quite crapp^w suboptimal from my memories, gitorious and co are much
+more complex, and cgit requires git code to be compiled and is not
+packaged ).
+
+The write access is restricted to people in mga-forum-developers group
+that I just created and for the moment, that's you and ashledombos.
+
+So far, the git is still experimental and quite open ( ie, I didn't
+restrict tags or anything, except non-fastforward rebase ).
+
+And sorry for others ( especially for kosmas ), I would prefer to first
+see how it goes with 1 project before hosting more than one, so people
+will have to wait until that.
+
+I will take a look at filling ldap later tonight, and send mail with a
+password.
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000177.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000178.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#173">[ date ]</a>
+ <a href="thread.html#173">[ thread ]</a>
+ <a href="subject.html#173">[ subject ]</a>
+ <a href="author.html#173">[ 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-January/000174.html b/zarb-ml/mageia-webteam/2011-January/000174.html
new file mode 100644
index 000000000..358658638
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000174.html
@@ -0,0 +1,103 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+ </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-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C1295889254.31817.18.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000169.html">
+ <LINK REL="Next" HREF="000175.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] New test tree in ldap</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C1295889254.31817.18.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] New test tree in ldap">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 24 18:14:14 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000169.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000175.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#174">[ date ]</a>
+ <a href="thread.html#174">[ thread ]</a>
+ <a href="subject.html#174">[ subject ]</a>
+ <a href="author.html#174">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 24 janvier 2011 &#224; 11:20 +0000, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> On 24 January 2011 09:41, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+</I>&gt;<i>
+</I>&gt;<i> &gt; Le 24/01/2011 10:18, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; &gt; Hi,
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; As asked by forum team, I have created a ldap subtree for testing the
+</I>&gt;<i> &gt; &gt; phpbb ldap integration, since they want to test on a server that is not
+</I>&gt;<i> &gt; &gt; managed by us, and so this could cause security issues ie, if a remote
+</I>&gt;<i> &gt; &gt; server is compromised for various reasons ( like not being treated as
+</I>&gt;<i> &gt; &gt; production, which is a reasonable assumption for a test server ) and
+</I>&gt;<i> &gt; &gt; someone start to gather username, email, and so on.
+</I>&gt;<i> &gt; great ! Thank you Misc :)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; The tree is dc=test_ldap, there is just the top level entry and there is
+</I>&gt;<i> &gt; &gt; no acl. ( maybe I should have called it test_ldap_forum )
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> Wouldn't a similar integration needed for the maintainer's db?
+</I>
+Yes.
+
+&gt;<i> Would we need a different user name for the application, or we would have a
+</I>&gt;<i> group that exists there and has admin permissions in the app?
+</I>
+The login do not have write access to the ldap, it just here to connect
+to ldap,do the login ( like misc ) to ldap login mapping ( like
+uid=misc,ou=People,dc=mageia,dc=org ), and then test if the password is
+correct by binding to ldap using ldap login and the password.
+
+Now, if you need to store something to ldap, we can arrange something,
+but that would requires to change ACLs ( and I think that it is better
+to not use ldap to store this, for various reason like &quot;ldap is more
+complex to manage than sql&quot; )
+
+&gt;<i> I was going to ask about the integration options and how we are actually
+</I>&gt;<i> need to get the data, so that was good timing :-)
+</I>&gt;<i>
+</I>&gt;<i> Should I be using the details mentioned in previous emails, for connecting
+</I>&gt;<i> to the server and testing?
+</I>
+I will mail you a account/password once I have created it on the ldap.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000169.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000175.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#174">[ date ]</a>
+ <a href="thread.html#174">[ thread ]</a>
+ <a href="subject.html#174">[ subject ]</a>
+ <a href="author.html#174">[ 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-January/000175.html b/zarb-ml/mageia-webteam/2011-January/000175.html
new file mode 100644
index 000000000..832bc6059
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000175.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+ </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-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3CAANLkTimxX8T2ZCKbSpcAoVLpK97z7ZwPh4jDQjNWtJxE%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="000174.html">
+ <LINK REL="Next" HREF="000177.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] New test tree in ldap</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3CAANLkTimxX8T2ZCKbSpcAoVLpK97z7ZwPh4jDQjNWtJxE%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] New test tree in ldap">Kosmas at mach7x.com
+ </A><BR>
+ <I>Mon Jan 24 18:54:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000174.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000177.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#175">[ date ]</a>
+ <a href="thread.html#175">[ thread ]</a>
+ <a href="subject.html#175">[ subject ]</a>
+ <a href="author.html#175">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i>And sorry for others ( especially for kosmas ), I would prefer to first
+</I>&gt;<i>see how it goes with 1 project before hosting more than one, so people
+</I>&gt;<i>will have to wait until that.
+</I>
+That's not a problem :-)
+It can wait for a later date, as at the moment I'm fine using gitorious!
+
+
+On 24 January 2011 17:14, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+
+&gt;<i> Le lundi 24 janvier 2011 &#224; 11:20 +0000, Kosmas Chatzimichalis a &#233;crit :
+</I>&gt;<i> &gt; On 24 January 2011 09:41, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; Le 24/01/2011 10:18, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; &gt; &gt; Hi,
+</I>&gt;<i> &gt; &gt; &gt;
+</I>&gt;<i>
+</I>&gt;<i> &gt; Wouldn't a similar integration needed for the maintainer's db?
+</I>&gt;<i>
+</I>&gt;<i> Yes.
+</I>&gt;<i>
+</I>
+Ok. That's great, thanks.
+
+
+&gt;<i>
+</I>&gt;<i> &gt; Would we need a different user name for the application, or we would have
+</I>&gt;<i> a
+</I>&gt;<i> &gt; group that exists there and has admin permissions in the app?
+</I>&gt;<i>
+</I>&gt;<i> The login do not have write access to the ldap, it just here to connect
+</I>&gt;<i> to ldap,do the login ( like misc ) to ldap login mapping ( like
+</I>&gt;<i> uid=misc,ou=People,dc=mageia,dc=org ), and then test if the password is
+</I>&gt;<i> correct by binding to ldap using ldap login and the password.
+</I>&gt;<i>
+</I>&gt;<i> Now, if you need to store something to ldap, we can arrange something,
+</I>&gt;<i> but that would requires to change ACLs ( and I think that it is better
+</I>&gt;<i> to not use ldap to store this, for various reason like &quot;ldap is more
+</I>&gt;<i> complex to manage than sql&quot; )
+</I>&gt;<i>
+</I>&gt;<i> I was thinking along the lines, about permissions of who can edit/create
+</I>entries in the maintainers db?
+So, if a user (maintainer with admin permissions?) has the necessary entry
+in the ldap, then they should be able to change things in the maintainers
+db.
+I don't think there will be a need to have write permissions to ldap, unless
+we want to create maintainers in maint db app, and write that to the ldap.
+I will send another email with a few questions about maint db later on.
+
+
+
+&gt;<i> &gt; I was going to ask about the integration options and how we are actually
+</I>&gt;<i> &gt; need to get the data, so that was good timing :-)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Should I be using the details mentioned in previous emails, for
+</I>&gt;<i> connecting
+</I>&gt;<i> &gt; to the server and testing?
+</I>&gt;<i> I will mail you a account/password once I have created it on the ldap
+</I>&gt;<i>
+</I>
+OK. That's great thanks Michael.
+Again I was thinking about a maintainer, that I should be doing a lookup in
+ldap, but I could be testing that with my account I suppose.
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110124/a8ed26f6/attachment-0001.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000174.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000177.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#175">[ date ]</a>
+ <a href="thread.html#175">[ thread ]</a>
+ <a href="subject.html#175">[ subject ]</a>
+ <a href="author.html#175">[ 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-January/000176.html b/zarb-ml/mageia-webteam/2011-January/000176.html
new file mode 100644
index 000000000..f55e7f9b8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000176.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintainers db app questions
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20app%20questions&In-Reply-To=%3CAANLkTi%3DpjMY3NvdgXd7ZBzwkG8nOEjGF-VkX1-t7Ub4H%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="000171.html">
+ <LINK REL="Next" HREF="000179.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintainers db app questions</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20app%20questions&In-Reply-To=%3CAANLkTi%3DpjMY3NvdgXd7ZBzwkG8nOEjGF-VkX1-t7Ub4H%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintainers db app questions">Kosmas at mach7x.com
+ </A><BR>
+ <I>Mon Jan 24 19:07:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000171.html">[Mageia-webteam] Current bugzilla status
+</A></li>
+ <LI>Next message: <A HREF="000179.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#176">[ date ]</a>
+ <a href="thread.html#176">[ thread ]</a>
+ <a href="subject.html#176">[ subject ]</a>
+ <a href="author.html#176">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>A few questions about the maintainers db application, that are more detailed
+than the initial spec.
+
+
+ - Do we need first name, surname for maintainers or we would only be
+ using email?
+ - If we do store first name, surname are they compulsory, or can be
+ omitted?
+ - Where do we take the information from? Is there a database at the
+ moment, that we can take maintainers, packages information?
+ - If information is taken initially from another database, where is the
+ new information created? Or in other words, do we create new media,
+ maintainer, package in the app or is that created somewhere else?
+ - How do we integrate with ldap? Would that be used to lookup for
+ administration permissions for maintainers? Or would we need different users
+ as admins that are not necessarily maintainers.
+ - Would the first maintainer be the admin for a particular package?
+ - Can the admin of a package be changed later on?
+
+P.S. The link for the staging/test application is here for anyone that
+missed it first time (I'm adding it to the wiki as well):
+<A HREF="http://maintdb.mageia.org.uk/">http://maintdb.mageia.org.uk/</A>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110124/394bcd40/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000171.html">[Mageia-webteam] Current bugzilla status
+</A></li>
+ <LI>Next message: <A HREF="000179.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#176">[ date ]</a>
+ <a href="thread.html#176">[ thread ]</a>
+ <a href="subject.html#176">[ subject ]</a>
+ <a href="author.html#176">[ 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-January/000177.html b/zarb-ml/mageia-webteam/2011-January/000177.html
new file mode 100644
index 000000000..5065851a1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000177.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+ </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-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C1295893524.31817.45.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000175.html">
+ <LINK REL="Next" HREF="000173.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] New test tree in ldap</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C1295893524.31817.45.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] New test tree in ldap">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 24 19:25:24 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000175.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000173.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#177">[ date ]</a>
+ <a href="thread.html#177">[ thread ]</a>
+ <a href="subject.html#177">[ subject ]</a>
+ <a href="author.html#177">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 24 janvier 2011 &#224; 17:54 +0000, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> &gt;
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; Would we need a different user name for the application, or we would have
+</I>&gt;<i> &gt; a
+</I>&gt;<i> &gt; &gt; group that exists there and has admin permissions in the app?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; The login do not have write access to the ldap, it just here to connect
+</I>&gt;<i> &gt; to ldap,do the login ( like misc ) to ldap login mapping ( like
+</I>&gt;<i> &gt; uid=misc,ou=People,dc=mageia,dc=org ), and then test if the password is
+</I>&gt;<i> &gt; correct by binding to ldap using ldap login and the password.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Now, if you need to store something to ldap, we can arrange something,
+</I>&gt;<i> &gt; but that would requires to change ACLs ( and I think that it is better
+</I>&gt;<i> &gt; to not use ldap to store this, for various reason like &quot;ldap is more
+</I>&gt;<i> &gt; complex to manage than sql&quot; )
+</I>&gt;<i>
+</I>&gt;<i> I was thinking along the lines, about permissions of who can edit/create
+</I>&gt;<i> entries in the maintainers db?
+</I>&gt;<i> So, if a user (maintainer with admin permissions?) has the necessary entry
+</I>&gt;<i> in the ldap, then they should be able to change things in the maintainers
+</I>&gt;<i> db.
+</I>
+I think that simply checking if someone is in some ldap group would be
+sufficient. ( and more in conformance with the way the rest of
+infrastructure is managed ). I would even add for more than 1 group so
+we can have sysadmin and another group of packagers, if delegation is
+needed.
+
+There is various way to handle this, and I think you should ask to
+packagers about what they would want, especially with regard to multiple
+maintainers per packages ( not for now, of course as the goal was to
+have something ready fast, but such improvements were quite asked
+afaik ). Ie, who can accept another packagers or not ?
+
+We do not have any upload restrictions yet, but I guess that sooner or
+later, some parts will be restricted, and it would be better to have
+them maintainers based rather than duplicating the username in the
+buildsystem configuration.
+
+
+&gt;<i> I don't think there will be a need to have write permissions to ldap, unless
+</I>&gt;<i> we want to create maintainers in maint db app, and write that to the ldap.
+</I>&gt;<i> I will send another email with a few questions about maint db later on.
+</I>
+Yup, the maintainer creation should be done on ldap first, as people
+need a account to maintain anything.
+
+&gt;<i> OK. That's great thanks Michael.
+</I>&gt;<i> Again I was thinking about a maintainer, that I should be doing a lookup in
+</I>&gt;<i> ldap, but I could be testing that with my account I suppose.
+</I>
+I am not sure that would work :/
+
+The ldap is quite restricted to protect privacy of users, and only
+service accounts should be able to get such informations.
+
+--
+Michael Scherer
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000175.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000173.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#177">[ date ]</a>
+ <a href="thread.html#177">[ thread ]</a>
+ <a href="subject.html#177">[ subject ]</a>
+ <a href="author.html#177">[ 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-January/000178.html b/zarb-ml/mageia-webteam/2011-January/000178.html
new file mode 100644
index 000000000..3d71b9330
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000178.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+ </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-sysadm%5D%20%20%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C4D3DC42E.9030305%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000173.html">
+ <LINK REL="Next" HREF="000170.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] New test tree in ldap</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20%20New%20test%20tree%20in%20ldap&In-Reply-To=%3C4D3DC42E.9030305%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] New test tree in ldap">maat-ml at vilarem.net
+ </A><BR>
+ <I>Mon Jan 24 19:25:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000173.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000170.html">[Mageia-webteam] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#178">[ date ]</a>
+ <a href="thread.html#178">[ thread ]</a>
+ <a href="subject.html#178">[ subject ]</a>
+ <a href="author.html#178">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 24/01/2011 18:10, Michael Scherer a &#233;crit :
+&gt;<i> Le lundi 24 janvier 2011 &#224; 10:41 +0100, Ma&#226;t a &#233;crit :
+</I>&gt;<i>
+</I>&gt;&gt;<i> Then we'll need to decide where our git reference repository will be hosted
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Atm on ennael's dedibox we have a repos cloned from phpBB's github official
+</I>&gt;&gt;<i> repos which i started while phpBB stable version was 3.0.7PL1.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Now phpBB stable version is 3.0.8... as our customization is not heavy i want
+</I>&gt;&gt;<i> to take the opportunity (that we'll never have again) to fresh-start from upstream
+</I>&gt;&gt;<i> and re-apply our changes (theme, seo, umil...) so i just need a fresh git repos
+</I>&gt;&gt;<i> cloned from <A HREF="https://github.com/phpbb/phpbb3.git">https://github.com/phpbb/phpbb3.git</A> with at least write access for
+</I>&gt;&gt;<i> ashledombos and i
+</I>&gt;<i> I have created ( or at least pushed on valstar after tested it on a vm )
+</I>&gt;<i> a git repository. I will add soon the various bits ( like a more
+</I>&gt;<i> suitable dns host, check that anonymous checkout is ok ), and tell you
+</I>&gt;<i> more definitive connexion information. ( And look on syntax check and
+</I>&gt;<i> commit mail ).
+</I>&gt;<i>
+</I>&gt;<i> There is no plan to install a web interface soon ( as the default one is
+</I>&gt;<i> quite crapp^w suboptimal from my memories, gitorious and co are much
+</I>&gt;<i> more complex, and cgit requires git code to be compiled and is not
+</I>&gt;<i> packaged ).
+</I>&gt;<i>
+</I>&gt;<i> The write access is restricted to people in mga-forum-developers group
+</I>&gt;<i> that I just created and for the moment, that's you and ashledombos.
+</I>&gt;<i>
+</I>&gt;<i> So far, the git is still experimental and quite open ( ie, I didn't
+</I>&gt;<i> restrict tags or anything, except non-fastforward rebase ).
+</I>&gt;<i>
+</I>&gt;<i> And sorry for others ( especially for kosmas ), I would prefer to first
+</I>&gt;<i> see how it goes with 1 project before hosting more than one, so people
+</I>&gt;<i> will have to wait until that.
+</I>&gt;<i>
+</I>&gt;<i> I will take a look at filling ldap later tonight, and send mail with a
+</I>&gt;<i> password.
+</I>
+Ok Michael... thanks a lot :)
+
+I'll check tomorrow...
+
+Ma&#226;t
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000173.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A></li>
+ <LI>Next message: <A HREF="000170.html">[Mageia-webteam] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#178">[ date ]</a>
+ <a href="thread.html#178">[ thread ]</a>
+ <a href="subject.html#178">[ subject ]</a>
+ <a href="author.html#178">[ 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-January/000179.html b/zarb-ml/mageia-webteam/2011-January/000179.html
new file mode 100644
index 000000000..6a9957d36
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000179.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintainers db app questions
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20app%20questions&In-Reply-To=%3CAANLkTikw39TKDKtvksDNH%2BKQRg5c7RzX-jjPVOxQ64AM%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="000176.html">
+ <LINK REL="Next" HREF="000180.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintainers db app questions</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20app%20questions&In-Reply-To=%3CAANLkTikw39TKDKtvksDNH%2BKQRg5c7RzX-jjPVOxQ64AM%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintainers db app questions">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 24 19:35:12 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000176.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI>Next message: <A HREF="000180.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#179">[ date ]</a>
+ <a href="thread.html#179">[ thread ]</a>
+ <a href="subject.html#179">[ subject ]</a>
+ <a href="author.html#179">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi Kosmas,
+
+On Mon, Jan 24, 2011 at 19:07, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> Do we need first name, surname for maintainers or we would only be using
+</I>&gt;<i> email?
+</I>
+Username + firstname/surname.
+
+&gt;<i> If we do store first name, surname are they compulsory, or can be omitted?
+</I>
+Can be omitted. Those should be sourced from the LDAP.
+
+&gt;<i> Where do we take the information from? Is there a database at the moment,
+</I>&gt;<i> that we can take maintainers, packages information?
+</I>
+That precisely the goal of this app. :-)
+
+&gt;<i> Or in other words, do we create new media, maintainer,
+</I>&gt;<i> package in the app or is that created somewhere else?
+</I>
+Ask this on mageia-dev@ ml maybe. But try not to overspecify this at this time.
+
+&gt;<i> How do we integrate with ldap? Would that be used to lookup for
+</I>&gt;<i> administration permissions for maintainers?
+</I>
+I don't think so. That sort of info would be in the db maintainers.
+
+&gt;<i> Or would we need different users as admins that are not necessarily maintainers.
+</I>&gt;<i> Would the first maintainer be the admin for a particular package?
+</I>
+Yes.
+
+&gt;<i> Can the admin of a package be changed later on?
+</I>
+Yes. (maybe you would better store the &quot;admin&quot; flag in the
+relationship between the user and the package).
+
+&gt;<i> P.S. The link for the staging/test application is here for anyone that
+</I>&gt;<i> missed it first time (I'm adding it to the wiki as well):
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org.uk/">http://maintdb.mageia.org.uk/</A>
+</I>
+Cool. Thanks!
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000176.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI>Next message: <A HREF="000180.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#179">[ date ]</a>
+ <a href="thread.html#179">[ thread ]</a>
+ <a href="subject.html#179">[ subject ]</a>
+ <a href="author.html#179">[ 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-January/000180.html b/zarb-ml/mageia-webteam/2011-January/000180.html
new file mode 100644
index 000000000..96c2d01a7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000180.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintainers db app questions
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20app%20questions&In-Reply-To=%3C1295894268.31817.56.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000179.html">
+ <LINK REL="Next" HREF="000184.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintainers db app questions</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintainers%20db%20app%20questions&In-Reply-To=%3C1295894268.31817.56.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Maintainers db app questions">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 24 19:37:48 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000179.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI>Next message: <A HREF="000184.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#180">[ date ]</a>
+ <a href="thread.html#180">[ thread ]</a>
+ <a href="subject.html#180">[ subject ]</a>
+ <a href="author.html#180">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 24 janvier 2011 &#224; 18:07 +0000, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> A few questions about the maintainers db application, that are more detailed
+</I>&gt;<i> than the initial spec.
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> - Do we need first name, surname for maintainers or we would only be
+</I>&gt;<i> using email?
+</I>
+mhh, what about login + email ?
+I do not fully understand the question
+
+&gt;<i> - If we do store first name, surname are they compulsory, or can be
+</I>&gt;<i> omitted?
+</I>I would rather fetch them from ldap, or at least, make ldap the
+reference for that, and keep the information in the db as cache, so
+people have one location to change everything.
+
+&gt;<i> - Where do we take the information from? Is there a database at the
+</I>&gt;<i> moment, that we can take maintainers, packages information?
+</I>We don't have anything yet.
+
+&gt;<i> - If information is taken initially from another database, where is the
+</I>&gt;<i> new information created? Or in other words, do we create new media,
+</I>&gt;<i> maintainer, package in the app or is that created somewhere else?
+</I>A good question.
+Maintainers list come from ldap.
+
+Media should IMHO be not required, but if needed, I would rather have a
+list somewhere acting as a reference. ( maybe ldap ? ). Some people
+spoke of having different maintainers for stable and devel, but I do not
+think we are enough to have that.
+
+Packages are not stored anywhere yet, and I do not know if someone
+planned something. But packages would likely be created on upload by a
+script, with the people uploading becoming the maintainer.
+
+&gt;<i> - How do we integrate with ldap?
+</I>for authentication I think
+
+&gt;<i> Would that be used to lookup for
+</I>&gt;<i> administration permissions for maintainers? Or would we need different users
+</I>&gt;<i> as admins that are not necessarily maintainers.
+</I>I would use the following permissions :
+- define a group for people who can connect on the interface ( like,
+packagers )
+- define a group that can connect as admin ( like be able to change
+anything, ie sysadmins )
+
+That was the scheme used at Mandriva, and I think it is sufficient,
+So yes, using ldap for admin permission is a good idea.
+
+&gt;<i> - Would the first maintainer be the admin for a particular package?
+</I>That could be done, yes but some people would maybe prefer more than 1
+admin, or shared admins with everybody. I can ask during meeting on
+Wednesday the opinion of others packagers.
+
+&gt;<i> - Can the admin of a package be changed later on?
+</I>That's imho required, yes.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000179.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI>Next message: <A HREF="000184.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#180">[ date ]</a>
+ <a href="thread.html#180">[ thread ]</a>
+ <a href="subject.html#180">[ subject ]</a>
+ <a href="author.html#180">[ 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-January/000181.html b/zarb-ml/mageia-webteam/2011-January/000181.html
new file mode 100644
index 000000000..69bccf469
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000181.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Viewvc installation
+ </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-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C201101242000.47261.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000172.html">
+ <LINK REL="Next" HREF="000182.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Viewvc installation</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C201101242000.47261.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Viewvc installation">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Mon Jan 24 20:00:47 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000172.html">[Mageia-webteam] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000182.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#181">[ date ]</a>
+ <a href="thread.html#181">[ thread ]</a>
+ <a href="subject.html#181">[ subject ]</a>
+ <a href="author.html#181">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op maandag 24 januari 2011 14:46:09 schreef Michael Scherer:
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> since people have asked for it since a long time, and since no much
+</I>&gt;<i> people commented on viewvc vs websvn
+</I>&gt;<i> ( <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html">https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html</A>
+</I>&gt;<i> ), and so based on the fact that websvn run svn to get information ( thus
+</I>&gt;<i> would potentially overload the server when google bot team with yahoo to
+</I>&gt;<i> explore the server and our patches ), I have setup viewvc.
+</I>&gt;<i>
+</I>&gt;<i> I can also setup websvn if someone really need, but a quick check showed
+</I>&gt;<i> that both tools are quite similar in term of features, the only
+</I>&gt;<i> difference being the usage of svn commandline.
+</I>&gt;<i>
+</I>&gt;<i> There is 2 questions left ( with a default answer with a timeout of 2
+</I>&gt;<i> days ) :
+</I>&gt;<i> - what should be the name ( svn.mageia.org cannot be used, as it point
+</I>&gt;<i> to a different server, a redirect can be setup to another url
+</I>&gt;<i> however ) ?
+</I>&gt;<i> ( default answer : viewvc.mageia.org )
+</I>
+i want svn.mageia.org, so perhaps instead of redirect, you could do a
+proxypass (with some caching; it's mostly static anyway)? then for all i care,
+you can use viewvc or something else, if something else is done later on.
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000172.html">[Mageia-webteam] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000182.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#181">[ date ]</a>
+ <a href="thread.html#181">[ thread ]</a>
+ <a href="subject.html#181">[ subject ]</a>
+ <a href="author.html#181">[ 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-January/000182.html b/zarb-ml/mageia-webteam/2011-January/000182.html
new file mode 100644
index 000000000..c401afad2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000182.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Viewvc installation
+ </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-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C20110124210335.GO21938%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="000181.html">
+ <LINK REL="Next" HREF="000183.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Viewvc installation</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C20110124210335.GO21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Viewvc installation">boklm at mars-attacks.org
+ </A><BR>
+ <I>Mon Jan 24 22:03:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000181.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000183.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#182">[ date ]</a>
+ <a href="thread.html#182">[ thread ]</a>
+ <a href="subject.html#182">[ subject ]</a>
+ <a href="author.html#182">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, 24 Jan 2011, Maarten Vanraes wrote:
+
+&gt;<i>
+</I>&gt;<i> i want svn.mageia.org, so perhaps instead of redirect, you could do a
+</I>&gt;<i> proxypass (with some caching; it's mostly static anyway)? then for all i care,
+</I>&gt;<i> you can use viewvc or something else, if something else is done later on.
+</I>
+Why do you want it on svn.mageia.org ? Unless there's a good reason, we
+should try to keep it simple. And using a proxy on valstar to redirect
+to alamut, which is using a copy of the svn from valstar, is not very
+simple. And we're trying to avoid installing too many things on valstar.
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000181.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000183.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#182">[ date ]</a>
+ <a href="thread.html#182">[ thread ]</a>
+ <a href="subject.html#182">[ subject ]</a>
+ <a href="author.html#182">[ 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-January/000183.html b/zarb-ml/mageia-webteam/2011-January/000183.html
new file mode 100644
index 000000000..9de34164b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000183.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Viewvc installation
+ </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-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C201101251923.35611.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000182.html">
+ <LINK REL="Next" HREF="000190.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Viewvc installation</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C201101251923.35611.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Viewvc installation">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Tue Jan 25 19:23:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000182.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000190.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#183">[ date ]</a>
+ <a href="thread.html#183">[ thread ]</a>
+ <a href="subject.html#183">[ subject ]</a>
+ <a href="author.html#183">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op maandag 24 januari 2011 22:03:35 schreef nicolas vigier:
+&gt;<i> On Mon, 24 Jan 2011, Maarten Vanraes wrote:
+</I>&gt;<i> &gt; i want svn.mageia.org, so perhaps instead of redirect, you could do a
+</I>&gt;<i> &gt; proxypass (with some caching; it's mostly static anyway)? then for all i
+</I>&gt;<i> &gt; care, you can use viewvc or something else, if something else is done
+</I>&gt;<i> &gt; later on.
+</I>&gt;<i>
+</I>&gt;<i> Why do you want it on svn.mageia.org ? Unless there's a good reason, we
+</I>&gt;<i> should try to keep it simple. And using a proxy on valstar to redirect
+</I>&gt;<i> to alamut, which is using a copy of the svn from valstar, is not very
+</I>&gt;<i> simple. And we're trying to avoid installing too many things on valstar.
+</I>&gt;<i>
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-sysadm mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-sysadm at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">https://www.mageia.org/mailman/listinfo/mageia-sysadm</A>
+</I>
+the only reason i want it on svn; is because that makes it all the more
+transparent. ie: for users working with svn just means using svn.mageia.org .
+if it's <A HREF="svn://">svn://</A> or <A HREF="http://">http://</A> or svn+<A HREF="ssh://">ssh://</A> or whatever.
+
+tbh a simple proxypass on a machine that has apache(if indeed it has.) anyway,
+is not so complicated. with caching on it, it would reduce the load to the svn
+machine.
+
+perhaps with this setup it would not be needed to have a copy (due to the
+caching), but i can be wrong.
+
+in any case, keeping simple is the best option, but i think from user pov
+using svn.mageia.org is just simple for them.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000182.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000190.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#183">[ date ]</a>
+ <a href="thread.html#183">[ thread ]</a>
+ <a href="subject.html#183">[ subject ]</a>
+ <a href="author.html#183">[ 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-January/000184.html b/zarb-ml/mageia-webteam/2011-January/000184.html
new file mode 100644
index 000000000..579a8bae4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000184.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Viewvc installation
+ </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-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C201101252201.31240.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000180.html">
+ <LINK REL="Next" HREF="000185.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Viewvc installation</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C201101252201.31240.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Viewvc installation">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Tue Jan 25 22:01:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000180.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI>Next message: <A HREF="000185.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#184">[ date ]</a>
+ <a href="thread.html#184">[ thread ]</a>
+ <a href="subject.html#184">[ subject ]</a>
+ <a href="author.html#184">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op dinsdag 25 januari 2011 21:37:08 schreef Pascal Terjan:
+&gt;<i> On Tue, Jan 25, 2011 at 18:23, Maarten Vanraes
+</I>&gt;<i>
+</I>&gt;<i> &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; wrote:
+</I>&gt;<i> &gt; Op maandag 24 januari 2011 22:03:35 schreef nicolas vigier:
+</I>&gt;<i> &gt;&gt; On Mon, 24 Jan 2011, Maarten Vanraes wrote:
+</I>&gt;<i> &gt;&gt; &gt; i want svn.mageia.org, so perhaps instead of redirect, you could do a
+</I>&gt;<i> &gt;&gt; &gt; proxypass (with some caching; it's mostly static anyway)? then for all
+</I>&gt;<i> &gt;&gt; &gt; i care, you can use viewvc or something else, if something else is
+</I>&gt;<i> &gt;&gt; &gt; done later on.
+</I>&gt;<i> &gt;&gt;
+</I>&gt;<i> &gt;&gt; Why do you want it on svn.mageia.org ? Unless there's a good reason, we
+</I>&gt;<i> &gt;&gt; should try to keep it simple. And using a proxy on valstar to redirect
+</I>&gt;<i> &gt;&gt; to alamut, which is using a copy of the svn from valstar, is not very
+</I>&gt;<i> &gt;&gt; simple. And we're trying to avoid installing too many things on valstar.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; the only reason i want it on svn; is because that makes it all the more
+</I>&gt;<i> &gt; transparent. ie: for users working with svn just means using
+</I>&gt;<i> &gt; svn.mageia.org . if it's <A HREF="svn://">svn://</A> or <A HREF="http://">http://</A> or svn+<A HREF="ssh://">ssh://</A> or whatever.
+</I>&gt;<i>
+</I>&gt;<i> svn is accessible on there with <A HREF="svn://">svn://</A> or svn+<A HREF="ssh://">ssh://</A> and we can add
+</I>&gt;<i> <A HREF="http://">http://</A> but that would be to use svn, not for the interface
+</I>&gt;<i>
+</I>&gt;<i> &gt; tbh a simple proxypass on a machine that has apache(if indeed it has.)
+</I>&gt;<i> &gt; anyway, is not so complicated. with caching on it, it would reduce the
+</I>&gt;<i> &gt; load to the svn machine.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; perhaps with this setup it would not be needed to have a copy (due to the
+</I>&gt;<i> &gt; caching), but i can be wrong.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; in any case, keeping simple is the best option, but i think from user pov
+</I>&gt;<i> &gt; using svn.mageia.org is just simple for them.
+</I>&gt;<i>
+</I>&gt;<i> Well using svn for svn access (over anything, including http) and
+</I>&gt;<i> something else for a web interface makes sense to me
+</I>
+Well, i gave my thoughts on it, you all can decide on what you want.
+
+NOTE: you can even have both svn access and viewvc interface over the same
+server... like svn.mageia.org/viewvc could be proxypassed to the viewvc
+installation.
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000180.html">[Mageia-webteam] Maintainers db app questions
+</A></li>
+ <LI>Next message: <A HREF="000185.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#184">[ date ]</a>
+ <a href="thread.html#184">[ thread ]</a>
+ <a href="subject.html#184">[ subject ]</a>
+ <a href="author.html#184">[ 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-January/000185.html b/zarb-ml/mageia-webteam/2011-January/000185.html
new file mode 100644
index 000000000..f8844a9db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000185.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 4 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%204%20meeting&In-Reply-To=%3CAANLkTinChxXW017OERmbYK4qpv81r6-4v%2Bx0L-N%2Bj49f%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="000184.html">
+ <LINK REL="Next" HREF="000186.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 4 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%204%20meeting&In-Reply-To=%3CAANLkTinChxXW017OERmbYK4qpv81r6-4v%2Bx0L-N%2Bj49f%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 4 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 26 00:48:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000184.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000186.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#185">[ date ]</a>
+ <a href="thread.html#185">[ thread ]</a>
+ <a href="subject.html#185">[ subject ]</a>
+ <a href="author.html#185">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+as usual: <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> at 14:00 UTC.
+
+ * no specifics here, see last meeting notes for the progress review
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-19-14.12.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-19-14.12.html</A>
+ * please add your topic
+
+I may be late by ~15 minutes.
+
+I wonder here too (as for marcom team) if we couldn't spend less time
+in the meetings, and have the progress review made here (or, for that
+matter, on some dedicated interface). Just a thought if that could
+help. We will still need to have a regular, weekly meeting point,
+would it be only 10 minutes long.
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000184.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000186.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#185">[ date ]</a>
+ <a href="thread.html#185">[ thread ]</a>
+ <a href="subject.html#185">[ subject ]</a>
+ <a href="author.html#185">[ 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-January/000186.html b/zarb-ml/mageia-webteam/2011-January/000186.html
new file mode 100644
index 000000000..0392fe1be
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000186.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 4 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%204%20meeting&In-Reply-To=%3C201101260817.41780.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000185.html">
+ <LINK REL="Next" HREF="000187.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 4 meeting</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%204%20meeting&In-Reply-To=%3C201101260817.41780.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 4 meeting">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Wed Jan 26 08:17:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000185.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI>Next message: <A HREF="000187.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#186">[ date ]</a>
+ <a href="thread.html#186">[ thread ]</a>
+ <a href="subject.html#186">[ subject ]</a>
+ <a href="author.html#186">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op woensdag 26 januari 2011 00:48:20 schreef Romain d'Alverny:
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> as usual: <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> at 14:00 UTC.
+</I>&gt;<i>
+</I>&gt;<i> * no specifics here, see last meeting notes for the progress review
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-19-14.12.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-19-14.12.html</A>
+</I>&gt;<i> * please add your topic
+</I>&gt;<i>
+</I>&gt;<i> I may be late by ~15 minutes.
+</I>&gt;<i>
+</I>&gt;<i> I wonder here too (as for marcom team) if we couldn't spend less time
+</I>&gt;<i> in the meetings, and have the progress review made here (or, for that
+</I>&gt;<i> matter, on some dedicated interface). Just a thought if that could
+</I>&gt;<i> help. We will still need to have a regular, weekly meeting point,
+</I>&gt;<i> would it be only 10 minutes long.
+</I>&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>
+
+afaik blingme did some bugfixing on identity, i donno how far he got. perhaps
+you could ask him.
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000185.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI>Next message: <A HREF="000187.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#186">[ date ]</a>
+ <a href="thread.html#186">[ thread ]</a>
+ <a href="subject.html#186">[ subject ]</a>
+ <a href="author.html#186">[ 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-January/000187.html b/zarb-ml/mageia-webteam/2011-January/000187.html
new file mode 100644
index 000000000..5fdda5284
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000187.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 4 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%204%20meeting&In-Reply-To=%3CAANLkTinPppyrvThfAX8e1AghzNHSoixfnuJbzE2AASg-%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="000186.html">
+ <LINK REL="Next" HREF="000191.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 4 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%204%20meeting&In-Reply-To=%3CAANLkTinPppyrvThfAX8e1AghzNHSoixfnuJbzE2AASg-%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 4 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jan 26 15:59:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000186.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI>Next message: <A HREF="000191.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#187">[ date ]</a>
+ <a href="thread.html#187">[ thread ]</a>
+ <a href="subject.html#187">[ subject ]</a>
+ <a href="author.html#187">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Jan 26, 2011 at 00:48, 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>
+And... here are the logs:
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-26-14.22.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-01-26-14.22.html</A>
+
+Missing points to review:
+ * catdap/identity (some commits this week, what's the status, issues
+to port to bugzilla) (blingme)
+ * blogs migration and planet setup (damsweb)
+ * website migration (rda)
+
+Cheers!
+
+Romain
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000186.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI>Next message: <A HREF="000191.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#187">[ date ]</a>
+ <a href="thread.html#187">[ thread ]</a>
+ <a href="subject.html#187">[ subject ]</a>
+ <a href="author.html#187">[ 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-January/000188.html b/zarb-ml/mageia-webteam/2011-January/000188.html
new file mode 100644
index 000000000..21fb84a7e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000188.html
@@ -0,0 +1,116 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Viewvc installation
+ </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-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C1296069331.3567.59.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000190.html">
+ <LINK REL="Next" HREF="000189.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Viewvc installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C1296069331.3567.59.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Viewvc installation">misc at zarb.org
+ </A><BR>
+ <I>Wed Jan 26 20:15:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000190.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000189.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#188">[ date ]</a>
+ <a href="thread.html#188">[ thread ]</a>
+ <a href="subject.html#188">[ subject ]</a>
+ <a href="author.html#188">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 24 janvier 2011 &#224; 14:46 +0100, Michael Scherer a &#233;crit :
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> since people have asked for it since a long time, and since no much
+</I>&gt;<i> people commented on viewvc vs websvn
+</I>&gt;<i> ( <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html">https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html</A> ), and so based on the fact that websvn run svn to get information ( thus would potentially overload the server when google bot team with yahoo to explore the server and our patches ), I have setup viewvc.
+</I>&gt;<i>
+</I>&gt;<i> I can also setup websvn if someone really need, but a quick check showed
+</I>&gt;<i> that both tools are quite similar in term of features, the only
+</I>&gt;<i> difference being the usage of svn commandline.
+</I>&gt;<i>
+</I>&gt;<i> There is 2 questions left ( with a default answer with a timeout of 2
+</I>&gt;<i> days ) :
+</I>&gt;<i> - what should be the name ( svn.mageia.org cannot be used, as it point
+</I>&gt;<i> to a different server, a redirect can be setup to another url
+</I>&gt;<i> however ) ?
+</I>&gt;<i> ( default answer : viewvc.mageia.org )
+</I>
+So for now, the proposal :
+websvn
+svnweb
+svn-browse
+vc
+codeview
+svn
+
+svn is a no-go, for reasons exposed before.
+
+vc and codeview should IMHO be kept for something that is not svn
+specific, and viewvc is ( unless we go back to cvs, of course... ). I
+would love to have a codeview that point to svn/git/whatever +
+instructions or something like that ( like a coder portal ), so running
+viewvc on that vhost do not seems a good idea. Ie, it would waste a good
+name for something too specific. So I would in favor of not using them.
+
+websvn is the name of another software to view svn repository. We all
+agree to not use viewvc for the vhost, so using websvn seems rather
+couter intuitive.
+
+this let us with svn-browse vs svnweb. svnweb is shorter, and do not
+have a hyphen so it is easier to type.
+
+So svnweb ?
+
+Ie :
+
+svnweb -&gt; point to viewvc
+
+svn -&gt; redirect on svnweb ( later, if enough people complain about
+this )
+
+vc/codeview/later -&gt; some portal that explain where to find code, how to
+get it, licensing, etc ? ( later )
+
+So anybody has something else to add ( or strongly disagree and can give
+convincing reasons ) ?
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000190.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000189.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#188">[ date ]</a>
+ <a href="thread.html#188">[ thread ]</a>
+ <a href="subject.html#188">[ subject ]</a>
+ <a href="author.html#188">[ 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-January/000189.html b/zarb-ml/mageia-webteam/2011-January/000189.html
new file mode 100644
index 000000000..def625c15
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000189.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Viewvc installation
+ </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-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C201101262035.43663.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000188.html">
+ <LINK REL="Next" HREF="000171.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Viewvc installation</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3C201101262035.43663.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Viewvc installation">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Wed Jan 26 20:35:43 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000188.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000171.html">[Mageia-webteam] Current bugzilla status
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#189">[ date ]</a>
+ <a href="thread.html#189">[ thread ]</a>
+ <a href="subject.html#189">[ subject ]</a>
+ <a href="author.html#189">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op woensdag 26 januari 2011 20:15:31 schreef Michael Scherer:
+&gt;<i> Le lundi 24 janvier 2011 &#224; 14:46 +0100, Michael Scherer a &#233;crit :
+</I>&gt;<i> &gt; Hi,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; since people have asked for it since a long time, and since no much
+</I>&gt;<i> &gt; people commented on viewvc vs websvn
+</I>&gt;<i> &gt; ( <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html">https://www.mageia.org/pipermail/mageia-sysadm/2011-January/002145.html</A>
+</I>&gt;<i> &gt; ), and so based on the fact that websvn run svn to get information (
+</I>&gt;<i> &gt; thus would potentially overload the server when google bot team with
+</I>&gt;<i> &gt; yahoo to explore the server and our patches ), I have setup viewvc.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I can also setup websvn if someone really need, but a quick check showed
+</I>&gt;<i> &gt; that both tools are quite similar in term of features, the only
+</I>&gt;<i> &gt; difference being the usage of svn commandline.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; There is 2 questions left ( with a default answer with a timeout of 2
+</I>&gt;<i> &gt; days ) :
+</I>&gt;<i> &gt; - what should be the name ( svn.mageia.org cannot be used, as it point
+</I>&gt;<i> &gt; to a different server, a redirect can be setup to another url
+</I>&gt;<i> &gt; however ) ?
+</I>&gt;<i> &gt; ( default answer : viewvc.mageia.org )
+</I>&gt;<i>
+</I>&gt;<i> So for now, the proposal :
+</I>&gt;<i> websvn
+</I>&gt;<i> svnweb
+</I>&gt;<i> svn-browse
+</I>&gt;<i> vc
+</I>&gt;<i> codeview
+</I>&gt;<i> svn
+</I>&gt;<i>
+</I>&gt;<i> svn is a no-go, for reasons exposed before.
+</I>&gt;<i>
+</I>&gt;<i> vc and codeview should IMHO be kept for something that is not svn
+</I>&gt;<i> specific, and viewvc is ( unless we go back to cvs, of course... ). I
+</I>&gt;<i> would love to have a codeview that point to svn/git/whatever +
+</I>&gt;<i> instructions or something like that ( like a coder portal ), so running
+</I>&gt;<i> viewvc on that vhost do not seems a good idea. Ie, it would waste a good
+</I>&gt;<i> name for something too specific. So I would in favor of not using them.
+</I>&gt;<i>
+</I>&gt;<i> websvn is the name of another software to view svn repository. We all
+</I>&gt;<i> agree to not use viewvc for the vhost, so using websvn seems rather
+</I>&gt;<i> couter intuitive.
+</I>&gt;<i>
+</I>&gt;<i> this let us with svn-browse vs svnweb. svnweb is shorter, and do not
+</I>&gt;<i> have a hyphen so it is easier to type.
+</I>&gt;<i>
+</I>&gt;<i> So svnweb ?
+</I>&gt;<i>
+</I>&gt;<i> Ie :
+</I>&gt;<i>
+</I>&gt;<i> svnweb -&gt; point to viewvc
+</I>&gt;<i>
+</I>&gt;<i> svn -&gt; redirect on svnweb ( later, if enough people complain about
+</I>&gt;<i> this )
+</I>&gt;<i>
+</I>&gt;<i> vc/codeview/later -&gt; some portal that explain where to find code, how to
+</I>&gt;<i> get it, licensing, etc ? ( later )
+</I>&gt;<i>
+</I>&gt;<i> So anybody has something else to add ( or strongly disagree and can give
+</I>&gt;<i> convincing reasons ) ?
+</I>
+svnweb could be mistaken for websvn; but i still like it better. also so later
+we could have gitweb as similar name. (eg: if we decide to keep packages on
+svn and git for software)
+
+the codeview portal sounds like a good idea
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000188.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000171.html">[Mageia-webteam] Current bugzilla status
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#189">[ date ]</a>
+ <a href="thread.html#189">[ thread ]</a>
+ <a href="subject.html#189">[ subject ]</a>
+ <a href="author.html#189">[ 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-January/000190.html b/zarb-ml/mageia-webteam/2011-January/000190.html
new file mode 100644
index 000000000..ede3f1bbd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000190.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Viewvc installation
+ </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-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3CAANLkTimS2%3DvzWCidqJoOmbFad0pyVeMsQ8M%2BOsDupdMW%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="000183.html">
+ <LINK REL="Next" HREF="000188.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Viewvc installation</H1>
+ <B>Pascal Terjan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Viewvc%20installation&In-Reply-To=%3CAANLkTimS2%3DvzWCidqJoOmbFad0pyVeMsQ8M%2BOsDupdMW%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Viewvc installation">pterjan at gmail.com
+ </A><BR>
+ <I>Tue Jan 25 21:37:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000183.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000188.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#190">[ date ]</a>
+ <a href="thread.html#190">[ thread ]</a>
+ <a href="subject.html#190">[ subject ]</a>
+ <a href="author.html#190">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Jan 25, 2011 at 18:23, Maarten Vanraes
+&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; wrote:
+&gt;<i> Op maandag 24 januari 2011 22:03:35 schreef nicolas vigier:
+</I>&gt;&gt;<i> On Mon, 24 Jan 2011, Maarten Vanraes wrote:
+</I>&gt;&gt;<i> &gt; i want svn.mageia.org, so perhaps instead of redirect, you could do a
+</I>&gt;&gt;<i> &gt; proxypass (with some caching; it's mostly static anyway)? then for all i
+</I>&gt;&gt;<i> &gt; care, you can use viewvc or something else, if something else is done
+</I>&gt;&gt;<i> &gt; later on.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Why do you want it on svn.mageia.org ? Unless there's a good reason, we
+</I>&gt;&gt;<i> should try to keep it simple. And using a proxy on valstar to redirect
+</I>&gt;&gt;<i> to alamut, which is using a copy of the svn from valstar, is not very
+</I>&gt;&gt;<i> simple. And we're trying to avoid installing too many things on valstar.
+</I>&gt;<i>
+</I>&gt;<i> the only reason i want it on svn; is because that makes it all the more
+</I>&gt;<i> transparent. ie: for users working with svn just means using svn.mageia.org .
+</I>&gt;<i> if it's <A HREF="svn://">svn://</A> or <A HREF="http://">http://</A> or svn+<A HREF="ssh://">ssh://</A> or whatever.
+</I>
+svn is accessible on there with <A HREF="svn://">svn://</A> or svn+<A HREF="ssh://">ssh://</A> and we can add
+<A HREF="http://">http://</A> but that would be to use svn, not for the interface
+
+&gt;<i> tbh a simple proxypass on a machine that has apache(if indeed it has.) anyway,
+</I>&gt;<i> is not so complicated. with caching on it, it would reduce the load to the svn
+</I>&gt;<i> machine.
+</I>&gt;<i>
+</I>&gt;<i> perhaps with this setup it would not be needed to have a copy (due to the
+</I>&gt;<i> caching), but i can be wrong.
+</I>&gt;<i>
+</I>&gt;<i> in any case, keeping simple is the best option, but i think from user pov
+</I>&gt;<i> using svn.mageia.org is just simple for them.
+</I>
+Well using svn for svn access (over anything, including http) and
+something else for a web interface makes sense to me
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000183.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI>Next message: <A HREF="000188.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#190">[ date ]</a>
+ <a href="thread.html#190">[ thread ]</a>
+ <a href="subject.html#190">[ subject ]</a>
+ <a href="author.html#190">[ 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-January/000191.html b/zarb-ml/mageia-webteam/2011-January/000191.html
new file mode 100644
index 000000000..0a73d8d00
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000191.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3C9979d99ca7b797dd891fca25f1b42d7a%40localhost%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000187.html">
+ <LINK REL="Next" HREF="000194.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3C9979d99ca7b797dd891fca25f1b42d7a%40localhost%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">mageia at damsweb.net
+ </A><BR>
+ <I>Fri Jan 28 13:31:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000187.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI>Next message: <A HREF="000194.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#191">[ date ]</a>
+ <a href="thread.html#191">[ thread ]</a>
+ <a href="subject.html#191">[ subject ]</a>
+ <a href="author.html#191">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello folks,
+
+planet.mageia.org is an old discussion (started in September (mostly
+IRL) when we installed blogs).
+It's an important website to spread Mageia and an aggregator about the
+project.
+
+As previously discussed on IRC or IRL, we have analyzed the different
+web based aggregator platforms we known:
+- planetplanet (<A HREF="http://www.planetplanet.org/">http://www.planetplanet.org/</A>)
+- planet venus (<A HREF="http://intertwingly.net/code/venus/">http://intertwingly.net/code/venus/</A>)
+
+Then, we met Pascal Chevrel, from Mozilla Europe, in November, and
+discussed on a lot of things.
+He explained us how they were managing the Mozilla Europe Planet and
+made us discovered moonmoon (<A HREF="http://moonmoon.org">http://moonmoon.org</A>).
+This platform fits all our requirements: &quot;Moonmoon is stupidly simple&quot;
+(no DB, no comments, no votes, flat files, ...)
+
+We expect to install this web based agregator on &quot;champagne&quot; to start
+ASAP the Mageia Planet.
+
+For know, we thought, for agregatted blogs on it, of the following
+rules:
+- anyone who asks for it
+- who is peer in a team
+- only post with a Mageia tag will appear on the planet.
+
+What do you think about all of this? Any comments or remarks?
+Thank you for the feedback.
+
+Cheers,
+--
+Damien Lallement
+aka &quot;damsweb&quot; or &quot;coincoin&quot; on IRC and twitter
+
+<A HREF="http://www.mageia.org">http://www.mageia.org</A>
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000187.html">[Mageia-webteam] 2011/week 4 meeting
+</A></li>
+ <LI>Next message: <A HREF="000194.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#191">[ date ]</a>
+ <a href="thread.html#191">[ thread ]</a>
+ <a href="subject.html#191">[ subject ]</a>
+ <a href="author.html#191">[ 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-January/000192.html b/zarb-ml/mageia-webteam/2011-January/000192.html
new file mode 100644
index 000000000..22dc74b07
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000192.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Starting to clean the mess of web services
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Starting%20to%20clean%20the%20mess%20of%20web%20services&In-Reply-To=%3C1296228240.4639.59.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000208.html">
+ <LINK REL="Next" HREF="000193.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Starting to clean the mess of web services</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Starting%20to%20clean%20the%20mess%20of%20web%20services&In-Reply-To=%3C1296228240.4639.59.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Starting to clean the mess of web services">misc at zarb.org
+ </A><BR>
+ <I>Fri Jan 28 16:24:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000208.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000193.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#192">[ date ]</a>
+ <a href="thread.html#192">[ thread ]</a>
+ <a href="subject.html#192">[ subject ]</a>
+ <a href="author.html#192">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+as there is a growing number of external tools used all around the
+project for official stuff in some form of anarchy ( the last one I
+discovered today is dlvr.it ), I propose that we add on the wiki the
+list of services used, and who has the password, who created it, etc.
+
+Later, we should ensure that enough people have the password to prevent
+catastrophic bus error or what happened to the Mandriva twitter account.
+
+And we should better find a way to not have to rely on member memories
+( or &quot;save on my computer&quot; checkbox for question of reliability,
+security, etc, and password management ( like not having to distribute
+to a unspecified list of people ).
+
+For example, for flickr, we could imagine some kind of system where
+pictures are first uploaded temporarily on our server , and then pushed
+to flickr. So people do not have to use a shared account and we know who
+did what, who is active, etc.
+
+So the first step for that is to list the service used, it is fast, and
+who currently know the password, I started the list on the wiki :
+
+<A HREF="http://mageia.org/wiki/doku.php?id=sysadmin#list_of_webservices_password">http://mageia.org/wiki/doku.php?id=sysadmin#list_of_webservices_password</A>
+
+
+--
+Michael Scherer
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000208.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000193.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#192">[ date ]</a>
+ <a href="thread.html#192">[ thread ]</a>
+ <a href="subject.html#192">[ subject ]</a>
+ <a href="author.html#192">[ 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-January/000193.html b/zarb-ml/mageia-webteam/2011-January/000193.html
new file mode 100644
index 000000000..ba3f8b6eb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000193.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Starting to clean the mess of web services
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Starting%20to%20clean%20the%20mess%20of%20web%20services&In-Reply-To=%3Cee2d485e26d1e66a0484b639f9c3dd71%40localhost%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000192.html">
+ <LINK REL="Next" HREF="000195.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Starting to clean the mess of web services</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Starting%20to%20clean%20the%20mess%20of%20web%20services&In-Reply-To=%3Cee2d485e26d1e66a0484b639f9c3dd71%40localhost%3E"
+ TITLE="[Mageia-webteam] Starting to clean the mess of web services">mageia at damsweb.net
+ </A><BR>
+ <I>Fri Jan 28 16:30:42 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000192.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI>Next message: <A HREF="000195.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#193">[ date ]</a>
+ <a href="thread.html#193">[ thread ]</a>
+ <a href="subject.html#193">[ subject ]</a>
+ <a href="author.html#193">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, 28 Jan 2011 16:24:00 +0100, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;
+wrote:
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> [...]
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=sysadmin#list_of_webservices_password">http://mageia.org/wiki/doku.php?id=sysadmin#list_of_webservices_password</A>
+</I>
+Done. :-)
+--
+Damien Lallement
+aka &quot;damsweb&quot; or &quot;coincoin&quot; on IRC and twitter
+
+<A HREF="http://www.mageia.org">http://www.mageia.org</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000192.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI>Next message: <A HREF="000195.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#193">[ date ]</a>
+ <a href="thread.html#193">[ thread ]</a>
+ <a href="subject.html#193">[ subject ]</a>
+ <a href="author.html#193">[ 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-January/000194.html b/zarb-ml/mageia-webteam/2011-January/000194.html
new file mode 100644
index 000000000..f08589d06
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000194.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3C201101282145.21689.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="000191.html">
+ <LINK REL="Next" HREF="000197.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3C201101282145.21689.marcello.anni%40alice.it%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">marcello.anni at alice.it
+ </A><BR>
+ <I>Fri Jan 28 21:45:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000191.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000197.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#194">[ date ]</a>
+ <a href="thread.html#194">[ thread ]</a>
+ <a href="subject.html#194">[ subject ]</a>
+ <a href="author.html#194">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> Hello folks,
+</I>&gt;<i>
+</I>&gt;<i> For know, we thought, for agregatted blogs on it, of the following
+</I>&gt;<i> rules:
+</I>&gt;<i> - anyone who asks for it
+</I>&gt;<i> - who is peer in a team
+</I>&gt;<i> - only post with a Mageia tag will appear on the planet.
+</I>&gt;<i>
+</I>&gt;<i> What do you think about all of this? Any comments or remarks?
+</I>&gt;<i> Thank you for the feedback.
+</I>
+i think for the current needs it's perfect. please, let us know about the
+progress about this work (and try to publish a related post in the blog when
+it is ready)
+&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i> --
+</I>&gt;<i> Damien Lallement
+</I>&gt;<i> aka &quot;damsweb&quot; or &quot;coincoin&quot; on IRC and twitter
+</I>&gt;<i>
+</I>
+cheers,
+Marcello
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000191.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000197.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#194">[ date ]</a>
+ <a href="thread.html#194">[ thread ]</a>
+ <a href="subject.html#194">[ subject ]</a>
+ <a href="author.html#194">[ 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-January/000195.html b/zarb-ml/mageia-webteam/2011-January/000195.html
new file mode 100644
index 000000000..17e12ceb1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000195.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Starting to clean the mess of web services
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Starting%20to%20clean%20the%20mess%20of%20web%20services&In-Reply-To=%3Ccfa90894acebd454ba311ba2859921e3%40www.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000193.html">
+ <LINK REL="Next" HREF="000196.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Starting to clean the mess of web services</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Starting%20to%20clean%20the%20mess%20of%20web%20services&In-Reply-To=%3Ccfa90894acebd454ba311ba2859921e3%40www.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Starting to clean the mess of web services">misc at zarb.org
+ </A><BR>
+ <I>Sat Jan 29 13:43:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000193.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI>Next message: <A HREF="000196.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#195">[ date ]</a>
+ <a href="thread.html#195">[ thread ]</a>
+ <a href="subject.html#195">[ subject ]</a>
+ <a href="author.html#195">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE> On Fri, 28 Jan 2011 16:30:42 +0100, Damien Lallement wrote:
+&gt;<i> On Fri, 28 Jan 2011 16:24:00 +0100, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;
+</I>&gt;<i> wrote:
+</I>&gt;&gt;<i> Hi,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> [...]
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=sysadmin#list_of_webservices_password">http://mageia.org/wiki/doku.php?id=sysadmin#list_of_webservices_password</A>
+</I>&gt;<i>
+</I>&gt;<i> Done. :-)
+</I>
+ In the [...], there was :
+ &quot;the list of services used, and who has the password, who created it,
+ etc.&quot;
+
+ the &quot;who created it&quot; part is not really filled. Not that it is
+ important per se, but we do not know
+ whose email have been used, who know the possible secret question
+ answer, etc.
+
+ And a 2nd step would be to assign this to the email of the
+ association president, as it seems rather logical to have him/her
+ control this, as we likely
+ all agree this is a important part of the communication.
+
+ Ideally, explaining what is used with each account would be nice. For
+ example, google is used
+ for name reservation at gmail, but also for google analytics ( despites
+ us still only having
+ a draft of privacy policy ), and for youtube ( unless there is a
+ separate account for that too ).
+ The same goes for the others.
+
+--
+ Michael Scherer
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000193.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI>Next message: <A HREF="000196.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#195">[ date ]</a>
+ <a href="thread.html#195">[ thread ]</a>
+ <a href="subject.html#195">[ subject ]</a>
+ <a href="author.html#195">[ 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-January/000196.html b/zarb-ml/mageia-webteam/2011-January/000196.html
new file mode 100644
index 000000000..9d1c10aba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000196.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Starting to clean the mess of web services
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Starting%20to%20clean%20the%20mess%20of%20web%20services&In-Reply-To=%3C20110129161259.GD21938%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="000195.html">
+ <LINK REL="Next" HREF="000199.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Starting to clean the mess of web services</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Starting%20to%20clean%20the%20mess%20of%20web%20services&In-Reply-To=%3C20110129161259.GD21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Starting to clean the mess of web services">boklm at mars-attacks.org
+ </A><BR>
+ <I>Sat Jan 29 17:12:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000195.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI>Next message: <A HREF="000199.html">[Mageia-webteam] Join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#196">[ date ]</a>
+ <a href="thread.html#196">[ thread ]</a>
+ <a href="subject.html#196">[ subject ]</a>
+ <a href="author.html#196">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Sat, 29 Jan 2011, Michael Scherer wrote:
+
+&gt;<i> On Fri, 28 Jan 2011 16:30:42 +0100, Damien Lallement wrote:
+</I>&gt;&gt;<i> On Fri, 28 Jan 2011 16:24:00 +0100, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;
+</I>&gt;&gt;<i> wrote:
+</I>&gt;&gt;&gt;<i> Hi,
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> [...]
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=sysadmin#list_of_webservices_password">http://mageia.org/wiki/doku.php?id=sysadmin#list_of_webservices_password</A>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Done. :-)
+</I>&gt;<i>
+</I>&gt;<i> In the [...], there was :
+</I>&gt;<i> &quot;the list of services used, and who has the password, who created it, etc.&quot;
+</I>&gt;<i>
+</I>&gt;<i> the &quot;who created it&quot; part is not really filled. Not that it is important
+</I>&gt;<i> per se, but we do not know
+</I>&gt;<i> whose email have been used, who know the possible secret question answer,
+</I>&gt;<i> etc.
+</I>
+Most are registered with mageiaorg gmail account, and were created the
+day the name of the project was decided (to avoid someone else registering
+it).
+
+&gt;<i> And a 2nd step would be to assign this to the email of the
+</I>&gt;<i> association president, as it seems rather logical to have him/her control
+</I>&gt;<i> this, as we likely
+</I>&gt;<i> all agree this is a important part of the communication.
+</I>
+Or <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">board at mageia.org</A> ?
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000195.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI>Next message: <A HREF="000199.html">[Mageia-webteam] Join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#196">[ date ]</a>
+ <a href="thread.html#196">[ thread ]</a>
+ <a href="subject.html#196">[ subject ]</a>
+ <a href="author.html#196">[ 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-January/000197.html b/zarb-ml/mageia-webteam/2011-January/000197.html
new file mode 100644
index 000000000..51e31a31d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000197.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%20installation&In-Reply-To=%3C1296442052.26055.46.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000194.html">
+ <LINK REL="Next" HREF="000198.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%20installation&In-Reply-To=%3C1296442052.26055.46.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 31 03:47:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000194.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000198.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#197">[ date ]</a>
+ <a href="thread.html#197">[ thread ]</a>
+ <a href="subject.html#197">[ subject ]</a>
+ <a href="author.html#197">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le vendredi 28 janvier 2011 &#224; 13:31 +0100, Damien Lallement a &#233;crit :
+&gt;<i> Hello folks,
+</I>&gt;<i>
+</I>&gt;<i> planet.mageia.org is an old discussion (started in September (mostly
+</I>&gt;<i> IRL) when we installed blogs).
+</I>&gt;<i> It's an important website to spread Mageia and an aggregator about the
+</I>&gt;<i> project.
+</I>&gt;<i>
+</I>&gt;<i> As previously discussed on IRC or IRL, we have analyzed the different
+</I>&gt;<i> web based aggregator platforms we known:
+</I>&gt;<i> - planetplanet (<A HREF="http://www.planetplanet.org/">http://www.planetplanet.org/</A>)
+</I>&gt;<i> - planet venus (<A HREF="http://intertwingly.net/code/venus/">http://intertwingly.net/code/venus/</A>)
+</I>&gt;<i>
+</I>&gt;<i> Then, we met Pascal Chevrel, from Mozilla Europe, in November, and
+</I>&gt;<i> discussed on a lot of things.
+</I>&gt;<i> He explained us how they were managing the Mozilla Europe Planet and
+</I>&gt;<i> made us discovered moonmoon (<A HREF="http://moonmoon.org">http://moonmoon.org</A>).
+</I>&gt;<i> This platform fits all our requirements: &quot;Moonmoon is stupidly simple&quot;
+</I>&gt;<i> (no DB, no comments, no votes, flat files, ...)
+</I>&gt;<i>
+</I>&gt;<i> We expect to install this web based agregator on &quot;champagne&quot; to start
+</I>&gt;<i> ASAP the Mageia Planet.
+</I>&gt;<i>
+</I>&gt;<i> For know, we thought, for agregatted blogs on it, of the following
+</I>&gt;<i> rules:
+</I>&gt;<i> - anyone who asks for it
+</I>&gt;<i> - who is peer in a team
+</I>&gt;<i> - only post with a Mageia tag will appear on the planet.
+</I>&gt;<i>
+</I>&gt;<i> What do you think about all of this? Any comments or remarks?
+</I>&gt;<i> Thank you for the feedback.
+</I>
+That's quite short on lots of areas.
+
+I will let the future technical hurdles aside and keep the real fun for
+later, and just goes on the obvious ones :
+
+&quot;post with a mageia tag&quot; just mean nothing, that doesn't give any
+indication. If I use a blog system that do not support tag, I cannot be
+syndicated ? If I post commercial stuff ( already happened ) or insult
+people ( also already happened ), that's ok since there is a tag ?
+If this is not ok, what does happen ?
+
+Another usual area of contention is &quot;Can someone post in a foreign
+language&quot; ?
+
+What happen if someone is no longer a peer, does it get un-syndicated ?
+
+What if someone or someone's post are a cause of controversy without
+being clearly immoral/illegal/etc, and people complains ?
+Non exhaustive list of people complains :
+- Planet gnome :
+ - Mark Shuttleworth ( controversy before he got syndicated ),
+ - Phillipe Van Hoof ( belgian policy and pro flamand topics, and
+ quite extreme opinions ),
+ - David Schlesinger ( basically dissing gnu zealots, and doing Apple
+ promotion ),
+ - Miguel Da Icaza ( mono promotion )
+Planet Fedora :
+ - Mar&#237;a Gracia Leandro ( posted daily photos on her blog ),
+ - Nicu Buculei ( posted a photo seen as sexist ( removed now ) )
+Planet Debian :
+ - Raphael Herzog ( used some tools seen as too intrusive on a
+ privacy level for the debian server, was seen as being asked
+ to be &quot;flattred&quot; )
+
+and that's all the recent examples I have got on my head. Not that I
+cannot find more if I seek, but I guess that's sufficient to explain
+that there is quite interesting challenge preparing.
+
+Not to mention there is also small potential legal issues :
+Should we ask the content be under a free license ( or the website would
+not mix ) ?
+Are we ( we == association ) responsible for this ?
+( IMHO, it would not matter much under DADVSI provisions, and I do not
+expect much trouble at all, but the question have to be asked none the
+less, at least to be consistent with ourself )
+
+ While being co editor at Planet Mandriva, I just didn't care about that
+( PLF style ), and we were also quite 'liberal' in term of choosing who
+could enter and who would get out, but that didn't cause trouble. People
+could post what they wanted about what they wanted, in the language they
+wanted.
+
+But given the numerous issues that I have seen while discussing with
+people in charge of others planets, more precise guidelines should be
+described.
+
+Or if you do not want guideline ( which I can also understand, because
+that's usually a point of friction and so a time lose ), this should be
+made clearer.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000194.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000198.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#197">[ date ]</a>
+ <a href="thread.html#197">[ thread ]</a>
+ <a href="subject.html#197">[ subject ]</a>
+ <a href="author.html#197">[ 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-January/000198.html b/zarb-ml/mageia-webteam/2011-January/000198.html
new file mode 100644
index 000000000..57c2eedae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000198.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3CAANLkTin3T1YdiyUuHjOyfU%3DZmWAB7fmed4Xs83DvT2o%2B%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="000197.html">
+ <LINK REL="Next" HREF="000201.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3CAANLkTin3T1YdiyUuHjOyfU%3DZmWAB7fmed4Xs83DvT2o%2B%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 31 09:55:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000197.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000201.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#198">[ date ]</a>
+ <a href="thread.html#198">[ thread ]</a>
+ <a href="subject.html#198">[ subject ]</a>
+ <a href="author.html#198">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, Jan 31, 2011 at 03:47, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> &quot;post with a mageia tag&quot; just mean nothing, that doesn't give any
+</I>&gt;<i> indication. If I use a blog system that do not support tag, I cannot be
+</I>&gt;<i> syndicated ? If I post commercial stuff ( already happened ) or insult
+</I>&gt;<i> people ( also already happened ), that's ok since there is a tag ?
+</I>&gt;<i> If this is not ok, what does happen ?
+</I>
+Why don't propose simple solutions as well here then?
+
+ a. an author gives the right feed URL that does the filter on her
+side (up to her to use her system of choice for that)
+ b. (provided we get that implemented on our side) the feed items (RSS
+2 or Atom) have a category attribute with &quot;mageia&quot; we filter on
+
+And yes, it has to be filtered by the Mageia topic; off-topic stuff
+(regarding the project as a whole, it's not only about technical
+stuff) should not appear in such a feed. And yes, we rely on authors
+benevolence in this regard.
+
+&gt;<i> Another usual area of contention is &quot;Can someone post in a foreign
+</I>&gt;<i> language&quot; ?
+</I>
+That's an option to have locale-based planets, yes, if there are
+enough of different locales in play.
+
+&gt;<i> What happen if someone is no longer a peer, does it get un-syndicated ?
+</I>
+On request (from either side).
+
+&gt;<i> What if someone or someone's post are a cause of controversy without
+</I>&gt;<i> being clearly immoral/illegal/etc, and people complains ?
+</I>
+Case by case management. People who get syndicated have to see this as
+a privilege and be careful with it, as careful they are regarding the
+project and the community.
+
+Marcom team will manage this (feed syndication) and will have a final
+say on issues solving.
+
+&gt;<i> and that's all the recent examples I have got on my head. Not that I
+</I>&gt;<i> cannot find more if I seek, but I guess that's sufficient to explain
+</I>&gt;<i> that there is quite interesting challenge preparing.
+</I>
+We can't prepare for all that can go wrong. And we won't. It's not
+worth the time focusing more on what can go wrong than on what can be
+good.
+
+&gt;<i> Should we ask the content be under a free license ( or the website would
+</I>&gt;<i> not mix ) ?
+</I>
+No. A verbatim (or more permissive) license is enough and ok.
+Requesting to be syndicated is a de-facto license to at least
+reproduce verbatim ones blog posts (or it makes no sense to ask to be
+syndicated).
+
+&gt;<i> Are we ( we == association ) responsible for this ?
+</I>
+No (French law). That's only a technical syndication service. Deciding
+whose blogs get syndicated does not equate editing these blogs future
+contents.
+
+&gt;<i> Or if you do not want guideline ( which I can also understand, because
+</I>&gt;<i> that's usually a point of friction and so a time lose ), this should be
+</I>&gt;<i> made clearer.
+</I>
+That's what a draft is for: set first loose rules good enough to start
+and adapt with time.
+
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000197.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000201.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#198">[ date ]</a>
+ <a href="thread.html#198">[ thread ]</a>
+ <a href="subject.html#198">[ subject ]</a>
+ <a href="author.html#198">[ 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-January/000199.html b/zarb-ml/mageia-webteam/2011-January/000199.html
new file mode 100644
index 000000000..c2e396a77
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000199.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Join
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Join&In-Reply-To=%3CAANLkTi%3DEKkP0v8yksMZEntiQUn_7XguDiSM08HAr_xHV%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="000196.html">
+ <LINK REL="Next" HREF="000200.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Join</H1>
+ <B>Romulo Pires</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Join&In-Reply-To=%3CAANLkTi%3DEKkP0v8yksMZEntiQUn_7XguDiSM08HAr_xHV%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Join">romulo.pires123 at gmail.com
+ </A><BR>
+ <I>Mon Jan 31 12:26:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000196.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI>Next message: <A HREF="000200.html">[Mageia-webteam] Join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#199">[ date ]</a>
+ <a href="thread.html#199">[ thread ]</a>
+ <a href="subject.html#199">[ subject ]</a>
+ <a href="author.html#199">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello, I'm starting in mageia project and i want to help... i need
+know what have to do. I'm PHP programmer!
+
+I want to help =)
+
+--
+Romulo Pires Pinto
+UFF/IC/BCC
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000196.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI>Next message: <A HREF="000200.html">[Mageia-webteam] Join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#199">[ date ]</a>
+ <a href="thread.html#199">[ thread ]</a>
+ <a href="subject.html#199">[ subject ]</a>
+ <a href="author.html#199">[ 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-January/000200.html b/zarb-ml/mageia-webteam/2011-January/000200.html
new file mode 100644
index 000000000..8d8b9f6b9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000200.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Join
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Join&In-Reply-To=%3C4D469CA9.2060105%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000199.html">
+ <LINK REL="Next" HREF="000202.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Join</H1>
+ <B>Cazzaniga Sandro</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Join&In-Reply-To=%3C4D469CA9.2060105%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Join">cazzaniga.sandro at gmail.com
+ </A><BR>
+ <I>Mon Jan 31 12:27:37 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000199.html">[Mageia-webteam] Join
+</A></li>
+ <LI>Next message: <A HREF="000202.html">[Mageia-webteam] Join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#200">[ date ]</a>
+ <a href="thread.html#200">[ thread ]</a>
+ <a href="subject.html#200">[ subject ]</a>
+ <a href="author.html#200">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 31/01/2011 12:26, Romulo Pires a &#233;crit :
+&gt;<i> Hello, I'm starting in mageia project and i want to help... i need
+</I>&gt;<i> know what have to do. I'm PHP programmer!
+</I>&gt;<i>
+</I>&gt;<i> I want to help =)
+</I>&gt;<i>
+</I>What are your level? :)
+
+--
+Sandro Cazzaniga
+IRC: Kharec (irc.freenode.net)
+Twitter: @Kharec
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000199.html">[Mageia-webteam] Join
+</A></li>
+ <LI>Next message: <A HREF="000202.html">[Mageia-webteam] Join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#200">[ date ]</a>
+ <a href="thread.html#200">[ thread ]</a>
+ <a href="subject.html#200">[ subject ]</a>
+ <a href="author.html#200">[ 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-January/000201.html b/zarb-ml/mageia-webteam/2011-January/000201.html
new file mode 100644
index 000000000..821d0ea9f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000201.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%20installation&In-Reply-To=%3C1296473417.11975.26.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000198.html">
+ <LINK REL="Next" HREF="000203.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%20installation&In-Reply-To=%3C1296473417.11975.26.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 31 12:30:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000198.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000203.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#201">[ date ]</a>
+ <a href="thread.html#201">[ thread ]</a>
+ <a href="subject.html#201">[ subject ]</a>
+ <a href="author.html#201">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 31 janvier 2011 &#224; 09:55 +0100, Romain d'Alverny a &#233;crit :
+
+&gt;<i> b. (provided we get that implemented on our side) the feed items (RSS
+</I>&gt;<i> 2 or Atom) have a category attribute with &quot;mageia&quot; we filter on
+</I>
+I assume the goal is automated filtering by reader and tools ?
+( cause, that's not the way I do use my feedreader, but I guess some
+others may work like this ).
+
+If this is a desirable feature ( and that's IMHO a good idea ), then
+this must be supported by the tool ( or decide to patch it, but I think
+we previously agreed to avoid that when possible ). So while I have
+nothing against moonmoon ( and not because the author is from Metz ), it
+may not have this feature.
+
+&gt;<i> And yes, it has to be filtered by the Mageia topic; off-topic stuff
+</I>&gt;<i> (regarding the project as a whole, it's not only about technical
+</I>&gt;<i> stuff) should not appear in such a feed. And yes, we rely on authors
+</I>&gt;<i> benevolence in this regard.
+</I>
+Well, this has to be clearly said. That's not the same policy on all
+planet, and I think that having a tag is not enough ( see Adam W post on
+planet Mandriva, some people have seen them too off topic, but it has a
+tag Mandriva nonetheless ).
+
+&gt;<i> &gt; Another usual area of contention is &quot;Can someone post in a foreign
+</I>&gt;<i> &gt; language&quot; ?
+</I>&gt;<i>
+</I>&gt;<i> That's an option to have locale-based planets, yes, if there are
+</I>&gt;<i> enough of different locales in play.
+</I>
+Well, if I post in french ( which I often do ), should it be encouraged,
+refused, accepted ? I have no opinion on this again ( and do not plan to
+be syndicated at all ), but that's usually something that cause
+discussion, and I think it is better to not waste people time by at
+least anticipating now the issue.
+
+&gt;<i> &gt; What if someone or someone's post are a cause of controversy without
+</I>&gt;<i> &gt; being clearly immoral/illegal/etc, and people complains ?
+</I>&gt;<i>
+</I>&gt;<i> Case by case management. People who get syndicated have to see this as
+</I>&gt;<i> a privilege and be careful with it, as careful they are regarding the
+</I>&gt;<i> project and the community.
+</I>&gt;<i>
+</I>&gt;<i> Marcom team will manage this (feed syndication) and will have a final
+</I>&gt;<i> say on issues solving.
+</I>
+Marcom, marketing or communication ?
+
+( AFAIK, even with talk of merging them, they are still separate, no ? )
+
+Shouldn't the board have the final say ( as one of the duty is conflict
+management ) ?
+
+
+&gt;<i> &gt; and that's all the recent examples I have got on my head. Not that I
+</I>&gt;<i> &gt; cannot find more if I seek, but I guess that's sufficient to explain
+</I>&gt;<i> &gt; that there is quite interesting challenge preparing.
+</I>&gt;<i>
+</I>&gt;<i> We can't prepare for all that can go wrong. And we won't. It's not
+</I>&gt;<i> worth the time focusing more on what can go wrong than on what can be
+</I>&gt;<i> good.
+</I>
+Of course, we can't prepare for all that will goes wrong. But I think
+that a few concepts are sufficient to prepare for what went wrong on
+other projects.
+
+We can hardly call &quot;community feed aggregation&quot; a new field of
+experimentation, given the fact that it is a common practice in free
+software since years. And we can also take for granted that unspecified
+things will likely be interpreted differently.
+
+So just giving a few clear guidelines now about what should and
+shouldn't be syndicated will likely prevent losing lots of time later.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000198.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000203.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#201">[ date ]</a>
+ <a href="thread.html#201">[ thread ]</a>
+ <a href="subject.html#201">[ subject ]</a>
+ <a href="author.html#201">[ 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-January/000202.html b/zarb-ml/mageia-webteam/2011-January/000202.html
new file mode 100644
index 000000000..b05705867
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000202.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Join
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Join&In-Reply-To=%3CAANLkTimc3Ne0zTpKO7FfH%3DQwkxg5d1gBRTREz7rCkRgn%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="000200.html">
+ <LINK REL="Next" HREF="000207.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Join</H1>
+ <B>Romulo Pires</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Join&In-Reply-To=%3CAANLkTimc3Ne0zTpKO7FfH%3DQwkxg5d1gBRTREz7rCkRgn%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Join">romulo.pires123 at gmail.com
+ </A><BR>
+ <I>Mon Jan 31 12:38:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000200.html">[Mageia-webteam] Join
+</A></li>
+ <LI>Next message: <A HREF="000207.html">[Mageia-webteam] Speaking of calendar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#202">[ date ]</a>
+ <a href="thread.html#202">[ thread ]</a>
+ <a href="subject.html#202">[ subject ]</a>
+ <a href="author.html#202">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/1/31 Cazzaniga Sandro &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">cazzaniga.sandro at gmail.com</A>&gt;:
+&gt;<i> Le 31/01/2011 12:26, Romulo Pires a &#233;crit :
+</I>&gt;&gt;<i> Hello, I'm starting in mageia project and i want to help... i need
+</I>&gt;&gt;<i> know what have to do. I'm PHP programmer!
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I want to help =)
+</I>&gt;&gt;<i>
+</I>&gt;<i> What are your level? :)
+</I>&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> Sandro Cazzaniga
+</I>&gt;<i> IRC: Kharec (irc.freenode.net)
+</I>&gt;<i> Twitter: @Kharec
+</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>
+My level is Intermediate :P
+
+
+--
+Romulo Pires Pinto
+UFF/IC/BCC
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000200.html">[Mageia-webteam] Join
+</A></li>
+ <LI>Next message: <A HREF="000207.html">[Mageia-webteam] Speaking of calendar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#202">[ date ]</a>
+ <a href="thread.html#202">[ thread ]</a>
+ <a href="subject.html#202">[ subject ]</a>
+ <a href="author.html#202">[ 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-January/000203.html b/zarb-ml/mageia-webteam/2011-January/000203.html
new file mode 100644
index 000000000..aca1d8cc5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000203.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3CAANLkTimN9MQ51d1R%3D08_LN-N%2B9zJhZZAWYNLj7LJVHmV%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="000201.html">
+ <LINK REL="Next" HREF="000204.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3CAANLkTimN9MQ51d1R%3D08_LN-N%2B9zJhZZAWYNLj7LJVHmV%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 31 16:50:57 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000201.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000204.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#203">[ date ]</a>
+ <a href="thread.html#203">[ thread ]</a>
+ <a href="subject.html#203">[ subject ]</a>
+ <a href="author.html#203">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, Jan 31, 2011 at 12:30, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> If this is a desirable feature ( and that's IMHO a good idea ), then
+</I>&gt;<i> this must be supported by the tool ( or decide to patch it, but I think
+</I>&gt;<i> we previously agreed to avoid that when possible ). So while I have
+</I>&gt;<i> nothing against moonmoon ( and not because the author is from Metz ), it
+</I>&gt;<i> may not have this feature.
+</I>
+Sure. It looks like it doesn't. But that's not the hard part, I've got
+a patch ready for that (highly unlikely to make it to the master
+branch though).
+
+We've got to decide whether we leave it to the author to provide a
+feed filtered on her side, or whether we do the filtering based on
+category (one is exclusive of the other, provided one would should the
+former because categories are not available on their platform).
+
+&gt;&gt;<i> And yes, it has to be filtered by the Mageia topic; off-topic stuff
+</I>&gt;&gt;<i> (regarding the project as a whole, it's not only about technical
+</I>&gt;&gt;<i> stuff) should not appear in such a feed. And yes, we rely on authors
+</I>&gt;&gt;<i> benevolence in this regard.
+</I>&gt;<i>
+</I>&gt;<i> Well, this has to be clearly said. That's not the same policy on all
+</I>&gt;<i> planet, and I think that having a tag is not enough ( see Adam W post on
+</I>&gt;<i> planet Mandriva, some people have seen them too off topic, but it has a
+</I>&gt;<i> tag Mandriva nonetheless ).
+</I>
+How do you suggest to manage it otherwise?
+
+&gt;<i> Well, if I post in french ( which I often do ), should it be encouraged,
+</I>&gt;<i> refused, accepted ?
+</I>
+Should be accepted. If there is a significant number of posts in a
+given locale, it may be the occasion to open a separate,
+locale-specific planet. We can plan for this, or do it already
+(English, French, Spanish, Portuguese, other?). What do you all think?
+
+&gt;<i> Marcom, marketing or communication ?
+</I>
+Both.
+
+&gt;<i> ( AFAIK, even with talk of merging them, they are still separate, no ? )
+</I>
+That's a separate issue (merging them has not been disputed since it's
+been proposed; at most, encouraged).
+
+&gt;<i> Shouldn't the board have the final say ( as one of the duty is conflict
+</I>&gt;<i> management ) ?
+</I>
+The board always has a final say, that's a given. But that should
+still be exceptional and repeating it over and over won't entrust
+teams on themselves.
+
+&gt;<i> We can hardly call &quot;community feed aggregation&quot; a new field of
+</I>&gt;<i> experimentation, given the fact that it is a common practice in free
+</I>&gt;<i> software since years. And we can also take for granted that unspecified
+</I>&gt;<i> things will likely be interpreted differently.
+</I>
+That's the interesting part; to let thing go different.
+
+Nonetheless, how would you act on this then? (filtering, policy for
+aggregation, etc.)
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000201.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000204.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#203">[ date ]</a>
+ <a href="thread.html#203">[ thread ]</a>
+ <a href="subject.html#203">[ subject ]</a>
+ <a href="author.html#203">[ 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-January/000204.html b/zarb-ml/mageia-webteam/2011-January/000204.html
new file mode 100644
index 000000000..ef2ced21c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000204.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%20installation&In-Reply-To=%3C1296494367.12892.92.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000203.html">
+ <LINK REL="Next" HREF="000205.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%20installation&In-Reply-To=%3C1296494367.12892.92.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 31 18:19:27 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000203.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000205.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#204">[ date ]</a>
+ <a href="thread.html#204">[ thread ]</a>
+ <a href="subject.html#204">[ subject ]</a>
+ <a href="author.html#204">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 31 janvier 2011 &#224; 16:50 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> On Mon, Jan 31, 2011 at 12:30, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>
+&gt;<i> &gt;&gt; And yes, it has to be filtered by the Mageia topic; off-topic stuff
+</I>&gt;<i> &gt;&gt; (regarding the project as a whole, it's not only about technical
+</I>&gt;<i> &gt;&gt; stuff) should not appear in such a feed. And yes, we rely on authors
+</I>&gt;<i> &gt;&gt; benevolence in this regard.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Well, this has to be clearly said. That's not the same policy on all
+</I>&gt;<i> &gt; planet, and I think that having a tag is not enough ( see Adam W post on
+</I>&gt;<i> &gt; planet Mandriva, some people have seen them too off topic, but it has a
+</I>&gt;<i> &gt; tag Mandriva nonetheless ).
+</I>&gt;<i>
+</I>&gt;<i> How do you suggest to manage it otherwise?
+</I>
+No, I do not say that using a tag is not good on a technical level. I
+say that the definition should be IMHO clearer than &quot;using a tag&quot;. Ie,
+what do we expect on the tag.
+
+&gt;<i> &gt; Marcom, marketing or communication ?
+</I>&gt;<i>
+</I>&gt;<i> Both.
+</I>
+Well, to me, this look like the job of communication more than
+marketing, but maybe I mistake the purpose of the marketing team.
+
+&gt;<i> &gt; Shouldn't the board have the final say ( as one of the duty is conflict
+</I>&gt;<i> &gt; management ) ?
+</I>&gt;<i>
+</I>&gt;<i> The board always has a final say, that's a given. But that should
+</I>&gt;<i> still be exceptional and repeating it over and over won't entrust
+</I>&gt;<i> teams on themselves.
+</I>
+If we entrust the marketing team to do conflict management and editorial
+control, it should be clearly said. If the duty is shared among the
+board, the web team, the communication team, the marketing team, it may
+not be so final say, and I can only foresee potential conflicts.
+
+&gt;<i> &gt; We can hardly call &quot;community feed aggregation&quot; a new field of
+</I>&gt;<i> &gt; experimentation, given the fact that it is a common practice in free
+</I>&gt;<i> &gt; software since years. And we can also take for granted that unspecified
+</I>&gt;<i> &gt; things will likely be interpreted differently.
+</I>&gt;<i>
+</I>&gt;<i> That's the interesting part; to let thing go different.
+</I>
+If we want to be different, then I still have my old proposal of having
+a feed of feeds instead of a feed of articles. But this requires to
+write lots of software, patchs and a protocol ( and not enough space in
+the margin for this )
+
+&gt;<i> Nonetheless, how would you act on this then? (filtering, policy for
+</I>&gt;<i> aggregation, etc.)
+</I>
+Personally, I would not do it. At least, not now. All teams are not
+started, website is still at zarb, blogs also at zarb, catdap is not
+announced ( and would be nice with more polish ), lots of more pressing
+needs ( maintainers db, wiki ), etc.
+
+
+Now, if I wanted to do it, I would still aim for having the minimal
+requirement of maintainability. People ( as long they have a email
+alias, ie are peers ) decide what they blog, how they blog, etc. Some
+kind of wiki way applied to feed aggregations. I would even push to
+delegate the feeds in ldap so people can change themselves without
+anyone intervention.
+
+
+But let's pretend we should have to decide and what to filter ( because
+i am pretty sure that the free-for-all POV is not universally shared ).
+
+First, I would try to clearly articulate the goal of the website. Having
+&quot;a regular stream of news about Mageia&quot; is not the same as &quot;discovering
+the life of contributors&quot;. For example, the aforementioned chocolate
+cake pictures is likely not ok if the goal is to speak only of Mageia.
+
+Getting the target audience is also important, and anticipate where it
+should be displayed.
+
+This allows to know if we want someone see the word fuck or not. We may
+not want to have strong political comments on the frontpage of the
+project ( As said, I personally wouldn't care, but I guess that's not a
+universal view ).
+
+The rest will then come by itself after that.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000203.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000205.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#204">[ date ]</a>
+ <a href="thread.html#204">[ thread ]</a>
+ <a href="subject.html#204">[ subject ]</a>
+ <a href="author.html#204">[ 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-January/000205.html b/zarb-ml/mageia-webteam/2011-January/000205.html
new file mode 100644
index 000000000..fead2c85a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000205.html
@@ -0,0 +1,128 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3CAANLkTinR0rxaQ1NrAg00zEux_DhDqRu7ASSLQNZwba8B%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="000204.html">
+ <LINK REL="Next" HREF="000206.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3CAANLkTinR0rxaQ1NrAg00zEux_DhDqRu7ASSLQNZwba8B%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 31 18:36:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000204.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000206.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#205">[ date ]</a>
+ <a href="thread.html#205">[ thread ]</a>
+ <a href="subject.html#205">[ subject ]</a>
+ <a href="author.html#205">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, Jan 31, 2011 at 18:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Le lundi 31 janvier 2011 &#224; 16:50 +0100, Romain d'Alverny a &#233;crit :
+</I>&gt;<i> No, I do not say that using a tag is not good on a technical level. I
+</I>&gt;<i> say that the definition should be IMHO clearer than &quot;using a tag&quot;. Ie,
+</I>&gt;<i> what do we expect on the tag.
+</I>
+For RSS 2.0/Atom feeds (required), the item (so the blog post) must
+have a &quot;mageia&quot; category at least (case insensitive).
+
+&gt;<i> Well, to me, this look like the job of communication more than
+</I>&gt;<i> marketing, but maybe I mistake the purpose of the marketing team.
+</I>
+Both teams are merged into one for the time being; so tasks/purposes
+are interleaved for the time being. Should it grow, we'll see.
+
+&gt;&gt;<i> The board always has a final say, that's a given. But that should
+</I>&gt;&gt;<i> still be exceptional and repeating it over and over won't entrust
+</I>&gt;&gt;<i> teams on themselves.
+</I>&gt;<i>
+</I>&gt;<i> If we entrust the marketing team to do conflict management and editorial
+</I>&gt;<i> control, it should be clearly said.
+</I>
+It has been said from the first day that, for the sake of subsidiarity
+and relevance, each team has a say on its own matters. That's what
+trust and delegation is about: we expect teams to self-manage and
+manage their work well.
+
+Planet is a communication matter, it is handled by the communication
+team (here, marcom as it is interleaved). All the rest (webteam,
+sysadmin) in this regard has only a provider role.
+
+Now, as has been said too, should a team-level decision raise issues
+on its own, it escalates to Council, then to Board, if necessary.
+Nothing new.
+
+&gt;<i> Now, if I wanted to do it, I would still aim for having the minimal
+</I>&gt;<i> requirement of maintainability. People ( as long they have a email
+</I>&gt;<i> alias, ie are peers ) decide what they blog, how they blog, etc. Some
+</I>&gt;<i> kind of wiki way applied to feed aggregations. I would even push to
+</I>&gt;<i> delegate the feeds in ldap so people can change themselves without
+</I>&gt;<i> anyone intervention.
+</I>
+Patch CatDap for that, then. Maybe. But it looks more complex than it
+should be for the time being. Later maybe.
+
+&gt;<i> First, I would try to clearly articulate the goal of the website. Having
+</I>&gt;<i> &quot;a regular stream of news about Mageia&quot; is not the same as &quot;discovering
+</I>&gt;<i> the life of contributors&quot;. For example, the aforementioned chocolate
+</I>&gt;<i> cake pictures is likely not ok if the goal is to speak only of Mageia.
+</I>
+You're mixing several things. The &quot;website&quot; as such has several roles;
+the planet is one tiny role among others in the &quot;self-recognition &amp;
+promotion of contributors thoughts&quot; part.
+
+&gt;<i> This allows to know if we want someone see the word fuck or not.
+</I>
+I don't care about setting rules for that - that's the comm'team job
+and I believe that for the beginning, this can be left to authors'
+common sense. And we will see how it evolves. Saying that it should
+first relate to Mageia is enough. Comm'team will be free and welcome
+to chart it otherwise (now or later).
+
+&gt;<i> We may not want to have strong political comments on the frontpage of the
+</I>&gt;<i> project ( As said, I personally wouldn't care, but I guess that's not a
+</I>&gt;<i> universal view ).
+</I>
+The planet won't be on the frontpage (where only official news of the
+project will be, speaking of news feeds), it's a separate page, on its
+own first, of which posts may be syndicated somewhere in a &quot;news&quot; or
+&quot;community&quot; area in the website.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000204.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000206.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#205">[ date ]</a>
+ <a href="thread.html#205">[ thread ]</a>
+ <a href="subject.html#205">[ subject ]</a>
+ <a href="author.html#205">[ 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-January/000206.html b/zarb-ml/mageia-webteam/2011-January/000206.html
new file mode 100644
index 000000000..b03a7ca3b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000206.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%20installation&In-Reply-To=%3C1296497404.12892.115.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000205.html">
+ <LINK REL="Next" HREF="000208.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%20installation&In-Reply-To=%3C1296497404.12892.115.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 31 19:10:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000205.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000208.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#206">[ date ]</a>
+ <a href="thread.html#206">[ thread ]</a>
+ <a href="subject.html#206">[ subject ]</a>
+ <a href="author.html#206">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le lundi 31 janvier 2011 &#224; 18:36 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> On Mon, Jan 31, 2011 at 18:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt; First, I would try to clearly articulate the goal of the website. Having
+</I>&gt;<i> &gt; &quot;a regular stream of news about Mageia&quot; is not the same as &quot;discovering
+</I>&gt;<i> &gt; the life of contributors&quot;. For example, the aforementioned chocolate
+</I>&gt;<i> &gt; cake pictures is likely not ok if the goal is to speak only of Mageia.
+</I>&gt;<i>
+</I>&gt;<i> You're mixing several things. The &quot;website&quot; as such has several roles;
+</I>&gt;<i> the planet is one tiny role among others in the &quot;self-recognition &amp;
+</I>&gt;<i> promotion of contributors thoughts&quot; part.
+</I>
+Just to be clear, when I said &quot;the website&quot;, I spoke of
+planet.mageia.org as a website. Not of www.mageia.org ( who serve on
+more than regular stream of news ) or the whole web plateform ( who also
+serve as more than that ).
+
+So I do not understand what others roles you are speaking of if you
+speak of planet.mageia.org, or what do you mean for &quot;website&quot; if this is
+not planet.mageia.org
+
+Am I right to assume you speak of the whole web plateform ?
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000205.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000208.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#206">[ date ]</a>
+ <a href="thread.html#206">[ thread ]</a>
+ <a href="subject.html#206">[ subject ]</a>
+ <a href="author.html#206">[ 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-January/000207.html b/zarb-ml/mageia-webteam/2011-January/000207.html
new file mode 100644
index 000000000..01cdb41c6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000207.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Speaking of calendar
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Speaking%20of%20calendar&In-Reply-To=%3C1296498831.12892.119.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000202.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Speaking of calendar</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Speaking%20of%20calendar&In-Reply-To=%3C1296498831.12892.119.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Speaking of calendar">misc at zarb.org
+ </A><BR>
+ <I>Mon Jan 31 19:33:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000202.html">[Mageia-webteam] Join
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#207">[ date ]</a>
+ <a href="thread.html#207">[ thread ]</a>
+ <a href="subject.html#207">[ subject ]</a>
+ <a href="author.html#207">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+I just received this my mail :
+<A HREF="http://code.grical.org/wiki">http://code.grical.org/wiki</A>
+
+There is a list of calendars at the end of the page, and a list of web
+site ( can be useful to push our events there ). And the software may
+also be useful.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000202.html">[Mageia-webteam] Join
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#207">[ date ]</a>
+ <a href="thread.html#207">[ thread ]</a>
+ <a href="subject.html#207">[ subject ]</a>
+ <a href="author.html#207">[ 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-January/000208.html b/zarb-ml/mageia-webteam/2011-January/000208.html
new file mode 100644
index 000000000..e02fb9f2b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/000208.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] planet.mageia.org - info/discuss about the installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3CAANLkTinuxKXBtbueDbVF_QbOyTi8FJkVEpZ63A%2B9TZi9%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="000206.html">
+ <LINK REL="Next" HREF="000192.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] planet.mageia.org - info/discuss about the installation</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20planet.mageia.org%20-%20info/discuss%20about%20the%0A%09installation&In-Reply-To=%3CAANLkTinuxKXBtbueDbVF_QbOyTi8FJkVEpZ63A%2B9TZi9%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] planet.mageia.org - info/discuss about the installation">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jan 31 20:45:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000206.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000192.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#208">[ date ]</a>
+ <a href="thread.html#208">[ thread ]</a>
+ <a href="subject.html#208">[ subject ]</a>
+ <a href="author.html#208">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, Jan 31, 2011 at 19:10, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Am I right to assume you speak of the whole web plateform ?
+</I>
+Yes, sorry. I don't understand the planet as a website on its own. A
+page/summary/snippet, at most. :-p
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000206.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A></li>
+ <LI>Next message: <A HREF="000192.html">[Mageia-webteam] Starting to clean the mess of web services
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#208">[ date ]</a>
+ <a href="thread.html#208">[ thread ]</a>
+ <a href="subject.html#208">[ subject ]</a>
+ <a href="author.html#208">[ 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-January/author.html b/zarb-ml/mageia-webteam/2011-January/author.html
new file mode 100644
index 000000000..2a9b35ef4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/author.html
@@ -0,0 +1,677 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam January 2011 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>January 2011 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>Sat Jan 1 16:40:16 CET 2011</i><br>
+ <b>Ending:</b> <i>Mon Jan 31 20:45:59 CET 2011</i><br>
+ <b>Messages:</b> 126<p>
+ <ul>
+
+<LI><A HREF="000194.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="194">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000114.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A><A NAME="114">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<LI><A HREF="000172.html">[Mageia-webteam] Viewvc installation
+</A><A NAME="172">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<LI><A HREF="000115.html">[Mageia-webteam] Comments about identity-trunk
+</A><A NAME="115">&nbsp;</A>
+<I>Ludovic Belli&#232;re
+</I>
+
+<LI><A HREF="000101.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="101">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000116.html">[Mageia-webteam] Wiki setup
+</A><A NAME="116">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000118.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="118">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000163.html">[Mageia-webteam] Meeting today
+</A><A NAME="163">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000103.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A><A NAME="103">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000104.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="104">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000132.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="132">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000135.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="135">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000138.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="138">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000162.html">[Mageia-webteam] Calendars - maint db
+</A><A NAME="162">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000169.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="169">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000175.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="175">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000176.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="176">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000143.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="143">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<LI><A HREF="000159.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="159">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<LI><A HREF="000191.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="191">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000193.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="193">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000097.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="97">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000102.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="102">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000127.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="127">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000131.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="131">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000142.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="142">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000145.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="145">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000154.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="154">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000155.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="155">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000156.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="156">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000158.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="158">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000167.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="167">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000168.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="168">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000178.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="178">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000171.html">[Mageia-webteam] Current bugzilla status
+</A><A NAME="171">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<LI><A HREF="000199.html">[Mageia-webteam] Join
+</A><A NAME="199">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000202.html">[Mageia-webteam] Join
+</A><A NAME="202">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000200.html">[Mageia-webteam] Join
+</A><A NAME="200">&nbsp;</A>
+<I>Cazzaniga Sandro
+</I>
+
+<LI><A HREF="000091.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="91">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000094.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="94">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000095.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="95">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000098.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="98">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000107.html">[Mageia-webteam] catdap deployment
+</A><A NAME="107">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000108.html">[Mageia-webteam] catdap deployment
+</A><A NAME="108">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000110.html">[Mageia-webteam] catdap deployment
+</A><A NAME="110">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000121.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="121">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000122.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="122">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000123.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A><A NAME="123">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000124.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="124">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000126.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="126">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000130.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="130">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000133.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="133">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000137.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="137">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000140.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="140">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000147.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="147">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000148.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="148">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000149.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="149">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000153.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="153">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000160.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="160">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000170.html">[Mageia-webteam] Viewvc installation
+</A><A NAME="170">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000173.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="173">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000174.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="174">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000177.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="177">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000180.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="180">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000188.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="188">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000192.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="192">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000195.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="195">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000197.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="197">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000201.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="201">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000204.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="204">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000206.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="206">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000207.html">[Mageia-webteam] Speaking of calendar
+</A><A NAME="207">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000190.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="190">&nbsp;</A>
+<I>Pascal Terjan
+</I>
+
+<LI><A HREF="000152.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="152">&nbsp;</A>
+<I>Olivier Thauvin
+</I>
+
+<LI><A HREF="000109.html">[Mageia-webteam] catdap deployment
+</A><A NAME="109">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000111.html">[Mageia-webteam] catdap deployment
+</A><A NAME="111">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000112.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="112">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000146.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="146">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000181.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="181">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000183.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="183">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000184.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="184">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000186.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="186">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000189.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="189">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000084.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="84">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000085.html">[Mageia-webteam] Designing mageia-app-db's homepage
+</A><A NAME="85">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000150.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="150">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000151.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="151">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000083.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="83">&nbsp;</A>
+<I>andre999
+</I>
+
+<LI><A HREF="000086.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="86">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000087.html">[Mageia-webteam] Donation pages update &amp; redirection
+</A><A NAME="87">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000088.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="88">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000089.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="89">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000090.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="90">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000092.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="92">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000093.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="93">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000096.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="96">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000099.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="99">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000100.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000105.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="105">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000106.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="106">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000113.html">[Mageia-webteam] catdap deployment
+</A><A NAME="113">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000117.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="117">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000119.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A><A NAME="119">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000120.html">[Mageia-webteam] Comments about identity-trunk
+</A><A NAME="120">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000125.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="125">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000128.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="128">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000129.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="129">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000134.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000136.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="136">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000139.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="139">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000141.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="141">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000161.html">[Mageia-webteam] 2011/week 3 meeting
+</A><A NAME="161">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000164.html">[Mageia-webteam] Meeting today
+</A><A NAME="164">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000165.html">[Mageia-webteam] Calendars - maint db
+</A><A NAME="165">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000166.html">[Mageia-webteam] 2011/week 3 meeting
+</A><A NAME="166">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000179.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="179">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000185.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="185">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000187.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="187">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000198.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="198">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000203.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="203">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000205.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="205">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000208.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="208">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000157.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="157">&nbsp;</A>
+<I>Michael scherer
+</I>
+
+<LI><A HREF="000144.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="144">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000182.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="182">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000196.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="196">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Jan 31 20:45:59 CET 2011</i><br>
+ <b>Archived on:</b> <i>Mon Jan 31 20:46:07 CET 2011</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/2011-January/date.html b/zarb-ml/mageia-webteam/2011-January/date.html
new file mode 100644
index 000000000..5b5703a81
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/date.html
@@ -0,0 +1,677 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam January 2011 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>January 2011 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>Sat Jan 1 16:40:16 CET 2011</i><br>
+ <b>Ending:</b> <i>Mon Jan 31 20:45:59 CET 2011</i><br>
+ <b>Messages:</b> 126<p>
+ <ul>
+
+<LI><A HREF="000083.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="83">&nbsp;</A>
+<I>andre999
+</I>
+
+<LI><A HREF="000084.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="84">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000085.html">[Mageia-webteam] Designing mageia-app-db's homepage
+</A><A NAME="85">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000086.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="86">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000087.html">[Mageia-webteam] Donation pages update &amp; redirection
+</A><A NAME="87">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000088.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="88">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000089.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="89">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000090.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="90">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000091.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="91">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000092.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="92">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000093.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="93">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000094.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="94">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000095.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="95">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000096.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="96">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000097.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="97">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000098.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="98">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000099.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="99">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000101.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="101">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000100.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000102.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="102">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000103.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A><A NAME="103">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000104.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="104">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000105.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="105">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000106.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="106">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000107.html">[Mageia-webteam] catdap deployment
+</A><A NAME="107">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000108.html">[Mageia-webteam] catdap deployment
+</A><A NAME="108">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000109.html">[Mageia-webteam] catdap deployment
+</A><A NAME="109">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000110.html">[Mageia-webteam] catdap deployment
+</A><A NAME="110">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000111.html">[Mageia-webteam] catdap deployment
+</A><A NAME="111">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000112.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="112">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000113.html">[Mageia-webteam] catdap deployment
+</A><A NAME="113">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000114.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A><A NAME="114">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<LI><A HREF="000115.html">[Mageia-webteam] Comments about identity-trunk
+</A><A NAME="115">&nbsp;</A>
+<I>Ludovic Belli&#232;re
+</I>
+
+<LI><A HREF="000116.html">[Mageia-webteam] Wiki setup
+</A><A NAME="116">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000117.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="117">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000118.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="118">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000119.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A><A NAME="119">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000120.html">[Mageia-webteam] Comments about identity-trunk
+</A><A NAME="120">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000121.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="121">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000122.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="122">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000123.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A><A NAME="123">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000124.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="124">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000125.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="125">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000126.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="126">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000127.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="127">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000128.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="128">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000129.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="129">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000130.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="130">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000131.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="131">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000132.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="132">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000133.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="133">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000134.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000135.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="135">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000136.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="136">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000137.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="137">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000138.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="138">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000139.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="139">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000140.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="140">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000141.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="141">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000142.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="142">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000143.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="143">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<LI><A HREF="000144.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="144">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000145.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="145">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000146.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="146">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000150.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="150">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000147.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="147">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000148.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="148">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000149.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="149">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000151.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="151">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000152.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="152">&nbsp;</A>
+<I>Olivier Thauvin
+</I>
+
+<LI><A HREF="000153.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="153">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000154.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="154">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000155.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="155">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000156.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="156">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000157.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="157">&nbsp;</A>
+<I>Michael scherer
+</I>
+
+<LI><A HREF="000158.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="158">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000159.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="159">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<LI><A HREF="000160.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="160">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000161.html">[Mageia-webteam] 2011/week 3 meeting
+</A><A NAME="161">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000162.html">[Mageia-webteam] Calendars - maint db
+</A><A NAME="162">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000163.html">[Mageia-webteam] Meeting today
+</A><A NAME="163">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000164.html">[Mageia-webteam] Meeting today
+</A><A NAME="164">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000165.html">[Mageia-webteam] Calendars - maint db
+</A><A NAME="165">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000166.html">[Mageia-webteam] 2011/week 3 meeting
+</A><A NAME="166">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000167.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="167">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000168.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="168">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000169.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="169">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000170.html">[Mageia-webteam] Viewvc installation
+</A><A NAME="170">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000171.html">[Mageia-webteam] Current bugzilla status
+</A><A NAME="171">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<LI><A HREF="000172.html">[Mageia-webteam] Viewvc installation
+</A><A NAME="172">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<LI><A HREF="000173.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="173">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000174.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="174">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000175.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="175">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000176.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="176">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000177.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="177">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000178.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="178">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000179.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="179">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000180.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="180">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000181.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="181">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000182.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="182">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000183.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="183">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000190.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="190">&nbsp;</A>
+<I>Pascal Terjan
+</I>
+
+<LI><A HREF="000184.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="184">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000185.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="185">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000186.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="186">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000187.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="187">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000188.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="188">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000189.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="189">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000191.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="191">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000192.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="192">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000193.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="193">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000194.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="194">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000195.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="195">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000196.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="196">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000197.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="197">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000198.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="198">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000199.html">[Mageia-webteam] Join
+</A><A NAME="199">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000200.html">[Mageia-webteam] Join
+</A><A NAME="200">&nbsp;</A>
+<I>Cazzaniga Sandro
+</I>
+
+<LI><A HREF="000201.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="201">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000202.html">[Mageia-webteam] Join
+</A><A NAME="202">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000203.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="203">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000204.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="204">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000205.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="205">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000206.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="206">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000207.html">[Mageia-webteam] Speaking of calendar
+</A><A NAME="207">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000208.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="208">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Jan 31 20:45:59 CET 2011</i><br>
+ <b>Archived on:</b> <i>Mon Jan 31 20:46:07 CET 2011</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/2011-January/index.html b/zarb-ml/mageia-webteam/2011-January/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-January/subject.html b/zarb-ml/mageia-webteam/2011-January/subject.html
new file mode 100644
index 000000000..34d2b62e3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/subject.html
@@ -0,0 +1,677 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam January 2011 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>January 2011 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>Sat Jan 1 16:40:16 CET 2011</i><br>
+ <b>Ending:</b> <i>Mon Jan 31 20:45:59 CET 2011</i><br>
+ <b>Messages:</b> 126<p>
+ <ul>
+
+<LI><A HREF="000086.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="86">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000088.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="88">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000089.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="89">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000161.html">[Mageia-webteam] 2011/week 3 meeting
+</A><A NAME="161">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000166.html">[Mageia-webteam] 2011/week 3 meeting
+</A><A NAME="166">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000185.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="185">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000186.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="186">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000187.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="187">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000152.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="152">&nbsp;</A>
+<I>Olivier Thauvin
+</I>
+
+<LI><A HREF="000154.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="154">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000157.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="157">&nbsp;</A>
+<I>Michael scherer
+</I>
+
+<LI><A HREF="000158.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="158">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000160.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="160">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000178.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="178">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000167.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="167">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000144.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="144">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000145.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="145">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000150.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="150">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000147.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="147">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000149.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="149">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000151.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="151">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000155.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="155">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000168.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="168">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000169.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="169">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000173.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="173">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000174.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="174">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000175.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="175">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000177.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="177">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000181.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="181">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000182.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="182">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000183.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="183">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000190.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="190">&nbsp;</A>
+<I>Pascal Terjan
+</I>
+
+<LI><A HREF="000184.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="184">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000188.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="188">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000189.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="189">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000117.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="117">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000118.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="118">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000121.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="121">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000122.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="122">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000101.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="101">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000104.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="104">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000106.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="106">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000162.html">[Mageia-webteam] Calendars - maint db
+</A><A NAME="162">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000165.html">[Mageia-webteam] Calendars - maint db
+</A><A NAME="165">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000107.html">[Mageia-webteam] catdap deployment
+</A><A NAME="107">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000108.html">[Mageia-webteam] catdap deployment
+</A><A NAME="108">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000109.html">[Mageia-webteam] catdap deployment
+</A><A NAME="109">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000110.html">[Mageia-webteam] catdap deployment
+</A><A NAME="110">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000111.html">[Mageia-webteam] catdap deployment
+</A><A NAME="111">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000113.html">[Mageia-webteam] catdap deployment
+</A><A NAME="113">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000091.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="91">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000092.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="92">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000095.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="95">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000115.html">[Mageia-webteam] Comments about identity-trunk
+</A><A NAME="115">&nbsp;</A>
+<I>Ludovic Belli&#232;re
+</I>
+
+<LI><A HREF="000120.html">[Mageia-webteam] Comments about identity-trunk
+</A><A NAME="120">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000171.html">[Mageia-webteam] Current bugzilla status
+</A><A NAME="171">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<LI><A HREF="000085.html">[Mageia-webteam] Designing mageia-app-db's homepage
+</A><A NAME="85">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000087.html">[Mageia-webteam] Donation pages update &amp; redirection
+</A><A NAME="87">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000142.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="142">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000143.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="143">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<LI><A HREF="000148.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="148">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000153.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="153">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000156.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="156">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000159.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="159">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<LI><A HREF="000103.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A><A NAME="103">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000123.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A><A NAME="123">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000132.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="132">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000133.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="133">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000134.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000135.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="135">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000136.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="136">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000137.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="137">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000138.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="138">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000139.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="139">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000140.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="140">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000141.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="141">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000146.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="146">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000199.html">[Mageia-webteam] Join
+</A><A NAME="199">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000200.html">[Mageia-webteam] Join
+</A><A NAME="200">&nbsp;</A>
+<I>Cazzaniga Sandro
+</I>
+
+<LI><A HREF="000202.html">[Mageia-webteam] Join
+</A><A NAME="202">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000114.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A><A NAME="114">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<LI><A HREF="000119.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A><A NAME="119">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000124.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="124">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000125.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="125">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000126.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="126">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000127.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="127">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000128.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="128">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000129.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="129">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000130.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="130">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000131.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="131">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000176.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="176">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000179.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="179">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000180.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="180">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000163.html">[Mageia-webteam] Meeting today
+</A><A NAME="163">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000164.html">[Mageia-webteam] Meeting today
+</A><A NAME="164">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000083.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="83">&nbsp;</A>
+<I>andre999
+</I>
+
+<LI><A HREF="000084.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="84">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000112.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="112">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000191.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="191">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000194.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="194">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000198.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="198">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000203.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="203">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000205.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="205">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000208.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="208">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000197.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="197">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000201.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="201">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000204.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="204">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000206.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="206">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000207.html">[Mageia-webteam] Speaking of calendar
+</A><A NAME="207">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000192.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="192">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000193.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="193">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000195.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="195">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000196.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="196">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000170.html">[Mageia-webteam] Viewvc installation
+</A><A NAME="170">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000172.html">[Mageia-webteam] Viewvc installation
+</A><A NAME="172">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<LI><A HREF="000090.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="90">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000093.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="93">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000094.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="94">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000096.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="96">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000097.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="97">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000098.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="98">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000099.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="99">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000100.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000102.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="102">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000105.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="105">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000116.html">[Mageia-webteam] Wiki setup
+</A><A NAME="116">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Jan 31 20:45:59 CET 2011</i><br>
+ <b>Archived on:</b> <i>Mon Jan 31 20:46:07 CET 2011</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/2011-January/thread.html b/zarb-ml/mageia-webteam/2011-January/thread.html
new file mode 100644
index 000000000..a4e1daa06
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-January/thread.html
@@ -0,0 +1,909 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam January 2011 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>January 2011 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>Sat Jan 1 16:40:16 CET 2011</i><br>
+ <b>Ending:</b> <i>Mon Jan 31 20:45:59 CET 2011</i><br>
+ <b>Messages:</b> 126<p>
+ <ul>
+
+<!--0 01293896416- -->
+<LI><A HREF="000083.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="83">&nbsp;</A>
+<I>andre999
+</I>
+
+<UL>
+<!--1 01293896416-01293970020- -->
+<LI><A HREF="000084.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="84">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+</UL>
+<!--0 01293970374- -->
+<LI><A HREF="000085.html">[Mageia-webteam] Designing mageia-app-db's homepage
+</A><A NAME="85">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--0 01294049858- -->
+<LI><A HREF="000086.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="86">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01294049858-01294226752- -->
+<LI><A HREF="000088.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="88">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01294049858-01294226752-01294241218- -->
+<LI><A HREF="000089.html">[Mageia-webteam] 2011 first meeting
+</A><A NAME="89">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+<!--0 01294084859- -->
+<LI><A HREF="000087.html">[Mageia-webteam] Donation pages update &amp; redirection
+</A><A NAME="87">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01294247518- -->
+<LI><A HREF="000090.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="90">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01294268871- -->
+<LI><A HREF="000091.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="91">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01294268871-01294303503- -->
+<LI><A HREF="000092.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="92">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01294268871-01294303503-01294318127- -->
+<LI><A HREF="000095.html">[Mageia-webteam] Catdap trunk instance, and update
+</A><A NAME="95">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+</UL>
+<!--0 01294312191- -->
+<LI><A HREF="000093.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="93">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01294312191-01294316373- -->
+<LI><A HREF="000094.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="94">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01294312191-01294316373-01294320425- -->
+<LI><A HREF="000096.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="96">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--3 01294312191-01294316373-01294320425-01294323945- -->
+<LI><A HREF="000097.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="97">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01294312191-01294316373-01294320425-01294323945-01294332298- -->
+<LI><A HREF="000099.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="99">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01294312191-01294316373-01294320425-01294323945-01294332298-01294334600- -->
+<LI><A HREF="000102.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="102">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01294312191-01294316373-01294320425-01294323945-01294332298-01294334600-01294337207- -->
+<LI><A HREF="000105.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="105">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01294312191-01294316373-01294320425-01294325052- -->
+<LI><A HREF="000098.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="98">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01294312191-01294316373-01294320425-01294325052-01294333500- -->
+<LI><A HREF="000100.html">[Mageia-webteam] Webteam peers, bootstrapping
+</A><A NAME="100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01294333343- -->
+<LI><A HREF="000101.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="101">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01294333343-01294336791- -->
+<LI><A HREF="000104.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="104">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--2 01294333343-01294336791-01294337343- -->
+<LI><A HREF="000106.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="106">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+<!--0 01294336124- -->
+<LI><A HREF="000103.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A><A NAME="103">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--1 01294336124-01294662328- -->
+<LI><A HREF="000123.html">[Mageia-webteam] Gitorious - LDAP installation-integration Feasibilty
+</A><A NAME="123">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01294346382- -->
+<LI><A HREF="000107.html">[Mageia-webteam] catdap deployment
+</A><A NAME="107">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01294346382-01294364717- -->
+<LI><A HREF="000108.html">[Mageia-webteam] catdap deployment
+</A><A NAME="108">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01294346382-01294364717-01294366003- -->
+<LI><A HREF="000109.html">[Mageia-webteam] catdap deployment
+</A><A NAME="109">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<UL>
+<!--3 01294346382-01294364717-01294366003-01294367770- -->
+<LI><A HREF="000110.html">[Mageia-webteam] catdap deployment
+</A><A NAME="110">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01294346382-01294364717-01294366003-01294367770-01294421255- -->
+<LI><A HREF="000111.html">[Mageia-webteam] catdap deployment
+</A><A NAME="111">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--3 01294346382-01294364717-01294366003-01294421720- -->
+<LI><A HREF="000113.html">[Mageia-webteam] catdap deployment
+</A><A NAME="113">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01294421541- -->
+<LI><A HREF="000112.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="112">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--0 01294533625- -->
+<LI><A HREF="000114.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A><A NAME="114">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<UL>
+<!--1 01294533625-01294610074- -->
+<LI><A HREF="000119.html">[Mageia-webteam] license at the bottom of temporary wiki
+</A><A NAME="119">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01294579374- -->
+<LI><A HREF="000115.html">[Mageia-webteam] Comments about identity-trunk
+</A><A NAME="115">&nbsp;</A>
+<I>Ludovic Belli&#232;re
+</I>
+
+<UL>
+<!--1 01294579374-01294613153- -->
+<LI><A HREF="000120.html">[Mageia-webteam] Comments about identity-trunk
+</A><A NAME="120">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01294582535- -->
+<LI><A HREF="000116.html">[Mageia-webteam] Wiki setup
+</A><A NAME="116">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01294592652- -->
+<LI><A HREF="000117.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="117">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01294592652-01294605158- -->
+<LI><A HREF="000118.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="118">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--2 01294592652-01294605158-01294614254- -->
+<LI><A HREF="000121.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="121">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+</UL>
+<!--0 01294618023- -->
+<LI><A HREF="000122.html">[Mageia-webteam] [Mageia-sysadm] Wiki setup
+</A><A NAME="122">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01294665724- -->
+<LI><A HREF="000124.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="124">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01294665724-01294667557- -->
+<LI><A HREF="000125.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="125">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01294665724-01294667557-01294669343- -->
+<LI><A HREF="000126.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="126">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--3 01294665724-01294667557-01294669343-01294671345- -->
+<LI><A HREF="000128.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="128">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+<!--1 01294665724-01294670038- -->
+<LI><A HREF="000127.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="127">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--2 01294665724-01294670038-01294671509- -->
+<LI><A HREF="000129.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="129">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--3 01294665724-01294670038-01294671509-01294672385- -->
+<LI><A HREF="000131.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="131">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+</UL>
+<!--2 01294665724-01294670038-01294672336- -->
+<LI><A HREF="000130.html">[Mageia-webteam] Mailling lists for web team
+</A><A NAME="130">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+</UL>
+<!--0 01294787278- -->
+<LI><A HREF="000132.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="132">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--1 01294787278-01294796195- -->
+<LI><A HREF="000133.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="133">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01294787278-01294796195-01294825015- -->
+<LI><A HREF="000134.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--3 01294787278-01294796195-01294825015-01294827015- -->
+<LI><A HREF="000135.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="135">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01294787278-01294796195-01294825015-01294827015-01294827730- -->
+<LI><A HREF="000136.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="136">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01294787278-01294796195-01294825015-01294827015-01294827730-01294829551- -->
+<LI><A HREF="000137.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="137">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01294787278-01294796195-01294825015-01294827015-01294827730-01294829551-01294830295- -->
+<LI><A HREF="000138.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="138">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01294787278-01294796195-01294825015-01294827015-01294827730-01294829551-01294831754- -->
+<LI><A HREF="000139.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="139">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01294787278-01294796195-01294825015-01294827015-01294827730-01294829551-01294831754-01294835393- -->
+<LI><A HREF="000140.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="140">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01294787278-01294796195-01294825015-01294827015-01294827730-01294829551-01294831754-01294835393-01294837038- -->
+<LI><A HREF="000141.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="141">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01294787278-01294796195-01294825015-01294827015-01294827730-01294829551-01294831754-01294835393-01294837038-01294875392- -->
+<LI><A HREF="000146.html">[Mageia-webteam] Initial hosting requirements for maintainers db
+</A><A NAME="146">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01294864068- -->
+<LI><A HREF="000142.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="142">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--1 01294864068-01294866124- -->
+<LI><A HREF="000143.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="143">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<!--1 01294864068-01294868254- -->
+<LI><A HREF="000144.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="144">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<UL>
+<!--2 01294864068-01294868254-01294869944- -->
+<LI><A HREF="000145.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="145">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--3 01294864068-01294868254-01294869944-01294921772- -->
+<LI><A HREF="000149.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="149">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01294864068-01294868254-01294869944-01294921772-01294923038- -->
+<LI><A HREF="000152.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="152">&nbsp;</A>
+<I>Olivier Thauvin
+</I>
+
+<!--3 01294864068-01294868254-01294869944-01294921772-01294923038-01295004097- -->
+<LI><A HREF="000154.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="154">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01294864068-01294868254-01294869944-01294921772-01295088398- -->
+<LI><A HREF="000155.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="155">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01294864068-01294868254-01294869944-01294921772-01295088398-01295104319- -->
+<LI><A HREF="000157.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="157">&nbsp;</A>
+<I>Michael scherer
+</I>
+
+<!--3 01294864068-01294868254-01294869944-01294921772-01295088398-01295104319-01295106399- -->
+<LI><A HREF="000158.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="158">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01294864068-01294868254-01294869944-01294921772-01295088398-01295104319-01295106399-01295268130- -->
+<LI><A HREF="000160.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="160">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+</UL>
+<!--1 01294864068-01294920418- -->
+<LI><A HREF="000150.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="150">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--1 01294864068-01294921744- -->
+<LI><A HREF="000148.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="148">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01294864068-01294921744-01294924501- -->
+<LI><A HREF="000153.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="153">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--2 01294864068-01294921744-01295091680- -->
+<LI><A HREF="000156.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="156">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--3 01294864068-01294921744-01295091680-01295114651- -->
+<LI><A HREF="000159.html">[Mageia-webteam] Forum VM needs
+</A><A NAME="159">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01294921144- -->
+<LI><A HREF="000147.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="147">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01294921144-01294922026- -->
+<LI><A HREF="000151.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="151">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+</UL>
+<!--0 01295343621- -->
+<LI><A HREF="000161.html">[Mageia-webteam] 2011/week 3 meeting
+</A><A NAME="161">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01295343621-01295454164- -->
+<LI><A HREF="000166.html">[Mageia-webteam] 2011/week 3 meeting
+</A><A NAME="166">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01295379155- -->
+<LI><A HREF="000162.html">[Mageia-webteam] Calendars - maint db
+</A><A NAME="162">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--1 01295379155-01295445829- -->
+<LI><A HREF="000165.html">[Mageia-webteam] Calendars - maint db
+</A><A NAME="165">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01295440794- -->
+<LI><A HREF="000163.html">[Mageia-webteam] Meeting today
+</A><A NAME="163">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01295440794-01295445426- -->
+<LI><A HREF="000164.html">[Mageia-webteam] Meeting today
+</A><A NAME="164">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01295793464- -->
+<LI><A HREF="000167.html">[Mageia-webteam] [Mageia-sysadm] Forum VM needs
+</A><A NAME="167">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--0 01295862098- -->
+<LI><A HREF="000168.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="168">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--1 01295862098-01295868058- -->
+<LI><A HREF="000169.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="169">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--2 01295862098-01295868058-01295889254- -->
+<LI><A HREF="000174.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="174">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--3 01295862098-01295868058-01295889254-01295891641- -->
+<LI><A HREF="000175.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="175">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01295862098-01295868058-01295889254-01295891641-01295893524- -->
+<LI><A HREF="000177.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="177">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+</UL>
+<!--1 01295862098-01295889032- -->
+<LI><A HREF="000173.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="173">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01295862098-01295889032-01295893550- -->
+<LI><A HREF="000178.html">[Mageia-webteam] [Mageia-sysadm] New test tree in ldap
+</A><A NAME="178">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+</UL>
+</UL>
+<!--0 01295876769- -->
+<LI><A HREF="000170.html">[Mageia-webteam] Viewvc installation
+</A><A NAME="170">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01295876769-01295885850- -->
+<LI><A HREF="000172.html">[Mageia-webteam] Viewvc installation
+</A><A NAME="172">&nbsp;</A>
+<I>Benoit Audouard
+</I>
+
+<!--1 01295876769-01295895647- -->
+<LI><A HREF="000181.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="181">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<UL>
+<!--2 01295876769-01295895647-01295903015- -->
+<LI><A HREF="000182.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="182">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<UL>
+<!--3 01295876769-01295895647-01295903015-01295979815- -->
+<LI><A HREF="000183.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="183">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--3 01295876769-01295895647-01295903015-01295979815-01295987828- -->
+<LI><A HREF="000190.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="190">&nbsp;</A>
+<I>Pascal Terjan
+</I>
+
+</UL>
+</UL>
+<!--1 01295876769-01296069331- -->
+<LI><A HREF="000188.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="188">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01295876769-01296069331-01296070543- -->
+<LI><A HREF="000189.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="189">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+</UL>
+</UL>
+<!--0 01295881784- -->
+<LI><A HREF="000171.html">[Mageia-webteam] Current bugzilla status
+</A><A NAME="171">&nbsp;</A>
+<I>Dexter Morgan
+</I>
+
+<!--0 01295892420- -->
+<LI><A HREF="000176.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="176">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--1 01295892420-01295894112- -->
+<LI><A HREF="000179.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="179">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01295892420-01295894268- -->
+<LI><A HREF="000180.html">[Mageia-webteam] Maintainers db app questions
+</A><A NAME="180">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01295989291- -->
+<LI><A HREF="000184.html">[Mageia-webteam] [Mageia-sysadm] Viewvc installation
+</A><A NAME="184">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--0 01295999300- -->
+<LI><A HREF="000185.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="185">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01295999300-01296026261- -->
+<LI><A HREF="000186.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="186">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--1 01295999300-01296053981- -->
+<LI><A HREF="000187.html">[Mageia-webteam] 2011/week 4 meeting
+</A><A NAME="187">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01296217881- -->
+<LI><A HREF="000191.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="191">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<UL>
+<!--1 01296217881-01296247521- -->
+<LI><A HREF="000194.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="194">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--1 01296217881-01296442052- -->
+<LI><A HREF="000197.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="197">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01296217881-01296442052-01296464101- -->
+<LI><A HREF="000198.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="198">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--3 01296217881-01296442052-01296464101-01296473417- -->
+<LI><A HREF="000201.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="201">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01296217881-01296442052-01296464101-01296473417-01296489057- -->
+<LI><A HREF="000203.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="203">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01296217881-01296442052-01296464101-01296473417-01296489057-01296494367- -->
+<LI><A HREF="000204.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="204">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01296217881-01296442052-01296464101-01296473417-01296489057-01296494367-01296495385- -->
+<LI><A HREF="000205.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="205">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01296217881-01296442052-01296464101-01296473417-01296489057-01296494367-01296495385-01296497404- -->
+<LI><A HREF="000206.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="206">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01296217881-01296442052-01296464101-01296473417-01296489057-01296494367-01296495385-01296497404-01296503159- -->
+<LI><A HREF="000208.html">[Mageia-webteam] planet.mageia.org - info/discuss about the installation
+</A><A NAME="208">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01296228240- -->
+<LI><A HREF="000192.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="192">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01296228240-01296228642- -->
+<LI><A HREF="000193.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="193">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<UL>
+<!--2 01296228240-01296228642-01296304999- -->
+<LI><A HREF="000195.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="195">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--3 01296228240-01296228642-01296304999-01296317579- -->
+<LI><A HREF="000196.html">[Mageia-webteam] Starting to clean the mess of web services
+</A><A NAME="196">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01296473216- -->
+<LI><A HREF="000199.html">[Mageia-webteam] Join
+</A><A NAME="199">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<UL>
+<!--1 01296473216-01296473257- -->
+<LI><A HREF="000200.html">[Mageia-webteam] Join
+</A><A NAME="200">&nbsp;</A>
+<I>Cazzaniga Sandro
+</I>
+
+<UL>
+<!--2 01296473216-01296473257-01296473921- -->
+<LI><A HREF="000202.html">[Mageia-webteam] Join
+</A><A NAME="202">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+</UL>
+</UL>
+<!--0 01296498831- -->
+<LI><A HREF="000207.html">[Mageia-webteam] Speaking of calendar
+</A><A NAME="207">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Jan 31 20:45:59 CET 2011</i><br>
+ <b>Archived on:</b> <i>Mon Jan 31 20:46:07 CET 2011</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-July.txt.gz b/zarb-ml/mageia-webteam/2011-July.txt.gz
new file mode 100644
index 000000000..c4586cb78
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-July/001255.html b/zarb-ml/mageia-webteam/2011-July/001255.html
new file mode 100644
index 000000000..9ada7505e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001255.html
@@ -0,0 +1,142 @@
+<!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=%3C20110630220003.C53F04320E%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="001256.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=%3C20110630220003.C53F04320E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jul 1 00:00:03 CEST 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001256.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1255">[ date ]</a>
+ <a href="thread.html#1255">[ thread ]</a>
+ <a href="subject.html#1255">[ subject ]</a>
+ <a href="author.html#1255">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+ &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="001256.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1255">[ date ]</a>
+ <a href="thread.html#1255">[ thread ]</a>
+ <a href="subject.html#1255">[ subject ]</a>
+ <a href="author.html#1255">[ 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-July/001256.html b/zarb-ml/mageia-webteam/2011-July/001256.html
new file mode 100644
index 000000000..94f9e1ae5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001256.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3C20110630223709.GD21938%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="001255.html">
+ <LINK REL="Next" HREF="001257.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3C20110630223709.GD21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">boklm at mars-attacks.org
+ </A><BR>
+ <I>Fri Jul 1 00:37:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001255.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001257.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1256">[ date ]</a>
+ <a href="thread.html#1256">[ thread ]</a>
+ <a href="subject.html#1256">[ subject ]</a>
+ <a href="author.html#1256">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, 30 Jun 2011, Wolfgang Bornath wrote:
+
+&gt;<i> 2011/6/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+</I>&gt;<i> &gt; &#160;- are these still valid?
+</I>&gt;<i> &gt; &#160; - (wobo) <A HREF="https://bugs.mageia.org/show_bug.cgi?id=860">https://bugs.mageia.org/show_bug.cgi?id=860</A> still valid?
+</I>&gt;<i> &gt; (German forums);
+</I>&gt;<i>
+</I>&gt;<i> If you mean the forum redirection?
+</I>&gt;<i> - <A HREF="https://forums.mageia.org/de">https://forums.mageia.org/de</A> without trailing slash still gives 403
+</I>
+Fixed now.
+
+&gt;<i> - <A HREF="https://forums.mageia.org">https://forums.mageia.org</A> goes to the english forum, no matter what
+</I>&gt;<i> browser language
+</I>
+What should it do ?
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001255.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001257.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1256">[ date ]</a>
+ <a href="thread.html#1256">[ thread ]</a>
+ <a href="subject.html#1256">[ subject ]</a>
+ <a href="author.html#1256">[ 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-July/001257.html b/zarb-ml/mageia-webteam/2011-July/001257.html
new file mode 100644
index 000000000..ee896aa7f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001257.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CBANLkTikVEcmqLf7AFNehc7%2B-30BAF3HohQ%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="001256.html">
+ <LINK REL="Next" HREF="001258.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CBANLkTikVEcmqLf7AFNehc7%2B-30BAF3HohQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">molch.b at googlemail.com
+ </A><BR>
+ <I>Fri Jul 1 01:25:33 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001256.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001258.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1257">[ date ]</a>
+ <a href="thread.html#1257">[ thread ]</a>
+ <a href="subject.html#1257">[ subject ]</a>
+ <a href="author.html#1257">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/7/1 nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt;:
+&gt;<i> On Thu, 30 Jun 2011, Wolfgang Bornath wrote:
+</I>&gt;<i>
+</I>&gt;&gt;<i> 2011/6/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+</I>&gt;&gt;<i> &gt; &#160;- are these still valid?
+</I>&gt;&gt;<i> &gt; &#160; - (wobo) <A HREF="https://bugs.mageia.org/show_bug.cgi?id=860">https://bugs.mageia.org/show_bug.cgi?id=860</A> still valid?
+</I>&gt;&gt;<i> &gt; (German forums);
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> If you mean the forum redirection?
+</I>&gt;&gt;<i> &#160;- <A HREF="https://forums.mageia.org/de">https://forums.mageia.org/de</A> without trailing slash still gives 403
+</I>&gt;<i>
+</I>&gt;<i> Fixed now.
+</I>&gt;<i>
+</I>&gt;&gt;<i> &#160;- <A HREF="https://forums.mageia.org">https://forums.mageia.org</A> goes to the english forum, no matter what
+</I>&gt;&gt;<i> browser language
+</I>&gt;<i>
+</I>&gt;<i> What should it do ?
+</I>
+It should go to the /[$lang] of the browser setup, that's what we've
+been talking about in #860
+Like it is with the main mageia page and others.
+
+EX:
+If I have &quot;German&quot; as main language in my browser it should go to
+forums.mageia.org/de
+It goes to /en currently, no matter what browser setting there is.
+I even switched to French and it also goes to /en
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001256.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001258.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1257">[ date ]</a>
+ <a href="thread.html#1257">[ thread ]</a>
+ <a href="subject.html#1257">[ subject ]</a>
+ <a href="author.html#1257">[ 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-July/001258.html b/zarb-ml/mageia-webteam/2011-July/001258.html
new file mode 100644
index 000000000..0168827d9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001258.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CBANLkTin3zHsrVp8re3%2BBwvG44fZE0_0r3g%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="001257.html">
+ <LINK REL="Next" HREF="001259.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CBANLkTin3zHsrVp8re3%2BBwvG44fZE0_0r3g%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">molch.b at googlemail.com
+ </A><BR>
+ <I>Fri Jul 1 01:27:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001257.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001259.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1258">[ date ]</a>
+ <a href="thread.html#1258">[ thread ]</a>
+ <a href="subject.html#1258">[ subject ]</a>
+ <a href="author.html#1258">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Sorry, forgot one thing:
+
+2011/7/1 nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt;:
+&gt;<i> On Thu, 30 Jun 2011, Wolfgang Bornath wrote:
+</I>&gt;<i>
+</I>&gt;&gt;<i> 2011/6/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+</I>&gt;&gt;<i> &gt; &#160;- are these still valid?
+</I>&gt;&gt;<i> &gt; &#160; - (wobo) <A HREF="https://bugs.mageia.org/show_bug.cgi?id=860">https://bugs.mageia.org/show_bug.cgi?id=860</A> still valid?
+</I>&gt;&gt;<i> &gt; (German forums);
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> If you mean the forum redirection?
+</I>&gt;&gt;<i> &#160;- <A HREF="https://forums.mageia.org/de">https://forums.mageia.org/de</A> without trailing slash still gives 403
+</I>&gt;<i>
+</I>&gt;<i> Fixed now.
+</I>
+Thx a lot! This was cause of some disturbances.
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001257.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001259.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1258">[ date ]</a>
+ <a href="thread.html#1258">[ thread ]</a>
+ <a href="subject.html#1258">[ subject ]</a>
+ <a href="author.html#1258">[ 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-July/001259.html b/zarb-ml/mageia-webteam/2011-July/001259.html
new file mode 100644
index 000000000..57a556d7c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001259.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CBANLkTin_na4qp2Vtf74KfWBBW7JF-e0CJg%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="001258.html">
+ <LINK REL="Next" HREF="001281.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CBANLkTin_na4qp2Vtf74KfWBBW7JF-e0CJg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">molch.b at googlemail.com
+ </A><BR>
+ <I>Fri Jul 1 02:02:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001258.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001281.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1259">[ date ]</a>
+ <a href="thread.html#1259">[ thread ]</a>
+ <a href="subject.html#1259">[ subject ]</a>
+ <a href="author.html#1259">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+&gt;<i> &#160;- global nav bar:
+</I>&gt;<i> &#160; - full width, with some more items (wiki, bugzilla)
+</I>&gt;<i> &#160; - statically spread on a few platforms to evaluate in place
+</I>&gt;<i> (forums.mageia.org, bugs; wiki and blog are next)
+</I>
+Just saw it on the english forum, nice-to-have
+It will be done for the German forum as well?
+
+--
+wobo
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001258.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001281.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1259">[ date ]</a>
+ <a href="thread.html#1259">[ thread ]</a>
+ <a href="subject.html#1259">[ subject ]</a>
+ <a href="author.html#1259">[ 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-July/001260.html b/zarb-ml/mageia-webteam/2011-July/001260.html
new file mode 100644
index 000000000..8a163c1b0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001260.html
@@ -0,0 +1,149 @@
+<!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=%3C20110701220003.E516143277%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="001285.html">
+ <LINK REL="Next" HREF="001261.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=%3C20110701220003.E516143277%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 2 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001285.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001261.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1260">[ date ]</a>
+ <a href="thread.html#1260">[ thread ]</a>
+ <a href="subject.html#1260">[ subject ]</a>
+ <a href="author.html#1260">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+ &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001285.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001261.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1260">[ date ]</a>
+ <a href="thread.html#1260">[ thread ]</a>
+ <a href="subject.html#1260">[ subject ]</a>
+ <a href="author.html#1260">[ 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-July/001261.html b/zarb-ml/mageia-webteam/2011-July/001261.html
new file mode 100644
index 000000000..d78705876
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001261.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110702114526.3F02343273%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="001260.html">
+ <LINK REL="Next" HREF="001262.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110702114526.3F02343273%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 2 13:45:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001260.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001262.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1261">[ date ]</a>
+ <a href="thread.html#1261">[ thread ]</a>
+ <a href="subject.html#1261">[ subject ]</a>
+ <a href="author.html#1261">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #8 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-07-02 15:45:26 CEST ---
+(In reply to comment #7)
+&gt;<i> (In reply to comment #6)
+</I>&gt;<i> &gt; My impression of the council discussion (and the consequent decision) is
+</I>&gt;<i> &gt; that there was concern about everyone having a &quot;warm and cuddly&quot;
+</I>&gt;<i> &gt; feeling about Mageia (and each other)
+</I>&gt;<i>
+</I>&gt;<i> Concern #1 was about the attitude, and indeed, how this would turn out for
+</I>&gt;<i> everyone. Concern #2 was about the technical topic at hand, and a decision has
+</I>&gt;<i> been reached, waiting to be fully implemented.
+</I>&gt;<i>
+</I>
+As I saw it the discussion on the real issue was minimal and the &quot;decision&quot; was
+pushed without any proper agreement.
+
+&gt;<i> &gt; and little or no consideration of the utility of the Forum as a research resource
+</I>&gt;<i> &gt; for users and of the fact that this limit can make life difficult for those people
+</I>&gt;<i> &gt; who spend time providing assistance to other users.
+</I>
+Exactly
+
+&gt;<i> You have to distinguish the forum-as-a-discussion-place (where keeping posts in
+</I>&gt;<i> their original form is crucial) and the forum-as-a-support/doc-tool-place
+</I>&gt;<i> (where obsoleting/updating posts, with update timestamps is crucial as well).
+</I>&gt;<i>
+</I>&gt;<i> Both have their own contingencies and may be best served by distinct platform
+</I>&gt;<i> (the former is more in phpBB's original purpose, the latter more in an
+</I>&gt;<i> equivalent to <A HREF="http://stackoverflow.com/">http://stackoverflow.com/</A> platform).
+</I>&gt;<i>
+</I>&gt;<i> If those are to be served by the same platform, that makes several use cases to
+</I>&gt;<i> satisfy. And here obviously, the forum was first thought as a discussion
+</I>&gt;<i> platform.
+</I>
+Well no actually :-
+<A HREF="http://www.mageia.org/en/support/">http://www.mageia.org/en/support/</A>
+
+This shows the forum as primarily a &quot;support forum&quot; not as a discussion place.
+
+&gt;<i>
+</I>&gt;<i> So you may of course argue of the contrary, but arguing won't lead as far as
+</I>&gt;<i> really giving a hand, joining the team and helping to better configure the
+</I>&gt;<i> team, the platform, and if needed, a distinct platform.
+</I>&gt;<i>
+</I>
+By reporting this bug the intention was to give a hand at improving the forum
+by making the job of those prepared to help and offer support easier.
+Likewise with <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A> which has also
+fallen on stony ground.
+
+&gt;<i> Furthermore, arguing of one's experience with forum is not that much helpful -
+</I>&gt;<i> some have satisfying experience with forums with no edit capacity, as that was
+</I>&gt;<i> an expected behaviour.
+</I>
+The whole point of this bug report is that this is NOT expected behaviour. Most
+of the helpers in this forum come from Mandriva where the forum worked just
+fine without any time limit.
+
+This bug report is not about politics but simply about the time limit on the
+editing of posts.
+
+Can we put the politics to one side and discuss just the bug please?
+
+BTW I tried to get a post modified by reporting it to the mods with clear
+instructions about what needed changing and it's now at 3 days and counting
+with no response.
+
+--
+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="001260.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001262.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1261">[ date ]</a>
+ <a href="thread.html#1261">[ thread ]</a>
+ <a href="subject.html#1261">[ subject ]</a>
+ <a href="author.html#1261">[ 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-July/001262.html b/zarb-ml/mageia-webteam/2011-July/001262.html
new file mode 100644
index 000000000..07956acdb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001262.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110702120448.BE12543275%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="001261.html">
+ <LINK REL="Next" HREF="001263.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110702120448.BE12543275%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 2 14:04:48 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001261.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001263.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1262">[ date ]</a>
+ <a href="thread.html#1262">[ thread ]</a>
+ <a href="subject.html#1262">[ subject ]</a>
+ <a href="author.html#1262">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #9 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-07-02 14:04:48 CEST ---
+(In reply to comment #8)
+&gt;<i>
+</I>&gt;<i> BTW I tried to get a post modified by reporting it to the mods with clear
+</I>&gt;<i> instructions about what needed changing and it's now at 3 days and counting
+</I>&gt;<i> with no response.
+</I>
+Normally there are but 2 active Global Moderators present and it seems that
+reports go only to Global Moderators. So it may take a while and your request
+may become obsolete or void before the 2 people have the time to response.
+
+I really don't want to comment on that.
+
+--
+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="001261.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001263.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1262">[ date ]</a>
+ <a href="thread.html#1262">[ thread ]</a>
+ <a href="subject.html#1262">[ subject ]</a>
+ <a href="author.html#1262">[ 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-July/001263.html b/zarb-ml/mageia-webteam/2011-July/001263.html
new file mode 100644
index 000000000..f7b7a77ac
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001263.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110702133935.5D4B943277%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="001262.html">
+ <LINK REL="Next" HREF="001264.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110702133935.5D4B943277%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 2 15:39:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001262.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001264.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1263">[ date ]</a>
+ <a href="thread.html#1263">[ thread ]</a>
+ <a href="subject.html#1263">[ subject ]</a>
+ <a href="author.html#1263">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #10 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-07-02 15:39:35 CEST ---
+(In reply to comment #9)
+&gt;<i> (In reply to comment #8)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; BTW I tried to get a post modified by reporting it to the mods with clear
+</I>&gt;<i> &gt; instructions about what needed changing and it's now at 3 days and counting
+</I>&gt;<i> &gt; with no response.
+</I>&gt;<i>
+</I>&gt;<i> Normally there are but 2 active Global Moderators present and it seems that
+</I>&gt;<i> reports go only to Global Moderators. So it may take a while and your request
+</I>&gt;<i> may become obsolete or void before the 2 people have the time to response.
+</I>&gt;<i>
+</I>
+Which I half expected, despite:-
+
+quote maat in forum thread:-
+&quot;For this moderators will always be available and willing to help :)&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="001262.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001264.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1263">[ date ]</a>
+ <a href="thread.html#1263">[ thread ]</a>
+ <a href="subject.html#1263">[ subject ]</a>
+ <a href="author.html#1263">[ 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-July/001264.html b/zarb-ml/mageia-webteam/2011-July/001264.html
new file mode 100644
index 000000000..f3f46ed0d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001264.html
@@ -0,0 +1,151 @@
+<!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=%3C20110702220003.F0EAB43297%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="001263.html">
+ <LINK REL="Next" HREF="001265.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=%3C20110702220003.F0EAB43297%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 3 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001263.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001265.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1264">[ date ]</a>
+ <a href="thread.html#1264">[ thread ]</a>
+ <a href="subject.html#1264">[ subject ]</a>
+ <a href="author.html#1264">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+ &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+ Display of user details/avatars
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1914">https://bugs.mageia.org/show_bug.cgi?id=1914</A>
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001263.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001265.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1264">[ date ]</a>
+ <a href="thread.html#1264">[ thread ]</a>
+ <a href="subject.html#1264">[ subject ]</a>
+ <a href="author.html#1264">[ 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-July/001265.html b/zarb-ml/mageia-webteam/2011-July/001265.html
new file mode 100644
index 000000000..f12666001
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001265.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110702221306.A1FB443285%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="001264.html">
+ <LINK REL="Next" HREF="001266.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110702221306.A1FB443285%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 3 00:13:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001264.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001266.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1265">[ date ]</a>
+ <a href="thread.html#1265">[ thread ]</a>
+ <a href="subject.html#1265">[ subject ]</a>
+ <a href="author.html#1265">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #11 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-07-03 00:13:06 CEST ---
+I would like to thank Isadora for editing my post - exactly as I requested.
+It's just so annoying and frustrating that I could not do it myself.
+
+--
+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="001264.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001266.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1265">[ date ]</a>
+ <a href="thread.html#1265">[ thread ]</a>
+ <a href="subject.html#1265">[ subject ]</a>
+ <a href="author.html#1265">[ 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-July/001266.html b/zarb-ml/mageia-webteam/2011-July/001266.html
new file mode 100644
index 000000000..2ffa4fb0f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001266.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110703061824.F34F5431D4%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="001265.html">
+ <LINK REL="Next" HREF="001267.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>david bowman</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110703061824.F34F5431D4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 3 08:18:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001265.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001267.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1266">[ date ]</a>
+ <a href="thread.html#1266">[ thread ]</a>
+ <a href="subject.html#1266">[ subject ]</a>
+ <a href="author.html#1266">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+david bowman &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dubigrasu at yahoo.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dubigrasu at yahoo.com</A>
+
+--- Comment #12 from david bowman &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dubigrasu at yahoo.com</A>&gt; 2011-07-03 10:18:25 CEST ---
+OK, so it boils down to this:
+
+A council somewhere sometime decided what is best for the Mageia forum users.
+Some users agreed but others not.
+
+Would be possible to let Mageia forum users decide what is best for them?
+Suppose we'll have a poll with some possible variants on the forum itself.
+No, not another topic on that so we can start arguing again, just the vote
+without the possibility to comment.
+
+Will the council take that in consideration as a valid users decision?
+
+--
+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="001265.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001267.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1266">[ date ]</a>
+ <a href="thread.html#1266">[ thread ]</a>
+ <a href="subject.html#1266">[ subject ]</a>
+ <a href="author.html#1266">[ 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-July/001267.html b/zarb-ml/mageia-webteam/2011-July/001267.html
new file mode 100644
index 000000000..a75e545a6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001267.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+ </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%201779%5D%20Forum%20does%20not%20provide%20prominent%0A%09registration%20link&In-Reply-To=%3C20110703144006.D92F44320C%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="001266.html">
+ <LINK REL="Next" HREF="001268.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link</H1>
+ <B>Maat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201779%5D%20Forum%20does%20not%20provide%20prominent%0A%09registration%20link&In-Reply-To=%3C20110703144006.D92F44320C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 3 16:40:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001266.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001268.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1267">[ date ]</a>
+ <a href="thread.html#1267">[ thread ]</a>
+ <a href="subject.html#1267">[ subject ]</a>
+ <a href="author.html#1267">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+
+Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>
+
+--- Comment #2 from Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; 2011-07-03 16:40:06 CEST ---
+Error in template 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="001266.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001268.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1267">[ date ]</a>
+ <a href="thread.html#1267">[ thread ]</a>
+ <a href="subject.html#1267">[ subject ]</a>
+ <a href="author.html#1267">[ 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-July/001268.html b/zarb-ml/mageia-webteam/2011-July/001268.html
new file mode 100644
index 000000000..8adfe1949
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001268.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110703145819.706574325A%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="001267.html">
+ <LINK REL="Next" HREF="001269.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110703145819.706574325A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 3 16:58:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001267.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI>Next message: <A HREF="001269.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1268">[ date ]</a>
+ <a href="thread.html#1268">[ thread ]</a>
+ <a href="subject.html#1268">[ subject ]</a>
+ <a href="author.html#1268">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #25 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-07-03 16:58:19 CEST ---
+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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001267.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI>Next message: <A HREF="001269.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1268">[ date ]</a>
+ <a href="thread.html#1268">[ thread ]</a>
+ <a href="subject.html#1268">[ subject ]</a>
+ <a href="author.html#1268">[ 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-July/001269.html b/zarb-ml/mageia-webteam/2011-July/001269.html
new file mode 100644
index 000000000..821e6365d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001269.html
@@ -0,0 +1,282 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110703162338.F249B4328C%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="001268.html">
+ <LINK REL="Next" HREF="001270.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Maat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110703162338.F249B4328C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 3 18:23:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001268.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001270.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1269">[ date ]</a>
+ <a href="thread.html#1269">[ thread ]</a>
+ <a href="subject.html#1269">[ subject ]</a>
+ <a href="author.html#1269">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>
+
+--- Comment #13 from Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; 2011-07-03 20:23:39 CEST ---
+(In reply to comment #8)
+&gt;<i> As I saw it the discussion on the real issue was minimal and the &quot;decision&quot; was
+</I>&gt;<i> pushed without any proper agreement.
+</I>&gt;<i>
+</I>
+Then let's see if we can do better here with objective arguments.
+
+
+&gt;<i> &gt; &gt; and little or no consideration of the utility of the Forum as a research resource
+</I>&gt;<i> &gt; &gt; for users and of the fact that this limit can make life difficult for those people
+</I>&gt;<i> &gt; &gt; who spend time providing assistance to other users.
+</I>&gt;<i>
+</I>&gt;<i> Exactly
+</I>&gt;<i>
+</I>
+On the contrary : BIG consideration was given to this point. But these special
+users that are helping others on a regular basis are not common users. As
+packagers or translators, or sysadmin are not common users either. All follow
+mentoring process and are given the proper privileges once they have been
+considered ready to do their jobs without help or control...
+
+Users that write tutorials or that helps others on a regular basis can be
+granted the proper privileges to edit own posts or other posts without
+limitation. (Well for this point of posts needing permanent edition like
+tutorials... see later doc-tool part which is a discussion)
+
+But on a default basis no-one with common sense would give root password on the
+servers or allow Mr Unknown to push whatever package he wants to the official
+repositories... well on a less critical context users privileges on official
+forums need obviously to follow similar scheme as other teams.
+
+Roughy :
+
+=&gt; Read only of topics for everybody (opensource way)
+=&gt; Comment / Create topics for common subscribers
+=&gt; More privileges for active forums contributors (like people helping others
+on a regular basis or writing tutorials, or packagers that make the effort to
+come to help users...) privileges that can vary depending of contributors
+needs/activities.
+
+
+&gt;<i> &gt; You have to distinguish the forum-as-a-discussion-place (where keeping posts in
+</I>&gt;<i> &gt; their original form is crucial) and the forum-as-a-support/doc-tool-place
+</I>&gt;<i> &gt; (where obsoleting/updating posts, with update timestamps is crucial as well).
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Both have their own contingencies and may be best served by distinct platform
+</I>&gt;<i> &gt; (the former is more in phpBB's original purpose, the latter more in an
+</I>&gt;<i> &gt; equivalent to <A HREF="http://stackoverflow.com/">http://stackoverflow.com/</A> platform).
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; If those are to be served by the same platform, that makes several use cases to
+</I>&gt;<i> &gt; satisfy. And here obviously, the forum was first thought as a discussion
+</I>&gt;<i> &gt; platform.
+</I>&gt;<i>
+</I>&gt;<i> Well no actually :-
+</I>&gt;<i> <A HREF="http://www.mageia.org/en/support/">http://www.mageia.org/en/support/</A>
+</I>&gt;<i>
+</I>&gt;<i> This shows the forum as primarily a &quot;support forum&quot; not as a discussion place.
+</I>&gt;<i>
+</I>
+There is njon contradiction there : Many projects use bugtrackers like Buzilla
+as a support system (others use mailing lists or Sourceforge/Savannah embedded
+miniforums). All those don't allow late edition. And very few consider that
+abnormal :)
+
+Support IS discussion and nothing more :)
+
+Considering it as a doc-tool place is another thing... very different indeed.
+
+This last point needs a proper and broader discussion because if you start
+considering the forum as a place where storing tutorial, guides, howtos and
+other things with a long lifetime you'll find wiki advocates on your way. And
+till we have that point settled i'll remain prudent on edition features
+activation and tutos/howtos/guides team building on the forum because that
+would put me in position of puching ball (and i'm not that fond of such
+roleplay).
+
+And to finish on that : we can separate discussions and permanent-doc-tool
+publication with the same phpbb platform (provided the wiki/forum discussion is
+properly dealt with)... but at the moment the forum is (i confirm) more thought
+as a discussion/support platform thant a doc/tool/publication one.
+
+(We can also consider to change this during discussions)
+
+&gt;<i> &gt;
+</I>&gt;<i> &gt; So you may of course argue of the contrary, but arguing won't lead as far as
+</I>&gt;<i> &gt; really giving a hand, joining the team and helping to better configure the
+</I>&gt;<i> &gt; team, the platform, and if needed, a distinct platform.
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> By reporting this bug the intention was to give a hand at improving the forum
+</I>&gt;<i> by making the job of those prepared to help and offer support easier.
+</I>
+Well, at the moment if you have a true need to edit your posts because they
+look like
+tiny tutos/guides/howtos and because you prefer to work on the forum for these
+publication
+we can start an experimentation with you (specific user role like tutorial
+writer and/or specific
+forum area with a name to be defined) and see if the result is positive / users
+feedback...
+
+&gt;<i> Likewise with <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A> which has also
+</I>&gt;<i> fallen on stony ground.
+</I>&gt;<i>
+</I>
+It did not... but i'm not sure doing the reqested change bring more good than
+harm.
+(It can be reverted though if we have many users complainig and it will not put
+topic
+flow at risk on the contrary of edition privileges)
+
+
+&gt;<i> &gt; Furthermore, arguing of one's experience with forum is not that much helpful -
+</I>&gt;<i> &gt; some have satisfying experience with forums with no edit capacity, as that was
+</I>&gt;<i> &gt; an expected behaviour.
+</I>&gt;<i>
+</I>&gt;<i> The whole point of this bug report is that this is NOT expected behaviour. Most
+</I>&gt;<i> of the helpers in this forum come from Mandriva where the forum worked just
+</I>&gt;<i> fine without any time limit.
+</I>&gt;<i>
+</I>
+In my opinion it IS expected behavior : if you push words to the world (IRL
+speaking, or in mail or ir instant messaging) noone could expect to be able to
+get back in the future to erase the said words.
+
+In a forum if you say something and that people refer to it later in the topic
+(or elsewhere in personal blogs or bugtrackers or whatever) They expect the
+targeted post not to change because if it changes drastically their answers
+would loose sense. And that is not what one should expect.
+
+
+&gt;<i> This bug report is not about politics but simply about the time limit on the
+</I>&gt;<i> editing of posts.
+</I>&gt;<i>
+</I>&gt;<i> Can we put the politics to one side and discuss just the bug please?
+</I>&gt;<i>
+</I>
+Then you have technical and objective arguments on the matter itself here :)
+
+And for the &quot;valid&quot; reasons you gave :
+
+(In reply to comment #0)
+&gt;<i> There are many valid reasons why it may be necessary to edit a post.
+</I>&gt;<i>
+</I>&gt;<i> 1. It imparts incorrect information.
+</I>
+It could also allow to break valid information (think for example of spammers
+that could post unharmful links like screenshots with basic user question then
+change them 3 weeks later to push viagra or whatever)
+
+&gt;<i> 2. The information is out of date.
+</I>
+For this a later post is a better way because a big change on out of date
+information would result in many posts making no sense (like &quot;hey the link is
+broken : here is the good one&quot;).
+
+Further, sometimes the date can be still valid for some users or some versions
+of software (think that people don't always follow the update rythm... changing
+the data to match new versions would deprivate them from the original post
+which is what they need)
+
+For that editors discipline is the only solution (choosing between new post
+and/or update with a proper changelog so that users can know that the post was
+edited when and why...)
+
+And we would not expect such discipline from every user... so we come back to
+mentoring process and dedicated privileges for users that will play by the
+rules...
+
+&gt;<i> 3. A minor edit would improve comprehension.
+</I>&gt;<i>
+</I>
+For tutorials and things like that yes... but do we want forums to host such
+pieces of valuable information ? (See wiki vs forums discussion here above)
+
+For discussions : better explain later so that posts of users asking for
+precision do not loose sense.
+
+&gt;<i> In all these cases it is not appropriate to add another post to offer a
+</I>&gt;<i> correction as it may be several pages from the original post, also the
+</I>&gt;<i> incorrect post would still be available to be read.
+</I>&gt;<i>
+</I>
+Well as said above, it is often better to have access to the original post
+(wich is not necessarily &quot;incorrect&quot;) so that the logic flow of the following
+post is not broken. (Again: except for reference posts like tutos).
+
+
+&gt;<i> Forum posts are searched and used to solve problems in a similar way to the
+</I>&gt;<i> wiki.
+</I>&gt;<i> Imagine the author not being able to edit a wiki entry.
+</I>
+Yes but we DO HAVE a wiki and the forum is not necessarily supposed to compete
+with it... if you try to push the idea of having long life piece of information
+on the forum you'll have to pass over the dead bodies of wikis advocates :o)
+
+
+&gt;<i> BTW I tried to get a post modified by reporting it to the mods with clear
+</I>&gt;<i> instructions about what needed changing and it's now at 3 days and counting
+</I>&gt;<i> with no response.
+</I>
+You have had your post modified... there is still a mod we to finish (because
+nothin fit our needs for that) to accelerate processing of reports. Once done
+you'll wait far less.
+
+And for making a topic as Sloved a mod is also on it's way : so no need for
+edition on this aspect :)
+
+--
+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="001268.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001270.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1269">[ date ]</a>
+ <a href="thread.html#1269">[ thread ]</a>
+ <a href="subject.html#1269">[ subject ]</a>
+ <a href="author.html#1269">[ 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-July/001270.html b/zarb-ml/mageia-webteam/2011-July/001270.html
new file mode 100644
index 000000000..0146b9980
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001270.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+ </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%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20110703171239.B27FD43280%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="001269.html">
+ <LINK REL="Next" HREF="001271.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user</H1>
+ <B>Raphael Jadot</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20110703171239.B27FD43280%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 3 19:12:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001269.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001271.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1270">[ date ]</a>
+ <a href="thread.html#1270">[ thread ]</a>
+ <a href="subject.html#1270">[ subject ]</a>
+ <a href="author.html#1270">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+
+--- Comment #4 from Raphael Jadot &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ashledombos at hodo.fr</A>&gt; 2011-07-03 19:12:39 CEST ---
+Well in fact I asked this but Maat need some help and rda told me i have no
+need to be demoted, so I think this ticket can be closed if you agree
+
+--
+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="001269.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001271.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1270">[ date ]</a>
+ <a href="thread.html#1270">[ thread ]</a>
+ <a href="subject.html#1270">[ subject ]</a>
+ <a href="author.html#1270">[ 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-July/001271.html b/zarb-ml/mageia-webteam/2011-July/001271.html
new file mode 100644
index 000000000..44474c1d9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001271.html
@@ -0,0 +1,147 @@
+<!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=%3C20110703220003.9DEE6432A7%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="001270.html">
+ <LINK REL="Next" HREF="001272.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=%3C20110703220003.9DEE6432A7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jul 4 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001270.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="001272.html">[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1271">[ date ]</a>
+ <a href="thread.html#1271">[ thread ]</a>
+ <a href="subject.html#1271">[ subject ]</a>
+ <a href="author.html#1271">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+ &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+ Display of user details/avatars
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1914">https://bugs.mageia.org/show_bug.cgi?id=1914</A>
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001270.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="001272.html">[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1271">[ date ]</a>
+ <a href="thread.html#1271">[ thread ]</a>
+ <a href="subject.html#1271">[ subject ]</a>
+ <a href="author.html#1271">[ 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-July/001272.html b/zarb-ml/mageia-webteam/2011-July/001272.html
new file mode 100644
index 000000000..18a2272ab
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001272.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/
+ </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%202023%5D%20%5BNew%5D%20Bad%20link%20in%0A%09http%3A//www.mageia.org/en/contribute/&In-Reply-To=%3Cbug-2023-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="001271.html">
+ <LINK REL="Next" HREF="001278.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/</H1>
+ <B>Juergen Harms</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202023%5D%20%5BNew%5D%20Bad%20link%20in%0A%09http%3A//www.mageia.org/en/contribute/&In-Reply-To=%3Cbug-2023-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jul 4 17:10:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001271.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001278.html">[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1272">[ date ]</a>
+ <a href="thread.html#1272">[ thread ]</a>
+ <a href="subject.html#1272">[ subject ]</a>
+ <a href="author.html#1272">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2023">https://bugs.mageia.org/show_bug.cgi?id=2023</A>
+
+ Summary: Bad link in <A HREF="http://www.mageia.org/en/contribute/">http://www.mageia.org/en/contribute/</A>
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">juergen.harms at unige.ch</A>
+
+
+Description of problem:
+
+In the official mageia web site, the page
+
+<A HREF="http://www.mageia.org/en/contribute/">http://www.mageia.org/en/contribute/</A>
+
+resp. its paragraph on &quot;Donating&quot; contains the sentence &quot;We keep a public
+record of what we get and how we use it&quot; with a link to
+
+<A HREF="http://www.mageia.org/en/about/reports/">http://www.mageia.org/en/about/reports/</A>
+
+Clicking this link in a browser (Mozilla) gives &quot;Access forbidden, error 403&quot;.
+
+
+
+How reproducible:
+
+Always
+
+
+Steps to Reproduce:
+1. see &quot;Description of problem
+
+--
+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="001271.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001278.html">[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1272">[ date ]</a>
+ <a href="thread.html#1272">[ thread ]</a>
+ <a href="subject.html#1272">[ subject ]</a>
+ <a href="author.html#1272">[ 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-July/001273.html b/zarb-ml/mageia-webteam/2011-July/001273.html
new file mode 100644
index 000000000..eaa49fca2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001273.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110704214623.D6AA8432C2%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="001278.html">
+ <LINK REL="Next" HREF="001274.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110704214623.D6AA8432C2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jul 4 23:46:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001278.html">[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/
+</A></li>
+ <LI>Next message: <A HREF="001274.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1273">[ date ]</a>
+ <a href="thread.html#1273">[ thread ]</a>
+ <a href="subject.html#1273">[ subject ]</a>
+ <a href="author.html#1273">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</A>
+
+--- Comment #11 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-07-05 01:46:22 CEST ---
+Ok so the redirection on the web should ok soon.
+
+www.mageia.$tld -&gt; redirect to www.mageia.org/fromtld=$tld
+and since this is the season, I can bundle a 2nd redirection for the same
+price.
+
+For the dns, i will have to see how to do it properly ( ie, in a clean fashion
+from a technical point of view ).
+
+--
+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="001278.html">[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/
+</A></li>
+ <LI>Next message: <A HREF="001274.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1273">[ date ]</a>
+ <a href="thread.html#1273">[ thread ]</a>
+ <a href="subject.html#1273">[ subject ]</a>
+ <a href="author.html#1273">[ 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-July/001274.html b/zarb-ml/mageia-webteam/2011-July/001274.html
new file mode 100644
index 000000000..20d41f406
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001274.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110704224508.C8E83432E0%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="001273.html">
+ <LINK REL="Next" HREF="001275.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110704224508.C8E83432E0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jul 5 00:45:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001273.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001275.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1274">[ date ]</a>
+ <a href="thread.html#1274">[ thread ]</a>
+ <a href="subject.html#1274">[ subject ]</a>
+ <a href="author.html#1274">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</A>
+
+--- Comment #12 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-07-05 00:45:08 CEST ---
+I have added the dns part as well, but do not have any domain to test, so for
+now, we can consider this as being untested.
+
+For the sysadmins, everything is in :
+
+<A HREF="http://svnweb.mageia.org/adm/puppet/deployment/tld_redirections/manifests/init.pp?revision=1807&amp;view=markup">http://svnweb.mageia.org/adm/puppet/deployment/tld_redirections/manifests/init.pp?revision=1807&amp;view=markup</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="001273.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001275.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1274">[ date ]</a>
+ <a href="thread.html#1274">[ thread ]</a>
+ <a href="subject.html#1274">[ subject ]</a>
+ <a href="author.html#1274">[ 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-July/001275.html b/zarb-ml/mageia-webteam/2011-July/001275.html
new file mode 100644
index 000000000..0a641df1b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001275.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1932] 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%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110705012157.5D743432E2%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="001274.html">
+ <LINK REL="Next" HREF="001276.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110705012157.5D743432E2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jul 5 03:21:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001274.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001276.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1275">[ date ]</a>
+ <a href="thread.html#1275">[ thread ]</a>
+ <a href="subject.html#1275">[ subject ]</a>
+ <a href="author.html#1275">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1932">https://bugs.mageia.org/show_bug.cgi?id=1932</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| |FIXED
+
+--- Comment #5 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-07-05 05:21:57 CEST ---
+Ok, I forgot to commit. People should no longer receive the daily reminder.
+
+--
+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.
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001274.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001276.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1275">[ date ]</a>
+ <a href="thread.html#1275">[ thread ]</a>
+ <a href="subject.html#1275">[ subject ]</a>
+ <a href="author.html#1275">[ 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-July/001276.html b/zarb-ml/mageia-webteam/2011-July/001276.html
new file mode 100644
index 000000000..57a74c1c1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001276.html
@@ -0,0 +1,332 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110705230758.9C9BB432C4%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="001275.html">
+ <LINK REL="Next" HREF="001277.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110705230758.9C9BB432C4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jul 6 01:07:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001275.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001277.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1276">[ date ]</a>
+ <a href="thread.html#1276">[ thread ]</a>
+ <a href="subject.html#1276">[ subject ]</a>
+ <a href="author.html#1276">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #14 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-07-06 01:07:58 CEST ---
+(In reply to comment #13)
+
+&gt;<i>
+</I>&gt;<i> Then let's see if we can do better here with objective arguments.
+</I>&gt;<i>
+</I>That would be good - but if nothing will be done after then it's a waste of
+time.
+&gt;<i>
+</I>&gt;<i> &gt; &gt; &gt; and little or no consideration of the utility of the Forum as a research resource
+</I>&gt;<i> &gt; &gt; &gt; for users and of the fact that this limit can make life difficult for those people
+</I>&gt;<i> &gt; &gt; &gt; who spend time providing assistance to other users.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Exactly
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> On the contrary : BIG consideration was given to this point. But these special
+</I>&gt;<i> users that are helping others on a regular basis are not common users.
+</I>
+Yes, in most cases they are.
+
+&gt;<i> As packagers or translators, or sysadmin are not common users either. All
+</I>&gt;<i> follow
+</I>&gt;<i> mentoring process and are given the proper privileges once they have been
+</I>&gt;<i> considered ready to do their jobs without help or control...
+</I>
+You misunderstand forums - regular users helping each other.
+
+&gt;<i>
+</I>&gt;<i> Users that write tutorials or that helps others on a regular basis can be
+</I>&gt;<i> granted the proper privileges to edit own posts or other posts without
+</I>&gt;<i> limitation.
+</I>
+Oh boy - this just gets worse.
+
+&gt;<i> (Well for this point of posts needing permanent edition like
+</I>&gt;<i> tutorials... see later doc-tool part which is a discussion)
+</I>&gt;<i>
+</I>&gt;<i> But on a default basis no-one with common sense would give root password on the
+</I>&gt;<i> servers or allow Mr Unknown to push whatever package he wants to the official
+</I>&gt;<i> repositories... well on a less critical context users privileges on official
+</I>&gt;<i> forums need obviously to follow similar scheme as other teams.
+</I>
+Well, anyone can edit the wiki
+
+&gt;<i>
+</I>&gt;<i> Roughy :
+</I>&gt;<i>
+</I>&gt;<i> =&gt; Read only of topics for everybody (opensource way)
+</I>&gt;<i> =&gt; Comment / Create topics for common subscribers
+</I>&gt;<i> =&gt; More privileges for active forums contributors (like people helping others
+</I>&gt;<i> on a regular basis or writing tutorials, or packagers that make the effort to
+</I>&gt;<i> come to help users...) privileges that can vary depending of contributors
+</I>&gt;<i> needs/activities.
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> &gt; &gt; You have to distinguish the forum-as-a-discussion-place (where keeping posts in
+</I>&gt;<i> &gt; &gt; their original form is crucial) and the forum-as-a-support/doc-tool-place
+</I>&gt;<i> &gt; &gt; (where obsoleting/updating posts, with update timestamps is crucial as well).
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Both have their own contingencies and may be best served by distinct platform
+</I>&gt;<i> &gt; &gt; (the former is more in phpBB's original purpose, the latter more in an
+</I>&gt;<i> &gt; &gt; equivalent to <A HREF="http://stackoverflow.com/">http://stackoverflow.com/</A> platform).
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; If those are to be served by the same platform, that makes several use cases to
+</I>&gt;<i> &gt; &gt; satisfy. And here obviously, the forum was first thought as a discussion
+</I>&gt;<i> &gt; &gt; platform.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Well no actually :-
+</I>&gt;<i> &gt; <A HREF="http://www.mageia.org/en/support/">http://www.mageia.org/en/support/</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; This shows the forum as primarily a &quot;support forum&quot; not as a discussion place.
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> There is njon contradiction there : Many projects use bugtrackers like Buzilla
+</I>&gt;<i> as a support system (others use mailing lists or Sourceforge/Savannah embedded
+</I>&gt;<i> miniforums). All those don't allow late edition. And very few consider that
+</I>&gt;<i> abnormal :)
+</I>
+I'm not concerned with those. This is about the Mageia users forum.
+
+&gt;<i>
+</I>&gt;<i> Support IS discussion and nothing more :)
+</I>&gt;<i> but at the moment the forum is (i confirm) more thought
+</I>&gt;<i> as a discussion/support platform thant a doc/tool/publication one.
+</I>&gt;<i>
+</I>&gt;<i> (We can also consider to change this during discussions)
+</I>&gt;<i>
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; So you may of course argue of the contrary, but arguing won't lead as far as
+</I>&gt;<i> &gt; &gt; really giving a hand, joining the team and helping to better configure the
+</I>&gt;<i> &gt; &gt; team, the platform, and if needed, a distinct platform.
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; By reporting this bug the intention was to give a hand at improving the forum
+</I>&gt;<i> &gt; by making the job of those prepared to help and offer support easier.
+</I>&gt;<i>
+</I>&gt;<i> Well, at the moment if you have a true need to edit your posts because they
+</I>&gt;<i> look like
+</I>&gt;<i> tiny tutos/guides/howtos and because you prefer to work on the forum for these
+</I>&gt;<i> publication
+</I>&gt;<i> we can start an experimentation with you (specific user role like tutorial
+</I>&gt;<i> writer and/or specific
+</I>&gt;<i> forum area with a name to be defined) and see if the result is positive / users
+</I>&gt;<i> feedback...
+</I>
+No thanks - I would just like this bug fixed.
+&gt;<i>
+</I>&gt;<i> &gt; Likewise with <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A> which has also
+</I>&gt;<i> &gt; fallen on stony ground.
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> It did not...
+</I>
+Yes it did - no action has been taken.
+
+&gt;<i> but i'm not sure doing the reqested change bring more good than
+</I>&gt;<i> harm.
+</I>
+Again - just your decision.
+
+&gt;<i> (It can be reverted though if we have many users complainig and it will not put
+</I>&gt;<i> topic
+</I>&gt;<i> flow at risk on the contrary of edition privileges)
+</I>&gt;<i>
+</I>
+Many users already spoke in that bug.
+And how on earth could a reply notification spoil topic flow - lack of one just
+ruins it as the people in the topic don't know that there has been an answer.
+
+&gt;<i>
+</I>&gt;<i> In my opinion it IS expected behavior : if you push words to the world (IRL
+</I>&gt;<i> speaking, or in mail or ir instant messaging) noone could expect to be able to
+</I>&gt;<i> get back in the future to erase the said words.
+</I>
+I give up... sigh
+
+&gt;<i>
+</I>&gt;<i> In a forum if you say something and that people refer to it later in the topic
+</I>&gt;<i> (or elsewhere in personal blogs or bugtrackers or whatever) They expect the
+</I>&gt;<i> targeted post not to change because if it changes drastically their answers
+</I>&gt;<i> would loose sense. And that is not what one should expect.
+</I>&gt;<i>
+</I>
+Well I do expect it - and if I change something I make it obvious and also
+consider the impact on following posts.
+
+&gt;<i>
+</I>&gt;<i> &gt; This bug report is not about politics but simply about the time limit on the
+</I>&gt;<i> &gt; editing of posts.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Can we put the politics to one side and discuss just the bug please?
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> Then you have technical and objective arguments on the matter itself here :)
+</I>&gt;<i>
+</I>&gt;<i> And for the &quot;valid&quot; reasons you gave :
+</I>&gt;<i>
+</I>&gt;<i> (In reply to comment #0)
+</I>&gt;<i> &gt; There are many valid reasons why it may be necessary to edit a post.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; 1. It imparts incorrect information.
+</I>&gt;<i>
+</I>&gt;<i> It could also allow to break valid information (think for example of spammers
+</I>&gt;<i> that could post unharmful links like screenshots with basic user question then
+</I>&gt;<i> change them 3 weeks later to push viagra or whatever)
+</I>&gt;<i>
+</I>
+Now that's what mods are for.
+
+&gt;<i> &gt; 2. The information is out of date.
+</I>&gt;<i>
+</I>&gt;<i> For this a later post is a better way because a big change on out of date
+</I>&gt;<i> information would result in many posts making no sense (like &quot;hey the link is
+</I>&gt;<i> broken : here is the good one&quot;).
+</I>&gt;<i>
+</I>
+That depends on the person making the change having some sense - something
+which you seem to feel that no one else has.
+
+&gt;<i> Further, sometimes the date can be still valid for some users or some versions
+</I>&gt;<i> of software (think that people don't always follow the update rythm... changing
+</I>&gt;<i> the data to match new versions would deprivate them from the original post
+</I>&gt;<i> which is what they need)
+</I>&gt;<i>
+</I>
+Not always.
+
+&gt;<i> For that editors discipline is the only solution (choosing between new post
+</I>&gt;<i> and/or update with a proper changelog so that users can know that the post was
+</I>&gt;<i> edited when and why...)
+</I>&gt;<i>
+</I>
+Exactly - so where is the problem?
+
+&gt;<i> And we would not expect such discipline from every user...
+</I>
+Here we go again - users are idiots - we must protect the world from them -
+attitude.
+
+&gt;<i> so we come back to
+</I>&gt;<i> mentoring process and dedicated privileges for users that will play by the
+</I>&gt;<i> rules...
+</I>
+So now I need mentoring to use a forum in the way that I have used it in
+Mandriva for the last 2-3 years?
+
+&gt;<i>
+</I>&gt;<i> &gt; 3. A minor edit would improve comprehension.
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> For tutorials and things like that yes... but do we want forums to host such
+</I>&gt;<i> pieces of valuable information ? (See wiki vs forums discussion here above)
+</I>
+Again - anyone can edit a wiki without mentoring
+
+&gt;<i>
+</I>&gt;<i> For discussions : better explain later so that posts of users asking for
+</I>&gt;<i> precision do not loose sense.
+</I>&gt;<i>
+</I>&gt;<i> &gt; In all these cases it is not appropriate to add another post to offer a
+</I>&gt;<i> &gt; correction as it may be several pages from the original post, also the
+</I>&gt;<i> &gt; incorrect post would still be available to be read.
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> Well as said above, it is often better to have access to the original post
+</I>&gt;<i> (wich is not necessarily &quot;incorrect&quot;) so that the logic flow of the following
+</I>&gt;<i> post is not broken. (Again: except for reference posts like tutos).
+</I>&gt;<i>
+</I>
+Again, users are quite capable of deciding what is appropriate.
+
+&gt;<i>
+</I>&gt;<i> &gt; Forum posts are searched and used to solve problems in a similar way to the
+</I>&gt;<i> &gt; wiki.
+</I>&gt;<i> &gt; Imagine the author not being able to edit a wiki entry.
+</I>&gt;<i>
+</I>&gt;<i> Yes but we DO HAVE a wiki and the forum is not necessarily supposed to compete
+</I>&gt;<i> with it... if you try to push the idea of having long life piece of information
+</I>&gt;<i> on the forum you'll have to pass over the dead bodies of wikis advocates :o)
+</I>&gt;<i>
+</I>
+Users are always pushed to search the forum for the answer to a problem before
+posting - what are they looking for if it's not information?
+
+&gt;<i>
+</I>&gt;<i> &gt; BTW I tried to get a post modified by reporting it to the mods with clear
+</I>&gt;<i> &gt; instructions about what needed changing and it's now at 3 days and counting
+</I>&gt;<i> &gt; with no response.
+</I>&gt;<i>
+</I>&gt;<i> You have had your post modified... there is still a mod we to finish (because
+</I>&gt;<i> nothin fit our needs for that) to accelerate processing of reports. Once done
+</I>&gt;<i> you'll wait far less.
+</I>
+Thank you, yes and it did not cause any of the supposedly negative issues that
+you raised earlier, and neither would it if I had done it myself.
+
+&gt;<i>
+</I>&gt;<i> And for making a topic as Sloved a mod is also on it's way : so no need for
+</I>&gt;<i> edition on this aspect :)
+</I>
+And will you be able to un-solve it as well if the problem re-appears, as can
+often be the case?
+
+--
+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="001275.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001277.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1276">[ date ]</a>
+ <a href="thread.html#1276">[ thread ]</a>
+ <a href="subject.html#1276">[ subject ]</a>
+ <a href="author.html#1276">[ 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-July/001277.html b/zarb-ml/mageia-webteam/2011-July/001277.html
new file mode 100644
index 000000000..4b4a50f48
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001277.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110705234018.D8F51432E1%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="001276.html">
+ <LINK REL="Next" HREF="001279.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110705234018.D8F51432E1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jul 6 01:40:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001276.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001279.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1277">[ date ]</a>
+ <a href="thread.html#1277">[ thread ]</a>
+ <a href="subject.html#1277">[ subject ]</a>
+ <a href="author.html#1277">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #15 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-07-06 03:40:18 CEST ---
+Ok, I did not want to touch this again but this is just too much:
+
+(In reply to comment #13)
+&gt;<i>
+</I>&gt;<i> &gt; This shows the forum as primarily a &quot;support forum&quot; not as a discussion place.
+</I>
+It is both or nothing. A forum is what the users of the forum make of it. If
+they like it they will stay, if not they won't stay - and there is nothing YOU
+can do about it.
+
+&gt;<i> And we would not expect such discipline from every user... so we come back to
+</I>&gt;<i> mentoring process and dedicated privileges for users that will play by the
+</I>&gt;<i> rules...
+</I>
+Ask any user if he wants to be &quot;mentored&quot; to use the forum - I could think of
+some answers you will get. And I can think of some users who will just shrug
+their shoulders and go away. Then you can mentor the rest.
+
+Don't you udnerstand that the forum is something WE (Mageia) needs? The users
+don't need it - if there is none (or none they like) they will just go their
+way. But Mageia needs the forum to gather users who will possibly become
+contributors or advocates or spreaders of Mageia.
+
+According to what you write I definitely need to be mentored.
+
+--
+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="001276.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001279.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1277">[ date ]</a>
+ <a href="thread.html#1277">[ thread ]</a>
+ <a href="subject.html#1277">[ subject ]</a>
+ <a href="author.html#1277">[ 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-July/001278.html b/zarb-ml/mageia-webteam/2011-July/001278.html
new file mode 100644
index 000000000..f752bdcd4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001278.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/
+ </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%202023%5D%20Bad%20link%20in%0A%09http%3A//www.mageia.org/en/contribute/&In-Reply-To=%3C20110706170859.4BFA143302%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="001272.html">
+ <LINK REL="Next" HREF="001273.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202023%5D%20Bad%20link%20in%0A%09http%3A//www.mageia.org/en/contribute/&In-Reply-To=%3C20110706170859.4BFA143302%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jul 6 19:08:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001272.html">[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/
+</A></li>
+ <LI>Next message: <A HREF="001273.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1278">[ date ]</a>
+ <a href="thread.html#1278">[ thread ]</a>
+ <a href="subject.html#1278">[ subject ]</a>
+ <a href="author.html#1278">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2023">https://bugs.mageia.org/show_bug.cgi?id=2023</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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-07-06 19:08:59 CEST ---
+Fixed, redirects to last report (today 2011). 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="001272.html">[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/
+</A></li>
+ <LI>Next message: <A HREF="001273.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1278">[ date ]</a>
+ <a href="thread.html#1278">[ thread ]</a>
+ <a href="subject.html#1278">[ subject ]</a>
+ <a href="author.html#1278">[ 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-July/001279.html b/zarb-ml/mageia-webteam/2011-July/001279.html
new file mode 100644
index 000000000..8f0e76cba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001279.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110706171228.11D9243321%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="001277.html">
+ <LINK REL="Next" HREF="001280.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110706171228.11D9243321%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jul 6 19:12:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001277.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001280.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1279">[ date ]</a>
+ <a href="thread.html#1279">[ thread ]</a>
+ <a href="subject.html#1279">[ subject ]</a>
+ <a href="author.html#1279">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</A>
+
+--- Comment #13 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-07-06 19:12:28 CEST ---
+Thanks. We could test with mageia.org, if Florin has the info to update his DNS
+with.
+
+Once this is done, test with:
+ * go to <A HREF="http://www.mageia.ro/">http://www.mageia.ro/</A>
+ * should be rewritten into <A HREF="http://www.mageia.org/?fromtld=ro">http://www.mageia.org/?fromtld=ro</A>
+ * which in turn is rewritten into <A HREF="http://www.mageia.org/ro/">http://www.mageia.org/ro/</A>
+ * if tld is unknown, it redirects to <A HREF="http://www.mageia.org/?langs">http://www.mageia.org/?langs</A> that lists
+currently supported locales.
+
+--
+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="001277.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001280.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1279">[ date ]</a>
+ <a href="thread.html#1279">[ thread ]</a>
+ <a href="subject.html#1279">[ subject ]</a>
+ <a href="author.html#1279">[ 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-July/001280.html b/zarb-ml/mageia-webteam/2011-July/001280.html
new file mode 100644
index 000000000..0b3b13c46
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001280.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110706194905.A644A4332C%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="001279.html">
+ <LINK REL="Next" HREF="001286.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110706194905.A644A4332C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jul 6 21:49:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001279.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001286.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1280">[ date ]</a>
+ <a href="thread.html#1280">[ thread ]</a>
+ <a href="subject.html#1280">[ subject ]</a>
+ <a href="author.html#1280">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</A>
+
+--- Comment #14 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-07-06 23:49:05 CEST ---
+In fact, the .ro is already deployed, so the next step is on florin side.
+Either we host the dns, or he do.
+
+--
+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="001279.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001286.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1280">[ date ]</a>
+ <a href="thread.html#1280">[ thread ]</a>
+ <a href="subject.html#1280">[ subject ]</a>
+ <a href="author.html#1280">[ 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-July/001281.html b/zarb-ml/mageia-webteam/2011-July/001281.html
new file mode 100644
index 000000000..1c63ebad0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001281.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CCANa9xwtPff-nba_gmZOzWZGyuaOb9zUs7sB9ob6vDXt7O%2BF0yg%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="001259.html">
+ <LINK REL="Next" HREF="001282.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CCANa9xwtPff-nba_gmZOzWZGyuaOb9zUs7sB9ob6vDXt7O%2BF0yg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">rda at mageia.org
+ </A><BR>
+ <I>Thu Jul 7 18:23:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001259.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001282.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1281">[ date ]</a>
+ <a href="thread.html#1281">[ thread ]</a>
+ <a href="subject.html#1281">[ subject ]</a>
+ <a href="author.html#1281">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, Jul 1, 2011 at 02:02, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> 2011/6/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+</I>&gt;&gt;<i> &#160;- global nav bar:
+</I>&gt;&gt;<i> &#160; - full width, with some more items (wiki, bugzilla)
+</I>&gt;&gt;<i> &#160; - statically spread on a few platforms to evaluate in place
+</I>&gt;&gt;<i> (forums.mageia.org, bugs; wiki and blog are next)
+</I>&gt;<i>
+</I>&gt;<i> Just saw it on the english forum, nice-to-have
+</I>&gt;<i> It will be done for the German forum as well?
+</I>
+(sorry, had this in my drafts folder for too long :-p )
+
+Yes, definitely. But I am not sure to know how to navigate in the
+German admin section to edit the right template :-p
+
+(it's still a static thing, but it's good to see it in place for a start)
+
+If you want to translate it (and maybe put it in place), there's the
+whole CSS/HTML chunk available in the page code, that you can find
+looking for &quot;mageia.org global navigation bar&quot;.
+
+Cheers!
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001259.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001282.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1281">[ date ]</a>
+ <a href="thread.html#1281">[ thread ]</a>
+ <a href="subject.html#1281">[ subject ]</a>
+ <a href="author.html#1281">[ 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-July/001282.html b/zarb-ml/mageia-webteam/2011-July/001282.html
new file mode 100644
index 000000000..2e27673a3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001282.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CCA%2Bh4nj5GfYW-TL-Kg_%3DaHdf43tUag1-fzAX6jVwirmJw9NQXDQ%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="001281.html">
+ <LINK REL="Next" HREF="001283.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CCA%2Bh4nj5GfYW-TL-Kg_%3DaHdf43tUag1-fzAX6jVwirmJw9NQXDQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Jul 7 18:59:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001281.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001283.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1282">[ date ]</a>
+ <a href="thread.html#1282">[ thread ]</a>
+ <a href="subject.html#1282">[ subject ]</a>
+ <a href="author.html#1282">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/7/7 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+&gt;<i> On Fri, Jul 1, 2011 at 02:02, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> 2011/6/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+</I>&gt;&gt;&gt;<i> &#160;- global nav bar:
+</I>&gt;&gt;&gt;<i> &#160; - full width, with some more items (wiki, bugzilla)
+</I>&gt;&gt;&gt;<i> &#160; - statically spread on a few platforms to evaluate in place
+</I>&gt;&gt;&gt;<i> (forums.mageia.org, bugs; wiki and blog are next)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Just saw it on the english forum, nice-to-have
+</I>&gt;&gt;<i> It will be done for the German forum as well?
+</I>&gt;<i>
+</I>&gt;<i> (sorry, had this in my drafts folder for too long :-p )
+</I>&gt;<i>
+</I>&gt;<i> Yes, definitely. But I am not sure to know how to navigate in the
+</I>&gt;<i> German admin section to edit the right template :-p
+</I>
+How did you do it in the English part? It's exactly the same because
+it is not language dependent. You make the same changes in the same
+files.
+
+&gt;<i> If you want to translate it (and maybe put it in place), there's the
+</I>&gt;<i> whole CSS/HTML chunk available in the page code, that you can find
+</I>&gt;<i> looking for &quot;mageia.org global navigation bar&quot;.
+</I>
+In which page code? Where? In git?
+
+If nobody else then I'll have a look tomorrow.
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001281.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001283.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1282">[ date ]</a>
+ <a href="thread.html#1282">[ thread ]</a>
+ <a href="subject.html#1282">[ subject ]</a>
+ <a href="author.html#1282">[ 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-July/001283.html b/zarb-ml/mageia-webteam/2011-July/001283.html
new file mode 100644
index 000000000..ed52b5b2c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001283.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CCANa9xwsSpkhA9V8viiLWr5btJeb81z3WirXMEqraftupsWbs%2Bw%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="001282.html">
+ <LINK REL="Next" HREF="001284.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CCANa9xwsSpkhA9V8viiLWr5btJeb81z3WirXMEqraftupsWbs%2Bw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">rda at mageia.org
+ </A><BR>
+ <I>Thu Jul 7 21:48:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001282.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001284.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1283">[ date ]</a>
+ <a href="thread.html#1283">[ thread ]</a>
+ <a href="subject.html#1283">[ subject ]</a>
+ <a href="author.html#1283">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jul 7, 2011 at 18:59, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> How did you do it in the English part? It's exactly the same because
+</I>&gt;<i> it is not language dependent. You make the same changes in the same
+</I>&gt;<i> files.
+</I>
+Admin &gt; Styles &gt; Templates (in Style Components) &gt; prosilver &gt; edit &gt;
+overall_header.html
+
+and you add the snippet just after the &lt;body&gt;
+
+&gt;&gt;<i> If you want to translate it (and maybe put it in place), there's the
+</I>&gt;&gt;<i> whole CSS/HTML chunk available in the page code, that you can find
+</I>&gt;&gt;<i> looking for &quot;mageia.org global navigation bar&quot;.
+</I>&gt;<i>
+</I>&gt;<i> In which page code? Where? In git?
+</I>
+Snippet here, to be translated: <A HREF="http://chopapp.com/#oug7wyim">http://chopapp.com/#oug7wyim</A>
+
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001282.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001284.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1283">[ date ]</a>
+ <a href="thread.html#1283">[ thread ]</a>
+ <a href="subject.html#1283">[ subject ]</a>
+ <a href="author.html#1283">[ 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-July/001284.html b/zarb-ml/mageia-webteam/2011-July/001284.html
new file mode 100644
index 000000000..e2ebd83d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001284.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CCA%2Bh4nj7ukuWAwAB0vMi5s2NTEk7711VO-SDpA4ETL4emD-vhaQ%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="001283.html">
+ <LINK REL="Next" HREF="001285.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CCA%2Bh4nj7ukuWAwAB0vMi5s2NTEk7711VO-SDpA4ETL4emD-vhaQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Jul 7 22:36:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001283.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001285.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1284">[ date ]</a>
+ <a href="thread.html#1284">[ thread ]</a>
+ <a href="subject.html#1284">[ subject ]</a>
+ <a href="author.html#1284">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/7/7 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+&gt;<i> On Thu, Jul 7, 2011 at 18:59, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> How did you do it in the English part? It's exactly the same because
+</I>&gt;&gt;<i> it is not language dependent. You make the same changes in the same
+</I>&gt;&gt;<i> files.
+</I>&gt;<i>
+</I>&gt;<i> Admin &gt; Styles &gt; Templates (in Style Components) &gt; prosilver &gt; edit &gt;
+</I>&gt;<i> overall_header.html
+</I>
+Ah, ok, I never used that because at mandrivauser.de I had access to
+the server directly.
+
+&gt;<i> and you add the snippet just after the &lt;body&gt;
+</I>&gt;<i>
+</I>&gt;&gt;&gt;<i> If you want to translate it (and maybe put it in place), there's the
+</I>&gt;&gt;&gt;<i> whole CSS/HTML chunk available in the page code, that you can find
+</I>&gt;&gt;&gt;<i> looking for &quot;mageia.org global navigation bar&quot;.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> In which page code? Where? In git?
+</I>&gt;<i>
+</I>&gt;<i> Snippet here, to be translated: <A HREF="http://chopapp.com/#oug7wyim">http://chopapp.com/#oug7wyim</A>
+</I>
+Translated and integrated. Works.
+
+Thx!
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001283.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001285.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1284">[ date ]</a>
+ <a href="thread.html#1284">[ thread ]</a>
+ <a href="subject.html#1284">[ subject ]</a>
+ <a href="author.html#1284">[ 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-July/001285.html b/zarb-ml/mageia-webteam/2011-July/001285.html
new file mode 100644
index 000000000..aa95274cc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001285.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CCANa9xwvtXk--h9B_WCbGHyv1BpT2o%2Bbv2CH78pqwOjdeHNFuXw%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="001284.html">
+ <LINK REL="Next" HREF="001260.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CCANa9xwvtXk--h9B_WCbGHyv1BpT2o%2Bbv2CH78pqwOjdeHNFuXw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">rda at mageia.org
+ </A><BR>
+ <I>Thu Jul 7 22:49:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001284.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001260.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1285">[ date ]</a>
+ <a href="thread.html#1285">[ thread ]</a>
+ <a href="subject.html#1285">[ subject ]</a>
+ <a href="author.html#1285">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jul 7, 2011 at 22:36, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> Translated and integrated. Works.
+</I>
+Excellent, thanks!
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001284.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001260.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1285">[ date ]</a>
+ <a href="thread.html#1285">[ thread ]</a>
+ <a href="subject.html#1285">[ subject ]</a>
+ <a href="author.html#1285">[ 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-July/001286.html b/zarb-ml/mageia-webteam/2011-July/001286.html
new file mode 100644
index 000000000..049a01287
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001286.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+ </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%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110709173918.E5FAE4336B%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="001280.html">
+ <LINK REL="Next" HREF="001287.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20110709173918.E5FAE4336B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 9 19:39:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001280.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001287.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1286">[ date ]</a>
+ <a href="thread.html#1286">[ thread ]</a>
+ <a href="subject.html#1286">[ subject ]</a>
+ <a href="author.html#1286">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=13">https://bugs.mageia.org/show_bug.cgi?id=13</A>
+
+--- Comment #3 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-07-09 19:39:16 CEST ---
+what about this improvement ?
+
+--
+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="001280.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001287.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1286">[ date ]</a>
+ <a href="thread.html#1286">[ thread ]</a>
+ <a href="subject.html#1286">[ subject ]</a>
+ <a href="author.html#1286">[ 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-July/001287.html b/zarb-ml/mageia-webteam/2011-July/001287.html
new file mode 100644
index 000000000..8d9483349
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001287.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110710101326.02F054326F%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="001286.html">
+ <LINK REL="Next" HREF="001288.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Bicycle RepairMan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110710101326.02F054326F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 10 12:13:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001286.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="001288.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1287">[ date ]</a>
+ <a href="thread.html#1287">[ thread ]</a>
+ <a href="subject.html#1287">[ subject ]</a>
+ <a href="author.html#1287">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+Bicycle RepairMan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">eagle150 at gmx.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">eagle150 at gmx.de</A>
+
+--- Comment #16 from Bicycle RepairMan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">eagle150 at gmx.de</A>&gt; 2011-07-10 14:13:25 CEST ---
+Just writing to show the support for unlimited time-to-edit among the &quot;normal&quot;
+users so that nobody can say that every user wants a limited time-to-edit. I
+will probably leave the forum altogether if this is not resolved soon and
+without compromise.
+
+--
+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="001286.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="001288.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1287">[ date ]</a>
+ <a href="thread.html#1287">[ thread ]</a>
+ <a href="subject.html#1287">[ subject ]</a>
+ <a href="author.html#1287">[ 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-July/001288.html b/zarb-ml/mageia-webteam/2011-July/001288.html
new file mode 100644
index 000000000..a7bea6eee
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001288.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110710170055.C8DBD4335A%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="001287.html">
+ <LINK REL="Next" HREF="001289.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Sebastian Schroeer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110710170055.C8DBD4335A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 10 19:00:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001287.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001289.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1288">[ date ]</a>
+ <a href="thread.html#1288">[ thread ]</a>
+ <a href="subject.html#1288">[ subject ]</a>
+ <a href="author.html#1288">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+Sebastian Schroeer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sebixmag at web.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sebixmag at web.de</A>
+
+--- Comment #17 from Sebastian Schroeer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sebixmag at web.de</A>&gt; 2011-07-10 21:00:55 CEST ---
+(In reply to comment #13)
+
+&gt;<i> Users that write tutorials or that helps others on a regular basis can be
+</I>&gt;<i> granted the proper privileges to edit own posts or other posts without
+</I>&gt;<i> limitation.
+</I>
+Actually, I wouldn't want anybody to edit _my_ postings in a forum, except for
+myself. It's a different matter with wiki pages or etherpads, of course.
+
+
+&gt;<i>
+</I>&gt;<i> And we would not expect such discipline from every user... so we come back to
+</I>&gt;<i> mentoring process and dedicated privileges for users that will play by the
+</I>&gt;<i> rules...
+</I>&gt;<i>
+</I>
+I can assure you, if I may, that I am not prepared to undergo a mentoring
+process just to take part in forum discussions, regardless if someone considers
+me to be disciplined or not; sorry.
+
+
+Imho users should have unlimited time-to-edit access to their own postings.
+
+
+I think that, ideally, the system could automatically comment changes with a
+statement like &quot;This entry in the forum was changed on 07/07/2011 at 20:00 UTC
+by _nickname_of_user_&quot;.
+
+In the first 15 minutes or so after a posting one could even do without such an
+additional system message, just to allow users to repair careless mistakes
+they've just made.
+
+--
+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="001287.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001289.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1288">[ date ]</a>
+ <a href="thread.html#1288">[ thread ]</a>
+ <a href="subject.html#1288">[ subject ]</a>
+ <a href="author.html#1288">[ 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-July/001289.html b/zarb-ml/mageia-webteam/2011-July/001289.html
new file mode 100644
index 000000000..4ef9491f9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001289.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3C4E1D7AC9.8080802%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001288.html">
+ <LINK REL="Next" HREF="001290.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Matteo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3C4E1D7AC9.8080802%40gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">pasotti.matteo at gmail.com
+ </A><BR>
+ <I>Wed Jul 13 13:00:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001288.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001290.html">[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1289">[ date ]</a>
+ <a href="thread.html#1289">[ thread ]</a>
+ <a href="subject.html#1289">[ subject ]</a>
+ <a href="author.html#1289">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+Il 30/06/2011 16:32, Romain d'Alverny ha scritto:
+&gt;<i> On Tue, Jun 28, 2011 at 11:20, 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> I would like us to close the post-mortem (will gather notes from
+</I>&gt;&gt;<i> previous meetings and discussions) and see what we plan for the coming
+</I>&gt;&gt;<i> months - and welcome Matteo in the team!
+</I>&gt;<i>
+</I>&gt;<i> Ok, nothing much happened actually. It happens. So, Matteo, you're
+</I>&gt;<i> very welcome in the team! just ask questions when you feel it to; you
+</I>&gt;<i> may want to ask for a mentor in the team, to help you find your
+</I>&gt;<i> directions and know what to contribute to, or what to build.
+</I>&gt;<i>
+</I>Thank You Romain,
+I'm sorry for the late reply but I haven't read this email till now :-(
+A mentor would be really appreciated :-)
+Regards,
+- --
+Matteo
+
+() ascii ribbon campaign - against html e-mail
+/\ www.asciiribbon.org - against proprietary attachments
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.11 (GNU/Linux)
+Comment: Using GnuPG with Mageia - <A HREF="http://enigmail.mozdev.org/">http://enigmail.mozdev.org/</A>
+
+iQEcBAEBAgAGBQJOHXrEAAoJED3LowjDDWbNOGsH/j0gbhAYJx7Aaex+8LeYWk0+
+g7wrDUw62/6qTXBQv/baOJyBXCE7KoLJdvAZfnXK3pLEOVAwybWaAlJWuI9JuqEs
+laZHvyfhGhyYdFsDjGCa/Prtu74CNG1gVgsnHs3Xj6bJEiNmKks3k1CBtsBcMULm
+j8hFqIdQ58sqMdH1NmhW7Yw1eYkBpvTdoK1Xt5YkkRRRHDobB39PsstptA2FTL7J
+JPP9AB2pytUjFA9O4KnjTWX3hOsfUuXfyuXyH/AxxqrHvl6MnCMpRE9RNh1dH7U+
+STDqwIfLe8r2dbJx3HaC1I52GtaE0qUIZXYgDD18XTPb8RBSWMFQp6fBhpFivNs=
+=CyAw
+-----END PGP SIGNATURE-----
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001288.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001290.html">[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1289">[ date ]</a>
+ <a href="thread.html#1289">[ thread ]</a>
+ <a href="subject.html#1289">[ subject ]</a>
+ <a href="author.html#1289">[ 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-July/001290.html b/zarb-ml/mageia-webteam/2011-July/001290.html
new file mode 100644
index 000000000..6ba99c719
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001290.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2145] [New] 404 on Finnish 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%202145%5D%20%5BNew%5D%20404%20on%20Finnish%20download%20page&In-Reply-To=%3Cbug-2145-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="001289.html">
+ <LINK REL="Next" HREF="001295.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202145%5D%20%5BNew%5D%20404%20on%20Finnish%20download%20page&In-Reply-To=%3Cbug-2145-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 14 07:45:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001289.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001295.html">[Mageia-webteam] [Bug 2145] 404 on Finnish download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1290">[ date ]</a>
+ <a href="thread.html#1290">[ thread ]</a>
+ <a href="subject.html#1290">[ subject ]</a>
+ <a href="author.html#1290">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2145">https://bugs.mageia.org/show_bug.cgi?id=2145</A>
+
+ Summary: 404 on Finnish download page
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://mageia.org/fi/">http://mageia.org/fi/</A>
+ 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">remco at webconquest.com</A>
+
+
+Description of problem:
+
+Following he download link on <A HREF="http://mageia.org/fi/">http://mageia.org/fi/</A> results in a 404.
+
+--
+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="001289.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001295.html">[Mageia-webteam] [Bug 2145] 404 on Finnish download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1290">[ date ]</a>
+ <a href="thread.html#1290">[ thread ]</a>
+ <a href="subject.html#1290">[ subject ]</a>
+ <a href="author.html#1290">[ 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-July/001291.html b/zarb-ml/mageia-webteam/2011-July/001291.html
new file mode 100644
index 000000000..67dd235c5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001291.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not
+ </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%202177%5D%20%5BNew%5D%20Some%20links%20on%20Slovenian%20pages%20are%0A%20fine%20others%20are%20not&In-Reply-To=%3Cbug-2177-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="001295.html">
+ <LINK REL="Next" HREF="001294.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not</H1>
+ <B>Filip Komar</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202177%5D%20%5BNew%5D%20Some%20links%20on%20Slovenian%20pages%20are%0A%20fine%20others%20are%20not&In-Reply-To=%3Cbug-2177-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jul 17 17:51:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001295.html">[Mageia-webteam] [Bug 2145] 404 on Finnish download page
+</A></li>
+ <LI>Next message: <A HREF="001294.html">[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1291">[ date ]</a>
+ <a href="thread.html#1291">[ thread ]</a>
+ <a href="subject.html#1291">[ subject ]</a>
+ <a href="author.html#1291">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2177">https://bugs.mageia.org/show_bug.cgi?id=2177</A>
+
+ Summary: Some links on Slovenian pages are fine others are not
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">filip.komar at gmail.com</A>
+
+
+Description of problem:
+Page <A HREF="http://www.mageia.org/sl/">http://www.mageia.org/sl/</A> and others Slovenian pages links to:
+<A HREF="http://www.mageia.org/sl/downloads/">http://www.mageia.org/sl/downloads/</A>
+and
+<A HREF="http://www.mageia.org/sl/donate/">http://www.mageia.org/sl/donate/</A>
+and
+<A HREF="http://www.mageia.org/sl/about/">http://www.mageia.org/sl/about/</A>
+which don't exist (at least yet).
+
+--
+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="001295.html">[Mageia-webteam] [Bug 2145] 404 on Finnish download page
+</A></li>
+ <LI>Next message: <A HREF="001294.html">[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1291">[ date ]</a>
+ <a href="thread.html#1291">[ thread ]</a>
+ <a href="subject.html#1291">[ subject ]</a>
+ <a href="author.html#1291">[ 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-July/001292.html b/zarb-ml/mageia-webteam/2011-July/001292.html
new file mode 100644
index 000000000..bc48ec771
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001292.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2191] [New] Add Google +1 button
+ </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%202191%5D%20%5BNew%5D%20Add%20Google%20%2B1%20button&In-Reply-To=%3Cbug-2191-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="001294.html">
+ <LINK REL="Next" HREF="001293.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2191] [New] Add Google +1 button</H1>
+ <B>Wim Coulier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202191%5D%20%5BNew%5D%20Add%20Google%20%2B1%20button&In-Reply-To=%3Cbug-2191-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2191] [New] Add Google +1 button">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jul 18 16:15:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001294.html">[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not
+</A></li>
+ <LI>Next message: <A HREF="001293.html">[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1292">[ date ]</a>
+ <a href="thread.html#1292">[ thread ]</a>
+ <a href="subject.html#1292">[ subject ]</a>
+ <a href="author.html#1292">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2191">https://bugs.mageia.org/show_bug.cgi?id=2191</A>
+
+ Summary: Add Google +1 button
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: All
+ 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">wim at coulier.org</A>
+
+
+Description of problem:
+When liking an article or other webpage on one of the Mageia websites, I would
+like to be able to +1 (the Google+ alternative to facebook &quot;Like&quot;). Today there
+are a lot of sharing buttons but not +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 the assignee for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001294.html">[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not
+</A></li>
+ <LI>Next message: <A HREF="001293.html">[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1292">[ date ]</a>
+ <a href="thread.html#1292">[ thread ]</a>
+ <a href="subject.html#1292">[ subject ]</a>
+ <a href="author.html#1292">[ 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-July/001293.html b/zarb-ml/mageia-webteam/2011-July/001293.html
new file mode 100644
index 000000000..4e10b6a9a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001293.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org
+ </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%202191%5D%20Add%20Google%20%2B1%20button%20on%20blogs.mageia.org&In-Reply-To=%3C20110718144711.8954F433DE%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="001292.html">
+ <LINK REL="Next" HREF="001296.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202191%5D%20Add%20Google%20%2B1%20button%20on%20blogs.mageia.org&In-Reply-To=%3C20110718144711.8954F433DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jul 18 16:47:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001292.html">[Mageia-webteam] [Bug 2191] [New] Add Google +1 button
+</A></li>
+ <LI>Next message: <A HREF="001296.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1293">[ date ]</a>
+ <a href="thread.html#1293">[ thread ]</a>
+ <a href="subject.html#1293">[ subject ]</a>
+ <a href="author.html#1293">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2191">https://bugs.mageia.org/show_bug.cgi?id=2191</A>
+
+Damien Lallement &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dams at mageia.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Add Google +1 button |Add Google +1 button on
+ | |blogs.mageia.org
+ Status|NEW |ASSIGNED
+ AssignedTo|<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">dams at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dams at mageia.org</A>
+
+--- Comment #1 from Damien Lallement &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dams at mageia.org</A>&gt; 2011-07-18 16:47:11 CEST ---
+There is already a +1 button on the front page of the website.
+For blogs, +1 will arrive very soon.
+
+--
+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="001292.html">[Mageia-webteam] [Bug 2191] [New] Add Google +1 button
+</A></li>
+ <LI>Next message: <A HREF="001296.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1293">[ date ]</a>
+ <a href="thread.html#1293">[ thread ]</a>
+ <a href="subject.html#1293">[ subject ]</a>
+ <a href="author.html#1293">[ 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-July/001294.html b/zarb-ml/mageia-webteam/2011-July/001294.html
new file mode 100644
index 000000000..28c4a3dbf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001294.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not
+ </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%202177%5D%20Some%20links%20on%20Slovenian%20pages%20are%20fine%0A%09others%20are%20not&In-Reply-To=%3C20110718152914.054BB4339F%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="001291.html">
+ <LINK REL="Next" HREF="001292.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202177%5D%20Some%20links%20on%20Slovenian%20pages%20are%20fine%0A%09others%20are%20not&In-Reply-To=%3C20110718152914.054BB4339F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jul 18 17:29:14 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001291.html">[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not
+</A></li>
+ <LI>Next message: <A HREF="001292.html">[Mageia-webteam] [Bug 2191] [New] Add Google +1 button
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1294">[ date ]</a>
+ <a href="thread.html#1294">[ thread ]</a>
+ <a href="subject.html#1294">[ subject ]</a>
+ <a href="author.html#1294">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2177">https://bugs.mageia.org/show_bug.cgi?id=2177</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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-07-18 19:29:14 CEST ---
+Indeed, fixed. Thanks for the report!
+
+Currently, those are copies of the English pages, we have no translation for
+these pages yet (help is welcome on the i18n lists).
+
+--
+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="001291.html">[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not
+</A></li>
+ <LI>Next message: <A HREF="001292.html">[Mageia-webteam] [Bug 2191] [New] Add Google +1 button
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1294">[ date ]</a>
+ <a href="thread.html#1294">[ thread ]</a>
+ <a href="subject.html#1294">[ subject ]</a>
+ <a href="author.html#1294">[ 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-July/001295.html b/zarb-ml/mageia-webteam/2011-July/001295.html
new file mode 100644
index 000000000..cffa40bdf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001295.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2145] 404 on Finnish 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%202145%5D%20404%20on%20Finnish%20download%20page&In-Reply-To=%3C20110718153058.12C694339F%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="001290.html">
+ <LINK REL="Next" HREF="001291.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2145] 404 on Finnish download page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202145%5D%20404%20on%20Finnish%20download%20page&In-Reply-To=%3C20110718153058.12C694339F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2145] 404 on Finnish download page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jul 18 17:30:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001290.html">[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page
+</A></li>
+ <LI>Next message: <A HREF="001291.html">[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1295">[ date ]</a>
+ <a href="thread.html#1295">[ thread ]</a>
+ <a href="subject.html#1295">[ subject ]</a>
+ <a href="author.html#1295">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2145">https://bugs.mageia.org/show_bug.cgi?id=2145</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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-07-18 17:30:58 CEST ---
+Fixed, thanks for the report (althouggh that's linking against the English page
+for now, we don't have a localized Finnish downloads page yet).
+
+--
+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="001290.html">[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page
+</A></li>
+ <LI>Next message: <A HREF="001291.html">[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1295">[ date ]</a>
+ <a href="thread.html#1295">[ thread ]</a>
+ <a href="subject.html#1295">[ subject ]</a>
+ <a href="author.html#1295">[ 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-July/001296.html b/zarb-ml/mageia-webteam/2011-July/001296.html
new file mode 100644
index 000000000..198dbf04e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001296.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+ </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%201737%5D%20Wrong%20checksums%20of%20Dual-Arch-CD&In-Reply-To=%3C20110719104135.C706543419%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="001293.html">
+ <LINK REL="Next" HREF="001297.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD</H1>
+ <B>Sebastian Schroeer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201737%5D%20Wrong%20checksums%20of%20Dual-Arch-CD&In-Reply-To=%3C20110719104135.C706543419%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jul 19 12:41:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001293.html">[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001297.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1296">[ date ]</a>
+ <a href="thread.html#1296">[ thread ]</a>
+ <a href="subject.html#1296">[ subject ]</a>
+ <a href="author.html#1296">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+
+Sebastian Schroeer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sebixmag at web.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sebixmag at web.de</A>
+
+--- Comment #1 from Sebastian Schroeer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sebixmag at web.de</A>&gt; 2011-07-19 12:41:35 CEST ---
+As of 2011-07-19 12:00 CEST this bug was still not resolved. :-(
+
+Could a sysadmin check if the Dual Arch CD offered by mirror servers is a valid
+release of the Mageia 1 Linux OS, please?
+
+Then, should this CD.iso not include any security issues and if it is an
+official Mageia installation CD, could you ask the web developers to change the
+checksums at
+
+<A HREF="http://www.mageia.org/en/downloads/dl.php?product=mageia-1-cd-dualarch">http://www.mageia.org/en/downloads/dl.php?product=mageia-1-cd-dualarch</A>
+
+please?
+
+Actually, this bug affects all language versions of this web site...
+
+The .iso.md5 and .sha1.md5 files offered on the mirrors correlate with the
+respective mageia-dual-1.iso image offered on the mirror servers.
+
+--
+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="001293.html">[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001297.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1296">[ date ]</a>
+ <a href="thread.html#1296">[ thread ]</a>
+ <a href="subject.html#1296">[ subject ]</a>
+ <a href="author.html#1296">[ 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-July/001297.html b/zarb-ml/mageia-webteam/2011-July/001297.html
new file mode 100644
index 000000000..f34b665f5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001297.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+ </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%201737%5D%20Wrong%20checksums%20of%20Dual-Arch-CD&In-Reply-To=%3C20110719123832.439E943422%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="001296.html">
+ <LINK REL="Next" HREF="001298.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201737%5D%20Wrong%20checksums%20of%20Dual-Arch-CD&In-Reply-To=%3C20110719123832.439E943422%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jul 19 14:38:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001296.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI>Next message: <A HREF="001298.html">[Mageia-webteam] 2011/week 29 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1297">[ date ]</a>
+ <a href="thread.html#1297">[ thread ]</a>
+ <a href="subject.html#1297">[ subject ]</a>
+ <a href="author.html#1297">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</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|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-07-19 14:38:32 CEST ---
+Fixed at last, sorry for the delay and thanks for refreshing the bug!
+
+--
+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="001296.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI>Next message: <A HREF="001298.html">[Mageia-webteam] 2011/week 29 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1297">[ date ]</a>
+ <a href="thread.html#1297">[ thread ]</a>
+ <a href="subject.html#1297">[ subject ]</a>
+ <a href="author.html#1297">[ 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-July/001298.html b/zarb-ml/mageia-webteam/2011-July/001298.html
new file mode 100644
index 000000000..7de231098
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001298.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 29 review
+ </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%2029%20review&In-Reply-To=%3CCANa9xwt-ynEHge%2BWmNMwTDtO1GJv-35RHLK9wTFwji7po_Anxg%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="001297.html">
+ <LINK REL="Next" HREF="001299.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 29 review</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2029%20review&In-Reply-To=%3CCANa9xwt-ynEHge%2BWmNMwTDtO1GJv-35RHLK9wTFwji7po_Anxg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 29 review">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Jul 19 15:56:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001297.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI>Next message: <A HREF="001299.html">[Mageia-webteam] 2011/week 29 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1298">[ date ]</a>
+ <a href="thread.html#1298">[ thread ]</a>
+ <a href="subject.html#1298">[ subject ]</a>
+ <a href="author.html#1298">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+I won't be available on Wednesday for a meeting at 13:00 UTC, so we
+either push it to later in the afternoon or we make it here. Advice?
+
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001297.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI>Next message: <A HREF="001299.html">[Mageia-webteam] 2011/week 29 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1298">[ date ]</a>
+ <a href="thread.html#1298">[ thread ]</a>
+ <a href="subject.html#1298">[ subject ]</a>
+ <a href="author.html#1298">[ 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-July/001299.html b/zarb-ml/mageia-webteam/2011-July/001299.html
new file mode 100644
index 000000000..0cc1bde74
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001299.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 29 review
+ </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%2029%20review&In-Reply-To=%3C4E25F5FB.9040903%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001298.html">
+ <LINK REL="Next" HREF="001300.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 29 review</H1>
+ <B>Matteo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2029%20review&In-Reply-To=%3C4E25F5FB.9040903%40gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 29 review">pasotti.matteo at gmail.com
+ </A><BR>
+ <I>Tue Jul 19 23:24:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001298.html">[Mageia-webteam] 2011/week 29 review
+</A></li>
+ <LI>Next message: <A HREF="001300.html">[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1299">[ date ]</a>
+ <a href="thread.html#1299">[ thread ]</a>
+ <a href="subject.html#1299">[ subject ]</a>
+ <a href="author.html#1299">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+Il 19/07/2011 15:56, Romain d'Alverny ha scritto:
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> I won't be available on Wednesday for a meeting at 13:00 UTC, so we
+</I>&gt;<i> either push it to later in the afternoon
+</I>+1
+
+bye
+- --
+Matteo
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.11 (GNU/Linux)
+Comment: Using GnuPG with Mageia - <A HREF="http://enigmail.mozdev.org/">http://enigmail.mozdev.org/</A>
+
+iQEcBAEBAgAGBQJOJfX3AAoJED3LowjDDWbNuMYH/1JgtBnHX2NWm/MXRXsXjShQ
+e0Gx/hlyamyKgrQ0aZsA6NkFo0MOQ5Plu9BwrYzEZ//UokpiPnTsSo5YWv3122GX
+/DQkiVHRxP70E+VSx2vR+TYvIqeaoLcUK32ze2wpOJBZvhO/mWiNwLGLxZ9Ucdsb
+SUhkrnjzAwoUaZ2aQzFT8fWrspJbDOubfptzbMDZo+rFnR3EC2ypRuILgX1CNFOD
+p8mknxRkZ+aPV1JnbVc4xf1zQn3wgY9k4nKmWFd/ZXhqDkjAY7vNdyhtvSNB9yfG
+l3kPzjg6yNvSzYayOZjpc3lNVbp0Iq04q2SjG3h5nXqgomFM0Eoe6IO2jjO4pxg=
+=VBIi
+-----END PGP SIGNATURE-----
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001298.html">[Mageia-webteam] 2011/week 29 review
+</A></li>
+ <LI>Next message: <A HREF="001300.html">[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1299">[ date ]</a>
+ <a href="thread.html#1299">[ thread ]</a>
+ <a href="subject.html#1299">[ subject ]</a>
+ <a href="author.html#1299">[ 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-July/001300.html b/zarb-ml/mageia-webteam/2011-July/001300.html
new file mode 100644
index 000000000..871eb4908
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001300.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added
+ </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%202225%5D%20%5BNew%5D%20Create%20a%20extension%20to%20assign%0A%20people%20in%20CC%20if%20some%20keyword%20are%20added&In-Reply-To=%3Cbug-2225-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="001299.html">
+ <LINK REL="Next" HREF="001301.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202225%5D%20%5BNew%5D%20Create%20a%20extension%20to%20assign%0A%20people%20in%20CC%20if%20some%20keyword%20are%20added&In-Reply-To=%3Cbug-2225-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 21 14:55:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001299.html">[Mageia-webteam] 2011/week 29 review
+</A></li>
+ <LI>Next message: <A HREF="001301.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1300">[ date ]</a>
+ <a href="thread.html#1300">[ thread ]</a>
+ <a href="subject.html#1300">[ subject ]</a>
+ <a href="author.html#1300">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2225">https://bugs.mageia.org/show_bug.cgi?id=2225</A>
+
+ Summary: Create a extension to assign people in CC if some
+ keyword are added
+ 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">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+We need a extension to add mageia sysadmin in CC each time the validated_update
+keyword is added to a bug in bugzilla.
+
+--
+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="001299.html">[Mageia-webteam] 2011/week 29 review
+</A></li>
+ <LI>Next message: <A HREF="001301.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1300">[ date ]</a>
+ <a href="thread.html#1300">[ thread ]</a>
+ <a href="subject.html#1300">[ subject ]</a>
+ <a href="author.html#1300">[ 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-July/001301.html b/zarb-ml/mageia-webteam/2011-July/001301.html
new file mode 100644
index 000000000..56c650ab6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001301.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+ </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%202225%5D%20Create%20a%20extension%20to%20assign%20people%20in%0A%20CC%20if%20some%20keyword%20are%20added&In-Reply-To=%3C20110721141414.BEB284345D%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="001300.html">
+ <LINK REL="Next" HREF="001302.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added</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%202225%5D%20Create%20a%20extension%20to%20assign%20people%20in%0A%20CC%20if%20some%20keyword%20are%20added&In-Reply-To=%3C20110721141414.BEB284345D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 21 16:14:14 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001300.html">[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI>Next message: <A HREF="001302.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1301">[ date ]</a>
+ <a href="thread.html#1301">[ thread ]</a>
+ <a href="subject.html#1301">[ subject ]</a>
+ <a href="author.html#1301">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2225">https://bugs.mageia.org/show_bug.cgi?id=2225</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
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>
+
+--- 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-07-21 16:14:14 CEST ---
+Created attachment 665
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=665">https://bugs.mageia.org/attachment.cgi?id=665</A>
+Mageia extension, v1
+
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> is automatically CC'ed when the 'validated_update'
+is added to new or existing bugs, and the bug history is updated to reflect
+this change.
+
+To install this extension, untar mageia_extension.tar.bz2 from the bugzilla/
+root directory. This will put the extension into bugzilla/extensions/Mageia/.
+Then run checksetup.pl.
+
+--
+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="001300.html">[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI>Next message: <A HREF="001302.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1301">[ date ]</a>
+ <a href="thread.html#1301">[ thread ]</a>
+ <a href="subject.html#1301">[ subject ]</a>
+ <a href="author.html#1301">[ 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-July/001302.html b/zarb-ml/mageia-webteam/2011-July/001302.html
new file mode 100644
index 000000000..0c562bd00
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001302.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+ </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%202225%5D%20Create%20a%20extension%20to%20assign%20people%20in%0A%20CC%20if%20some%20keyword%20are%20added&In-Reply-To=%3C20110721141815.A139143464%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="001301.html">
+ <LINK REL="Next" HREF="001303.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added</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%202225%5D%20Create%20a%20extension%20to%20assign%20people%20in%0A%20CC%20if%20some%20keyword%20are%20added&In-Reply-To=%3C20110721141815.A139143464%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 21 16:18:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001301.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI>Next message: <A HREF="001303.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1302">[ date ]</a>
+ <a href="thread.html#1302">[ thread ]</a>
+ <a href="subject.html#1302">[ subject ]</a>
+ <a href="author.html#1302">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2225">https://bugs.mageia.org/show_bug.cgi?id=2225</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
+----------------------------------------------------------------------------
+ Attachment #665 is|0 |1
+ obsolete| |
+
+--- 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-07-21 18:18:15 CEST ---
+Created attachment 666
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=666">https://bugs.mageia.org/attachment.cgi?id=666</A>
+Mageia extension, v1.1
+
+Oops, now with the correct user ID. :)
+
+--
+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="001301.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI>Next message: <A HREF="001303.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1302">[ date ]</a>
+ <a href="thread.html#1302">[ thread ]</a>
+ <a href="subject.html#1302">[ subject ]</a>
+ <a href="author.html#1302">[ 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-July/001303.html b/zarb-ml/mageia-webteam/2011-July/001303.html
new file mode 100644
index 000000000..5ca2dfe04
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001303.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+ </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%202225%5D%20Create%20a%20extension%20to%20assign%20people%20in%0A%20CC%20if%20some%20keyword%20are%20added&In-Reply-To=%3C20110721143850.0696843467%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="001302.html">
+ <LINK REL="Next" HREF="001304.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202225%5D%20Create%20a%20extension%20to%20assign%20people%20in%0A%20CC%20if%20some%20keyword%20are%20added&In-Reply-To=%3C20110721143850.0696843467%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 21 16:38:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001302.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI>Next message: <A HREF="001304.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1303">[ date ]</a>
+ <a href="thread.html#1303">[ thread ]</a>
+ <a href="subject.html#1303">[ subject ]</a>
+ <a href="author.html#1303">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2225">https://bugs.mageia.org/show_bug.cgi?id=2225</A>
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-07-21 18:38:49 CEST ---
+Ok, I will see how to deploy it from our 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="001302.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI>Next message: <A HREF="001304.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1303">[ date ]</a>
+ <a href="thread.html#1303">[ thread ]</a>
+ <a href="subject.html#1303">[ subject ]</a>
+ <a href="author.html#1303">[ 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-July/001304.html b/zarb-ml/mageia-webteam/2011-July/001304.html
new file mode 100644
index 000000000..cd1a9a3a5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001304.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=%3C20110727102400.93518435CC%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="001303.html">
+ <LINK REL="Next" HREF="001305.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 656] 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%20Fix%20forum%20locales%20redirections&In-Reply-To=%3C20110727102400.93518435CC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 656] Fix forum locales redirections">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jul 27 12:24:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001303.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI>Next message: <A HREF="001305.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1304">[ date ]</a>
+ <a href="thread.html#1304">[ thread ]</a>
+ <a href="subject.html#1304">[ subject ]</a>
+ <a href="author.html#1304">[ 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 860, which changed state.
+
+Bug 860 Summary: German forums need to be setup
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=860">https://bugs.mageia.org/show_bug.cgi?id=860</A>
+
+ What |Old Value |New Value
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ 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="001303.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A></li>
+ <LI>Next message: <A HREF="001305.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1304">[ date ]</a>
+ <a href="thread.html#1304">[ thread ]</a>
+ <a href="subject.html#1304">[ subject ]</a>
+ <a href="author.html#1304">[ 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-July/001305.html b/zarb-ml/mageia-webteam/2011-July/001305.html
new file mode 100644
index 000000000..65364afa7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001305.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing favicons (list of Mageia pages)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3CCA%2Bh4nj7L%3DYC4og-zbXrjyTKbgK2KtU6kTgHzxuxUnkM0hd-ZNA%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="001304.html">
+ <LINK REL="Next" HREF="001306.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing favicons (list of Mageia pages)</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3CCA%2Bh4nj7L%3DYC4og-zbXrjyTKbgK2KtU6kTgHzxuxUnkM0hd-ZNA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing favicons (list of Mageia pages)">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Jul 27 14:43:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001304.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="001306.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1305">[ date ]</a>
+ <a href="thread.html#1305">[ thread ]</a>
+ <a href="subject.html#1305">[ subject ]</a>
+ <a href="author.html#1305">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>After this has been solved for the Mageia forums I checked other
+Mageia pages and found:
+
+Missing or wrong favicons (without claiming to be complete):
+
+<A HREF="http://planet.mageia.org/en/">http://planet.mageia.org/en/</A> (no favicon)
+<A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi/lists">https://ml.mageia.org/wwsympa-wrapper.fcgi/lists</A> (sympa favicon)
+<A HREF="http://mirrors.mageia.org/">http://mirrors.mageia.org/</A> (no favicon)
+<A HREF="http://www.mageia.org/en/about/2010-sep">http://www.mageia.org/en/about/2010-sep</A> ... ement.html (no favicon)
+<A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A> (catdap (?) favicon)
+
+Login pages of blog.mageia.org (no favicon)
+
+All wiki pages show the DokuWiki favicon but we are changing to
+MediaWiki anyway.
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001304.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="001306.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1305">[ date ]</a>
+ <a href="thread.html#1305">[ thread ]</a>
+ <a href="subject.html#1305">[ subject ]</a>
+ <a href="author.html#1305">[ 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-July/001306.html b/zarb-ml/mageia-webteam/2011-July/001306.html
new file mode 100644
index 000000000..3139dc767
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001306.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing favicons (list of Mageia pages)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3CCANa9xwtknUVhc0YQY0fEuniiSAHXWmNE8zMZqvBX6iv7nsRm2g%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="001305.html">
+ <LINK REL="Next" HREF="001307.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing favicons (list of Mageia pages)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3CCANa9xwtknUVhc0YQY0fEuniiSAHXWmNE8zMZqvBX6iv7nsRm2g%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing favicons (list of Mageia pages)">rda at mageia.org
+ </A><BR>
+ <I>Wed Jul 27 19:02:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001305.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001307.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1306">[ date ]</a>
+ <a href="thread.html#1306">[ thread ]</a>
+ <a href="subject.html#1306">[ subject ]</a>
+ <a href="author.html#1306">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+On Wed, Jul 27, 2011 at 14:43, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> Missing or wrong favicons (without claiming to be complete):
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://planet.mageia.org/en/">http://planet.mageia.org/en/</A> (no favicon)
+</I>
+Fixed (thanks dams!)
+
+&gt;<i> <A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi/lists">https://ml.mageia.org/wwsympa-wrapper.fcgi/lists</A> (sympa favicon)
+</I>
+No idea of where this goes fixed. Misc?
+
+&gt;<i> <A HREF="http://mirrors.mageia.org/">http://mirrors.mageia.org/</A> (no favicon)
+</I>
+I pushed the change into svn; I don't remember if it syncs in auto or
+not (probably not).
+
+&gt;<i> <A HREF="http://www.mageia.org/en/about/2010-sep">http://www.mageia.org/en/about/2010-sep</A> ... ement.html (no favicon)
+</I>
+Yes, known, because prepend decorator script is not loaded with a
+.html page; will be fixed later.
+
+&gt;<i> <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A> (catdap (?) favicon)
+</I>
+Same, I pushed the change into svn trunk. Will maybe need a check to
+be merged into the live branch.
+
+&gt;<i> Login pages of blog.mageia.org (no favicon)
+</I>
+Hmmm not sure where to change that (I guess it does not depend on the
+blog theme); but maybe this is minor as it's a speicifc area?
+
+&gt;<i> All wiki pages show the DokuWiki favicon but we are changing to
+</I>&gt;<i> MediaWiki anyway.
+</I>
+Yes.
+
+All in all... not fixed but on the path. Thanks for the report.
+
+We could arrange for a bot that checks all favicons on mageia.org domain. :-p
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001305.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001307.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1306">[ date ]</a>
+ <a href="thread.html#1306">[ thread ]</a>
+ <a href="subject.html#1306">[ subject ]</a>
+ <a href="author.html#1306">[ 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-July/001307.html b/zarb-ml/mageia-webteam/2011-July/001307.html
new file mode 100644
index 000000000..1e785e233
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001307.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing favicons (list of Mageia pages)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3C4E304616.70700%40damsweb.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001306.html">
+ <LINK REL="Next" HREF="001309.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing favicons (list of Mageia pages)</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3C4E304616.70700%40damsweb.net%3E"
+ TITLE="[Mageia-webteam] Missing favicons (list of Mageia pages)">mageia at damsweb.net
+ </A><BR>
+ <I>Wed Jul 27 19:08:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001306.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001309.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1307">[ date ]</a>
+ <a href="thread.html#1307">[ thread ]</a>
+ <a href="subject.html#1307">[ subject ]</a>
+ <a href="author.html#1307">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 27/07/2011 19:02, Romain d'Alverny a &#233;crit :
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> On Wed, Jul 27, 2011 at 14:43, Wolfgang Bornath&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> Missing or wrong favicons (without claiming to be complete):
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> [...]
+</I>&gt;&gt;<i> Login pages of blog.mageia.org (no favicon)
+</I>&gt;<i>
+</I>&gt;<i> Hmmm not sure where to change that (I guess it does not depend on the
+</I>&gt;<i> blog theme); but maybe this is minor as it's a speicifc area?
+</I>
+I can add it if really needed but it asks to change /admin/ repo, so,
+it's not a good point as we said in the past that our WP installations
+will only accept the wp-content/themes repo to be modified in order to
+help updates/upgrades.
+
+&gt;&gt;<i> All wiki pages show the DokuWiki favicon but we are changing to
+</I>&gt;&gt;<i> MediaWiki anyway.
+</I>&gt;<i>
+</I>&gt;<i> Yes.
+</I>&gt;<i>
+</I>&gt;<i> All in all... not fixed but on the path. Thanks for the report.
+</I>&gt;<i>
+</I>&gt;<i> We could arrange for a bot that checks all favicons on mageia.org domain. :-p
+</I>
+Why making a bot as we have chance to get wobo?! :-)
+
+Dams
+--
+Damien Lallement
+Treasurer of Mageia.Org
+
+twitter: damsweb - IRC: damsweb/coincoin
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001306.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001309.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1307">[ date ]</a>
+ <a href="thread.html#1307">[ thread ]</a>
+ <a href="subject.html#1307">[ subject ]</a>
+ <a href="author.html#1307">[ 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-July/001309.html b/zarb-ml/mageia-webteam/2011-July/001309.html
new file mode 100644
index 000000000..527e3738e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001309.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing favicons (list of Mageia pages)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3C1311805167.2114.88.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001307.html">
+ <LINK REL="Next" HREF="001310.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing favicons (list of Mageia pages)</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3C1311805167.2114.88.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Missing favicons (list of Mageia pages)">misc at zarb.org
+ </A><BR>
+ <I>Thu Jul 28 00:19:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001307.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001310.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1309">[ date ]</a>
+ <a href="thread.html#1309">[ thread ]</a>
+ <a href="subject.html#1309">[ subject ]</a>
+ <a href="author.html#1309">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 27 juillet 2011 &#224; 19:02 +0200, Romain d'Alverny a &#233;crit :
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> On Wed, Jul 27, 2011 at 14:43, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;<i> &gt; Missing or wrong favicons (without claiming to be complete):
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; <A HREF="http://planet.mageia.org/en/">http://planet.mageia.org/en/</A> (no favicon)
+</I>&gt;<i>
+</I>&gt;<i> Fixed (thanks dams!)
+</I>&gt;<i>
+</I>&gt;<i> &gt; <A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi/lists">https://ml.mageia.org/wwsympa-wrapper.fcgi/lists</A> (sympa favicon)
+</I>&gt;<i>
+</I>&gt;<i> No idea of where this goes fixed. Misc?
+</I>
+in sympa template I guess.
+
+But maybe it would be easier to declare once ond for all a alias on
+every vhost.
+( as they all use the same template for configuration, that would not be
+hard to deploy for all once we deployed for one )
+
+&gt;<i> &gt; <A HREF="http://mirrors.mageia.org/">http://mirrors.mageia.org/</A> (no favicon)
+</I>&gt;<i>
+</I>&gt;<i> I pushed the change into svn; I don't remember if it syncs in auto or
+</I>&gt;<i> not (probably not).
+</I>
+It don't.
+We should separate template from the code, so the 2 could evolve at
+different path.
+
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001307.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001310.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1309">[ date ]</a>
+ <a href="thread.html#1309">[ thread ]</a>
+ <a href="subject.html#1309">[ subject ]</a>
+ <a href="author.html#1309">[ 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-July/001310.html b/zarb-ml/mageia-webteam/2011-July/001310.html
new file mode 100644
index 000000000..5c34da147
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001310.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing favicons (list of Mageia pages)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3CCANa9xwtCsj0iPkjkeEFQyYGCoRFqau6vpOV%2BVbnEQ964bzeUJg%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="001309.html">
+ <LINK REL="Next" HREF="001311.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing favicons (list of Mageia pages)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20favicons%20%28list%20of%20Mageia%20pages%29&In-Reply-To=%3CCANa9xwtCsj0iPkjkeEFQyYGCoRFqau6vpOV%2BVbnEQ964bzeUJg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing favicons (list of Mageia pages)">rda at mageia.org
+ </A><BR>
+ <I>Thu Jul 28 15:21:01 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001309.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001311.html">[Mageia-webteam] [Bug 1830] add a column keywords in the search results
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1310">[ date ]</a>
+ <a href="thread.html#1310">[ thread ]</a>
+ <a href="subject.html#1310">[ subject ]</a>
+ <a href="author.html#1310">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jul 28, 2011 at 00:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> But maybe it would be easier to declare once ond for all a alias on
+</I>&gt;<i> every vhost.
+</I>&gt;<i> ( as they all use the same template for configuration, that would not be
+</I>&gt;<i> hard to deploy for all once we deployed for one )
+</I>
+<A HREF="http://static.mageia.org/g/favicon.png">http://static.mageia.org/g/favicon.png</A> is the reference (and can be
+used as it is)
+
+<A HREF="https://static.mageia.org/g/favicon.png">https://static.mageia.org/g/favicon.png</A> doesn't work yet, but as soon
+as it's working, it can be deployed on https services too.
+
+&gt;&gt;<i> I pushed the change into svn; I don't remember if it syncs in auto or
+</I>&gt;&gt;<i> not (probably not).
+</I>&gt;<i>
+</I>&gt;<i> It don't.
+</I>&gt;<i> We should separate template from the code, so the 2 could evolve at
+</I>&gt;<i> different path.
+</I>
+It's already cleanly separated; and changing the template may break
+the app nonetheless, so it has to be checked before being pushed into
+prod anyway (we're in the same dev/master/staging/production contexts
+as for other web apps).
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001309.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001311.html">[Mageia-webteam] [Bug 1830] add a column keywords in the search results
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1310">[ date ]</a>
+ <a href="thread.html#1310">[ thread ]</a>
+ <a href="subject.html#1310">[ subject ]</a>
+ <a href="author.html#1310">[ 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-July/001311.html b/zarb-ml/mageia-webteam/2011-July/001311.html
new file mode 100644
index 000000000..0cba0a05f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001311.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1830] add a column keywords in the search results
+ </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%201830%5D%20add%20a%20column%20keywords%20in%20the%20search%0A%09results&In-Reply-To=%3C20110728163240.5687A435DC%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="001310.html">
+ <LINK REL="Next" HREF="001312.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1830] add a column keywords in the search results</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201830%5D%20add%20a%20column%20keywords%20in%20the%20search%0A%09results&In-Reply-To=%3C20110728163240.5687A435DC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1830] add a column keywords in the search results">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 28 18:32:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001310.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001312.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1311">[ date ]</a>
+ <a href="thread.html#1311">[ thread ]</a>
+ <a href="subject.html#1311">[ subject ]</a>
+ <a href="author.html#1311">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1830">https://bugs.mageia.org/show_bug.cgi?id=1830</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-07-28 20:32:40 CEST ---
+closing, since I have discover yesterday <A HREF="https://bugs.mageia.org/colchange.cgi">https://bugs.mageia.org/colchange.cgi</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="001310.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A></li>
+ <LI>Next message: <A HREF="001312.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1311">[ date ]</a>
+ <a href="thread.html#1311">[ thread ]</a>
+ <a href="subject.html#1311">[ subject ]</a>
+ <a href="author.html#1311">[ 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-July/001312.html b/zarb-ml/mageia-webteam/2011-July/001312.html
new file mode 100644
index 000000000..1c7658caf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001312.html
@@ -0,0 +1,65 @@
+<!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=%3C20110728202516.52871435E7%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="001311.html">
+ <LINK REL="Next" HREF="001313.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Manuel Hiebel</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=%3C20110728202516.52871435E7%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 Jul 28 22:25:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001311.html">[Mageia-webteam] [Bug 1830] add a column keywords in the search results
+</A></li>
+ <LI>Next message: <A HREF="001313.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1312">[ date ]</a>
+ <a href="thread.html#1312">[ thread ]</a>
+ <a href="subject.html#1312">[ subject ]</a>
+ <a href="author.html#1312">[ 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 #15 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-07-29 00:25:16 CEST ---
+seems resolved, no ?
+
+--
+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="001311.html">[Mageia-webteam] [Bug 1830] add a column keywords in the search results
+</A></li>
+ <LI>Next message: <A HREF="001313.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1312">[ date ]</a>
+ <a href="thread.html#1312">[ thread ]</a>
+ <a href="subject.html#1312">[ subject ]</a>
+ <a href="author.html#1312">[ 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-July/001313.html b/zarb-ml/mageia-webteam/2011-July/001313.html
new file mode 100644
index 000000000..f3ecce5c5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001313.html
@@ -0,0 +1,65 @@
+<!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=%3C20110728202701.47BB2435E3%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="001312.html">
+ <LINK REL="Next" HREF="001314.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Manuel Hiebel</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=%3C20110728202701.47BB2435E3%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 Jul 28 22:27:01 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001312.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001314.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1313">[ date ]</a>
+ <a href="thread.html#1313">[ thread ]</a>
+ <a href="subject.html#1313">[ subject ]</a>
+ <a href="author.html#1313">[ 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 #16 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-07-29 00:27:01 CEST ---
+ah no sorry for the noise :)
+
+--
+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="001312.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001314.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1313">[ date ]</a>
+ <a href="thread.html#1313">[ thread ]</a>
+ <a href="subject.html#1313">[ subject ]</a>
+ <a href="author.html#1313">[ 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-July/001314.html b/zarb-ml/mageia-webteam/2011-July/001314.html
new file mode 100644
index 000000000..74cb89a74
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001314.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+ </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%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110728202930.377FA435E1%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="001313.html">
+ <LINK REL="Next" HREF="001315.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110728202930.377FA435E1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 28 22:29:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001313.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001315.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1314">[ date ]</a>
+ <a href="thread.html#1314">[ thread ]</a>
+ <a href="subject.html#1314">[ subject ]</a>
+ <a href="author.html#1314">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1864">https://bugs.mageia.org/show_bug.cgi?id=1864</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Websites
+ Version|unspecified |trunk
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+ Component|Bugzilla |www.mageia.org
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+--- Comment #6 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-07-28 22:29:28 CEST ---
+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.
+You are the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001313.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001315.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1314">[ date ]</a>
+ <a href="thread.html#1314">[ thread ]</a>
+ <a href="subject.html#1314">[ subject ]</a>
+ <a href="author.html#1314">[ 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-July/001315.html b/zarb-ml/mageia-webteam/2011-July/001315.html
new file mode 100644
index 000000000..c8668b5c5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001315.html
@@ -0,0 +1,71 @@
+<!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=%3C20110728210820.38CA8435E5%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="001314.html">
+ <LINK REL="Next" HREF="001316.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=%3C20110728210820.38CA8435E5%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 Jul 28 23:08:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001314.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001316.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1315">[ date ]</a>
+ <a href="thread.html#1315">[ thread ]</a>
+ <a href="subject.html#1315">[ subject ]</a>
+ <a href="author.html#1315">[ 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 #17 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-07-28 23:08:17 CEST ---
+Created attachment 683
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=683">https://bugs.mageia.org/attachment.cgi?id=683</A>
+screenshot
+
+The timestamps varie when you reload the page several times. See the screenshot
+as an example, and note the timestamps on the left and on the right... misc,
+you installed a random number generator or what? :)
+
+--
+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="001314.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001316.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1315">[ date ]</a>
+ <a href="thread.html#1315">[ thread ]</a>
+ <a href="subject.html#1315">[ subject ]</a>
+ <a href="author.html#1315">[ 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-July/001316.html b/zarb-ml/mageia-webteam/2011-July/001316.html
new file mode 100644
index 000000000..6e0032ce6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001316.html
@@ -0,0 +1,66 @@
+<!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=%3C20110728211439.38C2B435E8%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="001315.html">
+ <LINK REL="Next" HREF="001317.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Romain d'Alverny</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=%3C20110728211439.38C2B435E8%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 Jul 28 23:14:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001315.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001317.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1316">[ date ]</a>
+ <a href="thread.html#1316">[ thread ]</a>
+ <a href="subject.html#1316">[ subject ]</a>
+ <a href="author.html#1316">[ 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 #18 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-07-29 01:14:35 CEST ---
+This happens both in anonymous mode (you) and authenticated (mine). And within
+several reloads, time goes CEST, then CEST+2, then back to 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="001315.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001317.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1316">[ date ]</a>
+ <a href="thread.html#1316">[ thread ]</a>
+ <a href="subject.html#1316">[ subject ]</a>
+ <a href="author.html#1316">[ 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-July/001317.html b/zarb-ml/mageia-webteam/2011-July/001317.html
new file mode 100644
index 000000000..045bc71a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001317.html
@@ -0,0 +1,70 @@
+<!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=%3C20110728212356.22F0B435E9%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="001316.html">
+ <LINK REL="Next" HREF="001318.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Romain d'Alverny</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=%3C20110728212356.22F0B435E9%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 Jul 28 23:23:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001316.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001318.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1317">[ date ]</a>
+ <a href="thread.html#1317">[ thread ]</a>
+ <a href="subject.html#1317">[ subject ]</a>
+ <a href="author.html#1317">[ 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 #19 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-07-28 23:23:53 CEST ---
+Is the page cached entirely or partially?
+
+Seeing <A HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=486255">https://bugzilla.mozilla.org/show_bug.cgi?id=486255</A> this could be that
+the timestamp displayed is computed with two distinct (inconsistent) code
+paths, whether the page is loading from cache or from a fresh copy of the db?
+(just a guess)
+
+--
+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="001316.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001318.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1317">[ date ]</a>
+ <a href="thread.html#1317">[ thread ]</a>
+ <a href="subject.html#1317">[ subject ]</a>
+ <a href="author.html#1317">[ 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-July/001318.html b/zarb-ml/mageia-webteam/2011-July/001318.html
new file mode 100644
index 000000000..218fc5096
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001318.html
@@ -0,0 +1,66 @@
+<!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=%3C20110728212856.E5F0D435E9%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="001317.html">
+ <LINK REL="Next" HREF="001319.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=%3C20110728212856.E5F0D435E9%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 Jul 28 23:28:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001317.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001319.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1318">[ date ]</a>
+ <a href="thread.html#1318">[ thread ]</a>
+ <a href="subject.html#1318">[ subject ]</a>
+ <a href="author.html#1318">[ 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 #20 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-07-28 23:28:56 CEST ---
+Unrelated. Bug 486255 is about timestamps in emails sent via SMTP when you live
+in some &quot;special&quot; timezones.
+
+--
+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="001317.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001319.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1318">[ date ]</a>
+ <a href="thread.html#1318">[ thread ]</a>
+ <a href="subject.html#1318">[ subject ]</a>
+ <a href="author.html#1318">[ 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-July/001319.html b/zarb-ml/mageia-webteam/2011-July/001319.html
new file mode 100644
index 000000000..9121d3737
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001319.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+ </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%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110729160238.52465435DC%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="001318.html">
+ <LINK REL="Next" HREF="001320.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110729160238.52465435DC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jul 29 18:02:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001318.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001320.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1319">[ date ]</a>
+ <a href="thread.html#1319">[ thread ]</a>
+ <a href="subject.html#1319">[ subject ]</a>
+ <a href="author.html#1319">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</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|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-07-29 18:02:37 CEST ---
+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="001318.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="001320.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1319">[ date ]</a>
+ <a href="thread.html#1319">[ thread ]</a>
+ <a href="subject.html#1319">[ subject ]</a>
+ <a href="author.html#1319">[ 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-July/001320.html b/zarb-ml/mageia-webteam/2011-July/001320.html
new file mode 100644
index 000000000..f18846127
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001320.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+ </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%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20110729160530.6F85A4347A%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="001319.html">
+ <LINK REL="Next" HREF="001321.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20110729160530.6F85A4347A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jul 29 18:05:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001319.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="001321.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1320">[ date ]</a>
+ <a href="thread.html#1320">[ thread ]</a>
+ <a href="subject.html#1320">[ subject ]</a>
+ <a href="author.html#1320">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</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-07-29 18:05:30 CEST ---
+Any status update? (Web page didn't change but has it been fixed in the API?)
+
+--
+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="001319.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="001321.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1320">[ date ]</a>
+ <a href="thread.html#1320">[ thread ]</a>
+ <a href="subject.html#1320">[ subject ]</a>
+ <a href="author.html#1320">[ 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-July/001321.html b/zarb-ml/mageia-webteam/2011-July/001321.html
new file mode 100644
index 000000000..20a77d0d2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/001321.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+ </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%201773%5D%20Only%20mageia.org/fr/support%20includes%20a%0A%20link%20to%20mageia.org/mailman/%2C%20all%20other%20languages%20lack%20it&In-Reply-To=%3C20110729160924.E383843435%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="001320.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201773%5D%20Only%20mageia.org/fr/support%20includes%20a%0A%20link%20to%20mageia.org/mailman/%2C%20all%20other%20languages%20lack%20it&In-Reply-To=%3C20110729160924.E383843435%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jul 29 18:09:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001320.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1321">[ date ]</a>
+ <a href="thread.html#1321">[ thread ]</a>
+ <a href="subject.html#1321">[ subject ]</a>
+ <a href="author.html#1321">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1773">https://bugs.mageia.org/show_bug.cgi?id=1773</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|ASSIGNED |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-07-29 18:09:24 CEST ---
+Most support localized pages now have the link, it will improve further with
+future translation runs.
+
+--
+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="001320.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1321">[ date ]</a>
+ <a href="thread.html#1321">[ thread ]</a>
+ <a href="subject.html#1321">[ subject ]</a>
+ <a href="author.html#1321">[ 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-July/author.html b/zarb-ml/mageia-webteam/2011-July/author.html
new file mode 100644
index 000000000..afe927445
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/author.html
@@ -0,0 +1,377 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam July 2011 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>July 2011 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>Fri Jul 1 00:00:03 CEST 2011</i><br>
+ <b>Ending:</b> <i>Fri Jul 29 18:09:24 CEST 2011</i><br>
+ <b>Messages:</b> 66<p>
+ <ul>
+
+<LI><A HREF="001257.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1257">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001258.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1258">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001259.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1259">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001262.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1262">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001277.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1277">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001282.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1282">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001284.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1284">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001305.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1305">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001301.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1301">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001302.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1302">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001315.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1315">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001318.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1318">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001292.html">[Mageia-webteam] [Bug 2191] [New] Add Google +1 button
+</A><A NAME="1292">&nbsp;</A>
+<I>Wim Coulier
+</I>
+
+<LI><A HREF="001272.html">[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/
+</A><A NAME="1272">&nbsp;</A>
+<I>Juergen Harms
+</I>
+
+<LI><A HREF="001311.html">[Mageia-webteam] [Bug 1830] add a column keywords in the search results
+</A><A NAME="1311">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001312.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1312">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001313.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1313">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001314.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1314">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001261.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1261">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001263.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1263">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001265.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1265">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001276.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1276">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001270.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1270">&nbsp;</A>
+<I>Raphael Jadot
+</I>
+
+<LI><A HREF="001291.html">[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not
+</A><A NAME="1291">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<LI><A HREF="001293.html">[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org
+</A><A NAME="1293">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001307.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1307">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001267.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1267">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001269.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1269">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001289.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1289">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001299.html">[Mageia-webteam] 2011/week 29 review
+</A><A NAME="1299">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001287.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1287">&nbsp;</A>
+<I>Bicycle RepairMan
+</I>
+
+<LI><A HREF="001290.html">[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page
+</A><A NAME="1290">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001273.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1273">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001274.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1274">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001275.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1275">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001280.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1280">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001300.html">[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1300">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001303.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1303">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001309.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1309">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001288.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1288">&nbsp;</A>
+<I>Sebastian Schroeer
+</I>
+
+<LI><A HREF="001296.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1296">&nbsp;</A>
+<I>Sebastian Schroeer
+</I>
+
+<LI><A HREF="001268.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1268">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001286.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="1286">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001266.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1266">&nbsp;</A>
+<I>david bowman
+</I>
+
+<LI><A HREF="001278.html">[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/
+</A><A NAME="1278">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001279.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1279">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001281.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1281">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001283.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1283">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001285.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1285">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001294.html">[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not
+</A><A NAME="1294">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001295.html">[Mageia-webteam] [Bug 2145] 404 on Finnish download page
+</A><A NAME="1295">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001297.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1297">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001298.html">[Mageia-webteam] 2011/week 29 review
+</A><A NAME="1298">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001304.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1304">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001306.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1306">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001310.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1310">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001316.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1316">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001317.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1317">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001319.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1319">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001320.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1320">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001321.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1321">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001255.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1255">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001260.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1260">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001264.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1264">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001271.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1271">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001256.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1256">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Jul 29 18:09:24 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Fri Jul 29 18:09:30 CEST 2011</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/2011-July/date.html b/zarb-ml/mageia-webteam/2011-July/date.html
new file mode 100644
index 000000000..1c8e3e11a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/date.html
@@ -0,0 +1,377 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam July 2011 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>July 2011 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>Fri Jul 1 00:00:03 CEST 2011</i><br>
+ <b>Ending:</b> <i>Fri Jul 29 18:09:24 CEST 2011</i><br>
+ <b>Messages:</b> 66<p>
+ <ul>
+
+<LI><A HREF="001255.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1255">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001256.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1256">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001257.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1257">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001258.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1258">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001259.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1259">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001260.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1260">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001261.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1261">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001262.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1262">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001263.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1263">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001264.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1264">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001265.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1265">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001266.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1266">&nbsp;</A>
+<I>david bowman
+</I>
+
+<LI><A HREF="001267.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1267">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001268.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1268">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001269.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1269">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001270.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1270">&nbsp;</A>
+<I>Raphael Jadot
+</I>
+
+<LI><A HREF="001271.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1271">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001272.html">[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/
+</A><A NAME="1272">&nbsp;</A>
+<I>Juergen Harms
+</I>
+
+<LI><A HREF="001273.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1273">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001274.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1274">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001275.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1275">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001276.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1276">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001277.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1277">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001278.html">[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/
+</A><A NAME="1278">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001279.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1279">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001280.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1280">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001281.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1281">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001282.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1282">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001283.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1283">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001284.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1284">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001285.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1285">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001286.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="1286">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001287.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1287">&nbsp;</A>
+<I>Bicycle RepairMan
+</I>
+
+<LI><A HREF="001288.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1288">&nbsp;</A>
+<I>Sebastian Schroeer
+</I>
+
+<LI><A HREF="001289.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1289">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001290.html">[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page
+</A><A NAME="1290">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001291.html">[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not
+</A><A NAME="1291">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<LI><A HREF="001292.html">[Mageia-webteam] [Bug 2191] [New] Add Google +1 button
+</A><A NAME="1292">&nbsp;</A>
+<I>Wim Coulier
+</I>
+
+<LI><A HREF="001293.html">[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org
+</A><A NAME="1293">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001294.html">[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not
+</A><A NAME="1294">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001295.html">[Mageia-webteam] [Bug 2145] 404 on Finnish download page
+</A><A NAME="1295">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001296.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1296">&nbsp;</A>
+<I>Sebastian Schroeer
+</I>
+
+<LI><A HREF="001297.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1297">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001298.html">[Mageia-webteam] 2011/week 29 review
+</A><A NAME="1298">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001299.html">[Mageia-webteam] 2011/week 29 review
+</A><A NAME="1299">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001300.html">[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1300">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001301.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1301">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001302.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1302">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001303.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1303">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001304.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1304">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001305.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1305">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001306.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1306">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001307.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1307">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001309.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1309">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001310.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1310">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001311.html">[Mageia-webteam] [Bug 1830] add a column keywords in the search results
+</A><A NAME="1311">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001312.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1312">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001313.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1313">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001314.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1314">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001315.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1315">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001316.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1316">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001317.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1317">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001318.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1318">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001319.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1319">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001320.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1320">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001321.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1321">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Jul 29 18:09:24 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Fri Jul 29 18:09:30 CEST 2011</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/2011-July/index.html b/zarb-ml/mageia-webteam/2011-July/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-July/subject.html b/zarb-ml/mageia-webteam/2011-July/subject.html
new file mode 100644
index 000000000..066899bf5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/subject.html
@@ -0,0 +1,377 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam July 2011 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>July 2011 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>Fri Jul 1 00:00:03 CEST 2011</i><br>
+ <b>Ending:</b> <i>Fri Jul 29 18:09:24 CEST 2011</i><br>
+ <b>Messages:</b> 66<p>
+ <ul>
+
+<LI><A HREF="001256.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1256">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001257.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1257">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001258.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1258">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001259.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1259">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001281.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1281">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001282.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1282">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001283.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1283">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001284.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1284">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001285.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1285">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001289.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1289">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001298.html">[Mageia-webteam] 2011/week 29 review
+</A><A NAME="1298">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001299.html">[Mageia-webteam] 2011/week 29 review
+</A><A NAME="1299">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001270.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1270">&nbsp;</A>
+<I>Raphael Jadot
+</I>
+
+<LI><A HREF="001268.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1268">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001319.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1319">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001286.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="1286">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001320.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1320">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001296.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1296">&nbsp;</A>
+<I>Sebastian Schroeer
+</I>
+
+<LI><A HREF="001297.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1297">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001321.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1321">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001267.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1267">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001311.html">[Mageia-webteam] [Bug 1830] add a column keywords in the search results
+</A><A NAME="1311">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001314.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1314">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001275.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1275">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001261.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1261">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001262.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1262">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001263.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1263">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001265.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1265">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001266.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1266">&nbsp;</A>
+<I>david bowman
+</I>
+
+<LI><A HREF="001269.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1269">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001276.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1276">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001277.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1277">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001287.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1287">&nbsp;</A>
+<I>Bicycle RepairMan
+</I>
+
+<LI><A HREF="001288.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1288">&nbsp;</A>
+<I>Sebastian Schroeer
+</I>
+
+<LI><A HREF="001273.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1273">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001274.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1274">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001279.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1279">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001280.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1280">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001272.html">[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/
+</A><A NAME="1272">&nbsp;</A>
+<I>Juergen Harms
+</I>
+
+<LI><A HREF="001278.html">[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/
+</A><A NAME="1278">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001295.html">[Mageia-webteam] [Bug 2145] 404 on Finnish download page
+</A><A NAME="1295">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001290.html">[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page
+</A><A NAME="1290">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001291.html">[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not
+</A><A NAME="1291">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<LI><A HREF="001294.html">[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not
+</A><A NAME="1294">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001292.html">[Mageia-webteam] [Bug 2191] [New] Add Google +1 button
+</A><A NAME="1292">&nbsp;</A>
+<I>Wim Coulier
+</I>
+
+<LI><A HREF="001293.html">[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org
+</A><A NAME="1293">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001300.html">[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1300">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001301.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1301">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001302.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1302">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001303.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1303">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001304.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1304">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001312.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1312">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001313.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1313">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001315.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1315">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001316.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1316">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001317.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1317">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001318.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1318">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001305.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1305">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001306.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1306">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001307.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1307">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001309.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1309">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001310.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1310">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001255.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1255">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001260.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1260">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001264.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1264">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001271.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1271">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Jul 29 18:09:24 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Fri Jul 29 18:09:30 CEST 2011</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/2011-July/thread.html b/zarb-ml/mageia-webteam/2011-July/thread.html
new file mode 100644
index 000000000..076eccfbb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-July/thread.html
@@ -0,0 +1,469 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam July 2011 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>July 2011 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>Fri Jul 1 00:00:03 CEST 2011</i><br>
+ <b>Ending:</b> <i>Fri Jul 29 18:09:24 CEST 2011</i><br>
+ <b>Messages:</b> 66<p>
+ <ul>
+
+<!--0 01309471203- -->
+<LI><A HREF="001255.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1255">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309473429- -->
+<LI><A HREF="001256.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1256">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<UL>
+<!--1 01309473429-01309476333- -->
+<LI><A HREF="001257.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1257">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01309473429-01309476457- -->
+<LI><A HREF="001258.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1258">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--0 01309478523- -->
+<LI><A HREF="001259.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1259">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--1 01309478523-01310055829- -->
+<LI><A HREF="001281.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1281">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01309478523-01310055829-01310057982- -->
+<LI><A HREF="001282.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1282">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--3 01309478523-01310055829-01310057982-01310068103- -->
+<LI><A HREF="001283.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1283">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01309478523-01310055829-01310057982-01310068103-01310071001- -->
+<LI><A HREF="001284.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1284">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01309478523-01310055829-01310057982-01310068103-01310071001-01310071770- -->
+<LI><A HREF="001285.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1285">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01309557603- -->
+<LI><A HREF="001260.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1260">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309607126- -->
+<LI><A HREF="001261.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1261">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--0 01309608288- -->
+<LI><A HREF="001262.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1262">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--0 01309613975- -->
+<LI><A HREF="001263.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1263">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--0 01309644003- -->
+<LI><A HREF="001264.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1264">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309644786- -->
+<LI><A HREF="001265.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1265">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--0 01309673904- -->
+<LI><A HREF="001266.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1266">&nbsp;</A>
+<I>david bowman
+</I>
+
+<!--0 01309704006- -->
+<LI><A HREF="001267.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1267">&nbsp;</A>
+<I>Maat
+</I>
+
+<!--0 01309705099- -->
+<LI><A HREF="001268.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1268">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--0 01309710218- -->
+<LI><A HREF="001269.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1269">&nbsp;</A>
+<I>Maat
+</I>
+
+<!--0 01309713159- -->
+<LI><A HREF="001270.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1270">&nbsp;</A>
+<I>Raphael Jadot
+</I>
+
+<!--0 01309730403- -->
+<LI><A HREF="001271.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1271">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309792242- -->
+<LI><A HREF="001272.html">[Mageia-webteam] [Bug 2023] [New] Bad link in http://www.mageia.org/en/contribute/
+</A><A NAME="1272">&nbsp;</A>
+<I>Juergen Harms
+</I>
+
+<UL>
+<!--1 01309792242-01309972139- -->
+<LI><A HREF="001278.html">[Mageia-webteam] [Bug 2023] Bad link in http://www.mageia.org/en/contribute/
+</A><A NAME="1278">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01309815983- -->
+<LI><A HREF="001273.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1273">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01309819508- -->
+<LI><A HREF="001274.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1274">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01309828917- -->
+<LI><A HREF="001275.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1275">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01309907278- -->
+<LI><A HREF="001276.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1276">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--0 01309909218- -->
+<LI><A HREF="001277.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1277">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--0 01309972348- -->
+<LI><A HREF="001279.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1279">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01309981745- -->
+<LI><A HREF="001280.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1280">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01310233158- -->
+<LI><A HREF="001286.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="1286">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--0 01310292805- -->
+<LI><A HREF="001287.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1287">&nbsp;</A>
+<I>Bicycle RepairMan
+</I>
+
+<!--0 01310317255- -->
+<LI><A HREF="001288.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1288">&nbsp;</A>
+<I>Sebastian Schroeer
+</I>
+
+<!--0 01310554825- -->
+<LI><A HREF="001289.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1289">&nbsp;</A>
+<I>Matteo
+</I>
+
+<!--0 01310622341- -->
+<LI><A HREF="001290.html">[Mageia-webteam] [Bug 2145] [New] 404 on Finnish download page
+</A><A NAME="1290">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<UL>
+<!--1 01310622341-01311003058- -->
+<LI><A HREF="001295.html">[Mageia-webteam] [Bug 2145] 404 on Finnish download page
+</A><A NAME="1295">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01310917894- -->
+<LI><A HREF="001291.html">[Mageia-webteam] [Bug 2177] [New] Some links on Slovenian pages are fine others are not
+</A><A NAME="1291">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<UL>
+<!--1 01310917894-01311002954- -->
+<LI><A HREF="001294.html">[Mageia-webteam] [Bug 2177] Some links on Slovenian pages are fine others are not
+</A><A NAME="1294">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01310998555- -->
+<LI><A HREF="001292.html">[Mageia-webteam] [Bug 2191] [New] Add Google +1 button
+</A><A NAME="1292">&nbsp;</A>
+<I>Wim Coulier
+</I>
+
+<UL>
+<!--1 01310998555-01311000431- -->
+<LI><A HREF="001293.html">[Mageia-webteam] [Bug 2191] Add Google +1 button on blogs.mageia.org
+</A><A NAME="1293">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+</UL>
+<!--0 01311072095- -->
+<LI><A HREF="001296.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1296">&nbsp;</A>
+<I>Sebastian Schroeer
+</I>
+
+<!--0 01311079112- -->
+<LI><A HREF="001297.html">[Mageia-webteam] [Bug 1737] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1297">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01311083818- -->
+<LI><A HREF="001298.html">[Mageia-webteam] 2011/week 29 review
+</A><A NAME="1298">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01311083818-01311110651- -->
+<LI><A HREF="001299.html">[Mageia-webteam] 2011/week 29 review
+</A><A NAME="1299">&nbsp;</A>
+<I>Matteo
+</I>
+
+</UL>
+<!--0 01311252907- -->
+<LI><A HREF="001300.html">[Mageia-webteam] [Bug 2225] [New] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1300">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01311252907-01311257654- -->
+<LI><A HREF="001301.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1301">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01311252907-01311257895- -->
+<LI><A HREF="001302.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1302">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01311252907-01311259130- -->
+<LI><A HREF="001303.html">[Mageia-webteam] [Bug 2225] Create a extension to assign people in CC if some keyword are added
+</A><A NAME="1303">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01311762240- -->
+<LI><A HREF="001304.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1304">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01311770584- -->
+<LI><A HREF="001305.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1305">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--1 01311770584-01311786170- -->
+<LI><A HREF="001306.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1306">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01311770584-01311786170-01311786518- -->
+<LI><A HREF="001307.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1307">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<!--2 01311770584-01311786170-01311805165- -->
+<LI><A HREF="001309.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1309">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--3 01311770584-01311786170-01311805165-01311859261- -->
+<LI><A HREF="001310.html">[Mageia-webteam] Missing favicons (list of Mageia pages)
+</A><A NAME="1310">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01311870760- -->
+<LI><A HREF="001311.html">[Mageia-webteam] [Bug 1830] add a column keywords in the search results
+</A><A NAME="1311">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01311884716- -->
+<LI><A HREF="001312.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1312">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01311884821- -->
+<LI><A HREF="001313.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1313">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01311884970- -->
+<LI><A HREF="001314.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1314">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01311887300- -->
+<LI><A HREF="001315.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1315">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01311887679- -->
+<LI><A HREF="001316.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1316">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01311888236- -->
+<LI><A HREF="001317.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1317">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01311888536- -->
+<LI><A HREF="001318.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A><A NAME="1318">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01311955358- -->
+<LI><A HREF="001319.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1319">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01311955530- -->
+<LI><A HREF="001320.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1320">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01311955764- -->
+<LI><A HREF="001321.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1321">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Jul 29 18:09:24 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Fri Jul 29 18:09:30 CEST 2011</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-June.txt.gz b/zarb-ml/mageia-webteam/2011-June.txt.gz
new file mode 100644
index 000000000..96ad758e3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-June/001020.html b/zarb-ml/mageia-webteam/2011-June/001020.html
new file mode 100644
index 000000000..09f29f303
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001020.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=%3C20110531220003.320FA42C5C%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="001021.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=%3C20110531220003.320FA42C5C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 1 00:00:03 CEST 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001021.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1020">[ date ]</a>
+ <a href="thread.html#1020">[ thread ]</a>
+ <a href="subject.html#1020">[ subject ]</a>
+ <a href="author.html#1020">[ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="001021.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1020">[ date ]</a>
+ <a href="thread.html#1020">[ thread ]</a>
+ <a href="subject.html#1020">[ subject ]</a>
+ <a href="author.html#1020">[ 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-June/001021.html b/zarb-ml/mageia-webteam/2011-June/001021.html
new file mode 100644
index 000000000..de1f5fc95
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001021.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTikUtBzKuS0egBnOJ%2BtLar53GQwWZw%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="001020.html">
+ <LINK REL="Next" HREF="001022.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTikUtBzKuS0egBnOJ%2BtLar53GQwWZw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">terraagua at gmail.com
+ </A><BR>
+ <I>Wed Jun 1 04:30:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001020.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001022.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1021">[ date ]</a>
+ <a href="thread.html#1021">[ thread ]</a>
+ <a href="subject.html#1021">[ subject ]</a>
+ <a href="author.html#1021">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Romain,
+
+I send text only with the portuguese language (downloads_locales-551*-pt*
+.txt&lt;?ui=2&amp;ik=77ed19d871&amp;view=att&amp;th=13049005161d154b&amp;attid=0.2&amp;disp=attd&amp;realattid=f_godn3g5l1&amp;zw&gt;
+) copied and translated of the file *trunk* &quot;downloads_locales.php&quot; (Revision
+*551* &lt;<A HREF="http://svnweb.mageia.org/web?view=revision&amp;revision=551">http://svnweb.mageia.org/web?view=revision&amp;revision=551</A>&gt; ).
+
+Link:
+<A HREF="http://svnweb.mageia.org/web/www/trunk/downloads_locales.php?view=markup">http://svnweb.mageia.org/web/www/trunk/downloads_locales.php?view=markup</A>
+
+ I hope I have done everything correctly. If there were errors, please let
+me know to correct them.
+
+Cheers!
+
+Macxi
+
+2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;
+
+&gt;<i> 2011/5/31 R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rverschelde at gmail.com</A>&gt;:
+</I>&gt;<i> &gt; 2011/5/31 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+</I>&gt;<i> &gt;&gt; I already do the translation (to pt) of the blog/news, how do I
+</I>&gt;<i> translate
+</I>&gt;<i> &gt;&gt; for the site?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; You can find the php array here:
+</I>&gt;<i> &gt;
+</I>&gt;<i> <A HREF="http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup">http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup</A>
+</I>&gt;<i> &gt; You can copy in a new file the 'en' array, i.e. from &quot; 'en' =&gt; array(
+</I>&gt;<i> &gt; &quot; to &quot; ), &quot; before the 'de' array.
+</I>&gt;<i> &gt; Then you change 'en' to 'pt' and you can translate every paragraphs.
+</I>&gt;<i> &gt; If you send this file to Romain or Oliver it will be much easier for
+</I>&gt;<i> &gt; them to implement the translation (they will just have to copy-paste
+</I>&gt;<i> &gt; the contents of your file after the other translations).
+</I>&gt;<i>
+</I>&gt;<i> Yes.
+</I>&gt;<i>
+</I>&gt;<i> I just want to add that we (me, Oliver and certainly many others) do
+</I>&gt;<i> know/realize that this is a messy process/platform to manage
+</I>&gt;<i> translations. It could be much better than that, but at least we know
+</I>&gt;<i> why/how. Hopefully during the Summer we'll get to something better for
+</I>&gt;<i> both designing and translating pages.
+</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/20110531/f11933d9/attachment.html&gt;
+-------------- next part --------------
+ 'pt' =&gt; array(
+ 'download' =&gt; 'download',
+ 'page_title' =&gt; 'Download %s',
+ 'page_desc' =&gt; 'Onde voc&#234; pode fazer download da imagens ISO da Mageia instal&#225;vel e liveCDs.',
+ 'page_kw' =&gt; 'mageia, software, download, sistema operacional, ISO, computador, torrent, ftp',
+ 'page_h1' =&gt; 'Download %s',
+ 'warn_1' =&gt; 'Tenha cuidado!
+ Isto N&#195;O &#201; PARA: uso, utiliza&#231;&#227;o publica, pessoal ou avalia&#231;&#227;o de produ&#231;&#227;o.
+ Isto &#233; PARA: somente desenvolvedores, empacotadores e usu&#225;rios testadores.',
+ 'warn_2' =&gt; 'O que quer que voc&#234; possa fazer com a imagem de disco ISO fornecida ser&#225; feito por sua pr&#243;pria conta e risco, com sua pr&#243;pria responsabilidade.',
+ 'title_ok' =&gt; 'Voc&#234; ainda deseja fazer o download e teste com o Mageia 1 RC?',
+ 'dl_help' =&gt; 'Basta escolher a imagem ISO que for melhor para voc&#234;. Se voc&#234; n&#227;o tiver certeza de qual &#233; a melhor para voc&#234;, voc&#234; deve escolher entre as duas primeiras.',
+ 'changes_since_a2' =&gt; 'Mudan&#231;as desde o Beta 2',
+ 'release_docs' =&gt; 'Documenta&#231;&#227;o de Lan&#231;amento',
+ 'whatismageia' =&gt; 'O que &#233; Mageia?',
+ 'size' =&gt; 'Tamanho',
+ 'flavour' =&gt; 'Op&#231;&#227;o',
+ 'language' =&gt; 'Idioma',
+ 'link' =&gt; 'Link Direto',
+ 'dl_shld_start' =&gt; 'Seu download de %s deve iniciar dentro de alguns segundos',
+ 'dl_size' =&gt; '(o tamanho do download &#233; aproximadamente %s).',
+ 'alt_download' =&gt; 'Se o download n&#227;o iniciar, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;clique aqui&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Assim que o download estiver completo, voc&#234; deve verificar a assinatura correspondente:',
+ 'signs_check_2' =&gt; 'Se as assinaturas n&#227;o correponderem, n&#227;o use esta imagem ISO. Fa&#231;a dupla checagem e tente o download novamente.',
+ 'dl_mirror_loc' =&gt; 'Este &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; espelho de download est&#225; localizado em %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Se isso n&#227;o funciona bem para voc&#234;, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;check out these other mirrors&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'O que voc&#234; acha disso?',
+ 'give_feedback' =&gt; 'Voc&#234;s s&#227;o muito bem-vindos para dar sua opini&#227;o ao Mageia 1 RC, onde voc&#234; desejar:
+ nos &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;nossos f&#243;runs&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;our blog&lt;/a&gt;, no &lt;em&gt;seu&lt;/em&gt; blog,
+ no Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ Em qualquer caso, por favor, link ao &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Se voc&#234; encontrar um bug, por favor, &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;veja como comunic&#225;-lo&lt;/a&gt;
+ em nosso banco de dados de bugs, n&#243;s podemos resolv&#234;-los da melhor forma poss&#237;vel.',
+ 'notify_web' =&gt; 'Se voc&#234; observer um proplema com o processo/p&#225;gina de download, por favor, comunique a Equipe Web no &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC channel, para que possamos resolver isso o mais r&#225;pido poss&#237;vel.
+Note que as tradu&#231;&#245;es est&#227;o no seu caminho.',
+ 'wanttohelp?' =&gt; 'Precisa de ajuda? %sJunte-se a n&#243;s!%s',
+ 'ucanhelp' =&gt; 'Sim voc&#234; pode! Mageia &#233; o resultado da vontade e da colabora&#231;&#227;o de muitos volunt&#225;rios companheiros felizes em todo o mundo.'
+ &quot;Wherehelp '=&gt;' Existe uma s&#233;rie de &#225;reas onde se pode contribuir para o projeto.
+ Seja na defesa, cria&#231;&#227;o,
+ %scomunica&#231;&#227;o%s, %sWeb design &amp;amp; desenvolvimento%s,
+ para design de software, desenvolvimento,
+ %stradu&#231;&#227;o%s, %sempacotamento%s, %sQA &amp;amp; testando%s,
+ fornecimento, para suporte comunit&#225;rio &amp;amp; anima&#231;&#227;o,
+ for %sdonating money%s,
+ hardware, hospedagem, tempo, para compartilhar divertimento.',
+ 'all_languages' =&gt; 'Todos os suportados : at&#233; 167 idiomas s&#227;o suportados: alem&#227;o, ingl&#234;s, espanhol, franc&#234;s, italiano, portugu&#234;s, sueco, holand&#234;s, polon&#234;s, dinamarqu&#234;s e muito mais!
+ Veja a &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;lista completa&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Conjunto de idiomas europeu: alem&#227;o, ingl&#234;s (diversas variantes), espanhol, franc&#234;s, italiano, polon&#234;s, portugu&#234;s do Brasil, russo.
+ Mais idiomas ser&#227;o disponibilizados para a vers&#227;o est&#225;vel.',
+ 'limited_languages' =&gt; 'Limitado: bielorrusso, catal&#227;o, alem&#227;o, ingl&#234;s, espanhol, franc&#234;s, h&#250;ngaro, polon&#234;s, italiano, portugu&#234;s, ucraniano,'
+ 'All supported' =&gt; 'Todos Suportados',
+ 'English' =&gt; 'Ingl&#234;s',
+ 'Limited' =&gt; 'Limitado',
+ 'European set' =&gt; 'Idiomas europeus'
+ ),
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001020.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001022.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1021">[ date ]</a>
+ <a href="thread.html#1021">[ thread ]</a>
+ <a href="subject.html#1021">[ subject ]</a>
+ <a href="author.html#1021">[ 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-June/001022.html b/zarb-ml/mageia-webteam/2011-June/001022.html
new file mode 100644
index 000000000..41502de93
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001022.html
@@ -0,0 +1,112 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%20install%0A%09Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTi%3DWaXrw0w-F_G_c9UFChMXsCYTn%3DQ%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="001021.html">
+ <LINK REL="Next" HREF="001023.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%20install%0A%09Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTi%3DWaXrw0w-F_G_c9UFChMXsCYTn%3DQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE">terraagua at gmail.com
+ </A><BR>
+ <I>Wed Jun 1 17:17:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001021.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001023.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1022">[ date ]</a>
+ <a href="thread.html#1022">[ thread ]</a>
+ <a href="subject.html#1022">[ subject ]</a>
+ <a href="author.html#1022">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello,
+
+Congratulations team Mageia.
+I installed Mageia 1 in VirtualBox and everything went well.
+
+Now I will install on the HD.
+
+I sending links to a suggestion of a poster/folder with a &quot;quick guide&quot; to
+installing a Mageia 1, KDE LiveCD.
+
+The text is in english (but needs fixing) and the images are in english (I
+did an installation of a Mageia 1 in english).
+
+Link to file of poster withOUT filter:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-guia-instala-Mageia/english/Quick-Installation-Guide-en-Mageia1-withOUT-filters-ok.png">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-guia-instala-Mageia/english/Quick-Installation-Guide-en-Mageia1-withOUT-filters-ok.png</A>
+
+Link to file of poster with filter:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-guia-instala-Mageia/english/Quick-Installation-Guide-en-Mageia1-with-filters-ok.png">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-guia-instala-Mageia/english/Quick-Installation-Guide-en-Mageia1-with-filters-ok.png</A>
+
+Link to file of poster svg format:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-guia-instala-Mageia/english/Quick-Installation-Guide-en-Mageia1-ok.svg">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-guia-instala-Mageia/english/Quick-Installation-Guide-en-Mageia1-ok.svg</A>
+
+The suggestion is that this poster is only the introduction of a longer text
+with more detailed explanations in Mageia wiki, as I did in MandrivaBrasil
+&lt;goog_337853583&gt;wiki&lt;<A HREF="http://docs.mandriva-br.org/mandriva/dicas_para_iniciantes/dica/instala_mandriva_2010_1_spring_one_livecd_kde">http://docs.mandriva-br.org/mandriva/dicas_para_iniciantes/dica/instala_mandriva_2010_1_spring_one_livecd_kde</A>&gt;
+, and as I'm doing on the wiki &lt;goog_337853588&gt;
+MageiaBrasil&lt;<A HREF="http://wiki.mageiabr.org/mageia/instalar">http://wiki.mageiabr.org/mageia/instalar</A>&gt;
+
+I am also suggesting a slogan for Mageia (at the end of the poster):
+
+&quot;User-Community Mageia&quot;
+&quot;Expanding the freedom of choice. &quot;
+
+&quot;Mageia&quot;
+&quot;Expanding the freedom of choice &quot;&quot;
+
+
+Note 1: I edited this image in the distribuition Mageia 1 RC , and I used
+the software KSnapshot, Gimp and Inkscape.
+
+Note 1: I exported In Inkscape 2 imagens in PNG, one without fiilter and
+other I applied 2 filters in images:
+
+a) first, I applied the filter &quot;black outline&quot; (toolbar: filter/ABCs/black
+outline), which makes the edge of images and;
+
+b) after, over the filter &quot;black outline&quot;, I applied the filter &quot;combined
+lighting&quot; (toolbar: filter/bevels/combined lighting).
+
+c) the &quot;text frame&quot; were only applied the filter &quot;combind lighting&quot;.
+
+
+Macxi
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110601/a735d897/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001021.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001023.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1022">[ date ]</a>
+ <a href="thread.html#1022">[ thread ]</a>
+ <a href="subject.html#1022">[ subject ]</a>
+ <a href="author.html#1022">[ 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-June/001023.html b/zarb-ml/mageia-webteam/2011-June/001023.html
new file mode 100644
index 000000000..d0eeaaccf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001023.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTin%3DrooXnAu8-_DZy1XhYYu%2BES5sTg%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="001022.html">
+ <LINK REL="Next" HREF="001029.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTin%3DrooXnAu8-_DZy1XhYYu%2BES5sTg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Jun 1 17:25:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001022.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001029.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1023">[ date ]</a>
+ <a href="thread.html#1023">[ thread ]</a>
+ <a href="subject.html#1023">[ subject ]</a>
+ <a href="author.html#1023">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/1 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+&gt;<i> Hello,
+</I>&gt;<i>
+</I>&gt;<i> Congratulations team Mageia.
+</I>&gt;<i> I installed Mageia 1 in VirtualBox&#160; and everything went well.
+</I>&gt;<i>
+</I>&gt;<i> Now I will install on the HD.
+</I>&gt;<i>
+</I>&gt;<i> I sending links to a suggestion of a poster/folder with a &quot;quick guide&quot; to
+</I>&gt;<i> installing a Mageia 1, KDE LiveCD.
+</I>
+I've been working on a German edition of these posters you offered in
+the forum. Unfortunately other work came in my way but I will keep
+this up and present them soon.
+
+I've made a German poster of the quick guide to media configuration,
+exporting it into svg, eps and pdf - looks good.
+
+I guess this is rather a marcomm topic, to use such posters at events
+and install parties. We can also place them on a server and put links
+in the wiki, etc.
+
+--
+wobo
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001022.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001029.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1023">[ date ]</a>
+ <a href="thread.html#1023">[ thread ]</a>
+ <a href="subject.html#1023">[ subject ]</a>
+ <a href="author.html#1023">[ 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-June/001024.html b/zarb-ml/mageia-webteam/2011-June/001024.html
new file mode 100644
index 000000000..f3a732dae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001024.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] [New] SSL for checksums
+ </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%201512%5D%20%5BNew%5D%20SSL%20for%20checksums&In-Reply-To=%3Cbug-1512-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="001054.html">
+ <LINK REL="Next" HREF="001025.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] [New] SSL for checksums</H1>
+ <B>Fabian Wannenmacher</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20%5BNew%5D%20SSL%20for%20checksums&In-Reply-To=%3Cbug-1512-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] [New] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 1 22:34:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001054.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001025.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1024">[ date ]</a>
+ <a href="thread.html#1024">[ thread ]</a>
+ <a href="subject.html#1024">[ subject ]</a>
+ <a href="author.html#1024">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+
+ Summary: SSL for checksums
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/de/downloads/dl.php?product=mage">http://www.mageia.org/de/downloads/dl.php?product=mage</A>
+ ia-1-cd-dualarch
+ 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">wannespam at googlemail.com</A>
+
+
+Description of problem:
+If you provide the sites with checksums over SSL, it would be much easier to
+verify the downloaded file.
+
+--
+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="001054.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001025.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1024">[ date ]</a>
+ <a href="thread.html#1024">[ thread ]</a>
+ <a href="subject.html#1024">[ subject ]</a>
+ <a href="author.html#1024">[ 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-June/001025.html b/zarb-ml/mageia-webteam/2011-June/001025.html
new file mode 100644
index 000000000..72d69789f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001025.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] SSL for checksums
+ </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%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20110601203625.1A99842C7F%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="001024.html">
+ <LINK REL="Next" HREF="001026.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] SSL for checksums</H1>
+ <B>Fabian Wannenmacher</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20110601203625.1A99842C7F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 1 22:36:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001024.html">[Mageia-webteam] [Bug 1512] [New] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001026.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1025">[ date ]</a>
+ <a href="thread.html#1025">[ thread ]</a>
+ <a href="subject.html#1025">[ subject ]</a>
+ <a href="author.html#1025">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+
+Fabian Wannenmacher &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">wannespam at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Severity|normal |enhancement
+ Priority|Normal |Low
+
+--
+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="001024.html">[Mageia-webteam] [Bug 1512] [New] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001026.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1025">[ date ]</a>
+ <a href="thread.html#1025">[ thread ]</a>
+ <a href="subject.html#1025">[ subject ]</a>
+ <a href="author.html#1025">[ 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-June/001026.html b/zarb-ml/mageia-webteam/2011-June/001026.html
new file mode 100644
index 000000000..74761d920
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001026.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] SSL for checksums
+ </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%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20110601211215.9ED1142C90%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="001025.html">
+ <LINK REL="Next" HREF="001027.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] SSL for checksums</H1>
+ <B>Thomas Backlund</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20110601211215.9ED1142C90%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 1 23:12:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001025.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001027.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1026">[ date ]</a>
+ <a href="thread.html#1026">[ thread ]</a>
+ <a href="subject.html#1026">[ subject ]</a>
+ <a href="author.html#1026">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+
+Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>
+
+--- Comment #1 from Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; 2011-06-01 23:12:15 CEST ---
+
+You can verify that the files are correct with the gpg keys,
+
+--
+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="001025.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001027.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1026">[ date ]</a>
+ <a href="thread.html#1026">[ thread ]</a>
+ <a href="subject.html#1026">[ subject ]</a>
+ <a href="author.html#1026">[ 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-June/001027.html b/zarb-ml/mageia-webteam/2011-June/001027.html
new file mode 100644
index 000000000..f15492eaa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001027.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] SSL for checksums
+ </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%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20110601211607.6B7D642C92%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="001026.html">
+ <LINK REL="Next" HREF="001028.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] SSL for checksums</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20110601211607.6B7D642C92%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 1 23:16:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001026.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001028.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1027">[ date ]</a>
+ <a href="thread.html#1027">[ thread ]</a>
+ <a href="subject.html#1027">[ subject ]</a>
+ <a href="author.html#1027">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</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 #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-01 23:16:07 CEST ---
+there is https on www.mageia.org but it seems to not work. I will look at it,
+as this on zarb 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001026.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001028.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1027">[ date ]</a>
+ <a href="thread.html#1027">[ thread ]</a>
+ <a href="subject.html#1027">[ subject ]</a>
+ <a href="author.html#1027">[ 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-June/001028.html b/zarb-ml/mageia-webteam/2011-June/001028.html
new file mode 100644
index 000000000..cd812367d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001028.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] SSL for checksums
+ </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%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20110601212958.3133C42C8F%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="001027.html">
+ <LINK REL="Next" HREF="001030.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] SSL for checksums</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20110601212958.3133C42C8F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 1 23:29:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001027.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001030.html">[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1028">[ date ]</a>
+ <a href="thread.html#1028">[ thread ]</a>
+ <a href="subject.html#1028">[ subject ]</a>
+ <a href="author.html#1028">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-01 23:29:58 CEST ---
+Mhh since the website is on zarb, we cannot place our wildcart cert there. So
+this will have to wait until we move to our servers.
+
+--
+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="001027.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001030.html">[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1028">[ date ]</a>
+ <a href="thread.html#1028">[ thread ]</a>
+ <a href="subject.html#1028">[ subject ]</a>
+ <a href="author.html#1028">[ 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-June/001029.html b/zarb-ml/mageia-webteam/2011-June/001029.html
new file mode 100644
index 000000000..2854ba180
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001029.html
@@ -0,0 +1,131 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTimGCbcBHBoQzHSnnPF95M-6dUwaAg%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="001023.html">
+ <LINK REL="Next" HREF="001034.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTimGCbcBHBoQzHSnnPF95M-6dUwaAg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE">terraagua at gmail.com
+ </A><BR>
+ <I>Wed Jun 1 23:46:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001023.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001034.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1029">[ date ]</a>
+ <a href="thread.html#1029">[ thread ]</a>
+ <a href="subject.html#1029">[ subject ]</a>
+ <a href="author.html#1029">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Wobo,
+
+I sending links with suggestion of posters (improved) of &quot;Quick guide for
+installation media (software repository) in Mageia 1 KDE&quot;, with text in
+english (but needs fixing) and images in english of Mageia 1.
+
+All SVG files that I'm sending with embedded images.
+
+Macxi.
+
+___________________________
+
+Link to file of poster withOUT filter:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-withOUT-filter-01-6-2011-ok.png">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-withOUT-filter-01-6-2011-ok.png</A>
+
+Link to file of poster with filter:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-with-filter-01-6-2011-ok.png">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-with-filter-01-6-2011-ok.png</A>
+
+Link to file of poster SVG format:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-with-filter-01-6-2011-ok.svg">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-with-filter-01-6-2011-ok.svg</A>
+
+
+Note 1: I edited this image in the distribuition Mageia 1 RC , and I used
+the software KSnapshot, Gimp and Inkscape.
+
+Note 1: I exported In Inkscape 2 imagens in PNG, one without fiilter and
+other I applied 2 filters in images:
+
+a) first, I applied the filter &quot;black outline&quot; (toolbar: filter/ABCs/black
+outline), which makes the edge of images and;
+
+b) after, over the filter &quot;black outline&quot;, I applied the filter &quot;combined
+lighting&quot; (toolbar: filter/bevels/combined lighting).
+
+c) the &quot;text frame&quot; were only applied the filter &quot;combind lighting&quot;
+
+
+
+
+
+2011/6/1 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;
+
+&gt;<i> 2011/6/1 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+</I>&gt;<i> &gt; Hello,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Congratulations team Mageia.
+</I>&gt;<i> &gt; I installed Mageia 1 in VirtualBox and everything went well.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Now I will install on the HD.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I sending links to a suggestion of a poster/folder with a &quot;quick guide&quot;
+</I>&gt;<i> to
+</I>&gt;<i> &gt; installing a Mageia 1, KDE LiveCD.
+</I>&gt;<i>
+</I>&gt;<i> I've been working on a German edition of these posters you offered in
+</I>&gt;<i> the forum. Unfortunately other work came in my way but I will keep
+</I>&gt;<i> this up and present them soon.
+</I>&gt;<i>
+</I>&gt;<i> I've made a German poster of the quick guide to media configuration,
+</I>&gt;<i> exporting it into svg, eps and pdf - looks good.
+</I>&gt;<i>
+</I>&gt;<i> I guess this is rather a marcomm topic, to use such posters at events
+</I>&gt;<i> and install parties. We can also place them on a server and put links
+</I>&gt;<i> in the wiki, etc.
+</I>&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> wobo
+</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/20110601/c0d0ba27/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001023.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001034.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1029">[ date ]</a>
+ <a href="thread.html#1029">[ thread ]</a>
+ <a href="subject.html#1029">[ subject ]</a>
+ <a href="author.html#1029">[ 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-June/001030.html b/zarb-ml/mageia-webteam/2011-June/001030.html
new file mode 100644
index 000000000..68c1d4cb8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001030.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1514] [New] Error in links to access packaging 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%201514%5D%20%5BNew%5D%20Error%20in%20links%20to%20access%0A%09packaging%20page&In-Reply-To=%3Cbug-1514-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="001028.html">
+ <LINK REL="Next" HREF="001038.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page</H1>
+ <B>Christophe Lafaille</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201514%5D%20%5BNew%5D%20Error%20in%20links%20to%20access%0A%09packaging%20page&In-Reply-To=%3Cbug-1514-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 1 23:46:48 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001028.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001038.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1030">[ date ]</a>
+ <a href="thread.html#1030">[ thread ]</a>
+ <a href="subject.html#1030">[ subject ]</a>
+ <a href="author.html#1030">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1514">https://bugs.mageia.org/show_bug.cgi?id=1514</A>
+
+ Summary: Error in links to access packaging page
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://mageia.org/fr/contribute/">http://mageia.org/fr/contribute/</A>
+ 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">Christophe.Lafaille at club-internet.fr</A>
+
+
+Description of problem:
+A link in french version is not correct :
+ <A HREF="http://mageia.org/wiki/doku.php?id=pacagers">http://mageia.org/wiki/doku.php?id=pacagers</A>
+instead of (found in english version)
+ <A HREF="http://mageia.org/wiki/doku.php?id=packagers">http://mageia.org/wiki/doku.php?id=packagers</A>
+
+In any case, page <A HREF="http://mageia.org/wiki/doku.php?id=packagers">http://mageia.org/wiki/doku.php?id=packagers</A> seems empty...
+is it normal ?
+
+In fact, the exact page is <A HREF="http://mageia.org/wiki/doku.php?id=packaging">http://mageia.org/wiki/doku.php?id=packaging</A>
+
+So, the link is not correct also in english version (I've haven't checked all
+other languages but it's also the case for espanol version)
+
+--
+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="001028.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001038.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1030">[ date ]</a>
+ <a href="thread.html#1030">[ thread ]</a>
+ <a href="subject.html#1030">[ subject ]</a>
+ <a href="author.html#1030">[ 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-June/001031.html b/zarb-ml/mageia-webteam/2011-June/001031.html
new file mode 100644
index 000000000..573be485f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001031.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for 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%201515%5D%20%5BNew%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3Cbug-1515-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="001060.html">
+ <LINK REL="Next" HREF="001033.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website</H1>
+ <B>Christophe Lafaille</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201515%5D%20%5BNew%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3Cbug-1515-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 1 23:57:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001060.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001033.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1031">[ date ]</a>
+ <a href="thread.html#1031">[ thread ]</a>
+ <a href="subject.html#1031">[ subject ]</a>
+ <a href="author.html#1031">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+
+ Summary: Bad bugzilla link for website
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://mageia.org/wiki/doku.php?id=web">http://mageia.org/wiki/doku.php?id=web</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">Christophe.Lafaille at club-internet.fr</A>
+
+
+Description of problem:
+In &quot;Web and information system team&quot;, in section &quot;bugs and issues:&quot; it seems
+the link is not correct.
+
+When you click on the link (
+<A HREF="https://bugs.mageia.org/buglist.cgi?cmdtype=runnamed&amp;namedcmd=Websites%20bugs">https://bugs.mageia.org/buglist.cgi?cmdtype=runnamed&amp;namedcmd=Websites%20bugs</A>
+), this message is generated by bugzilla :
+
+ There is no saved search named 'Websites bugs'.
+
+
+I suppose correct link is something like this one (see all Websites sections):
+ <A HREF="https://bugs.mageia.org/describecomponents.cgi?product=Websites">https://bugs.mageia.org/describecomponents.cgi?product=Websites</A>
+
+or this one (see all opened bugz):
+
+<A HREF="https://bugs.mageia.org/buglist.cgi?query_format=specific&amp;order=relevance+desc&amp;bug_status=__open__&amp;product=Websites&amp;content=">https://bugs.mageia.org/buglist.cgi?query_format=specific&amp;order=relevance+desc&amp;bug_status=__open__&amp;product=Websites&amp;content=</A>
+
+Correct link depends on what it's expected...
+
+--
+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="001060.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001033.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1031">[ date ]</a>
+ <a href="thread.html#1031">[ thread ]</a>
+ <a href="subject.html#1031">[ subject ]</a>
+ <a href="author.html#1031">[ 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-June/001032.html b/zarb-ml/mageia-webteam/2011-June/001032.html
new file mode 100644
index 000000000..a96f2eb31
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001032.html
@@ -0,0 +1,143 @@
+<!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=%3C20110601220003.141EA42C96%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="001249.html">
+ <LINK REL="Next" HREF="001036.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=%3C20110601220003.141EA42C96%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001249.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001036.html">[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1032">[ date ]</a>
+ <a href="thread.html#1032">[ thread ]</a>
+ <a href="subject.html#1032">[ subject ]</a>
+ <a href="author.html#1032">[ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001249.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001036.html">[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1032">[ date ]</a>
+ <a href="thread.html#1032">[ thread ]</a>
+ <a href="subject.html#1032">[ subject ]</a>
+ <a href="author.html#1032">[ 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-June/001033.html b/zarb-ml/mageia-webteam/2011-June/001033.html
new file mode 100644
index 000000000..e3c0058d1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001033.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1515] Bad bugzilla link for 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%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110601220720.E0A5142C8F%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="001031.html">
+ <LINK REL="Next" HREF="001035.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1515] Bad bugzilla link for website</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110601220720.E0A5142C8F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1515] Bad bugzilla link for website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 00:07:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001031.html">[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001035.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1033">[ date ]</a>
+ <a href="thread.html#1033">[ thread ]</a>
+ <a href="subject.html#1033">[ subject ]</a>
+ <a href="author.html#1033">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-06-02 00:07:21 CEST ---
+it's a wiki, you can edit 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001031.html">[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001035.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1033">[ date ]</a>
+ <a href="thread.html#1033">[ thread ]</a>
+ <a href="subject.html#1033">[ subject ]</a>
+ <a href="author.html#1033">[ 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-June/001034.html b/zarb-ml/mageia-webteam/2011-June/001034.html
new file mode 100644
index 000000000..8763f2260
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001034.html
@@ -0,0 +1,120 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTikiT-FUmsvimtT5u%3DVy%3DTedu_jHgg%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="001029.html">
+ <LINK REL="Next" HREF="001042.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTikiT-FUmsvimtT5u%3DVy%3DTedu_jHgg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE">terraagua at gmail.com
+ </A><BR>
+ <I>Thu Jun 2 00:11:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001029.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001042.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1034">[ date ]</a>
+ <a href="thread.html#1034">[ thread ]</a>
+ <a href="subject.html#1034">[ subject ]</a>
+ <a href="author.html#1034">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Wobo,
+
+I sending links with suggestion of posters (improved) of &quot;*Quick guide
+to install
+software on Mageia 1 KDE*&quot;, with text in english (but needs fixing) and
+images in english of Mageia 1.
+
+All SVG files that I'm sending are with embedded images.
+
+Macxi.
+
+___________________________
+
+
+Link to file (image) of poster withOUT filter:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-software/english/Quick-guide-install-software-Mageia-1-withOUT-filter-01-6-2011-ok.png&lt;http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-withOUT-filter-01-6-2011-ok.png">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-software/english/Quick-guide-install-software-Mageia-1-withOUT-filter-01-6-2011-ok.png&lt;http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-withOUT-filter-01-6-2011-ok.png</A>&gt;
+
+
+Link to file (image) of poster with filter:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-software/english/Quick-guide-install-software-Mageia-1-with-filter-01-6-2011-ok.png">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-software/english/Quick-guide-install-software-Mageia-1-with-filter-01-6-2011-ok.png</A>
+
+Link to file of poster SVG format:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-software/english/Quick-guide-install-software-Mageia-1-with-filter-01-6-2011-ok.svg&lt;http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-with-filter-01-6-2011-ok.svg">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-software/english/Quick-guide-install-software-Mageia-1-with-filter-01-6-2011-ok.svg&lt;http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-instala-midia/english/Quick-Guide-instalation-medias-Mageia-1-with-filter-01-6-2011-ok.svg</A>&gt;
+
+
+
+
+&gt;<i> 2011/6/1 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;
+</I>&gt;<i>
+</I>&gt;&gt;<i> 2011/6/1 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+</I>&gt;&gt;<i> &gt; Hello,
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; Congratulations team Mageia.
+</I>&gt;&gt;<i> &gt; I installed Mageia 1 in VirtualBox and everything went well.
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; Now I will install on the HD.
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; I sending links to a suggestion of a poster/folder with a &quot;quick guide&quot;
+</I>&gt;&gt;<i> to
+</I>&gt;&gt;<i> &gt; installing a Mageia 1, KDE LiveCD.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I've been working on a German edition of these posters you offered in
+</I>&gt;&gt;<i> the forum. Unfortunately other work came in my way but I will keep
+</I>&gt;&gt;<i> this up and present them soon.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I've made a German poster of the quick guide to media configuration,
+</I>&gt;&gt;<i> exporting it into svg, eps and pdf - looks good.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I guess this is rather a marcomm topic, to use such posters at events
+</I>&gt;&gt;<i> and install parties. We can also place them on a server and put links
+</I>&gt;&gt;<i> in the wiki, etc.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> --
+</I>&gt;&gt;<i> wobo
+</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;<i>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110601/6ab4076f/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001029.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001042.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1034">[ date ]</a>
+ <a href="thread.html#1034">[ thread ]</a>
+ <a href="subject.html#1034">[ subject ]</a>
+ <a href="author.html#1034">[ 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-June/001035.html b/zarb-ml/mageia-webteam/2011-June/001035.html
new file mode 100644
index 000000000..0ca636adc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001035.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1515] Bad bugzilla link for 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%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110601221707.B020842C8F%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="001033.html">
+ <LINK REL="Next" HREF="001037.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1515] Bad bugzilla link for website</H1>
+ <B>Christophe Lafaille</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110601221707.B020842C8F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1515] Bad bugzilla link for website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 00:17:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001033.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001037.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1035">[ date ]</a>
+ <a href="thread.html#1035">[ thread ]</a>
+ <a href="subject.html#1035">[ subject ]</a>
+ <a href="author.html#1035">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+
+--- Comment #2 from Christophe Lafaille &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Christophe.Lafaille at club-internet.fr</A>&gt; 2011-06-02 00:17:07 CEST ---
+Yes, I can... but what's the expected link ??? &quot;opened bugzilla&quot; or &quot;all
+websites sections&quot; ?
+
+I think author of the wiki knows the expected behaviour.
+
+My proposal is to have access to &quot;all websites sections&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="001033.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001037.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1035">[ date ]</a>
+ <a href="thread.html#1035">[ thread ]</a>
+ <a href="subject.html#1035">[ subject ]</a>
+ <a href="author.html#1035">[ 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-June/001036.html b/zarb-ml/mageia-webteam/2011-June/001036.html
new file mode 100644
index 000000000..1f53f953c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001036.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken
+ </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%201516%5D%20%5BNew%5D%20Last%20link%20of%20page%20%22For%20you%22%20is%0A%09broken&In-Reply-To=%3Cbug-1516-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="001032.html">
+ <LINK REL="Next" HREF="001039.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken</H1>
+ <B>Gontran Baerts</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201516%5D%20%5BNew%5D%20Last%20link%20of%20page%20%22For%20you%22%20is%0A%09broken&In-Reply-To=%3Cbug-1516-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 00:29:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001032.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001039.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1036">[ date ]</a>
+ <a href="thread.html#1036">[ thread ]</a>
+ <a href="subject.html#1036">[ subject ]</a>
+ <a href="author.html#1036">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1516">https://bugs.mageia.org/show_bug.cgi?id=1516</A>
+
+ Summary: Last link of page &quot;For you&quot; is broken
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://mageia.org/fr/1/for-you/">http://mageia.org/fr/1/for-you/</A>
+ 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">gbcreation at free.fr</A>
+
+
+Description of problem:
+
+The link located in the last section of the page
+<A HREF="http://mageia.org/fr/1/for-you/">http://mageia.org/fr/1/for-you/</A> is broken.
+
+How reproducible: always.
+
+
+Steps to Reproduce:
+1. Go to page <A HREF="http://mageia.org/fr/1/for-you/">http://mageia.org/fr/1/for-you/</A>
+2. Scroll to the end of the page, to section named &quot;Contributors!&quot;
+3. Click on the &quot;here&quot; link
+
+--
+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="001032.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001039.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1036">[ date ]</a>
+ <a href="thread.html#1036">[ thread ]</a>
+ <a href="subject.html#1036">[ subject ]</a>
+ <a href="author.html#1036">[ 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-June/001037.html b/zarb-ml/mageia-webteam/2011-June/001037.html
new file mode 100644
index 000000000..eee021a36
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001037.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1515] Bad bugzilla link for 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%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110601222924.7C67442C92%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="001035.html">
+ <LINK REL="Next" HREF="001047.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1515] Bad bugzilla link for website</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110601222924.7C67442C92%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1515] Bad bugzilla link for website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 00:29:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001035.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001047.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1037">[ date ]</a>
+ <a href="thread.html#1037">[ thread ]</a>
+ <a href="subject.html#1037">[ subject ]</a>
+ <a href="author.html#1037">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+
+--- Comment #3 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-02 00:29:24 CEST ---
+You're right to ask before editing, we should wait for webteam input about what
+that link should / is wanted to, point to.
+
+--
+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="001035.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001047.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1037">[ date ]</a>
+ <a href="thread.html#1037">[ thread ]</a>
+ <a href="subject.html#1037">[ subject ]</a>
+ <a href="author.html#1037">[ 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-June/001038.html b/zarb-ml/mageia-webteam/2011-June/001038.html
new file mode 100644
index 000000000..c13b9c991
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001038.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1514] Error in links to access packaging 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%201514%5D%20Error%20in%20links%20to%20access%20packaging%20page&In-Reply-To=%3C20110601230722.4006542C8F%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="001030.html">
+ <LINK REL="Next" HREF="001050.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1514] Error in links to access packaging page</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201514%5D%20Error%20in%20links%20to%20access%20packaging%20page&In-Reply-To=%3C20110601230722.4006542C8F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1514] Error in links to access packaging page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 01:07:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001030.html">[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001050.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1038">[ date ]</a>
+ <a href="thread.html#1038">[ thread ]</a>
+ <a href="subject.html#1038">[ subject ]</a>
+ <a href="author.html#1038">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1514">https://bugs.mageia.org/show_bug.cgi?id=1514</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-06-02 03:07:22 CEST ---
+indeed.
+
+I am fixing it, and let webteam deploy the website tomorow .
+
+--
+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="001030.html">[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001050.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1038">[ date ]</a>
+ <a href="thread.html#1038">[ thread ]</a>
+ <a href="subject.html#1038">[ subject ]</a>
+ <a href="author.html#1038">[ 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-June/001039.html b/zarb-ml/mageia-webteam/2011-June/001039.html
new file mode 100644
index 000000000..5173ceea3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001039.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+ </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%201516%5D%20Last%20link%20of%20page%20%22For%20you%22%20is%20broken&In-Reply-To=%3C20110601231203.2ED5742C90%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="001036.html">
+ <LINK REL="Next" HREF="001040.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201516%5D%20Last%20link%20of%20page%20%22For%20you%22%20is%20broken&In-Reply-To=%3C20110601231203.2ED5742C90%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 01:12:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001036.html">[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI>Next message: <A HREF="001040.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1039">[ date ]</a>
+ <a href="thread.html#1039">[ thread ]</a>
+ <a href="subject.html#1039">[ subject ]</a>
+ <a href="author.html#1039">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1516">https://bugs.mageia.org/show_bug.cgi?id=1516</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-06-02 01:12:03 CEST ---
+Yup. But I do not know where it should point. I guess it should be
+../../contribute/ ?
+
+--
+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="001036.html">[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI>Next message: <A HREF="001040.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1039">[ date ]</a>
+ <a href="thread.html#1039">[ thread ]</a>
+ <a href="subject.html#1039">[ subject ]</a>
+ <a href="author.html#1039">[ 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-June/001040.html b/zarb-ml/mageia-webteam/2011-June/001040.html
new file mode 100644
index 000000000..640275058
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001040.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+ </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%201516%5D%20Last%20link%20of%20page%20%22For%20you%22%20is%20broken&In-Reply-To=%3C20110601232253.DD52642C55%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="001039.html">
+ <LINK REL="Next" HREF="001046.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken</H1>
+ <B>Gontran Baerts</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201516%5D%20Last%20link%20of%20page%20%22For%20you%22%20is%20broken&In-Reply-To=%3C20110601232253.DD52642C55%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 01:22:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001039.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI>Next message: <A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1040">[ date ]</a>
+ <a href="thread.html#1040">[ thread ]</a>
+ <a href="subject.html#1040">[ subject ]</a>
+ <a href="author.html#1040">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1516">https://bugs.mageia.org/show_bug.cgi?id=1516</A>
+
+--- Comment #2 from Gontran Baerts &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">gbcreation at free.fr</A>&gt; 2011-06-02 01:22:54 CEST ---
+I think so.
+
+--
+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="001039.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI>Next message: <A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1040">[ date ]</a>
+ <a href="thread.html#1040">[ thread ]</a>
+ <a href="subject.html#1040">[ subject ]</a>
+ <a href="author.html#1040">[ 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-June/001041.html b/zarb-ml/mageia-webteam/2011-June/001041.html
new file mode 100644
index 000000000..bc0a3b6e8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001041.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
+ </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%201365%5D%20URL%20field%20isn%27t%20shown%20in%20bug%20reports&In-Reply-To=%3C20110601233115.52ED242C86%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="001089.html">
+ <LINK REL="Next" HREF="001044.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201365%5D%20URL%20field%20isn%27t%20shown%20in%20bug%20reports&In-Reply-To=%3C20110601233115.52ED242C86%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 01:31:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001089.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001044.html">[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1041">[ date ]</a>
+ <a href="thread.html#1041">[ thread ]</a>
+ <a href="subject.html#1041">[ subject ]</a>
+ <a href="author.html#1041">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1365">https://bugs.mageia.org/show_bug.cgi?id=1365</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-06-02 01:31:15 CEST ---
+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="001089.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001044.html">[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1041">[ date ]</a>
+ <a href="thread.html#1041">[ thread ]</a>
+ <a href="subject.html#1041">[ subject ]</a>
+ <a href="author.html#1041">[ 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-June/001042.html b/zarb-ml/mageia-webteam/2011-June/001042.html
new file mode 100644
index 000000000..1c3892fc3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001042.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTi%3DQuQqbOrMkzXJeWq0mHkJKbVWDuw%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="001034.html">
+ <LINK REL="Next" HREF="001043.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTi%3DQuQqbOrMkzXJeWq0mHkJKbVWDuw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Jun 2 02:57:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001034.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001043.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1042">[ date ]</a>
+ <a href="thread.html#1042">[ thread ]</a>
+ <a href="subject.html#1042">[ subject ]</a>
+ <a href="author.html#1042">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/2 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+&gt;<i> Wobo,
+</I>&gt;<i>
+</I>&gt;<i> I sending links with suggestion of posters (improved) of &quot;Quick guide to
+</I>&gt;<i> install software on Mageia 1&#160;&#160; KDE&quot;, with text in english (but needs fixing)
+</I>&gt;<i> and images in english of Mageia 1.
+</I>&gt;<i>
+</I>&gt;<i> All SVG files that I'm sending are with embedded images.
+</I>
+I will spend some time on those today (hopefully), thx for your work!
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001034.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001043.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1042">[ date ]</a>
+ <a href="thread.html#1042">[ thread ]</a>
+ <a href="subject.html#1042">[ subject ]</a>
+ <a href="author.html#1042">[ 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-June/001043.html b/zarb-ml/mageia-webteam/2011-June/001043.html
new file mode 100644
index 000000000..c65b61d50
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001043.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTim2nAzqNwVB_UFmgZVumoC7XEw53Q%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="001042.html">
+ <LINK REL="Next" HREF="001054.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTim2nAzqNwVB_UFmgZVumoC7XEw53Q%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE">terraagua at gmail.com
+ </A><BR>
+ <I>Thu Jun 2 03:36:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001042.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001054.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1043">[ date ]</a>
+ <a href="thread.html#1043">[ thread ]</a>
+ <a href="subject.html#1043">[ subject ]</a>
+ <a href="author.html#1043">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Wobo,
+
+I am enjoying learning how to use inkscape (I think I'll do a quick guide to
+use Inkscape)
+
+Don&quot;t worry, no time. I'm just enjoying edit these posters.
+
+Cheers
+
+
+
+2011/6/1 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;
+
+&gt;<i> 2011/6/2 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+</I>&gt;<i> &gt; Wobo,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I sending links with suggestion of posters (improved) of &quot;Quick guide to
+</I>&gt;<i> &gt; install software on Mageia 1 KDE&quot;, with text in english (but needs
+</I>&gt;<i> fixing)
+</I>&gt;<i> &gt; and images in english of Mageia 1.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; All SVG files that I'm sending are with embedded images.
+</I>&gt;<i>
+</I>&gt;<i> I will spend some time on those today (hopefully), thx for your work!
+</I>&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> wobo
+</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/20110601/0bfab5fa/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001042.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001054.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1043">[ date ]</a>
+ <a href="thread.html#1043">[ thread ]</a>
+ <a href="subject.html#1043">[ subject ]</a>
+ <a href="author.html#1043">[ 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-June/001044.html b/zarb-ml/mageia-webteam/2011-June/001044.html
new file mode 100644
index 000000000..f97503c95
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001044.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/
+ </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%201517%5D%20%5BNew%5D%20A%20patch%20for%0A%09http%3A//mageia.org/en/1/migrate/&In-Reply-To=%3Cbug-1517-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="001041.html">
+ <LINK REL="Next" HREF="001045.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201517%5D%20%5BNew%5D%20A%20patch%20for%0A%09http%3A//mageia.org/en/1/migrate/&In-Reply-To=%3Cbug-1517-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 06:47:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
+</A></li>
+ <LI>Next message: <A HREF="001045.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1044">[ date ]</a>
+ <a href="thread.html#1044">[ thread ]</a>
+ <a href="subject.html#1044">[ subject ]</a>
+ <a href="author.html#1044">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1517">https://bugs.mageia.org/show_bug.cgi?id=1517</A>
+
+ Summary: A patch for <A HREF="http://mageia.org/en/1/migrate/">http://mageia.org/en/1/migrate/</A>
+ 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">ahmadsamir3891 at gmail.com</A>
+
+
+Attached is a patch for the migrate web page.
+
+--
+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="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
+</A></li>
+ <LI>Next message: <A HREF="001045.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1044">[ date ]</a>
+ <a href="thread.html#1044">[ thread ]</a>
+ <a href="subject.html#1044">[ subject ]</a>
+ <a href="author.html#1044">[ 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-June/001045.html b/zarb-ml/mageia-webteam/2011-June/001045.html
new file mode 100644
index 000000000..4c6b97a31
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001045.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+ </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%201517%5D%20A%20patch%20for%0A%09http%3A//mageia.org/en/1/migrate/&In-Reply-To=%3C20110602044758.68C3242C90%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="001044.html">
+ <LINK REL="Next" HREF="001048.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201517%5D%20A%20patch%20for%0A%09http%3A//mageia.org/en/1/migrate/&In-Reply-To=%3C20110602044758.68C3242C90%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 06:47:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001044.html">[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI>Next message: <A HREF="001048.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1045">[ date ]</a>
+ <a href="thread.html#1045">[ thread ]</a>
+ <a href="subject.html#1045">[ subject ]</a>
+ <a href="author.html#1045">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1517">https://bugs.mageia.org/show_bug.cgi?id=1517</A>
+
+--- Comment #1 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-02 08:47:58 CEST ---
+Created attachment 502
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=502">https://bugs.mageia.org/attachment.cgi?id=502</A>
+Patch for the /migrate/ page
+
+--
+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="001044.html">[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI>Next message: <A HREF="001048.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1045">[ date ]</a>
+ <a href="thread.html#1045">[ thread ]</a>
+ <a href="subject.html#1045">[ subject ]</a>
+ <a href="author.html#1045">[ 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-June/001046.html b/zarb-ml/mageia-webteam/2011-June/001046.html
new file mode 100644
index 000000000..31994e92d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001046.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+ </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%201516%5D%20Last%20link%20of%20page%20%22For%20you%22%20is%20broken&In-Reply-To=%3C20110602091054.D70CF42C95%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="001040.html">
+ <LINK REL="Next" HREF="001089.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201516%5D%20Last%20link%20of%20page%20%22For%20you%22%20is%20broken&In-Reply-To=%3C20110602091054.D70CF42C95%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 11:10:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001040.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI>Next message: <A HREF="001089.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1046">[ date ]</a>
+ <a href="thread.html#1046">[ thread ]</a>
+ <a href="subject.html#1046">[ subject ]</a>
+ <a href="author.html#1046">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1516">https://bugs.mageia.org/show_bug.cgi?id=1516</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="001040.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI>Next message: <A HREF="001089.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1046">[ date ]</a>
+ <a href="thread.html#1046">[ thread ]</a>
+ <a href="subject.html#1046">[ subject ]</a>
+ <a href="author.html#1046">[ 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-June/001047.html b/zarb-ml/mageia-webteam/2011-June/001047.html
new file mode 100644
index 000000000..cd2290a17
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001047.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1515] Bad bugzilla link for 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%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110602091227.9EB9942C96%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="001037.html">
+ <LINK REL="Next" HREF="001057.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1515] Bad bugzilla link for website</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110602091227.9EB9942C96%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1515] Bad bugzilla link for website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 11:12:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001037.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001057.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1047">[ date ]</a>
+ <a href="thread.html#1047">[ thread ]</a>
+ <a href="subject.html#1047">[ subject ]</a>
+ <a href="author.html#1047">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</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 #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-02 11:12:27 CEST ---
+There is a &quot;Websites bugs&quot; saved search (mine, that I shared within Bugzilla).
+
+So maybe Bugzilla expects logged in people to make it work? (it works for me at
+this point).
+
+--
+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="001037.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001057.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1047">[ date ]</a>
+ <a href="thread.html#1047">[ thread ]</a>
+ <a href="subject.html#1047">[ subject ]</a>
+ <a href="author.html#1047">[ 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-June/001048.html b/zarb-ml/mageia-webteam/2011-June/001048.html
new file mode 100644
index 000000000..aa030694e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001048.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+ </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%201517%5D%20A%20patch%20for%0A%09http%3A//mageia.org/en/1/migrate/&In-Reply-To=%3C20110602091241.7A2B042C97%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="001045.html">
+ <LINK REL="Next" HREF="001049.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201517%5D%20A%20patch%20for%0A%09http%3A//mageia.org/en/1/migrate/&In-Reply-To=%3C20110602091241.7A2B042C97%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 11:12:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001045.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI>Next message: <A HREF="001049.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1048">[ date ]</a>
+ <a href="thread.html#1048">[ thread ]</a>
+ <a href="subject.html#1048">[ subject ]</a>
+ <a href="author.html#1048">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1517">https://bugs.mageia.org/show_bug.cgi?id=1517</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="001045.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI>Next message: <A HREF="001049.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1048">[ date ]</a>
+ <a href="thread.html#1048">[ thread ]</a>
+ <a href="subject.html#1048">[ subject ]</a>
+ <a href="author.html#1048">[ 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-June/001049.html b/zarb-ml/mageia-webteam/2011-June/001049.html
new file mode 100644
index 000000000..8a48142fe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001049.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 450] No link to accounting report or status 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%20%5BBug%20450%5D%20No%20link%20to%20accounting%20report%20or%20status%0A%09on%20the%20website&In-Reply-To=%3C20110602125242.7533342BE6%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="001048.html">
+ <LINK REL="Next" HREF="001051.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 450] No link to accounting report or status on the website</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20450%5D%20No%20link%20to%20accounting%20report%20or%20status%0A%09on%20the%20website&In-Reply-To=%3C20110602125242.7533342BE6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 450] No link to accounting report or status on the website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 14:52:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001048.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI>Next message: <A HREF="001051.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1049">[ date ]</a>
+ <a href="thread.html#1049">[ thread ]</a>
+ <a href="subject.html#1049">[ subject ]</a>
+ <a href="author.html#1049">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=450">https://bugs.mageia.org/show_bug.cgi?id=450</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">rdalverny at gmail.com</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="001048.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A></li>
+ <LI>Next message: <A HREF="001051.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1049">[ date ]</a>
+ <a href="thread.html#1049">[ thread ]</a>
+ <a href="subject.html#1049">[ subject ]</a>
+ <a href="author.html#1049">[ 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-June/001050.html b/zarb-ml/mageia-webteam/2011-June/001050.html
new file mode 100644
index 000000000..2ebdca4be
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001050.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1514] Error in links to access packaging 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%201514%5D%20Error%20in%20links%20to%20access%20packaging%20page&In-Reply-To=%3C20110602125335.7000042C49%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="001038.html">
+ <LINK REL="Next" HREF="001060.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1514] Error in links to access packaging page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201514%5D%20Error%20in%20links%20to%20access%20packaging%20page&In-Reply-To=%3C20110602125335.7000042C49%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1514] Error in links to access packaging page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 14:53:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001038.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001060.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1050">[ date ]</a>
+ <a href="thread.html#1050">[ thread ]</a>
+ <a href="subject.html#1050">[ subject ]</a>
+ <a href="author.html#1050">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1514">https://bugs.mageia.org/show_bug.cgi?id=1514</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|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-02 14:53:35 CEST ---
+In place. 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="001038.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001060.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1050">[ date ]</a>
+ <a href="thread.html#1050">[ thread ]</a>
+ <a href="subject.html#1050">[ subject ]</a>
+ <a href="author.html#1050">[ 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-June/001051.html b/zarb-ml/mageia-webteam/2011-June/001051.html
new file mode 100644
index 000000000..208fe3919
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001051.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+ </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%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110602130108.0DFC442C49%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="001049.html">
+ <LINK REL="Next" HREF="001052.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110602130108.0DFC442C49%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 15:01:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001049.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A></li>
+ <LI>Next message: <A HREF="001052.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1051">[ date ]</a>
+ <a href="thread.html#1051">[ thread ]</a>
+ <a href="subject.html#1051">[ subject ]</a>
+ <a href="author.html#1051">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</A>
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-02 15:01:08 CEST ---
+Hmmm... where is our local copy of moonmoon for the planet?
+
+--
+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="001049.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A></li>
+ <LI>Next message: <A HREF="001052.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1051">[ date ]</a>
+ <a href="thread.html#1051">[ thread ]</a>
+ <a href="subject.html#1051">[ subject ]</a>
+ <a href="author.html#1051">[ 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-June/001052.html b/zarb-ml/mageia-webteam/2011-June/001052.html
new file mode 100644
index 000000000..b2fb7ed31
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001052.html
@@ -0,0 +1,74 @@
+<!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=%3C20110602130159.0569E42C2B%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="001051.html">
+ <LINK REL="Next" HREF="001053.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=%3C20110602130159.0569E42C2B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 767] Strange notice on the download page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 15:01:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001051.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001053.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1052">[ date ]</a>
+ <a href="thread.html#1052">[ thread ]</a>
+ <a href="subject.html#1052">[ subject ]</a>
+ <a href="author.html#1052">[ 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
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</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="001051.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001053.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1052">[ date ]</a>
+ <a href="thread.html#1052">[ thread ]</a>
+ <a href="subject.html#1052">[ subject ]</a>
+ <a href="author.html#1052">[ 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-June/001053.html b/zarb-ml/mageia-webteam/2011-June/001053.html
new file mode 100644
index 000000000..ad30c7c6a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001053.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 452] Privacy policy is still a draft
+ </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%20452%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3C20110602130229.4397B42931%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="001052.html">
+ <LINK REL="Next" HREF="001055.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 452] Privacy policy is still a draft</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20452%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3C20110602130229.4397B42931%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 452] Privacy policy is still a draft">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 15:02:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001052.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI>Next message: <A HREF="001055.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1053">[ date ]</a>
+ <a href="thread.html#1053">[ thread ]</a>
+ <a href="subject.html#1053">[ subject ]</a>
+ <a href="author.html#1053">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">rdalverny at gmail.com</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="001052.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI>Next message: <A HREF="001055.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1053">[ date ]</a>
+ <a href="thread.html#1053">[ thread ]</a>
+ <a href="subject.html#1053">[ subject ]</a>
+ <a href="author.html#1053">[ 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-June/001054.html b/zarb-ml/mageia-webteam/2011-June/001054.html
new file mode 100644
index 000000000..94a18fc39
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001054.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTikUmhX0G53Dww7q4FMeZwU9Thk_Zg%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="001043.html">
+ <LINK REL="Next" HREF="001024.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Suggestion%3A%20poster/folder%20-%20quick%20guide%0A%20install%20Mageia%201%20LiveCD%20KDE&In-Reply-To=%3CBANLkTikUmhX0G53Dww7q4FMeZwU9Thk_Zg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE">terraagua at gmail.com
+ </A><BR>
+ <I>Thu Jun 2 15:05:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001043.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001024.html">[Mageia-webteam] [Bug 1512] [New] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1054">[ date ]</a>
+ <a href="thread.html#1054">[ thread ]</a>
+ <a href="subject.html#1054">[ subject ]</a>
+ <a href="author.html#1054">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Wobo,
+
+I updated the posters (Quick Guide Install), Now, I used images of a Mageia
+1, KDE LiveCD. launched yesterday (01/jun/2011)
+The text is in german (but needs fixing) and the images are in german too.
+
+Link to forum: <A HREF="https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=303#p2339">https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=303#p2339</A>
+
+The file in SVG, to edit in Inkscape:
+<A HREF="http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-guia-instala-Mageia/german/German-Quick-Installation-Guide-Mageia1-with-filters-02-6-2011.svg">http://dl.dropbox.com/u/1220932/mg/cartaz-mg/traducao-guia-instala-Mageia/german/German-Quick-Installation-Guide-Mageia1-with-filters-02-6-2011.svg</A>
+
+Macxi
+
+
+2011/6/1 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;
+
+&gt;<i> Wobo,
+</I>&gt;<i>
+</I>&gt;<i> I am enjoying learning how to use inkscape (I think I'll do a quick guide
+</I>&gt;<i> to use Inkscape)
+</I>&gt;<i>
+</I>&gt;<i> Don&quot;t worry, no time. I'm just enjoying edit these posters.
+</I>&gt;<i>
+</I>&gt;<i> Cheers
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> 2011/6/1 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;
+</I>&gt;<i>
+</I>&gt;&gt;<i> 2011/6/2 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+</I>&gt;&gt;<i> &gt; Wobo,
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; I sending links with suggestion of posters (improved) of &quot;Quick guide to
+</I>&gt;&gt;<i> &gt; install software on Mageia 1 KDE&quot;, with text in english (but needs
+</I>&gt;&gt;<i> fixing)
+</I>&gt;&gt;<i> &gt; and images in english of Mageia 1.
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; All SVG files that I'm sending are with embedded images.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I will spend some time on those today (hopefully), thx for your work!
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> --
+</I>&gt;&gt;<i> wobo
+</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;<i>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110602/cb0a5fb5/attachment.html&gt;
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001043.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A></li>
+ <LI>Next message: <A HREF="001024.html">[Mageia-webteam] [Bug 1512] [New] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1054">[ date ]</a>
+ <a href="thread.html#1054">[ thread ]</a>
+ <a href="subject.html#1054">[ subject ]</a>
+ <a href="author.html#1054">[ 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-June/001055.html b/zarb-ml/mageia-webteam/2011-June/001055.html
new file mode 100644
index 000000000..f3e7e4fd4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001055.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+ </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%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110602132105.2960842C8F%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="001053.html">
+ <LINK REL="Next" HREF="001056.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110602132105.2960842C8F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 15:21:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001053.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI>Next message: <A HREF="001056.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1055">[ date ]</a>
+ <a href="thread.html#1055">[ thread ]</a>
+ <a href="subject.html#1055">[ subject ]</a>
+ <a href="author.html#1055">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</A>
+
+--- Comment #6 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-02 15:21:05 CEST ---
+
+It should be running on champagne, afaik. I can mass patch everything, but I
+prefer to see with dams first, as he deployed everything ( last time I looked,
+it was taking a tarball on dams website so I do not know the version we used
+).
+
+--
+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="001053.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI>Next message: <A HREF="001056.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1055">[ date ]</a>
+ <a href="thread.html#1055">[ thread ]</a>
+ <a href="subject.html#1055">[ subject ]</a>
+ <a href="author.html#1055">[ 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-June/001056.html b/zarb-ml/mageia-webteam/2011-June/001056.html
new file mode 100644
index 000000000..8938fab35
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001056.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+ </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%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110602133543.30CD442C8F%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="001055.html">
+ <LINK REL="Next" HREF="001058.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110602133543.30CD442C8F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 15:35:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001055.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001058.html">[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1056">[ date ]</a>
+ <a href="thread.html#1056">[ thread ]</a>
+ <a href="subject.html#1056">[ subject ]</a>
+ <a href="author.html#1056">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</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">mageia at damsweb.net</A>
+
+--- Comment #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-02 15:35:43 CEST ---
+Ok. Cc:ing him. :-)
+
+--
+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="001055.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001058.html">[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1056">[ date ]</a>
+ <a href="thread.html#1056">[ thread ]</a>
+ <a href="subject.html#1056">[ subject ]</a>
+ <a href="author.html#1056">[ 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-June/001057.html b/zarb-ml/mageia-webteam/2011-June/001057.html
new file mode 100644
index 000000000..4ffc6ade6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001057.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1515] Bad bugzilla link for 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%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110602153902.7BBCD42C25%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="001047.html">
+ <LINK REL="Next" HREF="001249.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1515] Bad bugzilla link for website</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110602153902.7BBCD42C25%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1515] Bad bugzilla link for website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 17:39:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001047.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001249.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1057">[ date ]</a>
+ <a href="thread.html#1057">[ thread ]</a>
+ <a href="subject.html#1057">[ subject ]</a>
+ <a href="author.html#1057">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+
+--- Comment #5 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-02 17:39:02 CEST ---
+Wrong url, should be:
+<A HREF="https://bugs.mageia.org/buglist.cgi?cmdtype=dorem&amp;remaction=run&amp;namedcmd=Websites%20bugs&amp;sharer_id=133">https://bugs.mageia.org/buglist.cgi?cmdtype=dorem&amp;remaction=run&amp;namedcmd=Websites%20bugs&amp;sharer_id=133</A>
+
+(that's what &quot;Run&quot; points to in
+<A HREF="https://bugs.mageia.org/userprefs.cgi?tab=saved-searches">https://bugs.mageia.org/userprefs.cgi?tab=saved-searches</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="001047.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001249.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1057">[ date ]</a>
+ <a href="thread.html#1057">[ thread ]</a>
+ <a href="subject.html#1057">[ subject ]</a>
+ <a href="author.html#1057">[ 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-June/001058.html b/zarb-ml/mageia-webteam/2011-June/001058.html
new file mode 100644
index 000000000..85bb05ad1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001058.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1528] [New] Bad Policies link on about 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%201528%5D%20%5BNew%5D%20Bad%20Policies%20link%20on%20about%20page&In-Reply-To=%3Cbug-1528-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="001056.html">
+ <LINK REL="Next" HREF="001065.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201528%5D%20%5BNew%5D%20Bad%20Policies%20link%20on%20about%20page&In-Reply-To=%3Cbug-1528-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 18:39:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001056.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001065.html">[Mageia-webteam] [Bug 1528] Bad Policies link on about page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1058">[ date ]</a>
+ <a href="thread.html#1058">[ thread ]</a>
+ <a href="subject.html#1058">[ subject ]</a>
+ <a href="author.html#1058">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1528">https://bugs.mageia.org/show_bug.cgi?id=1528</A>
+
+ Summary: Bad Policies link on about page
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://mageia.org/en/about/">http://mageia.org/en/about/</A>
+ 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">manuel at hiebel.eu</A>
+
+
+Description of problem:
+the page on policies <A HREF="http://mageia.org/en/about/">http://mageia.org/en/about/</A> is going to a wrong link
+<A HREF="http://mageia.org/en/about/policies/">http://mageia.org/en/about/policies/</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="001056.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001065.html">[Mageia-webteam] [Bug 1528] Bad Policies link on about page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1058">[ date ]</a>
+ <a href="thread.html#1058">[ thread ]</a>
+ <a href="subject.html#1058">[ subject ]</a>
+ <a href="author.html#1058">[ 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-June/001059.html b/zarb-ml/mageia-webteam/2011-June/001059.html
new file mode 100644
index 000000000..9aabd2120
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001059.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua
+ </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%201529%5D%20%5BNew%5D%20bad%20encoding%20for%20ru%20and%20ua&In-Reply-To=%3Cbug-1529-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="001065.html">
+ <LINK REL="Next" HREF="001090.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua</H1>
+ <B>Eugeni Dodonov</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201529%5D%20%5BNew%5D%20bad%20encoding%20for%20ru%20and%20ua&In-Reply-To=%3Cbug-1529-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 20:25:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001065.html">[Mageia-webteam] [Bug 1528] Bad Policies link on about page
+</A></li>
+ <LI>Next message: <A HREF="001090.html">[Mageia-webteam] Error 403
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1059">[ date ]</a>
+ <a href="thread.html#1059">[ thread ]</a>
+ <a href="subject.html#1059">[ subject ]</a>
+ <a href="author.html#1059">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+
+ Summary: bad encoding for ru and ua
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">eugeni at dodonov.net</A>
+
+
+The error page for identity.mandriva.org has bad encoding for ru and ua
+messages (apparently, double-utf-8 issue).
+
+I guess some catalyst templates has wrong encoding or the po files are
+double-encoded..
+
+--
+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="001065.html">[Mageia-webteam] [Bug 1528] Bad Policies link on about page
+</A></li>
+ <LI>Next message: <A HREF="001090.html">[Mageia-webteam] Error 403
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1059">[ date ]</a>
+ <a href="thread.html#1059">[ thread ]</a>
+ <a href="subject.html#1059">[ subject ]</a>
+ <a href="author.html#1059">[ 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-June/001060.html b/zarb-ml/mageia-webteam/2011-June/001060.html
new file mode 100644
index 000000000..3376c8003
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001060.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1514] Error in links to access packaging 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%201514%5D%20Error%20in%20links%20to%20access%20packaging%20page&In-Reply-To=%3C20110602212015.E7FCA42C73%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="001050.html">
+ <LINK REL="Next" HREF="001031.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1514] Error in links to access packaging page</H1>
+ <B>Christophe Lafaille</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201514%5D%20Error%20in%20links%20to%20access%20packaging%20page&In-Reply-To=%3C20110602212015.E7FCA42C73%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1514] Error in links to access packaging page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 2 23:20:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001050.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001031.html">[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1060">[ date ]</a>
+ <a href="thread.html#1060">[ thread ]</a>
+ <a href="subject.html#1060">[ subject ]</a>
+ <a href="author.html#1060">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1514">https://bugs.mageia.org/show_bug.cgi?id=1514</A>
+
+Christophe Lafaille &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Christophe.Lafaille at club-internet.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|RESOLVED |VERIFIED
+
+--- Comment #3 from Christophe Lafaille &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Christophe.Lafaille at club-internet.fr</A>&gt; 2011-06-02 23:20:16 CEST ---
+Ok, now it works for ll available languages (I've tested all pages).
+
+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="001050.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001031.html">[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1060">[ date ]</a>
+ <a href="thread.html#1060">[ thread ]</a>
+ <a href="subject.html#1060">[ subject ]</a>
+ <a href="author.html#1060">[ 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-June/001061.html b/zarb-ml/mageia-webteam/2011-June/001061.html
new file mode 100644
index 000000000..087e4e3e3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001061.html
@@ -0,0 +1,130 @@
+<!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=%3C20110602220002.9991642C9E%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="001090.html">
+ <LINK REL="Next" HREF="001062.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=%3C20110602220002.9991642C9E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001090.html">[Mageia-webteam] Error 403
+</A></li>
+ <LI>Next message: <A HREF="001062.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1061">[ date ]</a>
+ <a href="thread.html#1061">[ thread ]</a>
+ <a href="subject.html#1061">[ subject ]</a>
+ <a href="author.html#1061">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001090.html">[Mageia-webteam] Error 403
+</A></li>
+ <LI>Next message: <A HREF="001062.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1061">[ date ]</a>
+ <a href="thread.html#1061">[ thread ]</a>
+ <a href="subject.html#1061">[ subject ]</a>
+ <a href="author.html#1061">[ 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-June/001062.html b/zarb-ml/mageia-webteam/2011-June/001062.html
new file mode 100644
index 000000000..883cf30b3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001062.html
@@ -0,0 +1,112 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTi%3DHeaQn2FONetBy2tci-S0sJ0bLGQ%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="001061.html">
+ <LINK REL="Next" HREF="001068.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTi%3DHeaQn2FONetBy2tci-S0sJ0bLGQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">terraagua at gmail.com
+ </A><BR>
+ <I>Fri Jun 3 03:09:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001061.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001068.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1062">[ date ]</a>
+ <a href="thread.html#1062">[ thread ]</a>
+ <a href="subject.html#1062">[ subject ]</a>
+ <a href="author.html#1062">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Romain e R&#233;mi,
+
+I would like to translate into portuguese the following pages.
+
+<A HREF="http://mageia.org/pt/contribute/">http://mageia.org/pt/contribute/</A>
+<A HREF="http://mageia.org/en/downloads/">http://mageia.org/en/downloads/</A>
+<A HREF="http://mageia.org/pt/support/">http://mageia.org/pt/support/</A>
+
+What files should I translate this site (
+<A HREF="http://svnweb.mageia.org/web/www/trunk/&lt;http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup">http://svnweb.mageia.org/web/www/trunk/&lt;http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup</A>&gt;)
+?
+
+
+Macxi
+
+
+2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;
+
+&gt;<i> 2011/5/31 R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rverschelde at gmail.com</A>&gt;:
+</I>&gt;<i> &gt; 2011/5/31 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+</I>&gt;<i> &gt;&gt; I already do the translation (to pt) of the blog/news, how do I
+</I>&gt;<i> translate
+</I>&gt;<i> &gt;&gt; for the site?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; You can find the php array here:
+</I>&gt;<i> &gt;
+</I>&gt;<i> <A HREF="http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup">http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup</A>
+</I>&gt;<i> &gt; You can copy in a new file the 'en' array, i.e. from &quot; 'en' =&gt; array(
+</I>&gt;<i> &gt; &quot; to &quot; ), &quot; before the 'de' array.
+</I>&gt;<i> &gt; Then you change 'en' to 'pt' and you can translate every paragraphs.
+</I>&gt;<i> &gt; If you send this file to Romain or Oliver it will be much easier for
+</I>&gt;<i> &gt; them to implement the translation (they will just have to copy-paste
+</I>&gt;<i> &gt; the contents of your file after the other translations).
+</I>&gt;<i>
+</I>&gt;<i> Yes.
+</I>&gt;<i>
+</I>&gt;<i> I just want to add that we (me, Oliver and certainly many others) do
+</I>&gt;<i> know/realize that this is a messy process/platform to manage
+</I>&gt;<i> translations. It could be much better than that, but at least we know
+</I>&gt;<i> why/how. Hopefully during the Summer we'll get to something better for
+</I>&gt;<i> both designing and translating pages.
+</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/20110602/e22aa2d2/attachment-0001.html&gt;
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001061.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001068.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1062">[ date ]</a>
+ <a href="thread.html#1062">[ thread ]</a>
+ <a href="subject.html#1062">[ subject ]</a>
+ <a href="author.html#1062">[ 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-June/001063.html b/zarb-ml/mageia-webteam/2011-June/001063.html
new file mode 100644
index 000000000..f4c6560a9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001063.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki 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%201541%5D%20%5BNew%5D%20Sync%20the%20release%20notes%20with%20the%0A%20release%20notes%20wiki%20page&In-Reply-To=%3Cbug-1541-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="001074.html">
+ <LINK REL="Next" HREF="001064.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20%5BNew%5D%20Sync%20the%20release%20notes%20with%20the%0A%20release%20notes%20wiki%20page&In-Reply-To=%3Cbug-1541-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 08:09:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001074.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001064.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1063">[ date ]</a>
+ <a href="thread.html#1063">[ thread ]</a>
+ <a href="subject.html#1063">[ subject ]</a>
+ <a href="author.html#1063">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+
+ Summary: Sync the release notes with the release notes wiki
+ page
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">ahmadsamir3891 at gmail.com</A>
+
+
+Please sync the release notes <A HREF="http://mageia.org/en/1/notes/">http://mageia.org/en/1/notes/</A> with the wiki page
+<A HREF="http://www.mageia.org/wiki/doku.php?do=show&amp;id=iso1%3Amageia1_release_notes">http://www.mageia.org/wiki/doku.php?do=show&amp;id=iso1%3Amageia1_release_notes</A>
+
+The added parts are some more entries in these sections:
+Web Browsers and email clients
+Multimedia Applications
+
+(And, actually there shouldn't have been two pages... this divides the
+attention of people working on the one or the other :/; agreed the wiki page
+doesn't look too pretty, but still..).
+
+--
+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="001074.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001064.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1063">[ date ]</a>
+ <a href="thread.html#1063">[ thread ]</a>
+ <a href="subject.html#1063">[ subject ]</a>
+ <a href="author.html#1063">[ 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-June/001064.html b/zarb-ml/mageia-webteam/2011-June/001064.html
new file mode 100644
index 000000000..a0af292ac
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001064.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603092218.19C3242C9D%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="001063.html">
+ <LINK REL="Next" HREF="001066.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603092218.19C3242C9D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 11:22:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001063.html">[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001066.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1064">[ date ]</a>
+ <a href="thread.html#1064">[ thread ]</a>
+ <a href="subject.html#1064">[ subject ]</a>
+ <a href="author.html#1064">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</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-06-03 11:22:18 CEST ---
+(In reply to comment #0)
+&gt;<i> Please sync the release notes <A HREF="http://mageia.org/en/1/notes/">http://mageia.org/en/1/notes/</A> with the wiki page
+</I>&gt;<i> <A HREF="http://www.mageia.org/wiki/doku.php?do=show&amp;id=iso1%3Amageia1_release_notes">http://www.mageia.org/wiki/doku.php?do=show&amp;id=iso1%3Amageia1_release_notes</A>
+</I>&gt;<i>
+</I>&gt;<i> The added parts are some more entries in these sections:
+</I>&gt;<i> Web Browsers and email clients
+</I>&gt;<i> Multimedia Applications
+</I>
+That is: adding these sections, and making those translated in 20 locales? We
+can if that's really the last change, but I am not sure we can afford to
+update/translate the www pages every week for that.
+
+&gt;<i> (And, actually there shouldn't have been two pages... this divides the
+</I>&gt;<i> attention of people working on the one or the other :/;
+</I>
+Right, but this has been suggested/asked several times before the release.
+
+&gt;<i> agreed the wiki page doesn't look too pretty, but still..).
+</I>
+Then for next time, we should rethink the release notes document type in the
+end, because of its size and format in its current form. Making it more
+automatic (fetching versions &amp; names of important packages), split into several
+sub pages, really designed to make it more esay to grasp and read.
+
+And we would have needed to add a Google Analytics marker to the wiki so we
+know if people actually do read these notes.
+
+--
+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="001063.html">[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001066.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1064">[ date ]</a>
+ <a href="thread.html#1064">[ thread ]</a>
+ <a href="subject.html#1064">[ subject ]</a>
+ <a href="author.html#1064">[ 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-June/001065.html b/zarb-ml/mageia-webteam/2011-June/001065.html
new file mode 100644
index 000000000..fb7d5c3dc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001065.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1528] Bad Policies link on about 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%201528%5D%20Bad%20Policies%20link%20on%20about%20page&In-Reply-To=%3C20110603092602.15D1B42C9A%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="001058.html">
+ <LINK REL="Next" HREF="001059.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1528] Bad Policies link on about page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201528%5D%20Bad%20Policies%20link%20on%20about%20page&In-Reply-To=%3C20110603092602.15D1B42C9A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1528] Bad Policies link on about page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 11:26:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001058.html">[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page
+</A></li>
+ <LI>Next message: <A HREF="001059.html">[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1065">[ date ]</a>
+ <a href="thread.html#1065">[ thread ]</a>
+ <a href="subject.html#1065">[ subject ]</a>
+ <a href="author.html#1065">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1528">https://bugs.mageia.org/show_bug.cgi?id=1528</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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-06-03 11:26:02 CEST ---
+Fixed, 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="001058.html">[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page
+</A></li>
+ <LI>Next message: <A HREF="001059.html">[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1065">[ date ]</a>
+ <a href="thread.html#1065">[ thread ]</a>
+ <a href="subject.html#1065">[ subject ]</a>
+ <a href="author.html#1065">[ 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-June/001066.html b/zarb-ml/mageia-webteam/2011-June/001066.html
new file mode 100644
index 000000000..1b4425152
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001066.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603093307.A8C7442C96%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="001064.html">
+ <LINK REL="Next" HREF="001067.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603093307.A8C7442C96%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 11:33:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001064.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001067.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1066">[ date ]</a>
+ <a href="thread.html#1066">[ thread ]</a>
+ <a href="subject.html#1066">[ subject ]</a>
+ <a href="author.html#1066">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #2 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-06-03 11:33:07 CEST ---
+Release notes (as errata) is a living document, meaning it is subject to
+change. The only way to avoid this is putting much time and work into the
+release notes before they are published.
+
+So, almost all distributions who have such notes put them in a wiki. Constant
+translation of changes is always the issue. This can be done much easier and
+faster in a wiki.
+
+So, although it may have been suggested to put this on a web page does not mean
+it is the better solution.
+
+--
+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="001064.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001067.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1066">[ date ]</a>
+ <a href="thread.html#1066">[ thread ]</a>
+ <a href="subject.html#1066">[ subject ]</a>
+ <a href="author.html#1066">[ 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-June/001067.html b/zarb-ml/mageia-webteam/2011-June/001067.html
new file mode 100644
index 000000000..4c7cfc9be
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001067.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603095531.4429242C9B%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="001066.html">
+ <LINK REL="Next" HREF="001069.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>James Kerr</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603095531.4429242C9B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 11:55:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001066.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001069.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1067">[ date ]</a>
+ <a href="thread.html#1067">[ thread ]</a>
+ <a href="subject.html#1067">[ subject ]</a>
+ <a href="author.html#1067">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+
+--- Comment #3 from James Kerr &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jim at jkerr82508.free-online.co.uk</A>&gt; 2011-06-03 11:55:31 CEST ---
+I agree with wobo. Perhaps the solution is to have just a &quot;highlights&quot; web page
+with a prominent link to the wiki page with the details.
+
+There should also be a prominent link to the errata. The errata warns about
+what doesn't work and of potential problems (and possible solutions). I think
+that the errata can sometimes be more important than the Release Notes.
+
+--
+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="001066.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001069.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1067">[ date ]</a>
+ <a href="thread.html#1067">[ thread ]</a>
+ <a href="subject.html#1067">[ subject ]</a>
+ <a href="author.html#1067">[ 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-June/001068.html b/zarb-ml/mageia-webteam/2011-June/001068.html
new file mode 100644
index 000000000..e308db98e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001068.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTikGdQpKovtFneGukztejPLS4thaFw%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="001062.html">
+ <LINK REL="Next" HREF="001074.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>R&#233;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTikGdQpKovtFneGukztejPLS4thaFw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">rverschelde at gmail.com
+ </A><BR>
+ <I>Fri Jun 3 19:10:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001062.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001074.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1068">[ date ]</a>
+ <a href="thread.html#1068">[ thread ]</a>
+ <a href="subject.html#1068">[ subject ]</a>
+ <a href="author.html#1068">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/3 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+&gt;<i> Romain e R&#233;mi,
+</I>&gt;<i>
+</I>&gt;<i> I would like to translate into portuguese the following pages.
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://mageia.org/pt/contribute/">http://mageia.org/pt/contribute/</A>
+</I><A HREF="http://svnweb.mageia.org/web/www/trunk/en/contribute/locales.php?view=co">http://svnweb.mageia.org/web/www/trunk/en/contribute/locales.php?view=co</A>
+
+&gt;<i> <A HREF="http://mageia.org/en/downloads/">http://mageia.org/en/downloads/</A>
+</I><A HREF="http://svnweb.mageia.org/web/www/trunk/downloads_locales.php?view=co">http://svnweb.mageia.org/web/www/trunk/downloads_locales.php?view=co</A>
+
+For those two files, you need to create a &quot; 'pt' =&gt; array( ...... ), &quot;
+just like it was done for the other locales.
+You can copy paste the &quot; 'en' =&gt; array ( ...... ) &quot; in a new file,
+translate it and then send it to Oliver. He will integrate it to the
+SVN file and push it to the live website.
+
+&gt;<i> <A HREF="http://mageia.org/pt/support/">http://mageia.org/pt/support/</A>
+</I>I think the support page can't be localised for now (rda will correct
+me if I'm wrong). I mean, there is no php array to easily handle the
+translation into several languages. There is a French version probably
+made by rda but it is hardcoded (a whole new php file with the content
+directly written in French).
+
+I suppose the php array will arrive sooner or later, when rda or
+Oliver have the time to make the necessary changes to handle it.
+
+&gt;<i>
+</I>&gt;<i> What files should I translate this site (
+</I>&gt;<i> <A HREF="http://svnweb.mageia.org/web/www/trunk/">http://svnweb.mageia.org/web/www/trunk/</A> ) ?
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Macxi
+</I>&gt;<i>
+</I>
+Regards,
+R&#233;mi / Akien
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001062.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001074.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1068">[ date ]</a>
+ <a href="thread.html#1068">[ thread ]</a>
+ <a href="subject.html#1068">[ subject ]</a>
+ <a href="author.html#1068">[ 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-June/001069.html b/zarb-ml/mageia-webteam/2011-June/001069.html
new file mode 100644
index 000000000..7b5a8fb2b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001069.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603173211.E0A9742CAF%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="001067.html">
+ <LINK REL="Next" HREF="001070.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603173211.E0A9742CAF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 19:32:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001067.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001070.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1069">[ date ]</a>
+ <a href="thread.html#1069">[ thread ]</a>
+ <a href="subject.html#1069">[ subject ]</a>
+ <a href="author.html#1069">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</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-06-03 19:32:12 CEST ---
+Erratas evolve, release notes don't. Once the release is done, we do not add
+feature nor change it, so the releases notes should not evolve and be fixed.
+Erratas are completed once bugs are found.
+
+So to me, releases notes should be prepared before the release. If we modify
+them after, that because we were late, ad the problem should be fixed by not
+being late.
+
+However, the problem is the errata, and we maybe need a better tool than the
+wiki. Errata is basically just a list of errors, with a classification ( right
+now, linear one, but tags could work too ). We also need to translate it, and
+wiki is not good for that.
+
+So to me :
+- releases notes on the wiki are just working document, like a draft
+- releases notes, once finalized, should be on the web site, and be prepared
+before so
+ - we can translate it
+ - wen can proof read it
+
+- erratas should be on wiki
+
+--
+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="001067.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001070.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1069">[ date ]</a>
+ <a href="thread.html#1069">[ thread ]</a>
+ <a href="subject.html#1069">[ subject ]</a>
+ <a href="author.html#1069">[ 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-June/001070.html b/zarb-ml/mageia-webteam/2011-June/001070.html
new file mode 100644
index 000000000..071d89005
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001070.html
@@ -0,0 +1,120 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603175729.C3CB242CAC%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="001069.html">
+ <LINK REL="Next" HREF="001071.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603175729.C3CB242CAC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 19:57:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001069.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001071.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1070">[ date ]</a>
+ <a href="thread.html#1070">[ thread ]</a>
+ <a href="subject.html#1070">[ subject ]</a>
+ <a href="author.html#1070">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+
+--- Comment #5 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-03 19:57:30 CEST ---
+(In reply to comment #1)
+&gt;<i> (In reply to comment #0)
+</I>&gt;<i> &gt; Please sync the release notes <A HREF="http://mageia.org/en/1/notes/">http://mageia.org/en/1/notes/</A> with the wiki page
+</I>&gt;<i> &gt; <A HREF="http://www.mageia.org/wiki/doku.php?do=show&amp;id=iso1%3Amageia1_release_notes">http://www.mageia.org/wiki/doku.php?do=show&amp;id=iso1%3Amageia1_release_notes</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; The added parts are some more entries in these sections:
+</I>&gt;<i> &gt; Web Browsers and email clients
+</I>&gt;<i> &gt; Multimedia Applications
+</I>&gt;<i>
+</I>&gt;<i> That is: adding these sections, and making those translated in 20 locales? We
+</I>&gt;<i> can if that's really the last change, but I am not sure we can afford to
+</I>&gt;<i> update/translate the www pages every week for that.
+</I>&gt;<i>
+</I>
+Your call, I don't manage the www pages :)
+
+IIRC, the release notes have always been a wiki page in mdv, that's an optimum
+model...
+
+FWIW, the multimedia section was created as a consequence of reading a forum
+topic where a user asked &quot;why isn't vlc in the repos?&quot;; it was a reminder, I
+did have it in my todo to add a multimedia section (multimedia support == more
+users IMO), just totally forgot (and unfortunately it wasn't spotted by anyone
+else).
+
+&gt;<i> &gt; (And, actually there shouldn't have been two pages... this divides the
+</I>&gt;<i> &gt; attention of people working on the one or the other :/;
+</I>&gt;<i>
+</I>&gt;<i> Right, but this has been suggested/asked several times before the release.
+</I>&gt;<i>
+</I>
+I haven't seen such that suggestion; one caveat of having a web page vs. a wiki
+page, is restricted access, for example I can touch the wiki but not www.
+
+&gt;<i> &gt; agreed the wiki page doesn't look too pretty, but still..).
+</I>&gt;<i>
+</I>&gt;<i> Then for next time, we should rethink the release notes document type in the
+</I>&gt;<i> end, because of its size and format in its current form. Making it more
+</I>&gt;<i> automatic (fetching versions &amp; names of important packages), split into several
+</I>&gt;<i> sub pages, really designed to make it more esay to grasp and read.
+</I>&gt;<i>
+</I>
+Sure; however I am not good with designing stuff, I can contribute to the raw
+release notes, then the web team can divide and split it to their hearts'
+content.
+
+&gt;<i> And we would have needed to add a Google Analytics marker to the wiki so we
+</I>&gt;<i> know if people actually do read these notes.
+</I>
+Sure, I'd like that too, if people don't read it, I shouldn't my time trying to
+make write a good page and also shouldn't waste translators' time working on
+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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001069.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001071.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1070">[ date ]</a>
+ <a href="thread.html#1070">[ thread ]</a>
+ <a href="subject.html#1070">[ subject ]</a>
+ <a href="author.html#1070">[ 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-June/001071.html b/zarb-ml/mageia-webteam/2011-June/001071.html
new file mode 100644
index 000000000..82e1cad01
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001071.html
@@ -0,0 +1,109 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603180908.2C60F42CAC%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="001070.html">
+ <LINK REL="Next" HREF="001072.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603180908.2C60F42CAC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 20:09:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001070.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001072.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1071">[ date ]</a>
+ <a href="thread.html#1071">[ thread ]</a>
+ <a href="subject.html#1071">[ subject ]</a>
+ <a href="author.html#1071">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+
+--- Comment #6 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-03 22:09:08 CEST ---
+(In reply to comment #4)
+&gt;<i> Erratas evolve, release notes don't. Once the release is done, we do not add
+</I>&gt;<i> feature nor change it, so the releases notes should not evolve and be fixed.
+</I>&gt;<i> Erratas are completed once bugs are found.
+</I>&gt;<i>
+</I>&gt;<i> So to me, releases notes should be prepared before the release. If we modify
+</I>&gt;<i> them after, that because we were late, ad the problem should be fixed by not
+</I>&gt;<i> being late.
+</I>&gt;<i>
+</I>&gt;<i> However, the problem is the errata, and we maybe need a better tool than the
+</I>&gt;<i> wiki. Errata is basically just a list of errors, with a classification ( right
+</I>&gt;<i> now, linear one, but tags could work too ). We also need to translate it, and
+</I>&gt;<i> wiki is not good for that.
+</I>&gt;<i>
+</I>&gt;<i> So to me :
+</I>&gt;<i> - releases notes on the wiki are just working document, like a draft
+</I>
+I disagree; any distro's wiki should be regarded as &quot;the first and most
+important source of finding how-stuff-works in that distro&quot;; a really good wiki
+becomes a source of info for Linux users in general, for example:
+<A HREF="http://wiki.debian.org/RpathIssue">http://wiki.debian.org/RpathIssue</A>
+<A HREF="http://wiki.mandriva.com/en/Development/Howto/RPM_Advanced">http://wiki.mandriva.com/en/Development/Howto/RPM_Advanced</A>
+<A HREF="http://fedoraproject.org/wiki/How_to_create_an_RPM_package">http://fedoraproject.org/wiki/How_to_create_an_RPM_package</A>
+<A HREF="https://wiki.archlinux.org/index.php/Font_Configuration">https://wiki.archlinux.org/index.php/Font_Configuration</A>
+
+these are not drafts, they're &quot;documentation&quot; articles.
+
+&gt;<i> - releases notes, once finalized, should be on the web site, and be prepared
+</I>&gt;<i> before so
+</I>
+Sure; though I have to admit that the release notes for Mageia 2 will be
+somewhat easier, we'll just copy the ones from 1 and edit them accordingly,
+i.e. the structure is already in place (even if webteam wants to split/divide
+it some more).
+
+&gt;<i> - we can translate it
+</I>
+Translating is translating, web page, wiki page, printed page, it's all text
+that needs to be transformed from one language to another.
+
+[...]
+
+--
+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="001070.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001072.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1071">[ date ]</a>
+ <a href="thread.html#1071">[ thread ]</a>
+ <a href="subject.html#1071">[ subject ]</a>
+ <a href="author.html#1071">[ 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-June/001072.html b/zarb-ml/mageia-webteam/2011-June/001072.html
new file mode 100644
index 000000000..fce3bace7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001072.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603184650.CFEF842CAB%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="001071.html">
+ <LINK REL="Next" HREF="001073.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603184650.CFEF842CAB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 20:46:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001071.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001073.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1072">[ date ]</a>
+ <a href="thread.html#1072">[ thread ]</a>
+ <a href="subject.html#1072">[ subject ]</a>
+ <a href="author.html#1072">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+
+--- Comment #7 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-03 20:46:50 CEST ---
+Reread what I said, my point only apply to the release note on the wiki. So I
+do not even know with what you disagree with.
+
+ANd when I say &quot;we can translate it&quot;, I mean we can translate it using proper
+workflow. Translating a always evolving document is the best way to have it
+uncompletely translated.
+
+--
+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="001071.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001073.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1072">[ date ]</a>
+ <a href="thread.html#1072">[ thread ]</a>
+ <a href="subject.html#1072">[ subject ]</a>
+ <a href="author.html#1072">[ 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-June/001073.html b/zarb-ml/mageia-webteam/2011-June/001073.html
new file mode 100644
index 000000000..b2bec7888
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001073.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603185631.8AB2742CAB%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="001072.html">
+ <LINK REL="Next" HREF="001075.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20110603185631.8AB2742CAB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 3 20:56:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001072.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001075.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1073">[ date ]</a>
+ <a href="thread.html#1073">[ thread ]</a>
+ <a href="subject.html#1073">[ subject ]</a>
+ <a href="author.html#1073">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+
+--- Comment #8 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-03 20:56:31 CEST ---
+You said:
+&#8220;So to me :
+- releases notes on the wiki are just working document, like a draft&#8221;
+I replied:
+&#8220;I disagree;&#8221;
+
+wiki articles are not necessarily drafts.
+
+(Sorry, for the bad quoting in comment#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="001072.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001075.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1073">[ date ]</a>
+ <a href="thread.html#1073">[ thread ]</a>
+ <a href="subject.html#1073">[ subject ]</a>
+ <a href="author.html#1073">[ 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-June/001074.html b/zarb-ml/mageia-webteam/2011-June/001074.html
new file mode 100644
index 000000000..e642f06a8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001074.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTi%3DngsVHQrPh9XXC60vV_NwHYDUbeQ%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="001068.html">
+ <LINK REL="Next" HREF="001063.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTi%3DngsVHQrPh9XXC60vV_NwHYDUbeQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Fri Jun 3 21:48:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001068.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001063.html">[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1074">[ date ]</a>
+ <a href="thread.html#1074">[ thread ]</a>
+ <a href="subject.html#1074">[ subject ]</a>
+ <a href="author.html#1074">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I will look into this tonight. Am not at home just now.
+
+Oliver - send from my smartphone
+
+03.06.2011 19:11 schrieb am &quot;R&#233;mi Verschelde&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rverschelde at gmail.com</A>&gt;:
+
+2011/6/3 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+
+&gt;<i> Romain e R&#233;mi,
+</I>&gt;<i>
+</I>&gt;<i> I would like to translate into portuguese the following pages.
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://magei...">http://magei...</A>
+</I><A HREF="http://svnweb.mageia.org/web/www/trunk/en/contribute/locales.php?view=co">http://svnweb.mageia.org/web/www/trunk/en/contribute/locales.php?view=co</A>
+
+
+&gt;<i> <A HREF="http://mageia.org/en/downloads/">http://mageia.org/en/downloads/</A>
+</I><A HREF="http://svnweb.mageia.org/web/www/trunk/downloads_locales.php?view=co">http://svnweb.mageia.org/web/www/trunk/downloads_locales.php?view=co</A>
+
+For those two files, you need to create a &quot; 'pt' =&gt; array( ...... ), &quot;
+just like it was done for the other locales.
+You can copy paste the &quot; 'en' =&gt; array ( ...... ) &quot; in a new file,
+translate it and then send it to Oliver. He will integrate it to the
+SVN file and push it to the live website.
+
+
+&gt;<i> <A HREF="http://mageia.org/pt/support/">http://mageia.org/pt/support/</A>
+</I>I think the support page can't be localised for now (rda will correct
+me if I'm wrong). I mean, there is no php array to easily handle the
+translation into several languages. There is a French version probably
+made by rda but it is hardcoded (a whole new php file with the content
+directly written in French).
+
+I suppose the php array will arrive sooner or later, when rda or
+Oliver have the time to make the necessary changes to handle it.
+
+
+&gt;<i>
+</I>&gt;<i> What files should I translate this site (
+</I>&gt;<i> <A HREF="http://svnweb.mageia.org/web/www/trunk/">http://svnweb.mageia.org/web/www/trunk/</A> ) ?
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> M...
+</I>Regards,
+R&#233;mi / Akien
+
+_______________________________________________
+Mageia-webteam mailing list
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.or...</A>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110603/f685c291/attachment-0001.html&gt;
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001068.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001063.html">[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1074">[ date ]</a>
+ <a href="thread.html#1074">[ thread ]</a>
+ <a href="subject.html#1074">[ subject ]</a>
+ <a href="author.html#1074">[ 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-June/001075.html b/zarb-ml/mageia-webteam/2011-June/001075.html
new file mode 100644
index 000000000..fbf7d11ce
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001075.html
@@ -0,0 +1,129 @@
+<!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=%3C20110603220003.077B142CB3%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="001073.html">
+ <LINK REL="Next" HREF="001076.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=%3C20110603220003.077B142CB3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 4 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001073.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001076.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1075">[ date ]</a>
+ <a href="thread.html#1075">[ thread ]</a>
+ <a href="subject.html#1075">[ subject ]</a>
+ <a href="author.html#1075">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001073.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001076.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1075">[ date ]</a>
+ <a href="thread.html#1075">[ thread ]</a>
+ <a href="subject.html#1075">[ subject ]</a>
+ <a href="author.html#1075">[ 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-June/001076.html b/zarb-ml/mageia-webteam/2011-June/001076.html
new file mode 100644
index 000000000..7bd3f08c4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001076.html
@@ -0,0 +1,129 @@
+<!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=%3C20110604220002.D490842CC6%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="001075.html">
+ <LINK REL="Next" HREF="001077.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=%3C20110604220002.D490842CC6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 5 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001075.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001077.html">[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1076">[ date ]</a>
+ <a href="thread.html#1076">[ thread ]</a>
+ <a href="subject.html#1076">[ subject ]</a>
+ <a href="author.html#1076">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001075.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001077.html">[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1076">[ date ]</a>
+ <a href="thread.html#1076">[ thread ]</a>
+ <a href="subject.html#1076">[ subject ]</a>
+ <a href="author.html#1076">[ 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-June/001077.html b/zarb-ml/mageia-webteam/2011-June/001077.html
new file mode 100644
index 000000000..9cbfc4454
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001077.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work
+ </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%201589%5D%20%5BNew%5D%20Manual%20mirrorlist%20command%20in%0A%20migration%20guide%20doesn%27t%20work&In-Reply-To=%3Cbug-1589-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="001076.html">
+ <LINK REL="Next" HREF="001078.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work</H1>
+ <B>Anssi Hannula</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201589%5D%20%5BNew%5D%20Manual%20mirrorlist%20command%20in%0A%20migration%20guide%20doesn%27t%20work&In-Reply-To=%3Cbug-1589-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 5 02:18:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001076.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001078.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1077">[ date ]</a>
+ <a href="thread.html#1077">[ thread ]</a>
+ <a href="subject.html#1077">[ subject ]</a>
+ <a href="author.html#1077">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+
+ Summary: Manual mirrorlist command in migration guide doesn't
+ work
+ 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">anssi.hannula at iki.fi</A>
+
+
+The manual mirror adding command in the 2010.1 migration guide (
+<A HREF="http://mageia.org/en/1/migrate/">http://mageia.org/en/1/migrate/</A> ) is incorrect, as the system version is still
+2010.1/2010.2 and it thus tries to add Mageia 2010.2 lists that don't exist:
+
+urpmi.addmedia --distrib --mirrorlist
+
+Two options to fix:
+1) Use explicit version:
+URPMI_ADDMEDIA_PRODUCT_VERSION=1 urpmi.addmedia --distrib --mirrorlist
+or
+2) Provide compatibility symlinks in the mirrorlist API.
+
+
+Note that the migration is broken anyway due to bug #1588 (it adds Mandriva
+mirrors instead as they are cached).
+
+--
+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="001076.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001078.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1077">[ date ]</a>
+ <a href="thread.html#1077">[ thread ]</a>
+ <a href="subject.html#1077">[ subject ]</a>
+ <a href="author.html#1077">[ 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-June/001078.html b/zarb-ml/mageia-webteam/2011-June/001078.html
new file mode 100644
index 000000000..8056b4aa8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001078.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 451] FAQ should be refreshed
+ </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%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20110605124744.EF52E42EE8%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="001077.html">
+ <LINK REL="Next" HREF="001079.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 451] FAQ should be refreshed</H1>
+ <B>R&#195;&#169;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20110605124744.EF52E42EE8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 451] FAQ should be refreshed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 5 14:47:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001077.html">[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001079.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1078">[ date ]</a>
+ <a href="thread.html#1078">[ thread ]</a>
+ <a href="subject.html#1078">[ subject ]</a>
+ <a href="author.html#1078">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+
+R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rverschelde at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rverschelde at gmail.com</A>
+
+--- Comment #2 from R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rverschelde at gmail.com</A>&gt; 2011-06-05 14:47:45 CEST ---
+The old FAQ can still be reached if you know the URL, but it is no longer
+linked on the main site IINM.
+
+I suppose the FAQ should be removed from /{locale}/faq/
+
+--
+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="001077.html">[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001079.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1078">[ date ]</a>
+ <a href="thread.html#1078">[ thread ]</a>
+ <a href="subject.html#1078">[ subject ]</a>
+ <a href="author.html#1078">[ 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-June/001079.html b/zarb-ml/mageia-webteam/2011-June/001079.html
new file mode 100644
index 000000000..47f471864
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001079.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110605191153.7332442EEE%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="001078.html">
+ <LINK REL="Next" HREF="001080.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110605191153.7332442EEE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 5 21:11:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001078.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001080.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1079">[ date ]</a>
+ <a href="thread.html#1079">[ thread ]</a>
+ <a href="subject.html#1079">[ subject ]</a>
+ <a href="author.html#1079">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+--- Comment #10 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-05 21:11:53 CEST ---
+So we have to wait till <A HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=474974">https://bugzilla.mozilla.org/show_bug.cgi?id=474974</A>
+gets resolved somehow, filed on 2009-01-23, more than two years ago...
+
+Maybe commentonresolve=true should be removed from the Mageia bugzilla setup,
+it's too bloody annoying having to add something when bugzilla automatically
+says all there's to say:
+&quot;This bug report has been marked as a duplicate of ###&quot;
+
+But that would be a step backwards, meaning anyone can close a report without
+justifying the action.
+
+Or better, patch out bugzilla to restore the old/more-logical behaviour (my
+coding fu is null, though).
+
+--
+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="001078.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001080.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1079">[ date ]</a>
+ <a href="thread.html#1079">[ thread ]</a>
+ <a href="subject.html#1079">[ subject ]</a>
+ <a href="author.html#1079">[ 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-June/001080.html b/zarb-ml/mageia-webteam/2011-June/001080.html
new file mode 100644
index 000000000..61806049b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001080.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110605191824.E399542F17%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="001079.html">
+ <LINK REL="Next" HREF="001081.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110605191824.E399542F17%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 5 21:18:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001079.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001081.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1080">[ date ]</a>
+ <a href="thread.html#1080">[ thread ]</a>
+ <a href="subject.html#1080">[ subject ]</a>
+ <a href="author.html#1080">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</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-06-05 23:18:25 CEST ---
+It shouldn't be very hard to customize this for Mageia Bugzilla.
+
+--
+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="001079.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001081.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1080">[ date ]</a>
+ <a href="thread.html#1080">[ thread ]</a>
+ <a href="subject.html#1080">[ subject ]</a>
+ <a href="author.html#1080">[ 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-June/001081.html b/zarb-ml/mageia-webteam/2011-June/001081.html
new file mode 100644
index 000000000..16d01c8e0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001081.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=%3C20110605220002.80E2940D08%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="001080.html">
+ <LINK REL="Next" HREF="001082.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=%3C20110605220002.80E2940D08%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 6 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001080.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001082.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1081">[ date ]</a>
+ <a href="thread.html#1081">[ thread ]</a>
+ <a href="subject.html#1081">[ subject ]</a>
+ <a href="author.html#1081">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001080.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001082.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1081">[ date ]</a>
+ <a href="thread.html#1081">[ thread ]</a>
+ <a href="subject.html#1081">[ subject ]</a>
+ <a href="author.html#1081">[ 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-June/001082.html b/zarb-ml/mageia-webteam/2011-June/001082.html
new file mode 100644
index 000000000..8411fd167
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001082.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 451] FAQ should be refreshed
+ </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%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20110606095231.64BDA42F93%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="001081.html">
+ <LINK REL="Next" HREF="001091.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 451] FAQ should be refreshed</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20110606095231.64BDA42F93%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 451] FAQ should be refreshed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 6 11:52:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001081.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001091.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1082">[ date ]</a>
+ <a href="thread.html#1082">[ thread ]</a>
+ <a href="subject.html#1082">[ subject ]</a>
+ <a href="author.html#1082">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</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-06-06 13:52:31 CEST ---
+I can remove it altogether, but I would like to know as well if we plan to have
+a maintained FAQ or not (and what technical setup we should use). I'll poke the
+marcom' team.
+
+--
+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="001081.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001091.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1082">[ date ]</a>
+ <a href="thread.html#1082">[ thread ]</a>
+ <a href="subject.html#1082">[ subject ]</a>
+ <a href="author.html#1082">[ 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-June/001089.html b/zarb-ml/mageia-webteam/2011-June/001089.html
new file mode 100644
index 000000000..cdafae683
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001089.html
@@ -0,0 +1,1003 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTik0EkQegrZW5sPAGu90W0NM-6mfZw%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="001046.html">
+ <LINK REL="Next" HREF="001041.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTik0EkQegrZW5sPAGu90W0NM-6mfZw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">terraagua at gmail.com
+ </A><BR>
+ <I>Thu Jun 2 01:02:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI>Next message: <A HREF="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1089">[ date ]</a>
+ <a href="thread.html#1089">[ thread ]</a>
+ <a href="subject.html#1089">[ subject ]</a>
+ <a href="author.html#1089">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Romain,
+
+I send text &quot;*downloads_locales.php*&quot; (Revision 569). I translate to
+portuguese just tha language &quot;'pt'=&gt; array, the latest language, of list.
+
+Macxi
+
+
+
+
+2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;
+
+&gt;<i> 2011/5/31 R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rverschelde at gmail.com</A>&gt;:
+</I>&gt;<i> &gt; 2011/5/31 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+</I>&gt;<i> &gt;&gt; I already do the translation (to pt) of the blog/news, how do I
+</I>&gt;<i> translate
+</I>&gt;<i> &gt;&gt; for the site?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; You can find the php array here:
+</I>&gt;<i> &gt;
+</I>&gt;<i> <A HREF="http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup">http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup</A>
+</I>&gt;<i> &gt; You can copy in a new file the 'en' array, i.e. from &quot; 'en' =&gt; array(
+</I>&gt;<i> &gt; &quot; to &quot; ), &quot; before the 'de' array.
+</I>&gt;<i> &gt; Then you change 'en' to 'pt' and you can translate every paragraphs.
+</I>&gt;<i> &gt; If you send this file to Romain or Oliver it will be much easier for
+</I>&gt;<i> &gt; them to implement the translation (they will just have to copy-paste
+</I>&gt;<i> &gt; the contents of your file after the other translations).
+</I>&gt;<i>
+</I>&gt;<i> Yes.
+</I>&gt;<i>
+</I>&gt;<i> I just want to add that we (me, Oliver and certainly many others) do
+</I>&gt;<i> know/realize that this is a messy process/platform to manage
+</I>&gt;<i> translations. It could be much better than that, but at least we know
+</I>&gt;<i> why/how. Hopefully during the Summer we'll get to something better for
+</I>&gt;<i> both designing and translating pages.
+</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/20110601/789d05f6/attachment-0001.html&gt;
+-------------- next part --------------
+&lt;?php
+
+$_t = array(
+ 'en' =&gt; array(
+ 'download' =&gt; 'download',
+ 'page_title' =&gt; 'Download %s',
+ 'page_desc' =&gt; 'Where you can download Mageia installable and live ISO images.',
+ 'page_kw' =&gt; 'mageia, software, download, operating system, ISO, computer, torrent, ftp',
+ 'page_h1' =&gt; 'Download %s',
+ 'warn_1' =&gt; 'Be Careful!
+ This is NOT FOR: use, public review, personal or production evaluation.
+ This is FOR: developers, packagers, test users ONLY.',
+ 'warn_2' =&gt; 'Whatever you may do with the provided ISO disc image
+ will be done at your own risk, with your own responsibility.',
+ 'title_ok' =&gt; 'You still want to download and test Mageia 1?',
+ 'dl_help' =&gt; 'Just pick the ISO image that is best for you; if you are not sure, you should pick from the first two.',
+ 'changes_since_a2' =&gt; 'Changes since Beta 2',
+ 'release_docs' =&gt; 'Release Documents',
+ 'whatismageia' =&gt; 'What is Mageia?',
+ 'size' =&gt; 'Size',
+ 'flavour' =&gt; 'Flavour',
+ 'language' =&gt; 'Language',
+ 'link' =&gt; 'Direct link',
+ 'dl_shld_start' =&gt; 'Your download of %s should start within a few seconds',
+ 'dl_size' =&gt; '(download size is about %s).',
+ 'alt_download' =&gt; 'If the download does not start, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;click here&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'As soon as your download is complete, you should check that the signatures match:',
+ 'signs_check_2' =&gt; 'If signatures do not match, do not use this ISO. Double-check and try to download again.',
+ 'dl_mirror_loc' =&gt; 'This &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; download mirror is located in %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'If it does not work well for you, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;check out these other mirrors&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'What do you think of it?',
+ 'give_feedback' =&gt; 'You are very welcome to give your impressions on Mageia 1, wherever you want:
+ on &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;our forums&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;our blog&lt;/a&gt;, on &lt;em&gt;your&lt;/em&gt; blog,
+ on Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ In any case, please link to &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'If you encounter a bug, please &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;see how to report it&lt;/a&gt;
+ in our bugs database so we can sort it out the best possible way.',
+ 'notify_web' =&gt; 'If you notice a problem with the download process/pages, please notify the Web team on
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC channel so we can sort it out as fast as possible.
+Note that translations are on their way.',
+ 'wanttohelp?' =&gt; 'Want to help? %sJoin Us!%s',
+ 'ucanhelp' =&gt; 'Yes you can! Mageia is the result of the will and collaboration of many happy fellow volunteers across the world.',
+ 'wherehelp' =&gt; 'There is a lot of areas where one can contribute to the project.
+ Be it for advocacy, prototyping,
+ %scommunication%s, %sWeb design &amp;amp; development%s,
+ for software design, development,
+ %slocalization%s, %spackaging%s, %sQA &amp;amp; testing%s,
+ delivery, for community support &amp;amp; animation,
+ for %sdonating money%s,
+ hardware, hosting, time, for sharing the fun.',
+ 'all_languages' =&gt; 'All supported: up to 167 locales are supported: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk and so much more!
+ See the &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;comprehensive list&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Europa set of languages: Deutsch, English (several variants), espa&#241;ol, fran&#231;ais, italiano, polski, portugu&#234;s do Brasil, ???????.
+ More languages will be made available for the stable release.',
+ 'limited_languages' =&gt; 'Limited: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
+ 'All supported' =&gt; 'All supported',
+ 'English' =&gt; 'English',
+ 'Limited' =&gt; 'Limited',
+ 'European set' =&gt; 'Europa set',
+ 'Europa set 1' =&gt; 'Europa 1',
+ 'Europa set 2' =&gt; 'Europa 2',
+ 'Asia set' =&gt; 'Asia',
+ 'Africa/India set' =&gt; 'Africa/India',
+ 'popularity' =&gt; 'Popularity',
+ 'for_full_install' =&gt; 'For a full installation:',
+ 'for_test_live' =&gt; 'For live test and install: LiveCD 32bit',
+ 'for_network' =&gt; 'For a network install:',
+ 'def-Europa set 1' =&gt; 'Europa set 1 of languages: Deutsch, English (several variants), greek, espa&#241;ol, fran&#231;ais, greek, italiano, Dutch, portugu&#234;s, portugu&#234;s do Brasil, Turkish.',
+ 'def-Europa set 2' =&gt; 'Europa set 2 of languages: Bulgarian, Czech, Danish, American English, Estonian,
+ Finnish, Croatian, Hungarian, Lithuanian, Latvian, Norwegian Bokmaal, Norwegian Nynorsk, Polish,
+ Romanian, Russian, Swedish, Ukrainian, Uzbek, Uzbek (cyrillic).',
+ 'def-Asia set' =&gt; 'Asia set 1 of languages: American English, Indonesian, Japanese, Korean,
+ Thai, Vietnamese, Chinese Simplified, Chinese Traditional.',
+ 'def-Africa/India set' =&gt; 'Africa/India set of languages: Afrikaans, Amharic, Arabic, Assamese, Berber, Bengali, American English,
+ Hausa, Hebrew, Hindi, Igbo, Kannada, Malayalam, Marathi,
+ Punjabi, Tamil, Tswana, Tsonga, Venda, Xhosa, Yoruba, Zulu.',
+ 'dl_migrate_instead' =&gt; 'If you are using Mandriva Linux 2010.1 or 2010.2,
+ you may directly &lt;a href=&quot;/en/1/migrate/&quot;&gt;upgrade your system to Mageia 1&lt;/a&gt; as well.&lt;/p&gt;'
+ ),
+ 'fr' =&gt; array(
+ 'download' =&gt; 't&#233;l&#233;charger',
+ 'page_title' =&gt; 'T&#233;l&#233;charger %s',
+ 'page_desc' =&gt; 'Pour t&#233;l&#233;charger les images ISO live et d?installation de Mageia.',
+ 'page_kw' =&gt; 'mageia, software, download, t&#233;l&#233;charger, syst&#232;me, ordinateur, ISO, torrent, ftp',
+ 'page_h1' =&gt; 'T&#233;l&#233;charger %s',
+ 'warn_1' =&gt; 'Attention&amp;nbsp;!
+ Ce logiciel n&amp;rsquo;est PAS pr&#233;vu pour un usage quotidien, une &#233;valuation publique ou un environnement de production.
+ Ce logiciel est pr&#233;vu pour des TESTS, par des d&#233;veloppeurs ou empaqueteurs.',
+ 'warn_2' =&gt; 'Quel que soit l&amp;rsquo;usage que vous ferez des images ISO mises &#224; votre disposition, cela sera fait en votre pleine conscience des risques encourus, avec vos propres responsabilit&#233;s.',
+ 'title_ok' =&gt; 'Vous voulez toujours t&#233;l&#233;charger et tester Mageia 1&amp;nbsp;?',
+ 'dl_help' =&gt; 'Choisissez l&amp;rsquo;image qui vous convient&amp;nbsp;; si vous n&amp;rsquo;&#234;tes pas s&#251;r, prenez-en une parmi les premi&#232;res.',
+ 'changes_since_a2' =&gt; 'Modifications depuis la version Beta 2',
+ 'release_docs' =&gt; 'Documents',
+ 'whatismageia' =&gt; 'Qu&amp;rsquo;est-ce que Mageia&amp;nbsp;?',
+ 'size' =&gt; 'Taille',
+ 'flavour' =&gt; 'Variante',
+ 'language' =&gt; 'Langues',
+ 'link' =&gt; 'Lien',
+ 'dl_shld_start' =&gt; 'Le t&#233;l&#233;chargement de %s va d&#233;marrer dans quelques secondes',
+ 'dl_size' =&gt; '(taille d&amp;rsquo;environ %s).',
+ 'alt_download' =&gt; 'Si le t&#233;l&#233;chargement ne d&#233;marre pas, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;cliquez ici&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'D&#232;s que votre ISO est t&#233;l&#233;charg&#233;e, vous pouvez v&#233;rifier que les signatures correspondent bien&amp;nbsp;:',
+ 'signs_check_2' =&gt; 'Si elles ne correspondent pas, l&amp;rsquo;image n&amp;rsquo;est pas bonne.',
+ 'dl_mirror_loc' =&gt; 'Le miroir de t&#233;l&#233;chargement &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; est en %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'S&amp;rsquo;il ne fonctionne pas bien, vous pouvez aussi &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;essayer un autre miroir&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'Qu&amp;rsquo;en pensez-vous&amp;nbsp;?',
+ 'give_feedback' =&gt; 'Donnez-nous vos impressions sur Mageia 1, par le moyen que vous pr&#233;f&#233;rez&amp;nbsp;: sur les &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot; hreflang=&quot;en&quot;&gt;forums&lt;/a&gt;, sur &lt;a href=&quot;<A HREF="http://blog.mageia.org/fr/">http://blog.mageia.org/fr/</A>&quot;&gt;notre blog&lt;/a&gt;, sur &lt;em&gt;votre&lt;/em&gt; blog, sur Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ Dans tous les cas, n&amp;rsquo;oubliez pas de pointer vers &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Si vous remarquez un bug, merci de &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;nous en informer&lt;/a&gt; afin que nous puissions le corriger.',
+ 'notify_web' =&gt; 'Si vous rencontrez un probl&#232;me pour t&#233;l&#233;charger cette beta,
+ merci d&amp;rsquo;en informer l&amp;rsquo;&#233;quipe Web sur le canal IRC Freenode
+ &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt;.',
+ 'wanttohelp?' =&gt; 'Vous voulez %sparticiper%s&amp;nbsp;?',
+ 'ucanhelp' =&gt; 'Vous le pouvez&amp;nbsp;! Mageia est le r&#233;sultat des volont&#233;s et travaux de nombreux et joyeux contributeurs &#224; travers le monde.',
+ 'wherehelp' =&gt; 'Il y a de multiples fa&#231;ons de contribuer &#224; Mageia.
+ Par la %scommunication%s, le %sdesign et d&#233;veloppement Web%s,
+ la conception et le d&#233;veloppement de logiciels,
+ la %straduction%s, le %spackaging%s, les %stests et la qualit&#233;%s,
+ la livraison, le support et l&amp;rsquo;animation communautaires,
+ en %soffrant de l&amp;rsquo;argent%s, du mat&#233;riel, de l&amp;rsquo;h&#233;bergement,
+ du temps, ou simplement en partageant cette exp&#233;rience passionante avec nous.',
+ 'all_languages' =&gt; 'Toutes inclues&amp;nbsp;: environ 167 langues ou dialectes sont disponibles&amp;nbsp;: fran&#231;ais, allemand, anglais, espagnol, italien,
+ portugais, roumain, grec, esperanto, turque, su&#233;dois, finlandais, n&#233;erlandais, polonais, russe, danois, chinois, breton, bulgare
+ et tant d&amp;rsquo;autres&amp;nbsp;! Consultez la &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;liste compl&#232;te&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Langues europ&#233;ennes&amp;nbsp;: allemand, anglais, espagnol, fran&#231;ais, italien, polonais, portugais br&#233;silien, russe.
+ Davantage de langues seront disponibles dans la version finale.',
+ 'All supported' =&gt; 'Toutes',
+ 'limited_languages' =&gt; 'Limit&#233;&amp;nbsp;: bi&#233;lo-russe, catalan, allemand, anglais, espagnol, fran&#231;ais, hongrois, italien, polonais, portugais, ukrainien.',
+ 'English' =&gt; 'Anglais',
+ 'Limited' =&gt; 'Limit&#233;',
+ 'European set' =&gt; 'Langues europ&#233;ennes',
+ 'Europa set 1' =&gt; 'Europe / Am&#233;rique',
+ 'Europa set 2' =&gt; 'Europe de l\'est',
+ 'Asia set' =&gt; 'Asie',
+ 'Africa/India set' =&gt; 'Afrique / Inde',
+ 'popularity' =&gt; 'Popularit&#233;',
+ 'for_full_install' =&gt; 'Pour une installation compl&#232;te&amp;nbsp;:',
+ 'for_test_live' =&gt; 'LiveCD 32 bits pour essayer et installer&amp;nbsp;:',
+ 'for_network' =&gt; 'Pour installer via le r&#233;seau&amp;nbsp;:',
+ 'def-Europa set 1' =&gt; 'Europe / Am&#233;rique&amp;nbsp;: allemand, anglais, grec, espagnol, fran&#231;ais, italien, hollandais, portugais, br&#233;silien, turque.',
+ 'def-Europa set 2' =&gt; 'Europe de l\'est&amp;nbsp;:: bulgare, tch&#232;que, danois, anglais, estonien,
+ finnois, croate, hongrois, lituanien, latvian, norv&#233;gien (Bokmaal &amp;amp; Nynorsk), polonais,
+ roumain, russe, su&#233;dois, ukrainien, ouzb&#232;que (latin &amp;amp; cyrillique).',
+ 'def-Asia set' =&gt; 'Asie&amp;nbsp;: anglais, indon&#233;sien, japonais, cor&#233;en, tha&#239;landais, vietnamien, chinois simplif&#233; et traditionnel.',
+ 'def-Africa/India set' =&gt; 'Afrique / Inde&amp;nbsp;:: afrikaans, amharic, arabe, Assamese, berb&#232;re, bengali, anglais,
+ Hausa, h&#233;breu, hindi, Igbo, Kannada, Malayalam, marathi,
+ punjab, tamil, Tswana, tsonga, Venda, Xhosa, Yoruba, zoulou.',
+ 'dl_migrate_instead' =&gt; 'Si vous utilisez Mandriva Linux 2010.1 ou 2010.2,
+ vous pouvez aussi &lt;a href=&quot;/fr/1/migrate/&quot;&gt;migrer votre syst&#232;me vers Mageia 1&lt;/a&gt;.&lt;/p&gt;'
+ ),
+ 'de' =&gt; array(
+ 'download' =&gt; 'herunterladen',
+ 'page_title' =&gt; '%s herunterladen',
+ 'page_desc' =&gt; 'Wo man die Mageia-Installer- und -Live-ISOs herunterladen kann.',
+ 'page_kw' =&gt; 'Mageia, Software, Download, Herunterladen, Betriebssystem, ISO, Computer, torrent, ftp',
+ 'page_h1' =&gt; '%s herunterladen',
+ 'warn_1' =&gt; 'Seien Sie vorsichtig!
+ Diese Version ist NICHT GEDACHT F&#220;R: t&#228;gliche Benutzung, Testberichte, pers&#246;nliche oder Produkt-Evaluierung.
+ Diese Version ist GEDACHT F&#220;R: Tests von Entwicklern und Paketbauern.',
+ 'warn_2' =&gt; 'Alles, was Sie mit den angebotenen ISO-Abbildern machen geschieht
+ auf Ihr eigenes Risiko, in Ihrer eigenen Verantwortung.',
+ 'title_ok' =&gt; 'Sie wollen jetzt Mageia 1 herunterladen und testen?',
+ 'dl_help' =&gt; 'Suchen Sie sich das f&#252;r Sie passende ISO-Abbild aus. Falls Sie nicht sicher sind, sollten Sie eines der ersten Abbilder ausw&#228;hlen.',
+ 'changes_since_a2' =&gt; '&#196;nderungen seit Beta 2',
+ 'release_docs' =&gt; 'Dokumente zum Release',
+ 'whatismageia' =&gt; 'Was ist Mageia?',
+ 'size' =&gt; 'Gr&#246;&#223;e',
+ 'flavour' =&gt; 'Variante',
+ 'language' =&gt; 'Sprache',
+ 'link' =&gt; 'Direktlink',
+ 'dl_shld_start' =&gt; 'Der Download von %s sollte innerhalb weniger Sekunden starten',
+ 'dl_size' =&gt; '(Gr&#246;&#223;e des Downloads betr&#228;gt %s).',
+ 'alt_download' =&gt; 'Falls der Download nicht starten sollte, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;klicken Sie hier&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Sobald der Download abgeschlossen ist, sollten Sie die Signaturen vergleichen:',
+ 'signs_check_2' =&gt; 'Verwenden Sie dieses ISO-Abbild nicht, falls die Signaturen nicht &#252;bereinstimmen. Vergleichen Sie sie erneut und starten Sie den Download erneut.',
+ 'dl_mirror_loc' =&gt; 'Dieser &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; Download-Server befindet sich in %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Falls dieser nicht zufriedenstellend funktioniert, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;k&#246;nnen Sie einen der anderen Server nutzen&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'Was halten Sie davon?',
+ 'give_feedback' =&gt; 'Schildern Sie uns Ihre Eindr&#252;cke von Mageia 1 Beta 2 auf einer der folgenden Plattformen:
+ in &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;unserem Forum&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/de">http://blog.mageia.org/de</A>&quot;&gt;unserem Blog&lt;/a&gt;, in &lt;em&gt;Ihrem&lt;/em&gt; Blog,
+ auf Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ Bitte verlinken Sie es in jedem Fall zu &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Wenn Sie einen Bug (= Fehlverhalten) feststellen, finden Sie &lt;a href=&quot;&quot;&gt;hier eine Anleitung&lt;/a&gt;
+ zur Eintragung des Fehlers in unsere Bug-Datenbank, so dass wir ihn in der bestm&#246;glichen Art bearbeiten k&#246;nnen.',
+ 'notify_web' =&gt; 'Falls Sie Probleme mit dem Download oder der Download-Seite feststellen, informieren Sie bitte das Webteam im
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC Kanal, so dass wir den Fehler so schnell wie m&#246;glich beseitigen k&#246;nnen.
+Beachten Sie, dass an der &#220;bersetzung noch gearbeitet wird.',
+ 'wanttohelp?' =&gt; 'Wollen Sie mithelfen? %sMachen Sie bei uns mit!%s',
+ 'ucanhelp' =&gt; 'Ja, Sie k&#246;nnen das! Mageia ist das Resultat der &#220;berzeugung und der Zusammenarbeit vieler gl&#252;cklicher Freiwilliger aus allen Teilen der Welt.',
+ 'wherehelp' =&gt; 'Es gibt eine Menge von Gebieten, auf denen Sie dem Projekt helfen k&#246;nnen.
+ Diese reichen vom Eintreten f&#252;r das Projekt, der Produktentwicklung,
+ %sKommunikation%s und %sWeb Design &amp;amp; Entwicklung%s &#252;ber
+ Softwaredesign, Entwicklung , %sLokalisierung%s,
+ %sPaketbau%s und %sQA &amp;amp; Testen%s bis hin zum Vertrieb, der
+ Community-Unterst&#252;tzung &amp;amp; -Unterhaltung, sowie dem %sSpenden von
+ Geld%s, Hardware, Hosting, Zeit und die Teilnahme an dem ganzen Spa&#223;.',
+ 'all_languages' =&gt; 'Bis zu 167 Sprachen werden unterst&amp;uuml;tzt: Deutsch, Englisch, Spanisch, Franz&amp;ouml;sisch, Italienisch, Portugiesisch, Schwedisch, Niederl&amp;auml;ndisch, Polnisch, D&amp;auml;nisch und viele weitere!
+ Eine erweiterte Liste k&amp;ouml;nnen Sie &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;hier&lt;/a&gt; einsehen.',
+ 'euro_languages' =&gt; '&quot;Europ&amp;auml;ische Sprachliste&quot; bedeutet: Deutsch, Englisch, Spanisch, Franz&#246;sisch, Italienisch, Portugiesisch, ???????.
+ Weitere Sprachen werden im finalen Release zur Verf&#252;gung stehen.',
+ 'All supported' =&gt; &quot;Alle unterst&#252;tzten Sprachen&quot;,
+ 'limited_languages' =&gt; 'Eingeschr&amp;auml;nkte Sprachliste: Wei&amp;szlig;russisch, Katalonisch, Deutsch, Englishc, Spanisch, Franz&amp;ouml;sisch, Ungarisch, Italienisch, Polnisch, Portugiesisch, Ukrainisch',
+ 'English' =&gt; 'Englisch',
+ 'Limited' =&gt; 'Eingeschr&amp;auml;nkte Sprachliste',
+ 'European set' =&gt; 'Europ&amp;auml;ische Sprachliste'
+
+ ),
+ 'nl' =&gt; array(
+ 'download' =&gt; 'download',
+ 'page_title' =&gt; 'Download %s',
+ 'page_desc' =&gt; 'Waar u Mageia installeerbare en live ISO-images kunt downloaden.',
+ 'page_kw' =&gt; 'mageia, software, download, operating system, ISO, computer, torrent, ftp',
+ 'page_h1' =&gt; 'Download %s',
+ 'warn_1' =&gt; 'Voorzichtig!
+ Dit is NIET BEDOELD VOOR: dagelijks gebruik, publieke recencies, evaluatie voor persoonlijk gebruik of in een produktieomgeving.
+ Dit is WEL BEDOELD VOOR: Mageia ontwikkelaars en het testen door packagers.',
+ 'warn_2' =&gt; 'Het gebruik van de aangeboden ISO-image is geheel voor uw eigen risico en rekening, en voor eigen verantwoordelijkheid.',
+ 'title_ok' =&gt; 'U wilt nog steeds Mageia 1 downloaden?',
+ 'dl_help' =&gt; 'Kies het ISO-bestand welke voor u het beste is; Mocht u twijfelen dan kunt u het beste een van de eersten kiezen.',
+ 'changes_since_a2' =&gt; 'Veranderingen sinds Beta 2',
+ 'release_docs' =&gt; 'Release Documenten',
+ 'whatismageia' =&gt; 'Wat is Mageia?',
+ 'size' =&gt; 'Omvang',
+ 'flavour' =&gt; 'Smaak',
+ 'language' =&gt; 'Taal',
+ 'link' =&gt; 'Directe link',
+ 'dl_shld_start' =&gt; 'Uw download van %s behoort binnen enkele seconden te starten',
+ 'dl_size' =&gt; '(download grootte is ongeveer %s).',
+ 'alt_download' =&gt; 'Wanneer de download niet start, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;klikt u hier&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Wanneer de download klaar is dient u te controleren dat de ondertekeningen overeenkomen:',
+ 'signs_check_2' =&gt; 'Als de ondertekeningen niet overeenkomen dient u deze ISO niet te gebruiken. Controleer nogmaals de ondertekeningen en of u het goede bestand heeft en probeert u de download dan nogmaals.',
+ 'dl_mirror_loc' =&gt; 'Deze &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; spiegelserver bevindt zich in %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Mocht deze server voor u niet goed bereikbaar zijn, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;kijkt u dan eens naar deze andere spiegelservers&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'Wat vindt u ervan?',
+ 'give_feedback' =&gt; 'Graag horen wij uw bevindingen met Mageia 1, waar u dat het beste uitkomt:
+ op &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;onze fora&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;ons blog&lt;/a&gt;, op &lt;em&gt;uw&lt;/em&gt; blog,
+ op Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ Linkt u alstublieft naar &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Mocht u een fout (bug) tegenkomen, ziet u dan &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;hoe deze te rapporteren&lt;/a&gt;
+ naar onze foutendatabase zodat wij dit zo goed en snel als mogelijk kunnen oplossen.',
+ 'notify_web' =&gt; 'Mocht u een probleem ondervinden met het proces van downloaden of deze download pagina\'s, neemt u dan alstublieft contact op met het Web-team op het
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC-kanaal zodat we het zo snel mogelijk kunnen oplossen.
+Wij zijn druk bezig met vertalingen naar andere talen.',
+ 'wanttohelp?' =&gt; 'Wilt u ons helpen? %sDoe met ons mee!%s',
+ 'ucanhelp' =&gt; 'U kunt ons helpen! Mageia is het resultaat van de motivatie van en samenwerking tussen vele vrijwilligers van over de hele wereld.',
+ 'wherehelp' =&gt; 'Er zijn een hoop dingen waarmee u kunt bijdragen aan de ontwikkeling en het succes van Mageia.
+ Zoals: promotie akties, prototypes,
+ %scommunicatie%s, %sWeb design &amp;amp; ontwikkelen%s,
+ software ontwerpen, software ontwikkeling,
+ %slocalisatie%s, %srpm-pakketten maken%s, %sQA &amp;amp; testen%s,
+ gebruikersondersteuning,
+ %sgelddonaties%s,
+ hardware donaties, hosting, tijd, en delen in het plezier!',
+ 'all_languages' =&gt; 'Up to 167 locales are supported: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk and so much more!
+ See the &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;comprehensive list&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Europa set of languages is: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, polski, ???????.
+ More languages will be made available for the stable release.',
+ 'All supported' =&gt; 'All supported',
+ 'limited_languages' =&gt; 'Limited: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
+ 'English' =&gt; 'English',
+ 'Limited' =&gt; 'Limited',
+ 'European set' =&gt; 'European set'
+
+ ),
+ 'el' =&gt; array(
+ 'download' =&gt; '????',
+ 'page_title' =&gt; '???? ??? %s',
+ 'page_desc' =&gt; '???? ???????? ?? ?????? ???? ?????????????? ??? live ??????? ISO ??? Mageia.',
+ 'page_kw' =&gt; 'mageia, ?????????, ????, ??????????? ???????, ISO, ???????????, torrent, ftp',
+ 'page_h1' =&gt; '???? ??? %s',
+ 'warn_1' =&gt; '???????!
+ ???? ??? ????? ???: ?????, ??????? ??????????, ?????????? ???????.
+ ???? ????? ???: ???????????????, ??????????? ???????, ??????? ??????? ????.',
+ 'warn_2' =&gt; '??????????? ??? ?? ????? ? ????? ??? ?? ?????? ??? ??????? ISO ??? ?????????? ???? ??????? ???, ???? ?? ????? ?? ???? ??? ?????? ??? ?? ????? ???????? ??? ????? ???????? ??? ?????? ?? ????????.',
+ 'title_ok' =&gt; '?????? ????? ?? ?????? ???? ??? ?? ?????????? ?? Mageia 1?',
+ 'dl_help' =&gt; '???? ???????? ??? ?????? ISO ??? ????? ????????????? ??? ????. ?? ??? ????? ????????, ???????? ?? ????????? ??? ?? ??? ??? ??????.',
+ 'changes_since_a2' =&gt; '??????? ??? Beta 2',
+ 'release_docs' =&gt; '?????????? ???????????',
+ 'whatismageia' =&gt; '?? ????? ? Mageia?',
+ 'size' =&gt; '???????',
+ 'flavour' =&gt; '?????',
+ 'language' =&gt; '??????',
+ 'link' =&gt; '?????? ?????????',
+ 'dl_shld_start' =&gt; '? ???? ??? %s ?? ????????? ?? ???? ????????????',
+ 'dl_size' =&gt; '(?? ??????? ??? ????????? ??????? ????? ??????? %s).',
+ 'alt_download' =&gt; '?? ? ???? ??? ????????, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;??????? ???&lt;/a&gt;.',
+ 'signs_check_1' =&gt; '????? ? ???? ?????????, ???? ?? ????? ?? ???????? ??? ?? ????????? ??????????:',
+ 'signs_check_2' =&gt; '?? ?? ????????? ??? ??????????, ?? ??????????????? ???? ?? ISO. ??????? ???? ??? ????????? ?? ?????? ???? ????.',
+ 'dl_mirror_loc' =&gt; '????? &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; ? ???????????? ????? ????????? ???(?)/???(?) %s (%s).',
+ 'dl_alt_mirrors' =&gt; '?? ?? ???????? ???? ??? ???, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;??????? ?????? ???? ?????????????&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; '???? ????? ? ????? ??? ??\'????;',
+ 'give_feedback' =&gt; '????? ???????????? ?? ????????? ??? ?????????? ??? ??? ?? Mageia 1, ???? ??????:
+ ??? &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;forums ???&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;??? ????????? ???&lt;/a&gt;, ??? &lt;em&gt;???? ???&lt;/em&gt; ?????????,
+ ??? Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ ?? ??????????? ?????????, ??????????? ????????? ??? &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; '?? ?????????????? ?????? ??????, ??????????? &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;????? ??? ?? ?? ?????????&lt;/a&gt;
+ ??? ???? ?????????? ????????? ???? ?? ?? ??????????????? ??? ?? ??????? ????????.',
+ 'notify_web' =&gt; '?? ???????????? ?????? ???????? ??? ??????????/?????? ?????, ??????????? ??????????? ?? Web team ???
+ &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC ?????? ???? ?? ?? ??????? ??? ?? ??????? ??? ???????.
+ ????????? ??? ?? ??????????? ???????????????.',
+ 'wanttohelp?' =&gt; '?????? ?? ?????????; %s????? ???? ???!%s',
+ 'ucanhelp' =&gt; '??? ????????! ? Mageia ????? ?? ?????????? ??? ??????? ??? ??? ??????????? ?????? ?????????? ????????? ??\'??? ??? ?????.',
+ 'wherehelp' =&gt; '???????? ?????? ?????? ??? ?????? ?? ????????? ??????? ??? ????.
+ ?????? ?? ????? ??? ??????????, ?????????? ??????????,
+ %s???????????%s, %s?????????? ??????????? &amp;amp; ???????????????%s,
+ ??? ????????? ??????????, ??????????????,
+ %s???????????%s, %s?????????? ???????%s, %sQA &amp;amp; ???????%s,
+ ????????, ?????????? ??? ?????????? &amp;amp; animation,
+ ??? %s????? ????????%s,
+ ????? ?????????, ????????? ????????????, ?????, ??? ?? ????????? ?? ??????????.',
+ 'all_languages' =&gt; '?????????????? ????: ?????????????? ????? ??? 167 ???????????: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk ??? ?????? ?????!
+ ????? ??? &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;????? ?????&lt;/a&gt;.',
+ 'euro_languages' =&gt; '?????? ?????????? ???????: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, polski, portugu&#234;s, ???????.
+ ???????????? ??????? ?? ?????? ?????????? ??? ?? ??????? ??????.',
+ 'limited_languages' =&gt; '?????????????: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
+ 'All supported' =&gt; '?????????????? ????',
+ 'English' =&gt; '???????',
+ 'Limited' =&gt; '?????????????',
+ 'European set' =&gt; '????????? ??????'
+ ),
+ 'es' =&gt; array(
+ 'download' =&gt; 'descargar',
+ 'page_title' =&gt; 'Descargue %s',
+ 'page_desc' =&gt; 'Donde puede descargar im&#225;genes ISO de Mageia instalables y live.',
+ 'page_kw' =&gt; 'mageia, software, aplicaciones, descarga, sistema operativo, ISO, computador, torrent, ftp',
+ 'page_h1' =&gt; 'Descargue %s',
+ 'warn_1' =&gt; '&#161;Tenga cuidado!
+ Esto NO ES PARA: uso, revisi&#243;n p&#250;blica, evaluaci&#243;n personal o en ambientes de producci&#243;n.
+ Esto es PARA: desarrolladores, empaquetadores, usuarios de prueba SOLAMENTE.',
+ 'warn_2' =&gt; 'Todo lo que realice con la imagen de disco ISO provista
+ ser&#225; bajo su propio riesgo y bajo su responsabilidad.',
+ 'title_ok' =&gt; '&#191;A&#250;n desea descargar y probar Mageia 1?',
+ 'dl_help' =&gt; 'Seleccione la imagen ISO que mejor se ajusta a usted;; si no est&#225; seguro, deber&#237;a elegir entre las dos primeras.',
+ 'changes_since_a2' =&gt; 'Cambios desde Beta 2',
+ 'release_docs' =&gt; 'Documentos de la versi&#243;n',
+ 'whatismageia' =&gt; '&#191;Qu&#233; es Mageia?',
+ 'size' =&gt; 'Tama&#241;o',
+ 'flavour' =&gt; 'Sabor',
+ 'language' =&gt; 'Idioma',
+ 'link' =&gt; 'Enlace directo',
+ 'dl_shld_start' =&gt; 'La descarga de %s comenzar&#225; dentro de pocos segundos',
+ 'dl_size' =&gt; '(el tama&#241;o de descarga es de alrededor de %s).',
+ 'alt_download' =&gt; 'Si la descarga no comienza, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;haga click aqu&#237;&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Tan pronto como su descarga termine, deber&#237;a revisar que las firmas coinciden:',
+ 'signs_check_2' =&gt; 'Si las firmas no coinciden, no utilice esta imagen ISO. Revise nuevamente e intente descargar de nuevo.',
+ 'dl_mirror_loc' =&gt; '&#201;ste &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; servidor espejo de descarga est&#225; ubicado en %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Si no funciona bien para usted, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;pruebe estos otros servidores espejo&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; '&#191;Qu&#233; le parece?',
+ 'give_feedback' =&gt; 'Nos interesa conocer su opini&#243;n sobre Mageia 1, como usted prefiera:
+ en &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;nuestros foros&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/es">http://blog.mageia.org/es</A>&quot;&gt;nuestro blog&lt;/a&gt;, en &lt;em&gt;su&lt;/em&gt; blog,
+ en Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ En cualquier caso, por favor enlace a &lt;a href=&quot;<A HREF="http://mageia.org/es">http://mageia.org/es</A>&quot;&gt;mageia.org/es&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Si encuentra un fallo, por favor &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;vea c&#243;mo reportarlo&lt;/a&gt;
+ en nuestra base de datos de fallos para que podamos corregirlo de la mejor manera posible.',
+ 'notify_web' =&gt; 'Si encuentra un problema con el proceso o las p&#225;ginas de descarga, por favor notifique al equipo Web en
+el canal de IRC de Freenode &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; para que podamos correjirlo lo mas r&#225;pido posible.
+Note que las traducciones est&#225;n en progreso.',
+ 'wanttohelp?' =&gt; '&#191;Quiere ayudar? %s!&#218;nasenos!%s',
+ 'ucanhelp' =&gt; '&#161;Usted puede! Mageia es el resultado de la voluntad y colaboraci&#243;n de muchos voluntarios felices de todo del mundo.',
+ 'wherehelp' =&gt; 'Hay muchas &#225;reas en las que uno puede conrtibuir al proyecto.
+ Ya sea para apoyo, construcci&#243;n de prototipos,
+ %scomunicaci&#243;n%s, %sdise&#241;o y desarrollo Web &amp;amp;%s,
+ para dise&#241;o &amp;amp; desarrollo de aplicaciones,
+ %slocalizaci&#243;n%s, %sempaquetamiento%s, %sQA &amp;amp; pruebas%s,
+ entrega, para animaci&#243;n &amp;amp; soporte de la comunidad,
+ para %sdonaci&#243;n de dinero%s,
+ hardware, hosting, tiempo, para compartir la entretenci&#243;n.',
+ 'all_languages' =&gt; 'Todos soportados: hasta 167 locales est&#225;n soportados: Alem&#225;n, Ingl&#233;s, Espa&#241;ol, Franc&#233;s, Italiano, Portugu&#233;s, Suizo, Holand&#233;s, Polaco, Dan&#233;s &#161;y muchos m&#225;s!
+ Vea la &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;lista detallada&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Conjunto de idiomas de Europa: Alem&#225;n, Ingl&#233;s, Espa&#241;ol, Franc&#233;s, Italiano, Polski, Portugu&#233;s, ???????.
+ Mas idiomas estar&#225;n disponibles para la versi&#243;n estable.',
+ 'limited_languages' =&gt; 'Ingl&#233;s, Espa&#241;ol, Franc&#233;s, H&#250;ngaro, Italiano, Poliaco, Portugu&#233;s, Ukrainiano',
+ 'All supported' =&gt; 'Todos soportados',
+ 'English' =&gt; 'Ingl&#233;s',
+ 'Limited' =&gt; 'Limitado',
+ 'European set' =&gt; 'Conjunto Europeo'
+ ),
+ 'et' =&gt; array(
+ 'download' =&gt; 'laadi alla',
+ 'page_title' =&gt; '%s allalaadimine',
+ 'page_desc' =&gt; 'Mageia ISO-t&#245;mmiste allalaadimine paigaldamiseks ja kasutamiseks Live-s&#252;steemina.',
+ 'page_kw' =&gt; 'mageia, tarkvara, allalaadimine, operatsioonis&#252;steem, ISO, arvuti, torrent, ftp',
+ 'page_h1' =&gt; '%s allalaadimine',
+ 'warn_1' =&gt; 'Ettevaatust!
+ See EI OLE: igap&#228;evaseks kasutamiseks, avalikuks tutvustamiseks, isiklikuks v&#245;i t&#246;&#246;alaseks p&#252;sitarbimiseks.
+ See ON: AINULT arendajatele, pakendajatele ja testijatele.',
+ 'warn_2' =&gt; 'Mida te ka ei v&#245;taks pakutava ISO-t&#245;mmisega ette,
+ teete te seda t&#228;ielikult omal riisikol ja ise vastutades.',
+ 'title_ok' =&gt; 'Kas soovite ikka veel Mageia 1 alla laadida ja testida?',
+ 'dl_help' =&gt; 'Valige lihtsalt k&#245;ige paremini sobiv ISO-t&#245;mmis. Kui te pole kindel, valige &#252;ks kahest esimesest.',
+ 'changes_since_a2' =&gt; 'Muudatused p&#228;rast Beta 2',
+ 'release_docs' =&gt; 'V&#228;ljalaskedokumendid',
+ 'whatismageia' =&gt; 'Mis on Mageia?',
+ 'size' =&gt; 'Suurus',
+ 'flavour' =&gt; 'Variant',
+ 'language' =&gt; 'Keel',
+ 'link' =&gt; 'Otselink',
+ 'dl_shld_start' =&gt; '%s allalaadimine peaks algama m&#245;ne sekundi p&#228;rast',
+ 'dl_size' =&gt; '(alla tuleb laadida umbes %s).',
+ 'alt_download' =&gt; 'Kui allalaadimine ei alga, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;kl&#245;psake siia&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Niipea kui allalaadimine on l&#245;petatud, tuleks kontrollida signatuuride vastavust:',
+ 'signs_check_2' =&gt; 'Kui signatuurid ei klapi, &#228;rge kasutage seda ISO-t. Kontrollige veel kord ja p&#252;&#252;dke ISO uuesti alla laadida.',
+ 'dl_mirror_loc' =&gt; 'Selle &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; allalaadimise peegelsaidi asukohaks on %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Kui see teie puhul ei toimi, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;proovige kasutada teisi peegelsaite&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'Kuidas see teile meeldib?',
+ 'give_feedback' =&gt; 'Me ootame v&#228;ga teie muljeid Mageia 1 kohta, mida te v&#245;ite jagada n&#228;iteks j&#228;rgmistes kohtades:
+ &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;meie foorumites&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;meie ajaveebis&lt;/a&gt;, &lt;em&gt;oma&lt;/em&gt; ajaveebis,
+ Twitteris (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ Igal juhul viidake palun aadressile &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Kui satute silmitsi veaga, vaadake palun, &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;kuidas sellest teada anda&lt;/a&gt;
+ meie vigade andmebaasis, et v&#245;iksime probleemi lahendada parimal viisil.',
+ 'notify_web' =&gt; 'Kui satute silmitsi probleemiga allalaadimise edenemise ajal v&#245;i allalaadimiste lehek&#252;lgedel, teavitage palun sellest
+veebimeeskonda Freenode IRC-kanalil &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt;, et v&#245;iksime probleemi lahendada v&#245;imalikult ruttu.',
+ 'wanttohelp?' =&gt; 'Kas soovite aidata? %s&#220;hinege meiega!%s',
+ 'ucanhelp' =&gt; 'Jah, ka teie saate aidata! Mageia kujutab endast kogu maailma paljude &#245;nnelike vabatahtlike soovide ja koost&#246;&#246; tulemust.',
+ 'wherehelp' =&gt; 'Te saate projektile kaasa aidata mitmel moel.
+ Selleks v&#245;ib olla reklaamimise vallas eeskuju andmine,
+ %ssuhtlemine%s, %sveebikujundus ja arendamine%s,
+ tarkvara vallas selle v&#228;ljat&#246;&#246;tamine ja arendamine,
+ %st&#245;lkimine%s, %spakendamine%s, %skvaliteedikontroll ja testimine%s,
+ levitamine, kogukonna puhul toetus ja kogukonna elavdamine,
+ %sraha annetamine%s,
+ riistvara, majutuse ja aja pakkumine, kas v&#245;i lihtsalt l&#245;bu p&#228;rast kaasal&#246;&#246;mine.',
+ 'all_languages' =&gt; 'Toetatud on kuni 167 keelt: eesti, hispaania, hollandi, inglise, itaalia, poola, portugali, prantsuse, rootsi, saksa, taani ja veel palju teisi!
+ Vaadake &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;t&#228;ielikku nimekirja&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Euroopa keelevalik on j&#228;rgmine: saksa, inglise, hispaania, prantsuse, itaalia, portugali.
+ Stabiilses v&#228;ljalaskes tuleb keelevalik suurem.',
+ 'All supported' =&gt; 'K&#245;ik toetatud',
+ 'limited_languages' =&gt; 'Piiratud: hispaania, inglise, itaalia, katalaani, poola, portugali, prantsuse, saksa, ukraina, ungari, valgevene',
+ 'English' =&gt; 'Inglise',
+ 'Limited' =&gt; 'Piiratud',
+ 'European set' =&gt; 'Euroopa keeled'
+ ),
+ 'nb' =&gt; array(
+ 'download' =&gt; 'last ned',
+ 'page_title' =&gt; 'Last ned %s',
+ 'page_desc' =&gt; 'Her kan du laste ned Mageias installerbare og direkte kj&#248;rbare ISO-avtrykk.',
+ 'page_kw' =&gt; 'mageia, programvare, nedlasting, operativsystem, ISO, datamaskin, torrent, ftp',
+ 'page_h1' =&gt; 'Last ned %s',
+ 'warn_1' =&gt; 'Advarsel.
+ Dette avtrykket er laget med tanke p&#229; utviklere, pakkere, testbrukere og andre involvert i milj&#248;et rundt Mageia. Det er ikke laget for normal bruk.',
+ 'warn_2' =&gt; 'Dette ISO-avtrykket brukes p&#229; eget ansvar.',
+ 'title_ok' =&gt; 'Vil du fortsatt laste ned og teste Mageia 1 beta1?',
+ 'dl_help' =&gt; 'Velg ISO-avtrykket som best passer dine behov. Hvis du er usikker, anbefaler vi at du velger et av de &#248;verste p&#229; lista.',
+ 'changes_since_a2' =&gt; 'Endringer siden Alpha 2',
+ 'release_docs' =&gt; 'Utgivelsesdokumenter',
+ 'whatismageia' =&gt; 'Hva er Mageia?',
+ 'size' =&gt; 'St&#248;rrelse',
+ 'flavour' =&gt; 'Variant',
+ 'language' =&gt; 'Spr&#229;k',
+ 'link' =&gt; 'Direkte lenke',
+ 'dl_shld_start' =&gt; 'Nedlastingen av %s starter om noen f&#229; sekunder',
+ 'dl_size' =&gt; '(nedlastingsst&#248;rrelsen er omtrent %s).',
+ 'alt_download' =&gt; 'Dersom nedlastingen ikke starter, kan du &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;klikke her&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Kontroller at sjekksummene samsvarer n&#229;r nedlastingen er ferdig.',
+ 'signs_check_2' =&gt; 'Dersom sjekksummene ikke samsvarer, m&#229; du laste ned dette avtrykket p&#229; nytt og gjenta steget over.',
+ 'dl_mirror_loc' =&gt; 'Dette &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; Speilet for nedlastinga er plassert i %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Dersom dette ikke virker for deg, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;kan du velge et av disse speilene&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'Hva synes du om dette?',
+ 'give_feedback' =&gt; 'Vi trenger din tilbakemelding om Mageia 1 beta1. Bruk derfor
+ &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;forumet&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;bloggen&lt;/a&gt;, &lt;em&gt;din egen blogg&lt;/em&gt;,
+ eller &lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt; p&#229; Twitter, for &#229; fortelle oss hva du mener.
+ Ikke glem &#229; lenke til &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Dersom du finner en feil, kan du rapportere den i v&#229;rt feilrapporteringsverkt&#248;y. Fremgangsm&#229;ten finner du &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;her&lt;/a&gt;.',
+ 'notify_web' =&gt; 'Hvis du oppdager et problem med nedlastingssidene, kan du ta kontakt med de ansvarlige i kanalen
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; p&#229; IRC-nettverket Freenode.
+V&#230;r klar over at vi fortsatt lokaliserer infrastrukturen v&#229;r.',
+ 'wanttohelp?' =&gt; '&#216;nsker du &#229; hjelpe til? %sDelta!%s',
+ 'ucanhelp' =&gt; 'Selvf&#248;lgelig kan du! Mageia er resultatet av viljen og samarbeidet til mange friviligge bidragsytere over hele verden.',
+ 'wherehelp' =&gt; 'Det er mange oppgaver som skal utf&#248;res og vi trenger dine bidrag.
+ Du kan for eksempel v&#230;re en talsperson, teste prototyper,
+ h&#229;ndtere %skommunikasjon%s, bidra til %snettdesignet &amp;amp; utviklingen av denne%s,
+ involvere deg i programvaredesign, utvikling,
+ %slokalisering%s, %spakking%s, %skvalitetssikring &amp;amp; testing%s,
+ levering, felleskapsst&#248;tte &amp;amp; animasjon, donasjoner som
+ %spenger%s, maskinvare og lagringsplass for &#229; dele moroa',
+ 'all_languages' =&gt; 'S&#229; mange som 167 spr&#229;k er st&#248;ttet; tysk, engelsk, spansk, fransk, italiensk, norsk, portugisisk, svensk, nederlandsk, polsk, dansk og mange flere.
+ Se lista over &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;st&#248;ttede spr&#229;k&lt;/a&gt; for mer informasjon.',
+ 'euro_languages' =&gt; 'Europeiske spr&#229;k som tysk, engelsk, spansk, fransk, italiensk, portugisisk.
+ Flere spr&#229;k vil v&#230;re tilgjengelige i den stabile versjonen.',
+ 'limited_languages' =&gt; 'Begrenset st&#248;tte for hviterussisk, katalansk, tysk, engelsk, spansk, fransk, ungarsk, italiensk, polsk, portugisisk, ukrainsk',
+ 'All supported' =&gt; 'Full st&#248;tte',
+ 'English' =&gt; 'Engelsk',
+ 'Limited' =&gt; 'Begrenset',
+ 'European set' =&gt; 'Europeisk sett'
+ ),
+ 'ro' =&gt; array(
+ 'download' =&gt; 'desc?rcare',
+ 'page_title' =&gt; 'Desc?rca?i %s',
+ 'page_desc' =&gt; 'Locul &#238;n care pute?i desc?rca imaginile ISO instalabile ?i ISO.',
+ 'page_kw' =&gt; 'mageia, software, desc?rcare, sistem de operare, ISO, calculator, torrent, ftp',
+ 'page_h1' =&gt; 'Desc?rca?i %s',
+ 'warn_1' =&gt; 'Aten?ie!
+ Aceast? versiune NU ESTE PENTRU: utilizare, recenzii, evaluare personal? sau &#238;n produc?ie.
+ Aceast? versiune este PENTRU: dezvoltatori, &#238;mpachetatori ?i testori.',
+ 'warn_2' =&gt; 'Indiferent ce dori?i s? face?i cu imaginea ISO furnizat?
+ o face?i pe propriul risc ?i pe propria voastr? r?spundere.',
+ 'title_ok' =&gt; 'Sigur dori?i s? desc?rca?i ?i s? testa?i Mageia 1?',
+ 'dl_help' =&gt; 'Alege?i imaginea ISO care vi-se potrive?te; dac? nu s&#238;nte?i sigur, alege?i dintre primele dou?.',
+ 'changes_since_a2' =&gt; 'Modific?ri fa?? de Alfa 2',
+ 'release_docs' =&gt; 'Documentele edi?iei',
+ 'whatismageia' =&gt; 'Ce este Mageia?',
+ 'size' =&gt; 'M?rime',
+ 'flavour' =&gt; 'Variant?',
+ 'language' =&gt; 'Limb?',
+ 'link' =&gt; 'Leg?tur? direct?',
+ 'dl_shld_start' =&gt; 'Desc?rcarea lui %s ar trebui s? &#238;nceap? &#238;n c&#238;teva secunde',
+ 'dl_size' =&gt; '(m?rimea desc?rc?rii este &#238;n jur de %s).',
+ 'alt_download' =&gt; 'Dac? desc?rcarea nu se lanseaz?, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;ap?sa?i aici&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Imediat ce s-a &#238;ncheiat desc?rcarea, ar trebui s? verifica?i semn?turile:',
+ 'signs_check_2' =&gt; 'Dac? nu se potrivesc, nu utiliza?i acest ISO. Reverifica?i ?i &#238;ncerca?i s?-l desc?rca?i din nou.',
+ 'dl_mirror_loc' =&gt; 'Acest server alternativ &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; este localizat &#238;n %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Dac? nu func?ioneaz? bine, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;&#238;ncerca?i ?i aceste servere alternative&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'Ce p?rere ave?i?',
+ 'give_feedback' =&gt; 'S&#238;nte?i bine venit s? ne spune?i ce p?rere ave?i despre Mageia 1, oric&#238;nd dori?i:
+ pe &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;forumurile noastre&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;blogul nostru&lt;/a&gt;, pe blogul &lt;em&gt;vostru&lt;/em&gt;,
+ pe Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ &#206;n orice caz, nu uita?i s? face?i o timitere la &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Dac? &#238;nt&#238;lni?i o eroare, v? rug?m s? &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;ne inforrma?i&lt;/a&gt;
+ ca s-o putem corecta.',
+ 'notify_web' =&gt; 'Dac? remarca?i vreo problem? cu procesul/pagina de desc?rcare, v? rug?m s? &#238;nforma?i echipa Web pe
+canalul IRC &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; de pe Freenode, ca s-o putem trata.
+De remarcat c? traducerile s&#238;nt &#238;n curs.',
+ 'wanttohelp?' =&gt; 'Vre?i s? ajuta?i? %sAl?tura?i-v? nou?!%s',
+ 'ucanhelp' =&gt; 'Da, se poate! Mageia este rezultatul dorin?ei ?i a muncii multor contribuitori bucuro?i din &#238;ntreaga lume.',
+ 'wherehelp' =&gt; 'Exist? o mul?ime de modalit??i prin care pute?i contribui la acest proiect.
+ Fie prin %scomunicare%s, %sconcep?ie ?i dezvoltare Web%s,
+ concep?ia ?i dezvoltarea de aplica?ii,
+ %straducere%s, %s&#238;mpachetare%s, %steste de calitate%s,
+ livrarea, suportul ?i animarea comunit??ii,
+ oferind %sdona?ii%s &#238;n bani, componente, g?zduire, sau
+ din timpul vostru, pentru partajarea distrac?iei.',
+ 'all_languages' =&gt; 'Toate incluse: &#238;n jur de 167 de limbi ?i dialecte s&#238;nt disponibile: german?, englez?, spaniol?, francez?, italian?, portughez?, suedez?, olandez?, polonez?, danez? ?i multe altele!
+ Consulta?i &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;lista complet?&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Setul de limbi europene: german?, englez?, spaniol?, francez?, italian?, portughez?.
+ ?i mai multe limbi vor fi disponibile pentru versiunea final?.',
+ 'limited_languages' =&gt; 'Limitate: bielorus?, catalan?, german?, englez?, spaniol?, francez?, maghiar?, italian?, polonez?, portughez?, ucrainian?',
+ 'All supported' =&gt; 'Toate incluse',
+ 'English' =&gt; 'Englez?',
+ 'Limited' =&gt; 'Limitat?',
+ 'European set' =&gt; 'Limbi europene'
+ ),
+ 'ru' =&gt; array(
+ 'download' =&gt; '?????????',
+ 'page_title' =&gt; '???????? %s',
+ 'page_desc' =&gt; '????? ?? ?????? ????????? ???????????? ? ??????????? ISO ?????? Mageia.',
+ 'page_kw' =&gt; 'mageia, ?????????, ???????, ?????????, ???????????? ???????, ?????, ?????????, ???????, ftp',
+ 'page_h1' =&gt; '????????? %s',
+ 'warn_1' =&gt; '????????!
+ ??? ?? ???: ????????? ???????, ??????? ??? ????????????????? ?????????????.
+ ??? ???: ???????????? ?????????????? ? ????????????.',
+ 'warn_2' =&gt; '????? ?? ?? ?????? ? ??????????????? ??????? ?????
+ ?? ??????? ??? ?? ???? ????? ? ????.',
+ 'title_ok' =&gt; '?? ??? ??? ?????? ??????? ? ?????????????? Mageia 1?',
+ 'dl_help' =&gt; '?????? ???????? ?????????? ??? ?????; ???? ?? ?? ????????, ??? ????? ??????? ???? ?? ??????.',
+ 'changes_since_a2' =&gt; '????????? ?? ????????? ? Beta 2',
+ 'release_docs' =&gt; '???????????? ?? ??????',
+ 'whatismageia' =&gt; '??? ????? Mageia?',
+ 'size' =&gt; '??????',
+ 'flavour' =&gt; '???????',
+ 'language' =&gt; '????',
+ 'link' =&gt; '?????? ??????',
+ 'dl_shld_start' =&gt; '???????? %s ?????? ???????? ????? ????????? ??????',
+ 'dl_size' =&gt; '(?????? ??????????? ????? ????? %s).',
+ 'alt_download' =&gt; '???? ???????? ?? ??????????, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;??????? ?????&lt;/a&gt;.',
+ 'signs_check_1' =&gt; '?? ?????????? ???????? ?????????? ????????? ? ?????????? ??????????? ????:',
+ 'signs_check_2' =&gt; '???? ??????????? ????? ?? ????????? ?? ??????????? ?????. ????????? ??? ???, ? ?????????? ??????? ??? ?????.',
+ 'dl_mirror_loc' =&gt; '??? &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; ??????? ???????? ???????????? ? %s (%s).',
+ 'dl_alt_mirrors' =&gt; '???? ??? ??? ?? ???????, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;??????????? ?????? ????????? ??????&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; '??? ?? ?? ???? ????????',
+ 'give_feedback' =&gt; '?? ????? ???? ????? ??????? ? ???????????? ? Mageia 1, ??? ?? ?? ?? ????:
+ ?? &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;????? ???????&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;????? ?????&lt;/a&gt;, ?? &lt;em&gt;?????&lt;/em&gt; ?????,
+ ? Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ ? ????? ??????, ?????????? ?????????? ?????? ?? &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; '???? ?? ????? ??????, ?????????? &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;??????????, ??? ???????? ? ???&lt;/a&gt;
+ ? ???? ???? ??????, ????? ?? ????? ?????? ?? ?????????.',
+ 'notify_web' =&gt; '???? ? ??? ???? ???????? ? ?????????/?????????? ????????, ??????????, ???????? ?? ???? Web ??????? ? ??????
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; ?? Freenode IRC, ????? ?? ????? ?????? ??? ???????? ??? ????? ??????.
+???????, ??? ???????? ??? ? ????????.',
+ 'wanttohelp?' =&gt; '?????? ??????? %s???????????????!%s',
+ 'ucanhelp' =&gt; '??, ?? ??????! Mageia ??? ????????? ???? ? ?????????????? ????????? ??????? ??????????? ?????????? ?? ???? ??????? ????.',
+ 'wherehelp' =&gt; '???? ????????? ???????? ? ??????? ?? ?????? ?????? ???? ????? ? ??????.
+ ???? ?? ??????????, ?????????????,
+ %s?????%s, %s??? ?????? ? ??????????%s,
+ ?????? ???????????? ???????????, ????????????????,
+ %s???????????%s, %s?????? ???????%s, %s???????? ???????? ? ????????????%s,
+ ??????????????: ????????? ??????????,
+ %s???????? ???????%s,
+ ????????????, ????????, ???????, ?????????? ?????? ????????????.',
+ 'all_languages' =&gt; 'Up to 167 locales are supported: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk and so much more!
+ See the &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;comprehensive list&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Europa set of languages is: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, polski, portugu&#234;s, ???????.
+ More languages will be made available for the stable release.',
+ 'All supported' =&gt; 'All supported',
+ 'limited_languages' =&gt; 'Limited: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
+ 'English' =&gt; 'English',
+ 'Limited' =&gt; 'Limited',
+ 'European set' =&gt; 'European set'
+
+ ),
+ 'tr' =&gt; array(
+ 'download' =&gt; 'indir',
+ 'page_title' =&gt; '%s indirin',
+ 'page_desc' =&gt; 'Mageia\' n?n kurulabilir ve &#231;al??an ISO kal?plar?n? indirebilece?iniz yerler.',
+ 'page_kw' =&gt; 'mageia, yaz?l?m, indir, i?letim sistemi, ISO, bilgisayar, torrent, ftp',
+ 'page_h1' =&gt; '%s s&#252;r&#252;m&#252;n&#252; indirin',
+ 'warn_1' =&gt; 'Uyar?!
+ Bu s&#252;r&#252;m ?unlar i&#231;in UYGUN DE??LD?R: genel kullan?m, inceleme, ki?isel veya &#252;retime y&#246;nelik y&#252;kseltme.
+ Bu s&#252;r&#252;m ?unlar i&#231;in UYGUNDUR: SADECE geli?tiriciler, paketleyiciler, deneme kullan?c?lar?.',
+ 'warn_2' =&gt; 'Sunulan ISO disk kal?b? ile ne yaparsan?z sadece
+ kendiniz sorumlu olur ve risk alm?? olursunuz.',
+ 'title_ok' =&gt; 'Yine de Mageia 1 s&#252;r&#252;m&#252;n&#252; indirmek ve denemek istiyor musunuz?',
+ 'dl_help' =&gt; 'Size uygun olan ISO kal?b?n? se&#231;in; emin de?ilseniz ilk ikisinden se&#231;ebelirisiniz.',
+ 'changes_since_a2' =&gt; 'Alfa 2\' den beri yap?lan de?i?iklikler',
+ 'release_docs' =&gt; 'Yay?m belgeleri',
+ 'whatismageia' =&gt; 'Mageia nedir?',
+ 'size' =&gt; 'Boyut',
+ 'flavour' =&gt; 'T&#252;r',
+ 'language' =&gt; 'Dil',
+ 'link' =&gt; 'Do?rudan ba?lant?',
+ 'dl_shld_start' =&gt; '%s indirmeniz bir ka&#231; saniye i&#231;inde ba?layacakt?r',
+ 'dl_size' =&gt; '(indirme boyutu yakla??k olarak %s).',
+ 'alt_download' =&gt; '?ndirme i?lemi ba?lamad?ysa, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;buraya t?klay?n&lt;/a&gt;.',
+ 'signs_check_1' =&gt; '?ndirme i?leminiz tamamlan?r tamamlanmaz imazalar?n e?le?ip e?le?medi?ini denetleyin:',
+ 'signs_check_2' =&gt; '?mzalar e?le?miyorsa bu ISO kal?b?n? kullanmay?n. Bir kez daha denetleyin ve yeniden indirin.',
+ 'dl_mirror_loc' =&gt; 'Bu &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; indirme yans?s? %s (%s) &#252;zerinde yer almaktad?r.',
+ 'dl_alt_mirrors' =&gt; 'Bu yans? size hizmet veremiyorsa, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;di?er yans?lar? kullan?n&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'Hakk?nda ne d&#252;?&#252;n&#252;yorsunuz?',
+ 'give_feedback' =&gt; 'Mageia 1 hakk?ndaki izlenimlerinizi bizimle payla??n::
+ &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;forumlar?m?zda&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;web g&#252;nl&#252;m&#252;zde&lt;/a&gt;, &lt;em&gt;kendi&lt;/em&gt; web g&#252;nl&#252;?&#252;n&#252;zde,
+ Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ Her durumda, l&#252;tfen &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt; adresimize ba?lant? verin.',
+ 'report_bug' =&gt; 'Bir hata ile kar??la??rsan?z, l&#252;tfen hata veritaban?m?zda
+ &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;nas?l raporlayaca??n?za bak?n&lt;/a&gt; b&#246;ylece biz de en uygun &#231;&#246;z&#252;m&#252; sunabilelim.',
+ 'notify_web' =&gt; '?ndirme veya i?lem sayfalar?nda bir sorunla kar??la??rsan?z, l&#252;tfen
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC kanal?nda bildirin.
+&#199;evirilerin yap?lmakta oldu?unu unutmay?n.',
+ 'wanttohelp?' =&gt; 'Yard?mc? olmak istiyor musunuz? %sBize kat?l?n!%s',
+ 'ucanhelp' =&gt; 'Evet, yapabilirsiniz! Mageia, d&#252;nya &#231;ap?nda bir &#231;ok mutlu g&#246;n&#252;ll&#252;n&#252;n i?birli?i ve ortak arzusunun neticesidir.',
+ 'wherehelp' =&gt; 'Projemize katk?da bulunabilece?iniz bir &#231;ok alan var:
+ Projeyi tan?tmak, &#246;n geli?tirmeleri yapmak,
+ %sileti?im sa?lamak%s, %sWeb tasar?m?n? yapmak &amp;amp; geli?tirmek%s,
+ yaz?l?m tasar?m? ve geli?tirmesi i&#231;in,
+ %syerelle?tirme%s, %spaketleme%s, %skalite denetimi &amp;amp; denemek%s,
+ yayg?nla?t?rmak, topluluk deste?i sa?lamak i&#231;in &amp;amp; canland?rma yapmak,
+ donan?m, sunucu hizmetleri, zaman harcama giderlerini kar??lamak i&#231;in
+ %spara ba???lamak%s, e?lenceyi payla?mak.',
+ 'all_languages' =&gt; 'T&#252;m&#252; desteklenmektedir: 167 kadar dil desteklenmektedir: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk and so much more!
+ Kar??la?t?rmal? bir liste i&#231;in &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;wiki sayfam?z? ziyaret edin&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Avrup dilleri: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s.
+ Kararl? s&#252;r&#252;mde daha &#231;ok dil desteklenecektir.',
+ 'limited_languages' =&gt; 'S?n?rl?: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
+ 'All supported' =&gt; 'T&#252;m&#252; desteklenmektedir',
+ 'English' =&gt; 'English',
+ 'Limited' =&gt; 'S?n?rl?',
+ 'European set' =&gt; 'Europa set'
+ ),
+ 'zh-tw' =&gt; array(
+ 'download' =&gt; '??',
+ 'page_title' =&gt; '?? %s',
+ 'page_desc' =&gt; '???????? Mageia ????? Live ???????',
+ 'page_kw' =&gt; 'mageia, software, download, operating system, ISO, computer, torrent, ftp',
+ 'page_h1' =&gt; '?? %s',
+ 'warn_1' =&gt; '????
+ ????????????????????????????
+ ???????????????????????',
+ 'warn_2' =&gt; '????????????????????????????',
+ 'title_ok' =&gt; '????????? Mageia 1 ??',
+ 'dl_help' =&gt; '???????? ISO ??????????????????????????',
+ 'changes_since_a2' =&gt; 'Beta 2 ?????',
+ 'release_docs' =&gt; '????',
+ 'whatismageia' =&gt; '??? Mageia?',
+ 'size' =&gt; '??',
+ 'flavour' =&gt; '????',
+ 'language' =&gt; '??',
+ 'link' =&gt; '????',
+ 'dl_shld_start' =&gt; '????? %s ??????????',
+ 'dl_size' =&gt; '(????????? %s).',
+ 'alt_download' =&gt; '?????????&lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;????&lt;/a&gt;?',
+ 'signs_check_1' =&gt; '?????????????? md5 ? sha1 ????? ISO ???????',
+ 'signs_check_2' =&gt; '?? md5 ? sha1 ?????????????? ISO? ?????????????',
+ 'dl_mirror_loc' =&gt; '?? &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; ???????? %s (%s)?',
+ 'dl_alt_mirrors' =&gt; '???????? &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;??????????&lt;/a&gt;?',
+ 'whatdouthink?' =&gt; '????????',
+ 'give_feedback' =&gt; '???????? Mageia 1 ?????????????
+ &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;??????&lt;/a&gt;?
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;?????&lt;/a&gt;??&lt;em&gt;??&lt;/em&gt;???
+ ?? Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;)?
+ ?????????&lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;?',
+ 'report_bug' =&gt; '????????????&lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;???????&lt;/a&gt;
+ ???????????????????????',
+ 'notify_web' =&gt; '?????????/????????
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC ??????????????????????????????????????????',
+ 'wanttohelp?' =&gt; '?????%s?????%s',
+ 'ucanhelp' =&gt; '????????Mageia ??????????????????????',
+ 'wherehelp' =&gt; '???????????????
+ ???????????
+ %s??%s?%s???????%s?
+ ??????????
+ %s???%s?%s??%s?%s?????%s?
+ ?????????????
+ ??%s????%s?
+ ??????????????????????',
+ 'all_languages' =&gt; 'All supported: ???? 167 ???????????????????????????????????????????????
+ ??&lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;?????&lt;/a&gt;?',
+ 'euro_languages' =&gt; '????????????????????????????????
+ ?????????????',
+ 'limited_languages' =&gt; '????????????????????????????????????????????????????',
+ 'All supported' =&gt; '????',
+ 'English' =&gt; '??',
+ 'Limited' =&gt; '???',
+ 'European set' =&gt; '????'
+ ),
+ 'it' =&gt; array(
+ 'download' =&gt; 'scarica',
+ 'page_title' =&gt; 'Scarica %s',
+ 'page_desc' =&gt; 'Dove puoi scaricare le immagini ISO live e installabili di Mageia.',
+ 'page_kw' =&gt; 'mageia, software, download, sistema operativo, ISO, computer, torrent, ftp',
+ 'page_h1' =&gt; 'Scarica %s',
+ 'warn_1' =&gt; 'Attenzione!
+ NON &#200; PER: uso, recensioni pubbliche, valutazioni personali o di produzione.
+ &#200; PER: sviluppatori, packager, SOLO per utenti che vogliono fare del test.',
+ 'warn_2' =&gt; 'Quasiasi cosa tu faccia con queste immagini ISO che forniamo,
+ sar&#224; fatta a tuo rischio e pericolo e ti assumerai la piena responsabilit&#224;.',
+ 'title_ok' =&gt; 'Vuoi ancora scaricare e testare Mageia 1?',
+ 'dl_help' =&gt; 'Prendi semplicemente l immagine ISO pi&#249; adatta alle tue necessit&#224;; se non sei sicuro, dovresti scegliere tra le prime due.',
+ 'changes_since_a2' =&gt; 'Modifiche dalla Beta 2',
+ 'release_docs' =&gt; 'Documenti della Release',
+ 'whatismageia' =&gt; 'Cosa &#232; Mageia?',
+ 'size' =&gt; 'Dimensioni',
+ 'flavour' =&gt; 'Supporto',
+ 'language' =&gt; 'Lingua',
+ 'link' =&gt; 'Link diretto',
+ 'dl_shld_start' =&gt; 'Il tuo download di %s inizier&#224; fra pochi secondi',
+ 'dl_size' =&gt; '(la dimensione di download &#232; di circa %s).',
+ 'alt_download' =&gt; 'Se il download non inizia, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;fai clic qua&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Appena il download &#232; completo, dovresti controllare che le firme siano uguali:',
+ 'signs_check_2' =&gt; 'Se le firme non sono uguali, non usare questa ISO. Controlla nuovamente e prova il download nuovamente.',
+ 'dl_mirror_loc' =&gt; 'Questo &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; mirror per il download si trova in %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Se non funziona bene, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;prova questi altri mirror&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'Che cosa ne pensi?',
+ 'give_feedback' =&gt; 'Sei il benvenuto per darci le tue impressioni su Mageia 1, in qualsiasi parte:
+ nei &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;nostri forum&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;nel nostro blog&lt;/a&gt;, nel &lt;em&gt;tuo&lt;/em&gt; blog,
+ su Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ In qualsiasi caso, fai riferimento a &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Se ti imbatti in un bug, scopri &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;come segnalarlo&lt;/a&gt;
+ nel nostro database dei bug in modo da risolverlo il prima possibile.',
+ 'notify_web' =&gt; 'Se noti un problema con le pagine/processo di download, segnalalo alla squadra Web sul canale Freenode IRC
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; in modo da risolverlo il prima possibile.
+Ricorda che le traduzioni sono in corso.',
+ 'wanttohelp?' =&gt; 'Vuoi aiutare? %sUnisciti a Noi!%s',
+ 'ucanhelp' =&gt; 'Certo che puoi! Mageia &#232; il risultato della volont&#224; e della collaborazione di molte persone volontarie sparsi nel mondo.',
+ 'wherehelp' =&gt; 'Ci sono molte aree nelle quali si pu&#242; contribuire al progetto.
+ Ad esempio avvocatura,
+ %scomunicazione%s, %sWeb design &amp;amp; sviluppo%s,
+ per design del software, sviluppo,
+ %slocalization%s, %spackaging%s, %sQA &amp;amp; testing%s,
+ delivery, per il supporto alla comunit&#224; &amp;amp; animazione,
+ per %sdonare soldi%s,
+ hardware, hosting, tempo, per condividere il divertimento.',
+ 'all_languages' =&gt; 'Tutte supportate: sono supportate fino a 167 localizzazioni: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk e molte altre!
+ Vedi la &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;lista completa&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Set di lingue europee: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s.
+ Per la release finale saranno disponibili pi&#249; lingue.',
+ 'limited_languages' =&gt; 'Limitate: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italiano, Polish, Portuguese, Ukrainian',
+ 'All supported' =&gt; 'Tutte supportate',
+ 'English' =&gt; 'Inglese',
+ 'Limited' =&gt; 'Limitate',
+ 'European set' =&gt; 'Set europeo'
+ ),
+ 'cs' =&gt; array(
+ 'download' =&gt; 'stahov&#225;n&#237;',
+ 'page_title' =&gt; 'St&#225;hnout %s',
+ 'page_desc' =&gt; 'Kde se daj&#237; st&#225;hnout instalovateln&#233; a ?iv&#233; ISO obrazy distribuce Mageia.',
+ 'page_kw' =&gt; 'mageia, software, stahov&#225;n&#237;, opera?n&#237; syst&#233;m, ISO, po?&#237;ta?, torrent, ftp',
+ 'page_h1' =&gt; 'St&#225;hnout %s',
+ 'warn_1' =&gt; 'Bu?te opatrn&#237;!
+ Tato verze NEN&#205; ZAM&#221;?LENA PRO: denn&#237; pou?&#237;v&#225;n&#237;, recenzov&#225;n&#237;, osobn&#237; nebo produk?n&#237; nasazen&#237;.
+ Tato verze JE ZAM&#221;?LENA PRO: v&#253;voj&#225;?e, tv?rce bal&#237;?k?, POUZE pro u?ivatele, kte?&#237; ji cht?j&#237; vyzkou?et.',
+ 'warn_2' =&gt; 'Cokoli hodl&#225;te ud?lat s poskytnut&#253;m ISO obrazem disku,
+ ud?l&#225;te na sv&#233; vlastn&#237; riziko, na svou vlastn&#237; zodpov?dnost.',
+ 'title_ok' =&gt; 'Po?&#225;d je?t? chcete st&#225;hnout a vyzkou?et Mageia 1?',
+ 'dl_help' =&gt; 'Vyberte si vhodn&#253; ISO obraz. Pokud si n&#225;hodou nejste jisti, m?li byste si vybrat z prvn&#237;ch dvou.',
+ 'changes_since_a2' =&gt; 'Zm?ny od Beta 2',
+ 'release_docs' =&gt; 'Dokumenty k vyd&#225;n&#237;',
+ 'whatismageia' =&gt; 'Co je Mageia?',
+ 'size' =&gt; 'Velikost',
+ 'flavour' =&gt; 'Varianta',
+ 'language' =&gt; 'Jazyk',
+ 'link' =&gt; 'P?&#237;m&#253; odkaz',
+ 'dl_shld_start' =&gt; 'Stahov&#225;n&#237; %s by m?lo za?&#237;t b?hem n?kolika sekund',
+ 'dl_size' =&gt; '(velikost stahov&#225;n&#237; je %s).',
+ 'alt_download' =&gt; 'Pokud stahov&#225;n&#237; neza?alo, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;klepn?te zde&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Jakmile stahov&#225;n&#237; skon?&#237;, m?l byste porovnat podpisy:',
+ 'signs_check_2' =&gt; 'Pokud se podpisy neshoduj&#237;, tento ISO obraz nepou?&#237;vejte. Znovu je porovnejte, p?&#237;padn? jej zkuste st&#225;hnout znovu.',
+ 'dl_mirror_loc' =&gt; 'Tento &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; stahovac&#237; server je um&#237;st?n na %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Pokud tento ve va?em p?&#237;pad? nepracuje uspokojiv?, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;m??ete pou?&#237;t jin&#253; server&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'Co si o tom mysl&#237;te?',
+ 'give_feedback' =&gt; 'Pod?lte se s n&#225;mi o sv&#233; dojmy z Mageia 1 kdekoli budete cht&#237;t:
+ na &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;na?ich f&#243;rech&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;na?em blogu&lt;/a&gt;, na &lt;em&gt;sv&#233;m&lt;/em&gt; blogu,
+ na Twitteru (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ V ka?d&#233;m p?&#237;pad? uve?te odkaz na &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Pokud objev&#237;te n?jakou chybu, pod&#237;vejte se, pros&#237;m, &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;jak ji nahl&#225;sit&lt;/a&gt;
+ do na?&#237; datab&#225;ze chyb, abychom ji mohli opravit t&#237;m nejlep?&#237;m mo?n&#253;m zp?sobem.',
+ 'notify_web' =&gt; 'Pokud si pov?imnete n?jak&#253;ch pot&#237;?&#237; se stahov&#225;n&#237;m nebo se str&#225;nkami pro stahov&#225;n&#237;, uv?domte o tom, pros&#237;m, internetov&#253; t&#253;m na
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; kan&#225;lu Freenode IRC, abychom ji mohli opravit tak rychle, jak jen to je mo?n&#233;.
+M?jte na pam?ti, ?e na p?ekladech se je?t? pracuje.',
+ 'wanttohelp?' =&gt; 'Chcete pomoci? %sP?idejte se k n&#225;m!%s',
+ 'ucanhelp' =&gt; 'Ano, m??ete! Mageia je v&#253;sledkem p?esv?d?en&#237; a spolupr&#225;ce mnoha dobrovoln&#237;k? z cel&#233;ho sv?ta.',
+ 'wherehelp' =&gt; 'Je zde mnoho oblast&#237;, ve kter&#253;ch se d&#225; projektu p?isp?t.
+ Od p?edstavov&#225;n&#237; projektu ve?ejnosti, v&#253;voje produktu,
+ %skomunikace%s, %sn&#225;vrhu internetov&#253;ch str&#225;nek &amp;amp; v&#253;voje%s,
+ v oblasti n&#225;vrhu software, v&#253;voje,
+ %slokalizace%s, %stvorby bal&#237;?k?%s, %sQA &amp;amp; testov&#225;n&#237;%s,
+ podpory spole?enstv&#237; &amp;amp; baven&#237; se,
+ po %sdarov&#225;n&#237; pen?z%s,
+ za?&#237;zen&#237;, hostov&#225;n&#237;, ?as, a pod&#237;l na cel&#233; t&#233; z&#225;bav?.',
+ 'all_languages' =&gt; 'V?echny podporovan&#233;: je podporov&#225;no a? 167: ?e?tina, n?m?ina, angli?tina, ?pan?l?tina, francouz?tina, ital?tina, portugal?tina, ?v&#233;d?tina, nizozem?tina, pol?tina, d&#225;n?tina a mnoho dal?&#237;ch!
+ Na jejich seznam se m??ete pod&#237;vat&lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;zde&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Seznam evropsk&#253;ch jazyk?: ?e?tina, n?m?ina, angli?tina, ?pan?l?tina, francouz?tina, ital?tina, portugal?tina, ?v&#233;d?tina, nizozem?tina, pol?tina, ru?tina.
+ Dal?&#237; jazyky budou ve stabiln&#237;m vyd&#225;n&#237;.',
+ 'limited_languages' =&gt; 'Omezen&#233;: b?loru?tina, katal&#225;n?tina, n?m?ina, angli?tina, ?pan?l?tina, francouz?tina, ma?ar?tina, ital?tina, portugal?tina, ukrajin?tina',
+ 'All supported' =&gt; 'V?echny podporovan&#233;',
+ 'English' =&gt; 'Angli?tina',
+ 'Limited' =&gt; 'Omezen&#233;',
+ 'European set' =&gt; 'Seznam evropsk&#253;ch jazyk?'
+ ),
+ 'pt' =&gt; array(
+ 'download' =&gt; 'download',
+ 'page_title' =&gt; 'Download %s',
+ 'page_desc' =&gt; 'Onde voc&#234; pode fazer download da imagens ISO da Mageia instal&#225;vel e liveCDs.',
+ 'page_kw' =&gt; 'mageia, software, download, sistema operacional, ISO, computador, torrent, ftp',
+ 'page_h1' =&gt; 'Download %s',
+ 'warn_1' =&gt; 'Tenha cuidado!
+ Isto N&#195;O &#201; PARA: uso, utiliza&#231;&#227;o publica, pessoal ou avalia&#231;&#227;o de produ&#231;&#227;o.
+ Isto &#233; PARA: somente desenvolvedores, empacotadores e usu&#225;rios testadores.',
+ 'warn_2' =&gt; 'Basta escolher a imagem ISO que for melhor para voc&#234;. Se voc&#234; n&#227;o tiver certeza de qual &#233; a melhor para voc&#234;, voc&#234; deve escolher entre as duas primeiras.',
+ 'title_ok' =&gt; 'Voc&#234; ainda deseja fazer o download e teste com o Mageia 1?',
+ 'dl_help' =&gt; 'Basta escolher a imagem ISO que for melhor para voc&#234;. Se voc&#234; n&#227;o tiver certeza, voc&#234; deve escolher entre as duas primeiras.',
+ 'changes_since_a2' =&gt; 'Altera&#231;&#245;es desde o Beta 2',
+ 'release_docs' =&gt; 'Documentos de Lan&#231;amento',
+ 'whatismageia' =&gt; 'O que &#233; Mageia?',
+ 'size' =&gt; 'Tamanho',
+ 'flavour' =&gt; 'Op&#231;&#227;o',
+ 'popularity' =&gt; 'Popularidade',
+ 'language' =&gt; 'Idiomas',
+ 'link' =&gt; 'Link Direto',
+ 'dl_shld_start' =&gt; 'Seu download de %s deve iniciar dentro de alguns segundos',
+ 'dl_size' =&gt; '(o tamanho do download &#233; de aproximadamente %s).',
+ 'alt_download' =&gt; 'Se o download n&#227;o iniciar, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;clique aqui&lt;/a&gt;.',
+ 'signs_check_1' =&gt; 'Assim que o download estiver completo, voc&#234; deve verificar a assinatura correspondente:',
+ 'signs_check_2' =&gt; 'Se as assinaturas n&#227;o correponderem, n&#227;o use esta imagem ISO. Fa&#231;a dupla checagem e tente o download novamente.',
+ 'dl_mirror_loc' =&gt; 'Este &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; espelho de download est&#225; localizado em %s (%s).',
+ 'dl_alt_mirrors' =&gt; 'Se este n&#227;o funcionou bem para voc&#234;, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;verifique outro desses espelhos&lt;/a&gt;.',
+ 'whatdouthink?' =&gt; 'O que voc&#234; acha deste?',
+ 'give_feedback' =&gt; 'Voc&#234; &#233; muito bem-vindo para dar sua opini&#227;o sobre o Mageia 1, onde voc&#234; quiser:
+ nos &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;our foruns&lt;/a&gt;,
+ &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;our blog&lt;/a&gt;, em &lt;em&gt;seu&lt;/em&gt; blog,
+ ou Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
+ Em qualquer caso, por favor, link para &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
+ 'report_bug' =&gt; 'Se voc&#234; encontrar um bug, por favor &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;veja como comunic&#225;-lo&lt;/a&gt;
+ em nosso banco de dados de bugs, para que n&#243;s possamos reoslv&#234;-lo da melhor maneira poss&#237;vel.',
+ 'notify_web' =&gt; 'Se voc&#234; observer um proplema com o processo/p&#225;gina de download, por favor, comunique a Equipe Web no
+&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; canal Freenode IRC, para que possamos resolver isso o mais r&#225;pido poss&#237;vel.
+Note que as tradu&#231;&#245;es est&#227;o no seu caminho',
+ 'wanttohelp?' =&gt; 'Precisa de ajuda? %sJunte-se a n&#243;s!%s',
+ 'ucanhelp' =&gt; 'Sim voc&#234; pode! Mageia &#233; o resultado da vontade e da colabora&#231;&#227;o de muitos volunt&#225;rios companheiros felizes em todo o mundo.',
+ 'wherehelp' =&gt; 'Existe uma s&#233;rie de &#225;reas onde se pode contribuir para o projeto.
+ Seja na defesa, cria&#231;&#227;o,
+ %scomunica&#231;&#227;o%s, %sWeb design &amp;amp; desenvolvimento%s,
+ para design de software, desenvolvimento,
+ %stradu&#231;&#227;o%s, %sempacotamento%s, %sQA &amp;amp; testando%s,
+ fornecimento, para suporte comunit&#225;rio &amp;amp; anima&#231;&#227;o,
+ for %sdonating money%s,
+ hardware, hospedagem, tempo, para compartilhar divertimento.',
+ 'all_languages' =&gt; 'Todos os suportados&amp;nbsp;: at&#233; 167 idiomas s&#227;o suportados:
+ alem&#227;o, ingl&#234;s, espanhol, franc&#234;s, italiano, portugu&#234;s, sueco,
+ holand&#234;s, polon&#234;s, dinamarqu&#234;s e muito mais! Veja &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;a lista completa&lt;/a&gt;.',
+ 'euro_languages' =&gt; 'Conjunto de idiomas europeu:
+ alem&#227;o, espanhol (diversas variantes), espanhol, franc&#234;s, italiano,
+ polon&#234;s, russo, portugu&#234;s do Brasil. Mais idiomas ser&#227;o
+ disponibilizados para a vers&#227;o est&#225;vel.',
+ 'limited_languages' =&gt; 'Limitado: bielorrusso, catal&#227;o, alem&#227;o, ingl&#234;s, espanhol, franc&#234;s, h&#250;ngaro, polon&#234;s, italiano, portugu&#234;s, ucraniano',
+ 'All supported' =&gt; 'Todos suportados',
+ 'English' =&gt; 'Ingl&#234;s',
+ 'Limited' =&gt; 'Limitado',
+ 'European set' =&gt; 'Idiomas Europeus'
+ ),
+);
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A></li>
+ <LI>Next message: <A HREF="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1089">[ date ]</a>
+ <a href="thread.html#1089">[ thread ]</a>
+ <a href="subject.html#1089">[ subject ]</a>
+ <a href="author.html#1089">[ 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-June/001090.html b/zarb-ml/mageia-webteam/2011-June/001090.html
new file mode 100644
index 000000000..6e1fcab1a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001090.html
@@ -0,0 +1,60 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Error 403
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Error%20403&In-Reply-To=%3C318f.4de7f0f9%40mageia.linuxtech.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001059.html">
+ <LINK REL="Next" HREF="001061.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Error 403</H1>
+ <B>isadora</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Error%20403&In-Reply-To=%3C318f.4de7f0f9%40mageia.linuxtech.net%3E"
+ TITLE="[Mageia-webteam] Error 403">isis2000 at gmail.com
+ </A><BR>
+ <I>Thu Jun 2 22:22:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001059.html">[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua
+</A></li>
+ <LI>Next message: <A HREF="001061.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1090">[ date ]</a>
+ <a href="thread.html#1090">[ thread ]</a>
+ <a href="subject.html#1090">[ subject ]</a>
+ <a href="author.html#1090">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+
+Visiting <A HREF="http://mageia.org/en/about/policies/">http://mageia.org/en/about/policies/</A>
+brings up an Error 403, Access forbidden!
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001059.html">[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua
+</A></li>
+ <LI>Next message: <A HREF="001061.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1090">[ date ]</a>
+ <a href="thread.html#1090">[ thread ]</a>
+ <a href="subject.html#1090">[ subject ]</a>
+ <a href="author.html#1090">[ 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-June/001091.html b/zarb-ml/mageia-webteam/2011-June/001091.html
new file mode 100644
index 000000000..ae74f0c04
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001091.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, June, week 23 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%2C%20June%2C%20week%2023%20meeting&In-Reply-To=%3CBANLkTimGwDZugz1mS80CPpTKTbT0eXnSLA%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="001082.html">
+ <LINK REL="Next" HREF="001104.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, June, week 23 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20June%2C%20week%2023%20meeting&In-Reply-To=%3CBANLkTimGwDZugz1mS80CPpTKTbT0eXnSLA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, June, week 23 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Jun 6 22:46:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001082.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001104.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1091">[ date ]</a>
+ <a href="thread.html#1091">[ thread ]</a>
+ <a href="subject.html#1091">[ subject ]</a>
+ <a href="author.html#1091">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+it's been silent around here for some time - let's get back to our
+good habit, for a meeting on this coming Wednesday, 13:00 UTC (15:00
+Paris time).
+
+Wait. First. I'd like to thank all of you who participated, in big or
+small part, to this team and to the project so far; finally, we did
+release our own platform, within expected borders, and that's a great
+beginning.
+
+For this meeting, 2 things I need from all of you to prepare (and
+preferably to list in this thread and we will discuss things after on
+IRC):
+ 1. postmortem of the past 9 months and of this Mageia 1 release: what
+went well, what went wrong, what didn't went at all, why*5, is it
+important and if so, how can you/we fix that;
+ 2. coming priorities/tasks for the Summer (general or particular
+thing, web app, style, other) that you can help with.
+
+Please please take the time to reply here in this thread and the list
+of things growing, I will make a summary page on the wiki to prepare
+the meeting (by the way, having a new Wiki is one priority for the
+coming weeks, again! :-) )
+
+Cheers!
+
+Romain
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001082.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001104.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1091">[ date ]</a>
+ <a href="thread.html#1091">[ thread ]</a>
+ <a href="subject.html#1091">[ subject ]</a>
+ <a href="author.html#1091">[ 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-June/001092.html b/zarb-ml/mageia-webteam/2011-June/001092.html
new file mode 100644
index 000000000..5b147c988
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001092.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting this week, Thursday
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20this%20week%2C%20Thursday&In-Reply-To=%3C20110606232830.550733b1%40andromeda.localdomain%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001117.html">
+ <LINK REL="Next" HREF="001093.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting this week, Thursday</H1>
+ <B>Patricia Fraser</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20this%20week%2C%20Thursday&In-Reply-To=%3C20110606232830.550733b1%40andromeda.localdomain%3E"
+ TITLE="[Mageia-webteam] Meeting this week, Thursday">trish at thefrasers.org
+ </A><BR>
+ <I>Mon Jun 6 23:28:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001117.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI>Next message: <A HREF="001093.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1092">[ date ]</a>
+ <a href="thread.html#1092">[ thread ]</a>
+ <a href="subject.html#1092">[ subject ]</a>
+ <a href="author.html#1092">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi all,
+
+It's time to start having marcomm meetings again (at #mageia-marcomm
+on Freenode, in case you're not sure), now that Mageia 1 is out -
+I'm going to suggest 18:30 UTC on Thursday; if that time's bad for
+anyone, speak up!
+
+People from Artwork and Web-Team, please do join in if you can; if
+the proposed time doesn't suit, please let us know what would.
+
+For this meeting we need to do some catching up and some planning, so
+here are the topics:
+
+#1 - recap what we did/didn't achieve in the 9 months to release;
+what went well and what didn't;
+ - some of the Vision/Mission remains to be done; now that
+ we've got a better feel for our community, maybe we can
+ look at these things again;
+ - things like Colour Palette, style, visual branding remain
+ to be done - we need input and teamwork with Artwork and
+ Web Team for those.
+#2 - do some good brainstorming on what we need to do now, and start
+laying down some plans.
+
+Please start by putting some responses in to this thread on the
+marcomm list, so we can bring lots of topics to the IRC meeting. Once
+we've got something like a to-do list, we can put it up on the wiki
+and get cracking.
+
+See you there!
+
+--
+Trish Fraser, JD9R RQ2D
+52.4161N,16.9303E
+ma jun 6 23:19:05 CEST 2011
+GNU/Linux 1997-2010 #283226 counter.li.org
+andromeda up 5 hour(s), 15 min.
+kernel 2.6.38.7-desktop-1.mga
+--
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: signature.asc
+Type: application/pgp-signature
+Size: 490 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110606/aacae32f/attachment.asc&gt;
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001117.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI>Next message: <A HREF="001093.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1092">[ date ]</a>
+ <a href="thread.html#1092">[ thread ]</a>
+ <a href="subject.html#1092">[ subject ]</a>
+ <a href="author.html#1092">[ 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-June/001093.html b/zarb-ml/mageia-webteam/2011-June/001093.html
new file mode 100644
index 000000000..a18c39e39
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001093.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=%3C20110606220002.6C24842FD2%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="001092.html">
+ <LINK REL="Next" HREF="001094.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=%3C20110606220002.6C24842FD2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001092.html">[Mageia-webteam] Meeting this week, Thursday
+</A></li>
+ <LI>Next message: <A HREF="001094.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1093">[ date ]</a>
+ <a href="thread.html#1093">[ thread ]</a>
+ <a href="subject.html#1093">[ subject ]</a>
+ <a href="author.html#1093">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001092.html">[Mageia-webteam] Meeting this week, Thursday
+</A></li>
+ <LI>Next message: <A HREF="001094.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1093">[ date ]</a>
+ <a href="thread.html#1093">[ thread ]</a>
+ <a href="subject.html#1093">[ subject ]</a>
+ <a href="author.html#1093">[ 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-June/001094.html b/zarb-ml/mageia-webteam/2011-June/001094.html
new file mode 100644
index 000000000..3c60f9f56
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001094.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+ </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%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20110607103734.F221643004%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="001093.html">
+ <LINK REL="Next" HREF="001095.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20110607103734.F221643004%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 12:37:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001093.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001095.html">[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1094">[ date ]</a>
+ <a href="thread.html#1094">[ thread ]</a>
+ <a href="subject.html#1094">[ subject ]</a>
+ <a href="author.html#1094">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1568">https://bugs.mageia.org/show_bug.cgi?id=1568</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="001093.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001095.html">[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1094">[ date ]</a>
+ <a href="thread.html#1094">[ thread ]</a>
+ <a href="subject.html#1094">[ subject ]</a>
+ <a href="author.html#1094">[ 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-June/001095.html b/zarb-ml/mageia-webteam/2011-June/001095.html
new file mode 100644
index 000000000..cbb098b26
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001095.html
@@ -0,0 +1,114 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+ </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%201663%5D%20%5BNew%5D%20The%20plugin%20with%20the%20link%20for%0A%20facebook/twiter...%20doesn%27t%20use%20the%20selected%20language%20but%20it%20use%20the%20value%0A%20of%20general.useragent.locale&In-Reply-To=%3Cbug-1663-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="001094.html">
+ <LINK REL="Next" HREF="001098.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201663%5D%20%5BNew%5D%20The%20plugin%20with%20the%20link%20for%0A%20facebook/twiter...%20doesn%27t%20use%20the%20selected%20language%20but%20it%20use%20the%20value%0A%20of%20general.useragent.locale&In-Reply-To=%3Cbug-1663-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 15:04:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001094.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001098.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1095">[ date ]</a>
+ <a href="thread.html#1095">[ thread ]</a>
+ <a href="subject.html#1095">[ subject ]</a>
+ <a href="author.html#1095">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1663">https://bugs.mageia.org/show_bug.cgi?id=1663</A>
+
+ Summary: The plugin with the link for facebook/twiter...
+ doesn't use the selected language but it use the value
+ of general.useragent.locale
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: blog.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">mammig.linux at gmail.com</A>
+
+
+Description of problem:
+
+When you are on a french message of the blog ( for exemple this one :
+<A HREF="http://blog.mageia.org/fr/2011/06/01/notre-bebe-est-ne-mageia-1/">http://blog.mageia.org/fr/2011/06/01/notre-bebe-est-ne-mageia-1/</A> ), after the
+message and before the comments, you have some little pictures for
+facebook/twitter/... when you put your mouse over thoses pictures, you have a
+small message. With some browser ( like firefox or epiphany ) the text is in
+english and for others ( like iceweasel or opera ) is in french.
+We don't see the images with Konqueror.
+
+The browser take the language of a configuration value (
+general.useragent.locale ) instead of the language select in the language menu.
+If you go to a german message, you will keep thoses messages in French ( or
+English )
+
+the version of the web browsers for my test :
+ Iceweasel/3.0.6
+ Opera/9.80 (X11; Linux i686; U; fr) Presto/2.7.62 Version/11.01 - revision
+1190
+ epiphany : Navigateur Web(browser) 2.22.3 - Propuls&#233;(propulsed) par gecko-1.9
+ Konqueror 3.5.9 using KDE 3.5.10
+ Firefox 4.0.1
+
+
+
+How reproducible:
+For each message of the blog.
+
+
+
+Steps to Reproduce:
+go to the blog with different web browser
+
+--
+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="001094.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001098.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1095">[ date ]</a>
+ <a href="thread.html#1095">[ thread ]</a>
+ <a href="subject.html#1095">[ subject ]</a>
+ <a href="author.html#1095">[ 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-June/001096.html b/zarb-ml/mageia-webteam/2011-June/001096.html
new file mode 100644
index 000000000..ed9bfecc3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001096.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see
+ </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%201664%5D%20%5BNew%5D%20the%20html%20tag%20%3Chr%3E%20isn%27t%20well%20see&In-Reply-To=%3Cbug-1664-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="001111.html">
+ <LINK REL="Next" HREF="001099.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201664%5D%20%5BNew%5D%20the%20html%20tag%20%3Chr%3E%20isn%27t%20well%20see&In-Reply-To=%3Cbug-1664-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 15:09:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001111.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI>Next message: <A HREF="001099.html">[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1096">[ date ]</a>
+ <a href="thread.html#1096">[ thread ]</a>
+ <a href="subject.html#1096">[ subject ]</a>
+ <a href="author.html#1096">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1664">https://bugs.mageia.org/show_bug.cgi?id=1664</A>
+
+ Summary: the html tag &lt;hr&gt; isn't well see
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">mammig.linux at gmail.com</A>
+
+
+Description of problem:
+It seems the CSS isn't well interpreted with some browsers.
+For exemple, on this page : <A HREF="http://mageia.org/fr/1/">http://mageia.org/fr/1/</A>
+between &quot;Et nous vous encourageons &#224; participer au projet, sur votre temps
+libre ou &#224; travers votre activit&#233; professionnelle.&quot; and &quot;9 mois apr&#232;s le
+lancement du projet, nous avons atteint :&quot; you should have a &lt;hr&gt; ( a grey line
+).
+this &lt;hr&gt; can be see with Firefox and Opera, but not with Iceweasel / epiphany
+/ Konqueror ( with those browsers i have a white space )
+
+Version-Release number of selected component (if applicable):
+the version of the browsers for my test :
+ Iceweasel/3.0.6
+ Opera/9.80 (X11; Linux i686; U; fr) Presto/2.7.62 Version/11.01 - revision
+1190
+ epiphany : Navigateur Web(browser) 2.22.3 - Propuls&#233;(propulsed) par gecko-1.9
+ Konqueror 3.5.9 using KDE 3.5.10
+ Firefox 4.0.1
+
+How reproducible:
+I see &lt;hr&gt; on two pages :
+<A HREF="http://mageia.org/fr/contribute/">http://mageia.org/fr/contribute/</A>
+<A HREF="http://mageia.org/fr/1/">http://mageia.org/fr/1/</A>
+
+Steps to Reproduce:
+go to those pages with different browser
+
+--
+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="001111.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI>Next message: <A HREF="001099.html">[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1096">[ date ]</a>
+ <a href="thread.html#1096">[ thread ]</a>
+ <a href="subject.html#1096">[ subject ]</a>
+ <a href="author.html#1096">[ 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-June/001097.html b/zarb-ml/mageia-webteam/2011-June/001097.html
new file mode 100644
index 000000000..26b964411
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001097.html
@@ -0,0 +1,111 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list
+ </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%201665%5D%20%5BNew%5D%20with%20some%20browser%20and%20some%0A%20languages%2C%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3Cbug-1665-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="001099.html">
+ <LINK REL="Next" HREF="001100.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201665%5D%20%5BNew%5D%20with%20some%20browser%20and%20some%0A%20languages%2C%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3Cbug-1665-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 15:11:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001099.html">[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see
+</A></li>
+ <LI>Next message: <A HREF="001100.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1097">[ date ]</a>
+ <a href="thread.html#1097">[ thread ]</a>
+ <a href="subject.html#1097">[ subject ]</a>
+ <a href="author.html#1097">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1665">https://bugs.mageia.org/show_bug.cgi?id=1665</A>
+
+ Summary: with some browser and some languages, the end of the
+ top menu is mask with the language selection list
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">mammig.linux at gmail.com</A>
+
+
+Description of problem:
+When you are on the pages of this web site : <A HREF="http://mageia.org/fr/">http://mageia.org/fr/</A>
+you have on the top of the page a menu. With some browser, and with some
+language, you have the last letters of the menu which are mask by the language
+selection menu.
+Their is no masking with Firefox and Konqueror, but their is masking with
+iceweasel / epiphany / opera for those languages : Fran&#231;ais / Deutsch / Eesti
+the &quot;s&quot; of &quot;A propos&quot; in French
+the &quot;r&quot; of &quot;&#220;ber&quot; in German
+the &quot;t&quot; of &quot;About&quot; in Eesti
+
+
+Version-Release number of selected component (if applicable):
+the version of the browsers for my test :
+ Iceweasel/3.0.6
+ Opera/9.80 (X11; Linux i686; U; fr) Presto/2.7.62 Version/11.01 - revision
+1190
+ epiphany : Navigateur Web(browser) 2.22.3 - Propuls&#233;(propulsed) par gecko-1.9
+ Konqueror 3.5.9 using KDE 3.5.10
+ Firefox 4.0.1
+
+How reproducible:
+going to the web site with my browsers
+
+Steps to Reproduce:
+1.
+2.
+3.
+
+--
+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="001099.html">[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see
+</A></li>
+ <LI>Next message: <A HREF="001100.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1097">[ date ]</a>
+ <a href="thread.html#1097">[ thread ]</a>
+ <a href="subject.html#1097">[ subject ]</a>
+ <a href="author.html#1097">[ 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-June/001098.html b/zarb-ml/mageia-webteam/2011-June/001098.html
new file mode 100644
index 000000000..09a0ccb97
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001098.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+ </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%201663%5D%20The%20plugin%20with%20the%20link%20for%0A%20facebook/twiter...%20doesn%27t%20use%20the%20selected%20language%20but%20it%20use%20the%20value%0A%20of%20general.useragent.locale&In-Reply-To=%3C20110607152730.DA53B43038%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="001095.html">
+ <LINK REL="Next" HREF="001111.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201663%5D%20The%20plugin%20with%20the%20link%20for%0A%20facebook/twiter...%20doesn%27t%20use%20the%20selected%20language%20but%20it%20use%20the%20value%0A%20of%20general.useragent.locale&In-Reply-To=%3C20110607152730.DA53B43038%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 17:27:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001095.html">[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI>Next message: <A HREF="001111.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1098">[ date ]</a>
+ <a href="thread.html#1098">[ thread ]</a>
+ <a href="subject.html#1098">[ subject ]</a>
+ <a href="author.html#1098">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1663">https://bugs.mageia.org/show_bug.cgi?id=1663</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-06-07 19:27:31 CEST ---
+There's an easy patch involving adding a language setting to the plugin and
+bypassing the getBrowserLocale() function if this new setting is set.
+
+We could patch on our own, with all the consequences (not necessarily the
+cleanest solution, breaking future updates) but the plugin license does not
+really allows for this (All rights reserved).
+
+So we can only report the problem and hint at a solution to the code owner
+(<A HREF="http://www.shareaholic.com/">http://www.shareaholic.com/</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="001095.html">[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI>Next message: <A HREF="001111.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1098">[ date ]</a>
+ <a href="thread.html#1098">[ thread ]</a>
+ <a href="subject.html#1098">[ subject ]</a>
+ <a href="author.html#1098">[ 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-June/001099.html b/zarb-ml/mageia-webteam/2011-June/001099.html
new file mode 100644
index 000000000..c30926ae9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001099.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see
+ </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%201664%5D%20the%20html%20tag%20%3Chr%3E%20isn%27t%20well%20see&In-Reply-To=%3C20110607153239.9B3B143036%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="001096.html">
+ <LINK REL="Next" HREF="001097.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201664%5D%20the%20html%20tag%20%3Chr%3E%20isn%27t%20well%20see&In-Reply-To=%3C20110607153239.9B3B143036%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 17:32:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001096.html">[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see
+</A></li>
+ <LI>Next message: <A HREF="001097.html">[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1099">[ date ]</a>
+ <a href="thread.html#1099">[ thread ]</a>
+ <a href="subject.html#1099">[ subject ]</a>
+ <a href="author.html#1099">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1664">https://bugs.mageia.org/show_bug.cgi?id=1664</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|NEW |RESOLVED
+ Resolution| |WONTFIX
+ 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-06-07 19:32:39 CEST ---
+Likely because this is used with a CSS property that is not supported by
+Iceweasel 3.0.6/Konqueror:
+
+hr {
+ display: block;
+ width: 40%;
+ margin: 1em auto 3em auto;
+ -webkit-box-shadow: 0 2px 3px #9db1ca;
+ -moz-box-shadow: 0 2px 3px #9db1ca;
+ box-shadow: 0 2px 3px #9db1ca;
+ overflow: hidden;
+ border: 0;
+ border-top: 1px solid #ffffff;
+}
+
+That's really a cosmectic change, though (it doesn't break the understanding
+and readability of the document) so WONTFIX (unless someone suggests a fix not
+altering the rendering in recent 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001096.html">[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see
+</A></li>
+ <LI>Next message: <A HREF="001097.html">[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1099">[ date ]</a>
+ <a href="thread.html#1099">[ thread ]</a>
+ <a href="subject.html#1099">[ subject ]</a>
+ <a href="author.html#1099">[ 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-June/001100.html b/zarb-ml/mageia-webteam/2011-June/001100.html
new file mode 100644
index 000000000..abcaa7ea9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001100.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+ </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%201665%5D%20with%20some%20browser%20and%20some%20languages%2C%0A%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3C20110607153353.B8BE443036%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="001097.html">
+ <LINK REL="Next" HREF="001101.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201665%5D%20with%20some%20browser%20and%20some%20languages%2C%0A%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3C20110607153353.B8BE443036%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 17:33:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001097.html">[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="001101.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1100">[ date ]</a>
+ <a href="thread.html#1100">[ thread ]</a>
+ <a href="subject.html#1100">[ subject ]</a>
+ <a href="author.html#1100">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1665">https://bugs.mageia.org/show_bug.cgi?id=1665</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|NEW |ASSIGNED
+ 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-06-07 19:33:53 CEST ---
+Yep. This will be later resolved with a different top navigation bar.
+
+A temporary fix would be to reduce the number of items in the current nav bar,
+but... get to decide which one should go! :-)
+
+--
+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="001097.html">[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="001101.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1100">[ date ]</a>
+ <a href="thread.html#1100">[ thread ]</a>
+ <a href="subject.html#1100">[ subject ]</a>
+ <a href="author.html#1100">[ 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-June/001101.html b/zarb-ml/mageia-webteam/2011-June/001101.html
new file mode 100644
index 000000000..bf3f635b0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001101.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+ </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%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20110607154005.DA4B54303E%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="001100.html">
+ <LINK REL="Next" HREF="001102.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work</H1>
+ <B>Derek Jennings</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20110607154005.DA4B54303E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 17:40:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001100.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="001102.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1101">[ date ]</a>
+ <a href="thread.html#1101">[ thread ]</a>
+ <a href="subject.html#1101">[ subject ]</a>
+ <a href="author.html#1101">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1568">https://bugs.mageia.org/show_bug.cgi?id=1568</A>
+
+--- Comment #6 from Derek Jennings &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">derekjenn at gmail.com</A>&gt; 2011-06-07 17:40:05 CEST ---
+I notice the instructions on the website have been adjusted. It now lists the
+command to get the media sources as
+&quot;urpmi.addmedia --distrib <A HREF="http://mirrors.mageia.org/api/mageia.1.$ARCH.list">http://mirrors.mageia.org/api/mageia.1.$ARCH.list</A>&quot;
+
+That is not quite correct. It should be
+&quot;urpmi.addmedia --distrib --mirrorlist
+<A HREF="http://mirrors.mageia.org/api/mageia.1.$ARCH.list">http://mirrors.mageia.org/api/mageia.1.$ARCH.list</A>&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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001100.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="001102.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1101">[ date ]</a>
+ <a href="thread.html#1101">[ thread ]</a>
+ <a href="subject.html#1101">[ subject ]</a>
+ <a href="author.html#1101">[ 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-June/001102.html b/zarb-ml/mageia-webteam/2011-June/001102.html
new file mode 100644
index 000000000..8171af6c5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001102.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+ </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%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20110607161143.A873043042%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="001101.html">
+ <LINK REL="Next" HREF="001103.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20110607161143.A873043042%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 7 18:11:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001101.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001103.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1102">[ date ]</a>
+ <a href="thread.html#1102">[ thread ]</a>
+ <a href="subject.html#1102">[ subject ]</a>
+ <a href="author.html#1102">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1568">https://bugs.mageia.org/show_bug.cgi?id=1568</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 #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-07 18:11:43 CEST ---
+(In reply to comment #6)
+&gt;<i> That is not quite correct. It should be
+</I>&gt;<i> &quot;urpmi.addmedia --distrib --mirrorlist
+</I>&gt;<i> <A HREF="http://mirrors.mageia.org/api/mageia.1.$ARCH.list">http://mirrors.mageia.org/api/mageia.1.$ARCH.list</A>&quot;
+</I>
+Ah right, sorry for the typo, fixed; 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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001101.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001103.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1102">[ date ]</a>
+ <a href="thread.html#1102">[ thread ]</a>
+ <a href="subject.html#1102">[ subject ]</a>
+ <a href="author.html#1102">[ 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-June/001103.html b/zarb-ml/mageia-webteam/2011-June/001103.html
new file mode 100644
index 000000000..ff55170f5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001103.html
@@ -0,0 +1,130 @@
+<!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=%3C20110607220002.C88DF4304B%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="001102.html">
+ <LINK REL="Next" HREF="001105.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=%3C20110607220002.C88DF4304B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 8 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001102.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001105.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1103">[ date ]</a>
+ <a href="thread.html#1103">[ thread ]</a>
+ <a href="subject.html#1103">[ subject ]</a>
+ <a href="author.html#1103">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001102.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001105.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1103">[ date ]</a>
+ <a href="thread.html#1103">[ thread ]</a>
+ <a href="subject.html#1103">[ subject ]</a>
+ <a href="author.html#1103">[ 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-June/001104.html b/zarb-ml/mageia-webteam/2011-June/001104.html
new file mode 100644
index 000000000..3455000a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001104.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, June, week 23 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%2C%20June%2C%20week%2023%20meeting&In-Reply-To=%3CBANLkTimWK1%3DMnram0ZKh54%2BYtEvE5akmjg%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="001091.html">
+ <LINK REL="Next" HREF="001117.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, June, week 23 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20June%2C%20week%2023%20meeting&In-Reply-To=%3CBANLkTimWK1%3DMnram0ZKh54%2BYtEvE5akmjg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, June, week 23 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jun 8 19:17:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001091.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI>Next message: <A HREF="001117.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1104">[ date ]</a>
+ <a href="thread.html#1104">[ thread ]</a>
+ <a href="subject.html#1104">[ subject ]</a>
+ <a href="author.html#1104">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, Jun 6, 2011 at 22:46, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> it's been silent around here for some time - let's get back to our
+</I>&gt;<i> good habit, for a meeting on this coming Wednesday, 13:00 UTC (15:00
+</I>&gt;<i> Paris time).
+</I>
+Meeting notes are here:
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-06-08-13.37.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-06-08-13.37.html</A>
+
+For those that couldn't attend, your participation is crucial in this
+team; so if you are still in, please send your points here on the list
+and that so we know who can be counted on for what.
+
+Other than that, and than other points raised during the meeting, this
+team needs people to take apps in charge.
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001091.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI>Next message: <A HREF="001117.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1104">[ date ]</a>
+ <a href="thread.html#1104">[ thread ]</a>
+ <a href="subject.html#1104">[ subject ]</a>
+ <a href="author.html#1104">[ 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-June/001105.html b/zarb-ml/mageia-webteam/2011-June/001105.html
new file mode 100644
index 000000000..00bcf6447
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001105.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=%3C20110608220002.C15454306D%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="001103.html">
+ <LINK REL="Next" HREF="001106.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=%3C20110608220002.C15454306D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 9 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001103.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001106.html">[Mageia-webteam] [Bug 1717] [New] vote for a bug
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1105">[ date ]</a>
+ <a href="thread.html#1105">[ thread ]</a>
+ <a href="subject.html#1105">[ subject ]</a>
+ <a href="author.html#1105">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001103.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001106.html">[Mageia-webteam] [Bug 1717] [New] vote for a bug
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1105">[ date ]</a>
+ <a href="thread.html#1105">[ thread ]</a>
+ <a href="subject.html#1105">[ subject ]</a>
+ <a href="author.html#1105">[ 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-June/001106.html b/zarb-ml/mageia-webteam/2011-June/001106.html
new file mode 100644
index 000000000..73a1b4803
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001106.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1717] [New] vote for a bug
+ </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%201717%5D%20%5BNew%5D%20vote%20for%20a%20bug&In-Reply-To=%3Cbug-1717-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="001105.html">
+ <LINK REL="Next" HREF="001107.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1717] [New] vote for a bug</H1>
+ <B>Franz Holzinger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201717%5D%20%5BNew%5D%20vote%20for%20a%20bug&In-Reply-To=%3Cbug-1717-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1717] [New] vote for a bug">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 9 19:53:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001105.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001107.html">[Mageia-webteam] [Bug 1717] vote for a bug
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1106">[ date ]</a>
+ <a href="thread.html#1106">[ thread ]</a>
+ <a href="subject.html#1106">[ subject ]</a>
+ <a href="author.html#1106">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1717">https://bugs.mageia.org/show_bug.cgi?id=1717</A>
+
+ Summary: vote for a bug
+ 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">flink at fholzinger.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>
+
+
+Description of problem:
+You could vote for a bug under the Mandriva bug tracker. This is useful to see
+how many users suffer from a reported bug.
+
+--
+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="001105.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001107.html">[Mageia-webteam] [Bug 1717] vote for a bug
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1106">[ date ]</a>
+ <a href="thread.html#1106">[ thread ]</a>
+ <a href="subject.html#1106">[ subject ]</a>
+ <a href="author.html#1106">[ 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-June/001107.html b/zarb-ml/mageia-webteam/2011-June/001107.html
new file mode 100644
index 000000000..cf6629664
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001107.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1717] vote for a bug
+ </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%201717%5D%20vote%20for%20a%20bug&In-Reply-To=%3C20110609183135.D9D8343085%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="001106.html">
+ <LINK REL="Next" HREF="001108.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1717] vote for a bug</H1>
+ <B>Lucien XU</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201717%5D%20vote%20for%20a%20bug&In-Reply-To=%3C20110609183135.D9D8343085%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1717] vote for a bug">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 9 20:31:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001106.html">[Mageia-webteam] [Bug 1717] [New] vote for a bug
+</A></li>
+ <LI>Next message: <A HREF="001108.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1107">[ date ]</a>
+ <a href="thread.html#1107">[ thread ]</a>
+ <a href="subject.html#1107">[ subject ]</a>
+ <a href="author.html#1107">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1717">https://bugs.mageia.org/show_bug.cgi?id=1717</A>
+
+Lucien XU &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sfietkonstantin at free.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |DUPLICATE
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sfietkonstantin at free.fr</A>
+
+--- Comment #1 from Lucien XU &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sfietkonstantin at free.fr</A>&gt; 2011-06-09 22:31:35 CEST ---
+Sorry :(
+Already discussed and invalidated
+See here
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</A>
+
+*** This bug has been marked as a duplicate of bug 149 ***
+
+--
+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="001106.html">[Mageia-webteam] [Bug 1717] [New] vote for a bug
+</A></li>
+ <LI>Next message: <A HREF="001108.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1107">[ date ]</a>
+ <a href="thread.html#1107">[ thread ]</a>
+ <a href="subject.html#1107">[ subject ]</a>
+ <a href="author.html#1107">[ 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-June/001108.html b/zarb-ml/mageia-webteam/2011-June/001108.html
new file mode 100644
index 000000000..d82fd293b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001108.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 149] Vote for bugs at 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%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110609183136.94A2043083%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="001107.html">
+ <LINK REL="Next" HREF="001109.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla</H1>
+ <B>Lucien XU</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20149%5D%20Vote%20for%20bugs%20at%20bugzilla&In-Reply-To=%3C20110609183136.94A2043083%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 9 20:31:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001107.html">[Mageia-webteam] [Bug 1717] vote for a bug
+</A></li>
+ <LI>Next message: <A HREF="001109.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1108">[ date ]</a>
+ <a href="thread.html#1108">[ thread ]</a>
+ <a href="subject.html#1108">[ subject ]</a>
+ <a href="author.html#1108">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=149">https://bugs.mageia.org/show_bug.cgi?id=149</A>
+
+Lucien XU &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sfietkonstantin at free.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">flink at fholzinger.com</A>
+
+--- Comment #8 from Lucien XU &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sfietkonstantin at free.fr</A>&gt; 2011-06-09 22:31:35 CEST ---
+*** Bug 1717 has been marked as a duplicate of this bug. ***
+
+--
+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="001107.html">[Mageia-webteam] [Bug 1717] vote for a bug
+</A></li>
+ <LI>Next message: <A HREF="001109.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1108">[ date ]</a>
+ <a href="thread.html#1108">[ thread ]</a>
+ <a href="subject.html#1108">[ subject ]</a>
+ <a href="author.html#1108">[ 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-June/001109.html b/zarb-ml/mageia-webteam/2011-June/001109.html
new file mode 100644
index 000000000..612a67335
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001109.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20with%20redirectin%20mageia.ro%20to%20mageia.org/ro/&In-Reply-To=%3C808741.43061.qm%40web29618.mail.ird.yahoo.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001108.html">
+ <LINK REL="Next" HREF="001114.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/</H1>
+ <B>Catalin Florin RUSSEN</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20with%20redirectin%20mageia.ro%20to%20mageia.org/ro/&In-Reply-To=%3C808741.43061.qm%40web29618.mail.ird.yahoo.com%3E"
+ TITLE="[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/">cfrussen at yahoo.co.uk
+ </A><BR>
+ <I>Thu Jun 9 23:57:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001108.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001114.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1109">[ date ]</a>
+ <a href="thread.html#1109">[ thread ]</a>
+ <a href="subject.html#1109">[ subject ]</a>
+ <a href="author.html#1109">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+I've just bought the name &quot;mageia.ro&quot; and I would like to redirect it to &quot;mageia.org/ro/&quot;.
+
+I spoke with the registar and they advised me the following steps:
+
+1. get Mageia's DNS servers URI to set it in the registar configuration (they do not provide DNS service for .ro domains)
+2. set the redirection from &quot;mageia.ro&quot; to &quot;mageia.org/ro/&quot; directly on Mageia's DNS servers
+
+Is here any charitable soul to help me with this?
+
+&#160;
+Best regards,
+Florin Catalin RUSSEN
+Romanian Translation Team
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110609/2433e8ab/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001108.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001114.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1109">[ date ]</a>
+ <a href="thread.html#1109">[ thread ]</a>
+ <a href="subject.html#1109">[ subject ]</a>
+ <a href="author.html#1109">[ 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-June/001110.html b/zarb-ml/mageia-webteam/2011-June/001110.html
new file mode 100644
index 000000000..c5c0aa4f4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001110.html
@@ -0,0 +1,138 @@
+<!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=%3C20110609220004.51095430B6%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="001114.html">
+ <LINK REL="Next" HREF="001112.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=%3C20110609220004.51095430B6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 10 00:00:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001114.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A></li>
+ <LI>Next message: <A HREF="001112.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1110">[ date ]</a>
+ <a href="thread.html#1110">[ thread ]</a>
+ <a href="subject.html#1110">[ subject ]</a>
+ <a href="author.html#1110">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ Wrong content-type on atom feed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001114.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A></li>
+ <LI>Next message: <A HREF="001112.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1110">[ date ]</a>
+ <a href="thread.html#1110">[ thread ]</a>
+ <a href="subject.html#1110">[ subject ]</a>
+ <a href="author.html#1110">[ 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-June/001111.html b/zarb-ml/mageia-webteam/2011-June/001111.html
new file mode 100644
index 000000000..aa85073bb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001111.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+ </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%201663%5D%20The%20plugin%20with%20the%20link%20for%0A%20facebook/twiter...%20doesn%27t%20use%20the%20selected%20language%20but%20it%20use%20the%20value%0A%20of%20general.useragent.locale&In-Reply-To=%3C20110610082213.E68DF43080%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="001098.html">
+ <LINK REL="Next" HREF="001096.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201663%5D%20The%20plugin%20with%20the%20link%20for%0A%20facebook/twiter...%20doesn%27t%20use%20the%20selected%20language%20but%20it%20use%20the%20value%0A%20of%20general.useragent.locale&In-Reply-To=%3C20110610082213.E68DF43080%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 10 10:22:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001098.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI>Next message: <A HREF="001096.html">[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1111">[ date ]</a>
+ <a href="thread.html#1111">[ thread ]</a>
+ <a href="subject.html#1111">[ subject ]</a>
+ <a href="author.html#1111">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1663">https://bugs.mageia.org/show_bug.cgi?id=1663</A>
+
+Damien Lallement &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at damsweb.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<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">mageia at damsweb.net</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at damsweb.net</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="001098.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A></li>
+ <LI>Next message: <A HREF="001096.html">[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1111">[ date ]</a>
+ <a href="thread.html#1111">[ thread ]</a>
+ <a href="subject.html#1111">[ subject ]</a>
+ <a href="author.html#1111">[ 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-June/001112.html b/zarb-ml/mageia-webteam/2011-June/001112.html
new file mode 100644
index 000000000..f472f2328
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001112.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+ </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%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110610082559.9A4B343083%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="001110.html">
+ <LINK REL="Next" HREF="001113.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110610082559.9A4B343083%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 10 10:25:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001110.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001113.html">[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1112">[ date ]</a>
+ <a href="thread.html#1112">[ thread ]</a>
+ <a href="subject.html#1112">[ subject ]</a>
+ <a href="author.html#1112">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</A>
+
+Damien Lallement &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at damsweb.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+ AssignedTo|<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">mageia at damsweb.net</A>
+
+--- Comment #8 from Damien Lallement &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at damsweb.net</A>&gt; 2011-06-10 12:25:59 CEST ---
+WIP, stay tuned. :-)
+
+--
+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="001110.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001113.html">[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1112">[ date ]</a>
+ <a href="thread.html#1112">[ thread ]</a>
+ <a href="subject.html#1112">[ subject ]</a>
+ <a href="author.html#1112">[ 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-June/001113.html b/zarb-ml/mageia-webteam/2011-June/001113.html
new file mode 100644
index 000000000..83aa32c37
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001113.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;
+ </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%201734%5D%20%5BNew%5D%20Wrong%20link%20for%20%22forgot%20password%22&In-Reply-To=%3Cbug-1734-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="001112.html">
+ <LINK REL="Next" HREF="001115.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201734%5D%20%5BNew%5D%20Wrong%20link%20for%20%22forgot%20password%22&In-Reply-To=%3Cbug-1734-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 10 17:02:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001112.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001115.html">[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1113">[ date ]</a>
+ <a href="thread.html#1113">[ thread ]</a>
+ <a href="subject.html#1113">[ subject ]</a>
+ <a href="author.html#1113">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1734">https://bugs.mageia.org/show_bug.cgi?id=1734</A>
+
+ Summary: Wrong link for &quot;forgot password&quot;
+ 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">misc at zarb.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>
+
+
+THe link on bugzilla to ask for a new password link to indentity.mageia.org.
+
+It should be better to link to the page of identity fr that directly
+:<i><A HREF="https://identity.mageia.org/forgot_password">https://identity.mageia.org/forgot_password</A>
+</I>
+--
+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="001112.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001115.html">[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1113">[ date ]</a>
+ <a href="thread.html#1113">[ thread ]</a>
+ <a href="subject.html#1113">[ subject ]</a>
+ <a href="author.html#1113">[ 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-June/001114.html b/zarb-ml/mageia-webteam/2011-June/001114.html
new file mode 100644
index 000000000..a9a02a6f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001114.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20with%20redirectin%20mageia.ro%20to%0A%09mageia.org/ro/&In-Reply-To=%3CBANLkTik1TpwqihuYtRiBBWJJgHb%3DZA7DBA%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="001109.html">
+ <LINK REL="Next" HREF="001110.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20with%20redirectin%20mageia.ro%20to%0A%09mageia.org/ro/&In-Reply-To=%3CBANLkTik1TpwqihuYtRiBBWJJgHb%3DZA7DBA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/">rda at mageia.org
+ </A><BR>
+ <I>Fri Jun 10 18:05:33 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001109.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A></li>
+ <LI>Next message: <A HREF="001110.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1114">[ date ]</a>
+ <a href="thread.html#1114">[ thread ]</a>
+ <a href="subject.html#1114">[ subject ]</a>
+ <a href="author.html#1114">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi!
+
+On Thu, Jun 9, 2011 at 23:57, Catalin Florin RUSSEN
+&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">cfrussen at yahoo.co.uk</A>&gt; wrote:
+&gt;<i> I've just bought the name &quot;mageia.ro&quot; and I would like to redirect it to
+</I>&gt;<i> &quot;mageia.org/ro/&quot;.
+</I>
+Cool! Thanks!
+
+&gt;<i> I spoke with the registar and they advised me the following steps:
+</I>&gt;<i> 1. get Mageia's DNS servers URI to set it in the registar configuration
+</I>&gt;<i> (they do not provide DNS service for .ro domains)
+</I>&gt;<i> 2. set the redirection from &quot;mageia.ro&quot; to &quot;mageia.org/ro/&quot; directly on
+</I>&gt;<i> Mageia's DNS servers
+</I>&gt;<i> Is here any charitable soul to help me with this?
+</I>
+Cc:ing sysadmin team for that.
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001109.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A></li>
+ <LI>Next message: <A HREF="001110.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1114">[ date ]</a>
+ <a href="thread.html#1114">[ thread ]</a>
+ <a href="subject.html#1114">[ subject ]</a>
+ <a href="author.html#1114">[ 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-June/001115.html b/zarb-ml/mageia-webteam/2011-June/001115.html
new file mode 100644
index 000000000..1c39a5c87
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001115.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD
+ </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%201737%5D%20%5BNew%5D%20Wrong%20checksums%20of%20Dual-Arch-CD&In-Reply-To=%3Cbug-1737-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="001113.html">
+ <LINK REL="Next" HREF="001116.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD</H1>
+ <B>Fabian Wannenmacher</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201737%5D%20%5BNew%5D%20Wrong%20checksums%20of%20Dual-Arch-CD&In-Reply-To=%3Cbug-1737-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 10 19:17:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001113.html">[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI>Next message: <A HREF="001116.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1115">[ date ]</a>
+ <a href="thread.html#1115">[ thread ]</a>
+ <a href="subject.html#1115">[ subject ]</a>
+ <a href="author.html#1115">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+
+ Summary: Wrong checksums of Dual-Arch-CD
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">wannespam at googlemail.com</A>
+
+
+Description of problem:
+When you like to download the Dual-Arch-CD, you get displayed thr md5 and sha1
+Checksums at
+<A HREF="http://mageia.org/de/downloads/dl.php?product=mageia-1-cd-dualarch.">http://mageia.org/de/downloads/dl.php?product=mageia-1-cd-dualarch.</A>
+They are displayed wrong.
+The have to be bedf0e4aed931d238c61b08ea5d6bb9d
+and 416d8272a2423fe7a0816786f0189e2320e74958.
+Not 7574f31cb8429614026a61c50578d863
+and 427e25a4c8aad56c0a19fae0bbbe085f1fc641ba.
+The .md5.gpg and .sha1.gpg files on the mirrors are right.
+
+Version-Release number of selected component (if applicable):
+Mageia 1 Dual Arch
+
+--
+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="001113.html">[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI>Next message: <A HREF="001116.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1115">[ date ]</a>
+ <a href="thread.html#1115">[ thread ]</a>
+ <a href="subject.html#1115">[ subject ]</a>
+ <a href="author.html#1115">[ 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-June/001116.html b/zarb-ml/mageia-webteam/2011-June/001116.html
new file mode 100644
index 000000000..d0e426bc7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001116.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=%3C20110610220003.677F743095%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="001115.html">
+ <LINK REL="Next" HREF="001118.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=%3C20110610220003.677F743095%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 11 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001115.html">[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI>Next message: <A HREF="001118.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1116">[ date ]</a>
+ <a href="thread.html#1116">[ thread ]</a>
+ <a href="subject.html#1116">[ subject ]</a>
+ <a href="author.html#1116">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001115.html">[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD
+</A></li>
+ <LI>Next message: <A HREF="001118.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1116">[ date ]</a>
+ <a href="thread.html#1116">[ thread ]</a>
+ <a href="subject.html#1116">[ subject ]</a>
+ <a href="author.html#1116">[ 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-June/001117.html b/zarb-ml/mageia-webteam/2011-June/001117.html
new file mode 100644
index 000000000..d6ccf38c0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001117.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, June, week 23 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%2C%20June%2C%20week%2023%20meeting&In-Reply-To=%3CBANLkTi%3DzrFMPF6vAzCyiGvEtYP_Vrj9vcA%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="001104.html">
+ <LINK REL="Next" HREF="001092.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, June, week 23 meeting</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20June%2C%20week%2023%20meeting&In-Reply-To=%3CBANLkTi%3DzrFMPF6vAzCyiGvEtYP_Vrj9vcA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, June, week 23 meeting">Kosmas at mach7x.com
+ </A><BR>
+ <I>Sat Jun 11 15:45:47 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001104.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI>Next message: <A HREF="001092.html">[Mageia-webteam] Meeting this week, Thursday
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1117">[ date ]</a>
+ <a href="thread.html#1117">[ thread ]</a>
+ <a href="subject.html#1117">[ subject ]</a>
+ <a href="author.html#1117">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 8 June 2011 19:17, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+
+&gt;<i> On Mon, Jun 6, 2011 at 22:46, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;
+</I>&gt;<i> wrote:
+</I>&gt;<i> &gt; it's been silent around here for some time - let's get back to our
+</I>&gt;<i> &gt; good habit, for a meeting on this coming Wednesday, 13:00 UTC (15:00
+</I>&gt;<i> &gt; Paris time).
+</I>&gt;<i>
+</I>&gt;<i> Meeting notes are here:
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-06-08-13.37.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-06-08-13.37.html</A>
+</I>&gt;<i>
+</I>&gt;<i> For those that couldn't attend, your participation is crucial in this
+</I>&gt;<i> team; so if you are still in, please send your points here on the list
+</I>&gt;<i> and that so we know who can be counted on for what.
+</I>&gt;<i>
+</I>&gt;<i> Other than that, and than other points raised during the meeting, this
+</I>&gt;<i> team needs people to take apps in charge.
+</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 everyone, Romain
+
+First of all, congratulations and well done for getting release 1 out!
+
+As about the involvement in the project, as I've mentioned to you in the
+past, I would like to still be involved, but changing jobs and country
+hasn't left a lot of free time.
+Hopefully things will gradually change in the near future so I can be
+involved more.
+At the moment though, I cannot attend any of the meetings as they are on
+working time, and can only try and spend some time during some of the
+evenings and weekends.
+
+Can we decide on a few things that we would need to do in order to deploy
+the app in the live server?
+Haven't had a chance to look at it for some time, but had a quick look just
+now and it seem that most of the functionality is there?
+There are a few pages with errors but I can start having a look at it.
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110611/54796eea/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001104.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A></li>
+ <LI>Next message: <A HREF="001092.html">[Mageia-webteam] Meeting this week, Thursday
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1117">[ date ]</a>
+ <a href="thread.html#1117">[ thread ]</a>
+ <a href="subject.html#1117">[ subject ]</a>
+ <a href="author.html#1117">[ 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-June/001118.html b/zarb-ml/mageia-webteam/2011-June/001118.html
new file mode 100644
index 000000000..01acb9522
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001118.html
@@ -0,0 +1,135 @@
+<!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=%3C20110611220003.2743B4309A%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="001116.html">
+ <LINK REL="Next" HREF="001119.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=%3C20110611220003.2743B4309A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 12 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001116.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001119.html">[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1118">[ date ]</a>
+ <a href="thread.html#1118">[ thread ]</a>
+ <a href="subject.html#1118">[ subject ]</a>
+ <a href="author.html#1118">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001116.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001119.html">[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1118">[ date ]</a>
+ <a href="thread.html#1118">[ thread ]</a>
+ <a href="subject.html#1118">[ subject ]</a>
+ <a href="author.html#1118">[ 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-June/001119.html b/zarb-ml/mageia-webteam/2011-June/001119.html
new file mode 100644
index 000000000..f6d5ad443
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001119.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20%5BNew%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3Cbug-1762-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="001118.html">
+ <LINK REL="Next" HREF="001126.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Wendy Umarov</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20%5BNew%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3Cbug-1762-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 12 14:06:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001118.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001126.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1119">[ date ]</a>
+ <a href="thread.html#1119">[ thread ]</a>
+ <a href="subject.html#1119">[ subject ]</a>
+ <a href="author.html#1119">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</A>
+
+ Summary: Missing informations on download webpage (DVD free/CD
+ non-free)
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://mageia.org/fr/downloads/">http://mageia.org/fr/downloads/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">wendy.umarov at free.fr</A>
+
+
+Description of problem: Missing informations
+
+- DVD is free distro (for advanced users)
+- Live is non-free distro but can be used for easy installation (non-advanced
+users)
+
+Proposal : place Live(s) first on webpage, then DVD-free.
+
+--
+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="001118.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001126.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1119">[ date ]</a>
+ <a href="thread.html#1119">[ thread ]</a>
+ <a href="subject.html#1119">[ subject ]</a>
+ <a href="author.html#1119">[ 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-June/001120.html b/zarb-ml/mageia-webteam/2011-June/001120.html
new file mode 100644
index 000000000..adf03aa34
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001120.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+ </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%201773%5D%20%5BNew%5D%20Only%20mageia.org/fr/support%0A%20includes%20a%20link%20to%20mageia.org/mailman/%2C%20all%20other%20languages%20lack%20it&In-Reply-To=%3Cbug-1773-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="001173.html">
+ <LINK REL="Next" HREF="001125.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it</H1>
+ <B>Radu Cristian Fotescu</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201773%5D%20%5BNew%5D%20Only%20mageia.org/fr/support%0A%20includes%20a%20link%20to%20mageia.org/mailman/%2C%20all%20other%20languages%20lack%20it&In-Reply-To=%3Cbug-1773-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 12 22:12:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001173.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001125.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1120">[ date ]</a>
+ <a href="thread.html#1120">[ thread ]</a>
+ <a href="subject.html#1120">[ subject ]</a>
+ <a href="author.html#1120">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1773">https://bugs.mageia.org/show_bug.cgi?id=1773</A>
+
+ Summary: Only mageia.org/fr/support includes a link to
+ mageia.org/mailman/, all other languages lack it
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">beranger5ca at yahoo.ca</A>
+
+
+Description of problem:
+
+Only mageia.org/fr/support includes a link to mageia.org/mailman/ -- all the
+other languages lack such a link.
+
+This is strange to have mageia.org/en/support not linking to the mailing lists
+who currently are... in English only!
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1.
+2.
+3.
+
+--
+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="001173.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001125.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1120">[ date ]</a>
+ <a href="thread.html#1120">[ thread ]</a>
+ <a href="subject.html#1120">[ subject ]</a>
+ <a href="author.html#1120">[ 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-June/001121.html b/zarb-ml/mageia-webteam/2011-June/001121.html
new file mode 100644
index 000000000..b3f622b38
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001121.html
@@ -0,0 +1,145 @@
+<!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=%3C20110612220002.A893D430AD%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="001125.html">
+ <LINK REL="Next" HREF="001122.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=%3C20110612220002.A893D430AD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 13 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001125.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI>Next message: <A HREF="001122.html">[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1121">[ date ]</a>
+ <a href="thread.html#1121">[ thread ]</a>
+ <a href="subject.html#1121">[ subject ]</a>
+ <a href="author.html#1121">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001125.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI>Next message: <A HREF="001122.html">[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1121">[ date ]</a>
+ <a href="thread.html#1121">[ thread ]</a>
+ <a href="subject.html#1121">[ subject ]</a>
+ <a href="author.html#1121">[ 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-June/001122.html b/zarb-ml/mageia-webteam/2011-June/001122.html
new file mode 100644
index 000000000..4eff0f4a6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001122.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link
+ </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%201779%5D%20%5BNew%5D%20Forum%20does%20not%20provide%0A%09registration%20link&In-Reply-To=%3Cbug-1779-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="001121.html">
+ <LINK REL="Next" HREF="001123.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link</H1>
+ <B>Shawn Thompson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201779%5D%20%5BNew%5D%20Forum%20does%20not%20provide%0A%09registration%20link&In-Reply-To=%3Cbug-1779-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 13 05:47:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001121.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001123.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1122">[ date ]</a>
+ <a href="thread.html#1122">[ thread ]</a>
+ <a href="subject.html#1122">[ subject ]</a>
+ <a href="author.html#1122">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+
+ Summary: Forum does not provide registration link
+ 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">superfox436 at gmail.com</A>
+
+
+While I easily found the way to register for an account in the system after
+some searching, I find it quite odd that there's no links/instructions in the
+forum stating where you need to register for an account, and that the
+&quot;Register&quot; button had been removed entirely instead of pointing to
+identity.mageia.org.
+
+Your thoughts?
+
+--
+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="001121.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001123.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1122">[ date ]</a>
+ <a href="thread.html#1122">[ thread ]</a>
+ <a href="subject.html#1122">[ subject ]</a>
+ <a href="author.html#1122">[ 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-June/001123.html b/zarb-ml/mageia-webteam/2011-June/001123.html
new file mode 100644
index 000000000..43104c21f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001123.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+ </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%201779%5D%20Forum%20does%20not%20provide%20prominent%0A%09registration%20link&In-Reply-To=%3C20110613041256.8C533429A1%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="001122.html">
+ <LINK REL="Next" HREF="001124.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link</H1>
+ <B>Shawn Thompson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201779%5D%20Forum%20does%20not%20provide%20prominent%0A%09registration%20link&In-Reply-To=%3C20110613041256.8C533429A1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 13 06:12:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001122.html">[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link
+</A></li>
+ <LI>Next message: <A HREF="001124.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1123">[ date ]</a>
+ <a href="thread.html#1123">[ thread ]</a>
+ <a href="subject.html#1123">[ subject ]</a>
+ <a href="author.html#1123">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+
+Shawn Thompson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">superfox436 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Forum does not provide |Forum does not provide
+ |registration link |prominent registration link
+
+--
+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="001122.html">[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link
+</A></li>
+ <LI>Next message: <A HREF="001124.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1123">[ date ]</a>
+ <a href="thread.html#1123">[ thread ]</a>
+ <a href="subject.html#1123">[ subject ]</a>
+ <a href="author.html#1123">[ 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-June/001124.html b/zarb-ml/mageia-webteam/2011-June/001124.html
new file mode 100644
index 000000000..152016123
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001124.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+ </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%201779%5D%20Forum%20does%20not%20provide%20prominent%0A%09registration%20link&In-Reply-To=%3C20110613092354.D2F4F430B9%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="001123.html">
+ <LINK REL="Next" HREF="001128.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201779%5D%20Forum%20does%20not%20provide%20prominent%0A%09registration%20link&In-Reply-To=%3C20110613092354.D2F4F430B9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 13 11:23:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001123.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI>Next message: <A HREF="001128.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1124">[ date ]</a>
+ <a href="thread.html#1124">[ thread ]</a>
+ <a href="subject.html#1124">[ subject ]</a>
+ <a href="author.html#1124">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #1 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-06-13 11:23:54 CEST ---
+Yes, should be inserted (next to the login link). Momentarily it's not very
+user friendly.
+
+--
+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="001123.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI>Next message: <A HREF="001128.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1124">[ date ]</a>
+ <a href="thread.html#1124">[ thread ]</a>
+ <a href="subject.html#1124">[ subject ]</a>
+ <a href="author.html#1124">[ 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-June/001125.html b/zarb-ml/mageia-webteam/2011-June/001125.html
new file mode 100644
index 000000000..d74f0556a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001125.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+ </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%201773%5D%20Only%20mageia.org/fr/support%20includes%20a%0A%20link%20to%20mageia.org/mailman/%2C%20all%20other%20languages%20lack%20it&In-Reply-To=%3C20110613101336.CD6AD42B8D%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="001120.html">
+ <LINK REL="Next" HREF="001121.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201773%5D%20Only%20mageia.org/fr/support%20includes%20a%0A%20link%20to%20mageia.org/mailman/%2C%20all%20other%20languages%20lack%20it&In-Reply-To=%3C20110613101336.CD6AD42B8D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 13 12:13:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001120.html">[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI>Next message: <A HREF="001121.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1125">[ date ]</a>
+ <a href="thread.html#1125">[ thread ]</a>
+ <a href="subject.html#1125">[ subject ]</a>
+ <a href="author.html#1125">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1773">https://bugs.mageia.org/show_bug.cgi?id=1773</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|NEW |ASSIGNED
+ 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-06-13 12:13:35 CEST ---
+Added on the English page, that will serve as a template for future coming
+releases in all languages. 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="001120.html">[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI>Next message: <A HREF="001121.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1125">[ date ]</a>
+ <a href="thread.html#1125">[ thread ]</a>
+ <a href="subject.html#1125">[ subject ]</a>
+ <a href="author.html#1125">[ 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-June/001126.html b/zarb-ml/mageia-webteam/2011-June/001126.html
new file mode 100644
index 000000000..47d05c93d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001126.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110613101756.5AC4A42BCB%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="001119.html">
+ <LINK REL="Next" HREF="001127.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110613101756.5AC4A42BCB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 13 12:17:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001119.html">[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001127.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1126">[ date ]</a>
+ <a href="thread.html#1126">[ thread ]</a>
+ <a href="subject.html#1126">[ subject ]</a>
+ <a href="author.html#1126">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</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|NEW |ASSIGNED
+ 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-06-13 12:17:56 CEST ---
+Makes sense, although we don't have any metrics to compare these layouts. :-/
+Committed and in production (r718).
+
+--
+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="001119.html">[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001127.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1126">[ date ]</a>
+ <a href="thread.html#1126">[ thread ]</a>
+ <a href="subject.html#1126">[ subject ]</a>
+ <a href="author.html#1126">[ 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-June/001127.html b/zarb-ml/mageia-webteam/2011-June/001127.html
new file mode 100644
index 000000000..9774303c0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001127.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110613134148.B316A4309E%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="001126.html">
+ <LINK REL="Next" HREF="001129.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Wendy Umarov</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110613134148.B316A4309E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 13 15:41:48 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001126.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001129.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1127">[ date ]</a>
+ <a href="thread.html#1127">[ thread ]</a>
+ <a href="subject.html#1127">[ subject ]</a>
+ <a href="author.html#1127">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</A>
+
+--- Comment #2 from Wendy Umarov &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">wendy.umarov at free.fr</A>&gt; 2011-06-13 17:41:48 CEST ---
+Thank you ;)
+
+But informations about Live content non-free drivers/software and complete is
+Free only (no-proprietaries drivers, may request manuals installations) still
+missing, regarding 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 the assignee for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001126.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001129.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1127">[ date ]</a>
+ <a href="thread.html#1127">[ thread ]</a>
+ <a href="subject.html#1127">[ subject ]</a>
+ <a href="author.html#1127">[ 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-June/001128.html b/zarb-ml/mageia-webteam/2011-June/001128.html
new file mode 100644
index 000000000..9aeb7920e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001128.html
@@ -0,0 +1,144 @@
+<!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=%3C20110613220003.EA1C7430C2%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="001124.html">
+ <LINK REL="Next" HREF="001130.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=%3C20110613220003.EA1C7430C2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001124.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI>Next message: <A HREF="001130.html">[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1128">[ date ]</a>
+ <a href="thread.html#1128">[ thread ]</a>
+ <a href="subject.html#1128">[ subject ]</a>
+ <a href="author.html#1128">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001124.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI>Next message: <A HREF="001130.html">[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1128">[ date ]</a>
+ <a href="thread.html#1128">[ thread ]</a>
+ <a href="subject.html#1128">[ subject ]</a>
+ <a href="author.html#1128">[ 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-June/001129.html b/zarb-ml/mageia-webteam/2011-June/001129.html
new file mode 100644
index 000000000..23641ca98
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001129.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110614022212.AB3A1430BF%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="001127.html">
+ <LINK REL="Next" HREF="001134.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110614022212.AB3A1430BF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 04:22:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001127.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001134.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1129">[ date ]</a>
+ <a href="thread.html#1129">[ thread ]</a>
+ <a href="subject.html#1129">[ subject ]</a>
+ <a href="author.html#1129">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</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 #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-14 06:22:12 CEST ---
+On my current screen ( macbook 14&quot; ), the dvd is hidden, and I think that would
+only increase the number of people complaining that we do not have a 64 bits
+installation. I also find a little bit disturbing to hide the free software dvd
+offscreen.
+
+And I think that telling to users that free software only is for experts is
+counter productive, so we should rephrase in a less negative way. Moroever the
+same drakx installer was deemed as being the best for beginners 5 years ago and
+is now recommended for advanced users ?
+
+I do not think it got more complex in the past ( quite the contrary ), and I do
+not think people got dumber in the mean time so I can hardly see a reason to
+label the DVD for &quot;advanced users&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="001127.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001134.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1129">[ date ]</a>
+ <a href="thread.html#1129">[ thread ]</a>
+ <a href="subject.html#1129">[ subject ]</a>
+ <a href="author.html#1129">[ 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-June/001130.html b/zarb-ml/mageia-webteam/2011-June/001130.html
new file mode 100644
index 000000000..2331318f5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001130.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other
+ </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%201797%5D%20%5BNew%5D%20All%20forums%20need%20to%20refer%20to%20each%0A%09other&In-Reply-To=%3Cbug-1797-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="001128.html">
+ <LINK REL="Next" HREF="001131.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201797%5D%20%5BNew%5D%20All%20forums%20need%20to%20refer%20to%20each%0A%09other&In-Reply-To=%3Cbug-1797-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 14:32:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001128.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001131.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1130">[ date ]</a>
+ <a href="thread.html#1130">[ thread ]</a>
+ <a href="subject.html#1130">[ subject ]</a>
+ <a href="author.html#1130">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+
+ Summary: All forums need to refer to each other
+ 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>
+
+
+Description of problem:
+When on the English forum, it's not obvious:
+ - where you are in mageia.org (that will be addressed in a distinct bug);
+ - that there are other language-focused forums and where they are, unless you
+go down in a specific sub-forum.
+
+--
+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="001128.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001131.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1130">[ date ]</a>
+ <a href="thread.html#1130">[ thread ]</a>
+ <a href="subject.html#1130">[ subject ]</a>
+ <a href="author.html#1130">[ 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-June/001131.html b/zarb-ml/mageia-webteam/2011-June/001131.html
new file mode 100644
index 000000000..38f30f6d2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001131.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1797] All forums need to refer to each other
+ </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%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20110614123354.BE8A6430C4%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="001130.html">
+ <LINK REL="Next" HREF="001133.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1797] All forums need to refer to each other</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20110614123354.BE8A6430C4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1797] All forums need to refer to each other">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 14:33:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001130.html">[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001133.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1131">[ date ]</a>
+ <a href="thread.html#1131">[ thread ]</a>
+ <a href="subject.html#1131">[ subject ]</a>
+ <a href="author.html#1131">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</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-06-14 16:33:54 CEST ---
+A solution can be to have the same (In reply to comment #0)
+&gt;<i> - that there are other language-focused forums and where they are, unless you
+</I>&gt;<i> go down in a specific sub-forum.
+</I>
+A solution can be to have a top (or aside) navigation item that lists all
+forums, in a consistent manner (so that each forum will host the same UI
+widget, with the same behaviour, thus reinforcing the common theme between
+forums).
+
+--
+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="001130.html">[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001133.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1131">[ date ]</a>
+ <a href="thread.html#1131">[ thread ]</a>
+ <a href="subject.html#1131">[ subject ]</a>
+ <a href="author.html#1131">[ 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-June/001132.html b/zarb-ml/mageia-webteam/2011-June/001132.html
new file mode 100644
index 000000000..cfaa6a4d8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001132.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour
+ </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%201798%5D%20%5BNew%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3Cbug-1798-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="001133.html">
+ <LINK REL="Next" HREF="001135.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201798%5D%20%5BNew%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3Cbug-1798-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 14:38:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001133.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001135.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1132">[ date ]</a>
+ <a href="thread.html#1132">[ thread ]</a>
+ <a href="subject.html#1132">[ subject ]</a>
+ <a href="author.html#1132">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+
+ Summary: Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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>
+
+
+Description of problem:
+Going to <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> automatically redirects to
+<A HREF="http://forums.mageia.org/en/">http://forums.mageia.org/en/</A>
+
+One may (or may not, that's the point of this bug) expect something else
+instead:
+ - to be redirected to its own prefered language forum (browser pref, as is
+done for www.mageia.org already);
+ - to have a list/summary of all known forums + links to go to them.
+
+(see bug 860 comment 73 for a reference to this)
+
+--
+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="001133.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001135.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1132">[ date ]</a>
+ <a href="thread.html#1132">[ thread ]</a>
+ <a href="subject.html#1132">[ subject ]</a>
+ <a href="author.html#1132">[ 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-June/001133.html b/zarb-ml/mageia-webteam/2011-June/001133.html
new file mode 100644
index 000000000..cf408687a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001133.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1797] All forums need to refer to each other
+ </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%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20110614124344.A87F142E37%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="001131.html">
+ <LINK REL="Next" HREF="001132.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1797] All forums need to refer to each other</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20110614124344.A87F142E37%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1797] All forums need to refer to each other">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 14:43:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001131.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001132.html">[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1133">[ date ]</a>
+ <a href="thread.html#1133">[ thread ]</a>
+ <a href="subject.html#1133">[ subject ]</a>
+ <a href="author.html#1133">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #2 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-06-14 16:43:41 CEST ---
+As proposed in bug #860 comment #75:
+
+An overall solution for 2nd issue, including the redirection issue to local
+language forums:
+
+1. In the international forum the header can display links to all known forums,
+local as well as external.
+
+2. All localized forums (local or external) should place a link &quot;Back to
+Mageia.Org&quot; in their header, which leads back to mageia.org/[lang]
+(Easily done in phpbb3 by adding a line in templates/overall_header.html)
+
+After this has been done
+
+Let all users come to the international forum. There they will see a link to
+their language forum (if there is one) and can go there. After first visit
+there they will probably bookmark the direct link anyway. If there is no link
+to a special forum in their language, then there is no such forum (at least
+that we know of) and they have to do with the international forum.
+
+Means:
+- no need for the forum section (Supporting Community forums) any more
+- no need to change the forum entry in the overall nav bar, let it point to
+forums.mageia.org for all languages
+
+--
+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="001131.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001132.html">[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1133">[ date ]</a>
+ <a href="thread.html#1133">[ thread ]</a>
+ <a href="subject.html#1133">[ subject ]</a>
+ <a href="author.html#1133">[ 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-June/001134.html b/zarb-ml/mageia-webteam/2011-June/001134.html
new file mode 100644
index 000000000..ab3feb9ab
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001134.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110614124430.91FAF42E37%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="001129.html">
+ <LINK REL="Next" HREF="001136.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110614124430.91FAF42E37%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 14:44:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001129.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001136.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1134">[ date ]</a>
+ <a href="thread.html#1134">[ thread ]</a>
+ <a href="subject.html#1134">[ subject ]</a>
+ <a href="author.html#1134">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-14 14:44:30 CEST ---
+I agree with Michael.
+
+Note that no label has been added yet, only the order of presentation has been
+changed (people do scroll pages).
+
+Now, to improve the whole thing, we need a bigger picture:
+ - what do people really use? (download metrics, usage surveys)
+ - how can we reduce the complexity of &quot;which way to follow to install my
+system?&quot; question (thinking, experimenting, designing, deciding)
+ - how can we articulate this free/nonfree split with a &quot;it just works&quot;
+perspective?
+ - how then can we present it better.
+
+But that's not for this bug.
+
+--
+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="001129.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001136.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1134">[ date ]</a>
+ <a href="thread.html#1134">[ thread ]</a>
+ <a href="subject.html#1134">[ subject ]</a>
+ <a href="author.html#1134">[ 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-June/001135.html b/zarb-ml/mageia-webteam/2011-June/001135.html
new file mode 100644
index 000000000..3aa92a1b6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001135.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+ </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%201798%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3C20110614124751.66DC542FA5%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="001132.html">
+ <LINK REL="Next" HREF="001137.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201798%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3C20110614124751.66DC542FA5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 14:47:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001132.html">[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001137.html">[Mageia-webteam] Mageia article in Linux Journal
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1135">[ date ]</a>
+ <a href="thread.html#1135">[ thread ]</a>
+ <a href="subject.html#1135">[ subject ]</a>
+ <a href="author.html#1135">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-06-14 16:47:50 CEST ---
+And bug #1797 comment #2
+
+bugs 1797 and 1798 are related
+
+--
+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="001132.html">[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001137.html">[Mageia-webteam] Mageia article in Linux Journal
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1135">[ date ]</a>
+ <a href="thread.html#1135">[ thread ]</a>
+ <a href="subject.html#1135">[ subject ]</a>
+ <a href="author.html#1135">[ 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-June/001136.html b/zarb-ml/mageia-webteam/2011-June/001136.html
new file mode 100644
index 000000000..2eb007bcc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001136.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110614134236.883A7430AB%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="001134.html">
+ <LINK REL="Next" HREF="001138.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110614134236.883A7430AB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 15:42:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001134.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001138.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1136">[ date ]</a>
+ <a href="thread.html#1136">[ thread ]</a>
+ <a href="subject.html#1136">[ subject ]</a>
+ <a href="author.html#1136">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</A>
+
+--- Comment #5 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-14 17:42:36 CEST ---
+Alos, one reason why the livecd take so much visual space is because there is
+lots of choice indeed, and there is some information overload ( there is 8 cds
+to choose from :/ ). But apart from adding a more dynamic layout ( which I do
+not linke much ), I have no others idea.
+
+--
+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="001134.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001138.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1136">[ date ]</a>
+ <a href="thread.html#1136">[ thread ]</a>
+ <a href="subject.html#1136">[ subject ]</a>
+ <a href="author.html#1136">[ 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-June/001137.html b/zarb-ml/mageia-webteam/2011-June/001137.html
new file mode 100644
index 000000000..e2b6431c1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001137.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia article in Linux Journal
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20article%20in%20Linux%20Journal&In-Reply-To=%3CBANLkTimMc-E_Jq2vQQVEa3UBdhEzraxmnQ%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="001135.html">
+ <LINK REL="Next" HREF="001139.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia article in Linux Journal</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20article%20in%20Linux%20Journal&In-Reply-To=%3CBANLkTimMc-E_Jq2vQQVEa3UBdhEzraxmnQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia article in Linux Journal">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Jun 14 15:48:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001135.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001139.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1137">[ date ]</a>
+ <a href="thread.html#1137">[ thread ]</a>
+ <a href="subject.html#1137">[ subject ]</a>
+ <a href="author.html#1137">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="http://www.linuxjournal.com/content/spotlight-linux-mageia-1">http://www.linuxjournal.com/content/spotlight-linux-mageia-1</A>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110614/7d9e46fd/attachment.html&gt;
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001135.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001139.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1137">[ date ]</a>
+ <a href="thread.html#1137">[ thread ]</a>
+ <a href="subject.html#1137">[ subject ]</a>
+ <a href="author.html#1137">[ 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-June/001138.html b/zarb-ml/mageia-webteam/2011-June/001138.html
new file mode 100644
index 000000000..087954d27
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001138.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110614164229.AD4E743093%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="001136.html">
+ <LINK REL="Next" HREF="001173.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110614164229.AD4E743093%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 14 18:42:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001136.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001173.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1138">[ date ]</a>
+ <a href="thread.html#1138">[ thread ]</a>
+ <a href="subject.html#1138">[ subject ]</a>
+ <a href="author.html#1138">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</A>
+
+--- Comment #6 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-14 20:42:29 CEST ---
+(FWIW, I don't see a problem with choosing a Live CD from the available 8, the
+Language criteria is obvious, I think).
+
+--
+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="001136.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001173.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1138">[ date ]</a>
+ <a href="thread.html#1138">[ thread ]</a>
+ <a href="subject.html#1138">[ subject ]</a>
+ <a href="author.html#1138">[ 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-June/001139.html b/zarb-ml/mageia-webteam/2011-June/001139.html
new file mode 100644
index 000000000..5994cc0a7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001139.html
@@ -0,0 +1,140 @@
+<!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=%3C20110614220004.5B8A2430DA%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="001137.html">
+ <LINK REL="Next" HREF="001140.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=%3C20110614220004.5B8A2430DA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 15 00:00:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001137.html">[Mageia-webteam] Mageia article in Linux Journal
+</A></li>
+ <LI>Next message: <A HREF="001140.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1139">[ date ]</a>
+ <a href="thread.html#1139">[ thread ]</a>
+ <a href="subject.html#1139">[ subject ]</a>
+ <a href="author.html#1139">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001137.html">[Mageia-webteam] Mageia article in Linux Journal
+</A></li>
+ <LI>Next message: <A HREF="001140.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1139">[ date ]</a>
+ <a href="thread.html#1139">[ thread ]</a>
+ <a href="subject.html#1139">[ subject ]</a>
+ <a href="author.html#1139">[ 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-June/001140.html b/zarb-ml/mageia-webteam/2011-June/001140.html
new file mode 100644
index 000000000..3be444813
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001140.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308159740.21953.9.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001139.html">
+ <LINK REL="Next" HREF="001141.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308159740.21953.9.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">misc at zarb.org
+ </A><BR>
+ <I>Wed Jun 15 19:42:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001139.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001141.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1140">[ date ]</a>
+ <a href="thread.html#1140">[ thread ]</a>
+ <a href="subject.html#1140">[ subject ]</a>
+ <a href="author.html#1140">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+I have finally uploaded the mediawiki module, and tested on a vm.
+
+For now, there is :
+- no ldap integration
+- no sql database creation ( that's the difficult part :/ )
+- no config directory removal
+- no css
+- no integration for the admin account creation
+
+I will work on it later, but there is some questions that should be
+answered now :
+
+- mediawiki ask the license of the wiki pages, what should be done ( ie,
+how do we decide ? ). There is gfdl ( 2 versions ), public domain,
+Creative common or no mention of the license. Since there is some
+implication about the cut and paste from others wiki, it may be quite
+complex.
+
+- mediawiki also let us change the logo. I guess that we should change
+it, but I do not have one, so I guess we should see with artwork team
+
+- the same goes regarding skins. Does someone has plan to change the
+skin, and then I should start to look how it would integrate, or can it
+be delayed for now ?
+
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001139.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001141.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1140">[ date ]</a>
+ <a href="thread.html#1140">[ thread ]</a>
+ <a href="subject.html#1140">[ subject ]</a>
+ <a href="author.html#1140">[ 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-June/001141.html b/zarb-ml/mageia-webteam/2011-June/001141.html
new file mode 100644
index 000000000..537bb17d2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001141.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C201106152105.17471.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001140.html">
+ <LINK REL="Next" HREF="001145.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C201106152105.17471.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Wed Jun 15 21:05:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001140.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001145.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1141">[ date ]</a>
+ <a href="thread.html#1141">[ thread ]</a>
+ <a href="subject.html#1141">[ subject ]</a>
+ <a href="author.html#1141">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op woensdag 15 juni 2011 19:42:20 schreef Michael Scherer:
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> I have finally uploaded the mediawiki module, and tested on a vm.
+</I>&gt;<i>
+</I>&gt;<i> For now, there is :
+</I>&gt;<i> - no ldap integration
+</I>&gt;<i> - no sql database creation ( that's the difficult part :/ )
+</I>&gt;<i> - no config directory removal
+</I>&gt;<i> - no css
+</I>&gt;<i> - no integration for the admin account creation
+</I>&gt;<i>
+</I>&gt;<i> I will work on it later, but there is some questions that should be
+</I>&gt;<i> answered now :
+</I>&gt;<i>
+</I>&gt;<i> - mediawiki ask the license of the wiki pages, what should be done ( ie,
+</I>&gt;<i> how do we decide ? ). There is gfdl ( 2 versions ), public domain,
+</I>&gt;<i> Creative common or no mention of the license. Since there is some
+</I>&gt;<i> implication about the cut and paste from others wiki, it may be quite
+</I>&gt;<i> complex.
+</I>&gt;<i>
+</I>&gt;<i> - mediawiki also let us change the logo. I guess that we should change
+</I>&gt;<i> it, but I do not have one, so I guess we should see with artwork team
+</I>&gt;<i>
+</I>&gt;<i> - the same goes regarding skins. Does someone has plan to change the
+</I>&gt;<i> skin, and then I should start to look how it would integrate, or can it
+</I>&gt;<i> be delayed for now ?
+</I>
+suggestion: perhaps the sql database creation can be triggered from ldap?
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001140.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001145.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1141">[ date ]</a>
+ <a href="thread.html#1141">[ thread ]</a>
+ <a href="subject.html#1141">[ subject ]</a>
+ <a href="author.html#1141">[ 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-June/001142.html b/zarb-ml/mageia-webteam/2011-June/001142.html
new file mode 100644
index 000000000..acb1f0c92
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001142.html
@@ -0,0 +1,150 @@
+<!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=%3C20110615220003.AD93B4311A%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="001251.html">
+ <LINK REL="Next" HREF="001143.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=%3C20110615220003.AD93B4311A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 16 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001251.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001143.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1142">[ date ]</a>
+ <a href="thread.html#1142">[ thread ]</a>
+ <a href="subject.html#1142">[ subject ]</a>
+ <a href="author.html#1142">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001251.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001143.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1142">[ date ]</a>
+ <a href="thread.html#1142">[ thread ]</a>
+ <a href="subject.html#1142">[ subject ]</a>
+ <a href="author.html#1142">[ 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-June/001143.html b/zarb-ml/mageia-webteam/2011-June/001143.html
new file mode 100644
index 000000000..3e5b0908f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001143.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+ </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%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110615220948.18C9E43111%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="001142.html">
+ <LINK REL="Next" HREF="001144.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110615220948.18C9E43111%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 16 00:09:48 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001142.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001144.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1143">[ date ]</a>
+ <a href="thread.html#1143">[ thread ]</a>
+ <a href="subject.html#1143">[ subject ]</a>
+ <a href="author.html#1143">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+
+--- Comment #2 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-16 00:09:48 CEST ---
+Hello, any news about this one?
+
+--
+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="001142.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001144.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1143">[ date ]</a>
+ <a href="thread.html#1143">[ thread ]</a>
+ <a href="subject.html#1143">[ subject ]</a>
+ <a href="author.html#1143">[ 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-June/001144.html b/zarb-ml/mageia-webteam/2011-June/001144.html
new file mode 100644
index 000000000..67fef460e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001144.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+ </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%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110615232633.29EA743116%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="001143.html">
+ <LINK REL="Next" HREF="001148.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110615232633.29EA743116%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 16 01:26:33 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001143.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="001148.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1144">[ date ]</a>
+ <a href="thread.html#1144">[ thread ]</a>
+ <a href="subject.html#1144">[ subject ]</a>
+ <a href="author.html#1144">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</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 #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-16 03:26:33 CEST ---
+Setting the favicon should be easy. The problem is having a different favicon
+per site.
+
+--
+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="001143.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="001148.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1144">[ date ]</a>
+ <a href="thread.html#1144">[ thread ]</a>
+ <a href="subject.html#1144">[ subject ]</a>
+ <a href="author.html#1144">[ 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-June/001145.html b/zarb-ml/mageia-webteam/2011-June/001145.html
new file mode 100644
index 000000000..3d4a4962f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001145.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTinrinvGnt4EXeCsyuBK3h8OChK0bA%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="001141.html">
+ <LINK REL="Next" HREF="001146.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTinrinvGnt4EXeCsyuBK3h8OChK0bA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Jun 16 01:41:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001141.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001146.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1145">[ date ]</a>
+ <a href="thread.html#1145">[ thread ]</a>
+ <a href="subject.html#1145">[ subject ]</a>
+ <a href="author.html#1145">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/15 Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;:
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> I have finally uploaded the mediawiki module, and tested on a vm.
+</I>&gt;<i>
+</I>&gt;<i> For now, there is :
+</I>&gt;<i> - no ldap integration
+</I>&gt;<i> - no sql database creation ( that's the difficult part :/ )
+</I>&gt;<i> - no config directory removal
+</I>&gt;<i> - no css
+</I>&gt;<i> - no integration for the admin account creation
+</I>&gt;<i>
+</I>&gt;<i> I will work on it later, but there is some questions that should be
+</I>&gt;<i> answered now :
+</I>&gt;<i>
+</I>&gt;<i> - mediawiki ask the license of the wiki pages, what should be done ( ie,
+</I>&gt;<i> how do we decide ? ). There is gfdl ( 2 versions ), public domain,
+</I>&gt;<i> Creative common or no mention of the license. Since there is some
+</I>&gt;<i> implication about the cut and paste from others wiki, it may be quite
+</I>&gt;<i> complex.
+</I>&gt;<i>
+</I>&gt;<i> - mediawiki also let us change the logo. I guess that we should change
+</I>&gt;<i> it, but I do not have one, so I guess we should see with artwork team
+</I>&gt;<i>
+</I>&gt;<i> - the same goes regarding skins. Does someone has plan to change the
+</I>&gt;<i> skin, and then I should start to look how it would integrate, or can it
+</I>&gt;<i> be delayed for now ?
+</I>
+Adding to the questions:
+ - multilanguage setup
+
+--
+wobo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001141.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001146.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1145">[ date ]</a>
+ <a href="thread.html#1145">[ thread ]</a>
+ <a href="subject.html#1145">[ subject ]</a>
+ <a href="author.html#1145">[ 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-June/001146.html b/zarb-ml/mageia-webteam/2011-June/001146.html
new file mode 100644
index 000000000..76828b1be
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001146.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308183324.21953.27.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001145.html">
+ <LINK REL="Next" HREF="001147.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308183324.21953.27.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">misc at zarb.org
+ </A><BR>
+ <I>Thu Jun 16 02:15:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001145.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001147.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1146">[ date ]</a>
+ <a href="thread.html#1146">[ thread ]</a>
+ <a href="subject.html#1146">[ subject ]</a>
+ <a href="author.html#1146">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 16 juin 2011 &#224; 01:41 +0200, Wolfgang Bornath a &#233;crit :
+
+&gt;<i> Adding to the questions:
+</I>&gt;<i> - multilanguage setup
+</I>
+What do you mean by &quot;multilanguage setup&quot; ?
+
+If this &quot;declaring multiple wiki with &quot;, this is already done.
+
+If this is &quot;taking care of the proper configuration to have it
+translated&quot;, this is also already done.
+
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001145.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001147.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1146">[ date ]</a>
+ <a href="thread.html#1146">[ thread ]</a>
+ <a href="subject.html#1146">[ subject ]</a>
+ <a href="author.html#1146">[ 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-June/001147.html b/zarb-ml/mageia-webteam/2011-June/001147.html
new file mode 100644
index 000000000..b625804d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001147.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTi%3De6%2BOCW-Q%3DuHd%2BV9n4z_dnKFV1dg%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="001146.html">
+ <LINK REL="Next" HREF="001149.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTi%3De6%2BOCW-Q%3DuHd%2BV9n4z_dnKFV1dg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Jun 16 02:36:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001146.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001149.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1147">[ date ]</a>
+ <a href="thread.html#1147">[ thread ]</a>
+ <a href="subject.html#1147">[ subject ]</a>
+ <a href="author.html#1147">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/16 Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;:
+&gt;<i> Le jeudi 16 juin 2011 &#224; 01:41 +0200, Wolfgang Bornath a &#233;crit :
+</I>&gt;<i>
+</I>&gt;&gt;<i> Adding to the questions:
+</I>&gt;&gt;<i> &#160;- multilanguage setup
+</I>&gt;<i>
+</I>&gt;<i> What do you mean by &quot;multilanguage setup&quot; ?
+</I>&gt;<i>
+</I>&gt;<i> If this &quot;declaring multiple wiki with &quot;, this is already done.
+</I>&gt;<i>
+</I>&gt;<i> If this is &quot;taking care of the proper configuration to have it
+</I>&gt;<i> translated&quot;, this is also already done.
+</I>
+Hmm, what I mean is a setup like in the Mandriva wiki. Is this what
+you mean by &quot;declaring multiple wiki with &quot;?
+
+--
+wobo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001146.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001149.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1147">[ date ]</a>
+ <a href="thread.html#1147">[ thread ]</a>
+ <a href="subject.html#1147">[ subject ]</a>
+ <a href="author.html#1147">[ 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-June/001148.html b/zarb-ml/mageia-webteam/2011-June/001148.html
new file mode 100644
index 000000000..f65bb5b31
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001148.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+ </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%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110616023041.259154311C%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="001144.html">
+ <LINK REL="Next" HREF="001152.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110616023041.259154311C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 16 04:30:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001144.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="001152.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1148">[ date ]</a>
+ <a href="thread.html#1148">[ thread ]</a>
+ <a href="subject.html#1148">[ subject ]</a>
+ <a href="author.html#1148">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+
+--- Comment #4 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-16 06:30:41 CEST ---
+I'd use the one currently used in www.mageia.org and bugzilla, until there're
+available variations. (without a favicon.ico the forums looks &quot;unfinished&quot;
+somehow).
+
+--
+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="001144.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="001152.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1148">[ date ]</a>
+ <a href="thread.html#1148">[ thread ]</a>
+ <a href="subject.html#1148">[ subject ]</a>
+ <a href="author.html#1148">[ 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-June/001149.html b/zarb-ml/mageia-webteam/2011-June/001149.html
new file mode 100644
index 000000000..fcad627a6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001149.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308219894.11316.0.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001147.html">
+ <LINK REL="Next" HREF="001150.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308219894.11316.0.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">misc at zarb.org
+ </A><BR>
+ <I>Thu Jun 16 12:24:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001147.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001150.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1149">[ date ]</a>
+ <a href="thread.html#1149">[ thread ]</a>
+ <a href="subject.html#1149">[ subject ]</a>
+ <a href="author.html#1149">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 16 juin 2011 &#224; 02:36 +0200, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/6/16 Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;:
+</I>&gt;<i> &gt; Le jeudi 16 juin 2011 &#224; 01:41 +0200, Wolfgang Bornath a &#233;crit :
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt;&gt; Adding to the questions:
+</I>&gt;<i> &gt;&gt; - multilanguage setup
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; What do you mean by &quot;multilanguage setup&quot; ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; If this &quot;declaring multiple wiki with &quot;, this is already done.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; If this is &quot;taking care of the proper configuration to have it
+</I>&gt;<i> &gt; translated&quot;, this is also already done.
+</I>&gt;<i>
+</I>&gt;<i> Hmm, what I mean is a setup like in the Mandriva wiki. Is this what
+</I>&gt;<i> you mean by &quot;declaring multiple wiki with &quot;?
+</I>
+Yes.
+The whole system is planned to be automated as much as possible.
+IE, adding a new wiki ( once the whole process is debugged ) would be
+adding 1 line to puppet.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001147.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001150.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1149">[ date ]</a>
+ <a href="thread.html#1149">[ thread ]</a>
+ <a href="subject.html#1149">[ subject ]</a>
+ <a href="author.html#1149">[ 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-June/001150.html b/zarb-ml/mageia-webteam/2011-June/001150.html
new file mode 100644
index 000000000..9f57dbac3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001150.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTimu6a7VSaYM8BmNwfRup7eHHDmyDA%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="001149.html">
+ <LINK REL="Next" HREF="001151.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTimu6a7VSaYM8BmNwfRup7eHHDmyDA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Jun 16 13:13:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001149.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001151.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1150">[ date ]</a>
+ <a href="thread.html#1150">[ thread ]</a>
+ <a href="subject.html#1150">[ subject ]</a>
+ <a href="author.html#1150">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/16 Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;:
+&gt;<i> Le jeudi 16 juin 2011 &#224; 02:36 +0200, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> 2011/6/16 Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;:
+</I>&gt;&gt;<i> &gt; Le jeudi 16 juin 2011 &#224; 01:41 +0200, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt;&gt; Adding to the questions:
+</I>&gt;&gt;<i> &gt;&gt; &#160;- multilanguage setup
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; What do you mean by &quot;multilanguage setup&quot; ?
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; If this &quot;declaring multiple wiki with &quot;, this is already done.
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; If this is &quot;taking care of the proper configuration to have it
+</I>&gt;&gt;<i> &gt; translated&quot;, this is also already done.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Hmm, what I mean is a setup like in the Mandriva wiki. Is this what
+</I>&gt;&gt;<i> you mean by &quot;declaring multiple wiki with &quot;?
+</I>&gt;<i>
+</I>&gt;<i> Yes.
+</I>&gt;<i> The whole system is planned to be automated as much as possible.
+</I>&gt;<i> IE, adding a new wiki ( once the whole process is debugged ) would be
+</I>&gt;<i> adding 1 line to puppet.
+</I>
+Very nice, indeed!
+The icing on the cake would then be links between articles with the
+same contents but different languages (like the macro (or whatever it
+is) in the Mandriva wiki) But I guess, this is too far into details
+now.
+
+--
+wobo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001149.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001151.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1150">[ date ]</a>
+ <a href="thread.html#1150">[ thread ]</a>
+ <a href="subject.html#1150">[ subject ]</a>
+ <a href="author.html#1150">[ 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-June/001151.html b/zarb-ml/mageia-webteam/2011-June/001151.html
new file mode 100644
index 000000000..c2094696f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001151.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308224154.11316.25.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001150.html">
+ <LINK REL="Next" HREF="001154.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308224154.11316.25.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">misc at zarb.org
+ </A><BR>
+ <I>Thu Jun 16 13:35:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001150.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001154.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1151">[ date ]</a>
+ <a href="thread.html#1151">[ thread ]</a>
+ <a href="subject.html#1151">[ subject ]</a>
+ <a href="author.html#1151">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 16 juin 2011 &#224; 13:13 +0200, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/6/16 Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;:
+</I>&gt;<i> &gt; Le jeudi 16 juin 2011 &#224; 02:36 +0200, Wolfgang Bornath a &#233;crit :
+</I>&gt;<i> &gt;&gt; 2011/6/16 Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;:
+</I>&gt;<i> &gt;&gt; &gt; Le jeudi 16 juin 2011 &#224; 01:41 +0200, Wolfgang Bornath a &#233;crit :
+</I>&gt;<i> &gt;&gt; &gt;
+</I>&gt;<i> &gt;&gt; &gt;&gt; Adding to the questions:
+</I>&gt;<i> &gt;&gt; &gt;&gt; - multilanguage setup
+</I>&gt;<i> &gt;&gt; &gt;
+</I>&gt;<i> &gt;&gt; &gt; What do you mean by &quot;multilanguage setup&quot; ?
+</I>&gt;<i> &gt;&gt; &gt;
+</I>&gt;<i> &gt;&gt; &gt; If this &quot;declaring multiple wiki with &quot;, this is already done.
+</I>&gt;<i> &gt;&gt; &gt;
+</I>&gt;<i> &gt;&gt; &gt; If this is &quot;taking care of the proper configuration to have it
+</I>&gt;<i> &gt;&gt; &gt; translated&quot;, this is also already done.
+</I>&gt;<i> &gt;&gt;
+</I>&gt;<i> &gt;&gt; Hmm, what I mean is a setup like in the Mandriva wiki. Is this what
+</I>&gt;<i> &gt;&gt; you mean by &quot;declaring multiple wiki with &quot;?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Yes.
+</I>&gt;<i> &gt; The whole system is planned to be automated as much as possible.
+</I>&gt;<i> &gt; IE, adding a new wiki ( once the whole process is debugged ) would be
+</I>&gt;<i> &gt; adding 1 line to puppet.
+</I>&gt;<i>
+</I>&gt;<i> Very nice, indeed!
+</I>&gt;<i> The icing on the cake would then be links between articles with the
+</I>&gt;<i> same contents but different languages (like the macro (or whatever it
+</I>&gt;<i> is) in the Mandriva wiki) But I guess, this is too far into details
+</I>&gt;<i> now.
+</I>
+It has to be done manually, or we have to renounce to translation of
+wiki page name.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001150.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001154.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1151">[ date ]</a>
+ <a href="thread.html#1151">[ thread ]</a>
+ <a href="subject.html#1151">[ subject ]</a>
+ <a href="author.html#1151">[ 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-June/001152.html b/zarb-ml/mageia-webteam/2011-June/001152.html
new file mode 100644
index 000000000..b52768ff4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001152.html
@@ -0,0 +1,142 @@
+<!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=%3C20110616220003.1171742857%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="001148.html">
+ <LINK REL="Next" HREF="001153.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=%3C20110616220003.1171742857%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 17 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001148.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="001153.html">[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1152">[ date ]</a>
+ <a href="thread.html#1152">[ thread ]</a>
+ <a href="subject.html#1152">[ subject ]</a>
+ <a href="author.html#1152">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001148.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="001153.html">[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1152">[ date ]</a>
+ <a href="thread.html#1152">[ thread ]</a>
+ <a href="subject.html#1152">[ subject ]</a>
+ <a href="author.html#1152">[ 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-June/001153.html b/zarb-ml/mageia-webteam/2011-June/001153.html
new file mode 100644
index 000000000..e1950784f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001153.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results
+ </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%201830%5D%20%5BNew%5D%20add%20a%20column%20keywords%20in%20the%0A%09search%20results&In-Reply-To=%3Cbug-1830-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="001152.html">
+ <LINK REL="Next" HREF="001155.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201830%5D%20%5BNew%5D%20add%20a%20column%20keywords%20in%20the%0A%09search%20results&In-Reply-To=%3Cbug-1830-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 17 02:39:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001152.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001155.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1153">[ date ]</a>
+ <a href="thread.html#1153">[ thread ]</a>
+ <a href="subject.html#1153">[ subject ]</a>
+ <a href="author.html#1153">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1830">https://bugs.mageia.org/show_bug.cgi?id=1830</A>
+
+ Summary: add a column keywords in the search results
+ 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">manuel at hiebel.eu</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Can we add a column keywords in the result of research or in the browsing of
+bugzilla?
+
+see the difference between <A HREF="https://qa.mandriva.com/buglist.cgi?quicksearch=iso">https://qa.mandriva.com/buglist.cgi?quicksearch=iso</A>
+and <A HREF="https://bugs.mageia.org/buglist.cgi?quicksearch=iso">https://bugs.mageia.org/buglist.cgi?quicksearch=iso</A>
+
+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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001152.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001155.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1153">[ date ]</a>
+ <a href="thread.html#1153">[ thread ]</a>
+ <a href="subject.html#1153">[ subject ]</a>
+ <a href="author.html#1153">[ 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-June/001154.html b/zarb-ml/mageia-webteam/2011-June/001154.html
new file mode 100644
index 000000000..97068fdef
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001154.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTinJS6RKBuKj%3DciNG0nMSHrrfqEV_w%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="001151.html">
+ <LINK REL="Next" HREF="001163.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTinJS6RKBuKj%3DciNG0nMSHrrfqEV_w%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">rda at mageia.org
+ </A><BR>
+ <I>Fri Jun 17 10:23:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001151.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001163.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1154">[ date ]</a>
+ <a href="thread.html#1154">[ thread ]</a>
+ <a href="subject.html#1154">[ subject ]</a>
+ <a href="author.html#1154">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Jun 15, 2011 at 19:42, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> I have finally uploaded the mediawiki module, and tested on a vm.
+</I>
+Cool!
+
+&gt;<i> - mediawiki ask the license of the wiki pages, what should be done ( ie,
+</I>&gt;<i> how do we decide ? ). There is gfdl ( 2 versions ), public domain,
+</I>&gt;<i> Creative common or no mention of the license. Since there is some
+</I>&gt;<i> implication about the cut and paste from others wiki, it may be quite
+</I>&gt;<i> complex.
+</I>
+CC-By-SA (was what was used on MDV wiki, what is used now on our
+dokuwiki, there must be a reference somewhere on some list).
+
+&gt;<i> - mediawiki also let us change the logo. I guess that we should change
+</I>&gt;<i> it, but I do not have one, so I guess we should see with artwork team
+</I>
+Yep.
+
+&gt;<i> - the same goes regarding skins. Does someone has plan to change the
+</I>&gt;<i> skin, and then I should start to look how it would integrate, or can it
+</I>&gt;<i> be delayed for now ?
+</I>
+Artwork or webteam, but I think we should keep this non-blocking an
+issue; it's a matter of a later patch.
+
+Romain
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001151.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001163.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1154">[ date ]</a>
+ <a href="thread.html#1154">[ thread ]</a>
+ <a href="subject.html#1154">[ subject ]</a>
+ <a href="author.html#1154">[ 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-June/001155.html b/zarb-ml/mageia-webteam/2011-June/001155.html
new file mode 100644
index 000000000..6bf5c3e85
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001155.html
@@ -0,0 +1,143 @@
+<!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=%3C20110617220004.4C8CE4318C%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="001153.html">
+ <LINK REL="Next" HREF="001156.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=%3C20110617220004.4C8CE4318C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 18 00:00:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001153.html">[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results
+</A></li>
+ <LI>Next message: <A HREF="001156.html">[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1155">[ date ]</a>
+ <a href="thread.html#1155">[ thread ]</a>
+ <a href="subject.html#1155">[ subject ]</a>
+ <a href="author.html#1155">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001153.html">[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results
+</A></li>
+ <LI>Next message: <A HREF="001156.html">[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1155">[ date ]</a>
+ <a href="thread.html#1155">[ thread ]</a>
+ <a href="subject.html#1155">[ subject ]</a>
+ <a href="author.html#1155">[ 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-June/001156.html b/zarb-ml/mageia-webteam/2011-June/001156.html
new file mode 100644
index 000000000..f47bafa78
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001156.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ </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%201842%5D%20%5BNew%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%0A%20should%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3Cbug-1842-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="001155.html">
+ <LINK REL="Next" HREF="001157.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201842%5D%20%5BNew%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%0A%20should%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3Cbug-1842-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 18 01:12:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001155.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001157.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1156">[ date ]</a>
+ <a href="thread.html#1156">[ thread ]</a>
+ <a href="subject.html#1156">[ subject ]</a>
+ <a href="author.html#1156">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+
+ Summary: &quot;List of lists&quot; in ml.mageia.org should be &quot;List of
+ mailing lists&quot; or &quot;Show all mailing lists&quot;
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">ahmadsamir3891 at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+
+
+The string &quot;List of lists&quot; in <A HREF="https://ml.mageia.org">https://ml.mageia.org</A> should be &quot;List of mailing
+lists&quot; or &quot;Show all mailing lists&quot;, 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="001155.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001157.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1156">[ date ]</a>
+ <a href="thread.html#1156">[ thread ]</a>
+ <a href="subject.html#1156">[ subject ]</a>
+ <a href="author.html#1156">[ 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-June/001157.html b/zarb-ml/mageia-webteam/2011-June/001157.html
new file mode 100644
index 000000000..e71f2fd70
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001157.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ </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%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618001400.6240543186%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="001156.html">
+ <LINK REL="Next" HREF="001158.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618001400.6240543186%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 18 02:14:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001156.html">[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001158.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1157">[ date ]</a>
+ <a href="thread.html#1157">[ thread ]</a>
+ <a href="subject.html#1157">[ subject ]</a>
+ <a href="author.html#1157">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Severity|normal |enhancement
+ Priority|Normal |Low
+ 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-06-18 02:13:58 CEST ---
+That's unfortunatey a upstream supplied template. We can ovveride it, but I do
+not know how it would work with the translation system ( likely not as I wish
+).
+
+--
+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="001156.html">[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001158.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1157">[ date ]</a>
+ <a href="thread.html#1157">[ thread ]</a>
+ <a href="subject.html#1157">[ subject ]</a>
+ <a href="author.html#1157">[ 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-June/001158.html b/zarb-ml/mageia-webteam/2011-June/001158.html
new file mode 100644
index 000000000..c193203d9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001158.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ </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%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618053359.A50DC43189%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="001157.html">
+ <LINK REL="Next" HREF="001159.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618053359.A50DC43189%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 18 07:33:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001157.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001159.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1158">[ date ]</a>
+ <a href="thread.html#1158">[ thread ]</a>
+ <a href="subject.html#1158">[ subject ]</a>
+ <a href="author.html#1158">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+
+--- Comment #2 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-06-18 09:33:59 CEST ---
+I didn't consider the translations angle, probably easier leaving it as is.
+
+--
+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="001157.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001159.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1158">[ date ]</a>
+ <a href="thread.html#1158">[ thread ]</a>
+ <a href="subject.html#1158">[ subject ]</a>
+ <a href="author.html#1158">[ 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-June/001159.html b/zarb-ml/mageia-webteam/2011-June/001159.html
new file mode 100644
index 000000000..8009cdcd7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001159.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ </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%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618084725.7DCEB43191%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="001158.html">
+ <LINK REL="Next" HREF="001160.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618084725.7DCEB43191%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 18 10:47:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001158.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001160.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1159">[ date ]</a>
+ <a href="thread.html#1159">[ thread ]</a>
+ <a href="subject.html#1159">[ subject ]</a>
+ <a href="author.html#1159">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #3 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-06-18 12:47:25 CEST ---
+Since the only available translation is French, I think - without wanting to
+hurt the French's feelings - we can safely ignore the translation angle.
+Or is there just no other language installed out of some unknown reason?
+
+--
+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="001158.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001160.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1159">[ date ]</a>
+ <a href="thread.html#1159">[ thread ]</a>
+ <a href="subject.html#1159">[ subject ]</a>
+ <a href="author.html#1159">[ 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-June/001160.html b/zarb-ml/mageia-webteam/2011-June/001160.html
new file mode 100644
index 000000000..a2a58c1c0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001160.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ </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%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618110813.167C943192%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="001159.html">
+ <LINK REL="Next" HREF="001161.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618110813.167C943192%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 18 13:08:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001159.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001161.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1160">[ date ]</a>
+ <a href="thread.html#1160">[ thread ]</a>
+ <a href="subject.html#1160">[ subject ]</a>
+ <a href="author.html#1160">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+
+--- Comment #4 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-18 13:08:13 CEST ---
+People have asked to install other translations in the past, and french got
+installed just to test.
+But the problem is that installing translaton requires to install locales-XX
+for each language, which in turn could have other impacts ( even if the impact
+may be low, after some reflexion ).
+
+And there is the issue of translating templates.
+
+So we can decide to not translate anything ( which I have no problem with
+personnally, but some people may not like it and it will make the interface
+harder to use for those that do not speak english )
+Or find someone to investigate ( and also enhance the layout of the website,
+etc ).
+
+In the mean time, I will remove the french interface ( and see if someone
+complain ).
+
+--
+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="001159.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001161.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1160">[ date ]</a>
+ <a href="thread.html#1160">[ thread ]</a>
+ <a href="subject.html#1160">[ subject ]</a>
+ <a href="author.html#1160">[ 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-June/001161.html b/zarb-ml/mageia-webteam/2011-June/001161.html
new file mode 100644
index 000000000..c626e23f1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001161.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ </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%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618111945.7AC074318E%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="001160.html">
+ <LINK REL="Next" HREF="001162.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618111945.7AC074318E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 18 13:19:45 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001160.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001162.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1161">[ date ]</a>
+ <a href="thread.html#1161">[ thread ]</a>
+ <a href="subject.html#1161">[ subject ]</a>
+ <a href="author.html#1161">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+
+--- Comment #5 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-06-18 15:19:45 CEST ---
+Ah I see. I personally don't need translations as well.
+Just one more thought about it. All lists except the i18n-&lt;lang&gt; lists are in
+English and the i18n folks should have no problem with the English language, so
+I have to wonder if there are people not speaking English wanting to register
+on one of the mls.
+
+--
+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="001160.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001162.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1161">[ date ]</a>
+ <a href="thread.html#1161">[ thread ]</a>
+ <a href="subject.html#1161">[ subject ]</a>
+ <a href="author.html#1161">[ 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-June/001162.html b/zarb-ml/mageia-webteam/2011-June/001162.html
new file mode 100644
index 000000000..0987dab80
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001162.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ </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%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618133832.4003143199%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="001161.html">
+ <LINK REL="Next" HREF="001164.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20110618133832.4003143199%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 18 15:38:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001161.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001164.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1162">[ date ]</a>
+ <a href="thread.html#1162">[ thread ]</a>
+ <a href="subject.html#1162">[ subject ]</a>
+ <a href="author.html#1162">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+
+--- Comment #6 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-18 15:38:32 CEST ---
+We cannot exclude some local ml : either users ( once there is enough of them
+and a proper structure to avoid the divide we had seen on Mandriva ) , or to
+organize events, ( once there is enough to warrant creation of a more formal
+group ).
+
+--
+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="001161.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001164.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1162">[ date ]</a>
+ <a href="thread.html#1162">[ thread ]</a>
+ <a href="subject.html#1162">[ subject ]</a>
+ <a href="author.html#1162">[ 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-June/001163.html b/zarb-ml/mageia-webteam/2011-June/001163.html
new file mode 100644
index 000000000..a9e394b0e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001163.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308405596.11316.121.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001154.html">
+ <LINK REL="Next" HREF="001175.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308405596.11316.121.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">misc at zarb.org
+ </A><BR>
+ <I>Sat Jun 18 15:59:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001154.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001175.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1163">[ date ]</a>
+ <a href="thread.html#1163">[ thread ]</a>
+ <a href="subject.html#1163">[ subject ]</a>
+ <a href="author.html#1163">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le vendredi 17 juin 2011 &#224; 10:23 +0200, Romain d'Alverny a &#233;crit :
+&gt;<i> On Wed, Jun 15, 2011 at 19:42, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt; I have finally uploaded the mediawiki module, and tested on a vm.
+</I>&gt;<i>
+</I>&gt;<i> Cool!
+</I>
+So now, it even automatically load the db content remotely, and I tested
+several time without trouble ( which reduce the chances of failing to
+50% once deployed in production ).
+
+Next step :
+- ldap integration ( should be easy )
+- acl ( not technically hard but more a issue on organizational level )
+- test
+- saying no to request of people wanting 45 extensions
+- create a compelling first page, as well as the structure
+- announce
+- ????
+- profit
+
+Somewhere, there should be some team creation ( like, the documentation
+team ), to bring some order into this chaos.
+
+&gt;<i> &gt; - mediawiki ask the license of the wiki pages, what should be done ( ie,
+</I>&gt;<i> &gt; how do we decide ? ). There is gfdl ( 2 versions ), public domain,
+</I>&gt;<i> &gt; Creative common or no mention of the license. Since there is some
+</I>&gt;<i> &gt; implication about the cut and paste from others wiki, it may be quite
+</I>&gt;<i> &gt; complex.
+</I>&gt;<i>
+</I>&gt;<i> CC-By-SA (was what was used on MDV wiki, what is used now on our
+</I>&gt;<i> dokuwiki, there must be a reference somewhere on some list).
+</I>
+Then, we need to either not place the cc icon, or add it to our own
+skins. For now, I will be linking their icon, but that's not nice.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001154.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001175.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1163">[ date ]</a>
+ <a href="thread.html#1163">[ thread ]</a>
+ <a href="subject.html#1163">[ subject ]</a>
+ <a href="author.html#1163">[ 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-June/001164.html b/zarb-ml/mageia-webteam/2011-June/001164.html
new file mode 100644
index 000000000..e0fc721db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001164.html
@@ -0,0 +1,142 @@
+<!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=%3C20110618220003.3AE40431A8%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="001162.html">
+ <LINK REL="Next" HREF="001165.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=%3C20110618220003.3AE40431A8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 19 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001162.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001165.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1164">[ date ]</a>
+ <a href="thread.html#1164">[ thread ]</a>
+ <a href="subject.html#1164">[ subject ]</a>
+ <a href="author.html#1164">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001162.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001165.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1164">[ date ]</a>
+ <a href="thread.html#1164">[ thread ]</a>
+ <a href="subject.html#1164">[ subject ]</a>
+ <a href="author.html#1164">[ 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-June/001165.html b/zarb-ml/mageia-webteam/2011-June/001165.html
new file mode 100644
index 000000000..25a2fa810
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001165.html
@@ -0,0 +1,142 @@
+<!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=%3C20110619220002.F0D05431D3%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="001164.html">
+ <LINK REL="Next" HREF="001166.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=%3C20110619220002.F0D05431D3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 20 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001164.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001166.html">[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1165">[ date ]</a>
+ <a href="thread.html#1165">[ thread ]</a>
+ <a href="subject.html#1165">[ subject ]</a>
+ <a href="author.html#1165">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001164.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001166.html">[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1165">[ date ]</a>
+ <a href="thread.html#1165">[ thread ]</a>
+ <a href="subject.html#1165">[ subject ]</a>
+ <a href="author.html#1165">[ 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-June/001166.html b/zarb-ml/mageia-webteam/2011-June/001166.html
new file mode 100644
index 000000000..6c2d27889
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001166.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.
+ </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%201864%5D%20%5BNew%5D%20Bugzilla%20is%20not%20accessible%20from%0A%20the%20Mageia%20webpages.&In-Reply-To=%3Cbug-1864-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="001165.html">
+ <LINK REL="Next" HREF="001167.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.</H1>
+ <B>Edward dAuvergne</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201864%5D%20%5BNew%5D%20Bugzilla%20is%20not%20accessible%20from%0A%20the%20Mageia%20webpages.&In-Reply-To=%3Cbug-1864-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 20 10:14:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001165.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001167.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1166">[ date ]</a>
+ <a href="thread.html#1166">[ thread ]</a>
+ <a href="subject.html#1166">[ subject ]</a>
+ <a href="author.html#1166">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1864">https://bugs.mageia.org/show_bug.cgi?id=1864</A>
+
+ Summary: Bugzilla is not accessible from the Mageia webpages.
+ 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">true.bugman at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem:
+
+There should be a link for Bugzilla on the main Mageia webpages.
+
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1. Go to <A HREF="http://mageia.org/en/">http://mageia.org/en/</A>
+2. Try to find Bugzilla.
+3. No links found.
+
+--
+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="001165.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001167.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1166">[ date ]</a>
+ <a href="thread.html#1166">[ thread ]</a>
+ <a href="subject.html#1166">[ subject ]</a>
+ <a href="author.html#1166">[ 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-June/001167.html b/zarb-ml/mageia-webteam/2011-June/001167.html
new file mode 100644
index 000000000..86da462d0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001167.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+ </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%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620083255.9810F431E1%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="001166.html">
+ <LINK REL="Next" HREF="001168.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620083255.9810F431E1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 20 10:32:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001166.html">[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001168.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1167">[ date ]</a>
+ <a href="thread.html#1167">[ thread ]</a>
+ <a href="subject.html#1167">[ subject ]</a>
+ <a href="author.html#1167">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1864">https://bugs.mageia.org/show_bug.cgi?id=1864</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-06-20 12:32:55 CEST ---
+We could add a link in the Support section - there is one in the Contribute
+section.
+
+But indeed, we would need to make it more obvious in a Contribute/Developer or
+Report a bug section. But this could not fit in the top global navigation, it
+belongs to a more focused place. What do you think?
+
+--
+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="001166.html">[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001168.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1167">[ date ]</a>
+ <a href="thread.html#1167">[ thread ]</a>
+ <a href="subject.html#1167">[ subject ]</a>
+ <a href="author.html#1167">[ 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-June/001168.html b/zarb-ml/mageia-webteam/2011-June/001168.html
new file mode 100644
index 000000000..ff22b54e4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001168.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+ </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%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620085203.4F1B9431E1%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="001167.html">
+ <LINK REL="Next" HREF="001169.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.</H1>
+ <B>Edward dAuvergne</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620085203.4F1B9431E1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 20 10:52:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001167.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001169.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1168">[ date ]</a>
+ <a href="thread.html#1168">[ thread ]</a>
+ <a href="subject.html#1168">[ subject ]</a>
+ <a href="author.html#1168">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1864">https://bugs.mageia.org/show_bug.cgi?id=1864</A>
+
+--- Comment #2 from Edward dAuvergne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">true.bugman at gmail.com</A>&gt; 2011-06-20 10:52:03 CEST ---
+It would be good to have it there. The most accessible website seems to be
+<A HREF="http://www.debian.org,">http://www.debian.org,</A> the link is on the front page. What about having
+submenus that drop down from the global navigation bar? It might result in
+many more bug reports being filed. I'm experienced enough with website design
+and I had to use a google search to find the bugzilla, so for new users, that
+is not very user friendly.
+
+--
+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="001167.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001169.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1168">[ date ]</a>
+ <a href="thread.html#1168">[ thread ]</a>
+ <a href="subject.html#1168">[ subject ]</a>
+ <a href="author.html#1168">[ 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-June/001169.html b/zarb-ml/mageia-webteam/2011-June/001169.html
new file mode 100644
index 000000000..a7a90c3c7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001169.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+ </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%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620085919.E337D431D2%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="001168.html">
+ <LINK REL="Next" HREF="001170.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620085919.E337D431D2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 20 10:59:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001168.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001170.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1169">[ date ]</a>
+ <a href="thread.html#1169">[ thread ]</a>
+ <a href="subject.html#1169">[ subject ]</a>
+ <a href="author.html#1169">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1864">https://bugs.mageia.org/show_bug.cgi?id=1864</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-06-20 12:59:20 CEST ---
+It's a whole work in progress thing (and many more bug reports filed is not
+necessarily what we are aiming for - it's rather more good bug reports - but
+that doesn't prevent accessibility, indeed).
+
+Drop down from the nav is cool, if done right (Mozilla's way is nice) and if
+the website structure in the nav is consistent (and we're not there yet). Help
+is very much welcome (<A HREF="http://mageia.org/wiki/doku.php?id=web:website">http://mageia.org/wiki/doku.php?id=web:website</A> was the
+draft several months ago).
+
+--
+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="001168.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001170.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1169">[ date ]</a>
+ <a href="thread.html#1169">[ thread ]</a>
+ <a href="subject.html#1169">[ subject ]</a>
+ <a href="author.html#1169">[ 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-June/001170.html b/zarb-ml/mageia-webteam/2011-June/001170.html
new file mode 100644
index 000000000..ea5c8e83d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001170.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+ </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%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620092228.E1F92431E1%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="001169.html">
+ <LINK REL="Next" HREF="001171.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.</H1>
+ <B>Edward dAuvergne</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620092228.E1F92431E1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 20 11:22:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001169.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001171.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1170">[ date ]</a>
+ <a href="thread.html#1170">[ thread ]</a>
+ <a href="subject.html#1170">[ subject ]</a>
+ <a href="author.html#1170">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1864">https://bugs.mageia.org/show_bug.cgi?id=1864</A>
+
+--- Comment #4 from Edward dAuvergne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">true.bugman at gmail.com</A>&gt; 2011-06-20 13:22:28 CEST ---
+Do you mean the drop downs like at <A HREF="http://www.mozilla.com/en-US/firefox/fx/">http://www.mozilla.com/en-US/firefox/fx/</A> ?
+I would be happy to help in any way. I've been using Mandriva since 5.1 (after
+switching from Redhat to play with KDE), so it's about time I contributed
+something useful back ;) Anyway, if there was somewhere where I could do a
+HTML mockup, maybe that would be the best? A hidden page somewhere maybe?
+
+--
+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="001169.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001171.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1170">[ date ]</a>
+ <a href="thread.html#1170">[ thread ]</a>
+ <a href="subject.html#1170">[ subject ]</a>
+ <a href="author.html#1170">[ 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-June/001171.html b/zarb-ml/mageia-webteam/2011-June/001171.html
new file mode 100644
index 000000000..caee1080e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001171.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+ </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%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620094240.49489431E4%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="001170.html">
+ <LINK REL="Next" HREF="001172.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201864%5D%20Bugzilla%20is%20not%20accessible%20from%20the%0A%09Mageia%20webpages.&In-Reply-To=%3C20110620094240.49489431E4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 20 11:42:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001170.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001172.html">[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1171">[ date ]</a>
+ <a href="thread.html#1171">[ thread ]</a>
+ <a href="subject.html#1171">[ subject ]</a>
+ <a href="author.html#1171">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1864">https://bugs.mageia.org/show_bug.cgi?id=1864</A>
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-20 11:42:39 CEST ---
+(In reply to comment #4)
+&gt;<i> Do you mean the drop downs like at <A HREF="http://www.mozilla.com/en-US/firefox/fx/">http://www.mozilla.com/en-US/firefox/fx/</A> ?
+</I>
+Yes. The good thing is how these react to both mouse and keyboard events.
+
+&gt;<i> Anyway, if there was somewhere where I could do a HTML mockup,
+</I>&gt;<i> maybe that would be the best? A hidden page somewhere maybe?
+</I>
+You can build your mockup on your side and either, publish it on your side,
+attach it here, send it to me or on the webteam list (see
+<A HREF="https://mageia.org/mailman/listinfo/mageia-webteam">https://mageia.org/mailman/listinfo/mageia-webteam</A> ), or I can arrange a place
+to publish it - we still miss a development server, and options are open :-)
+
+--
+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="001170.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001172.html">[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1171">[ date ]</a>
+ <a href="thread.html#1171">[ thread ]</a>
+ <a href="subject.html#1171">[ subject ]</a>
+ <a href="author.html#1171">[ 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-June/001172.html b/zarb-ml/mageia-webteam/2011-June/001172.html
new file mode 100644
index 000000000..a710fdc88
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001172.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one
+ </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%201868%5D%20%5BNew%5D%20drakbug%20should%20first%20check%20if%20a%0A%20bug%20has%20already%20been%20filed%20about%20some%20given%20error%20before%20filing%20a%20new%20one&In-Reply-To=%3Cbug-1868-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="001171.html">
+ <LINK REL="Next" HREF="001174.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one</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%201868%5D%20%5BNew%5D%20drakbug%20should%20first%20check%20if%20a%0A%20bug%20has%20already%20been%20filed%20about%20some%20given%20error%20before%20filing%20a%20new%20one&In-Reply-To=%3Cbug-1868-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 20 12:22:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001171.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001174.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1172">[ date ]</a>
+ <a href="thread.html#1172">[ thread ]</a>
+ <a href="subject.html#1172">[ subject ]</a>
+ <a href="author.html#1172">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1868">https://bugs.mageia.org/show_bug.cgi?id=1868</A>
+
+ Summary: drakbug should first check if a bug has already been
+ filed about some given error before filing a new one
+ 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">LpSolit at netscape.net</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Currently, when a program crashes and drakbug catches it, it offers you to
+report the bug to bugs.mageia.org. What can happen is that the crash has
+already been reported, and filing dupes isn't going to be of any help to
+developers. drakbug should rather look for existing bugs, and if it exists,
+simply CC the user to that bug (maybe with the comment it used to paste in the
+new bug). Or Bugzilla could check the bug summary, and if it exactly matches an
+existing bug summary (and the comment contains &quot;Drakbug caught it&quot;), then it
+should CC the user to the matching bug rather than filing a new one.
+
+I'm filing this RFE on the Bugzilla side, as I don't know how hard it is to do
+this from the drakbug 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="001171.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A></li>
+ <LI>Next message: <A HREF="001174.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1172">[ date ]</a>
+ <a href="thread.html#1172">[ thread ]</a>
+ <a href="subject.html#1172">[ subject ]</a>
+ <a href="author.html#1172">[ 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-June/001173.html b/zarb-ml/mageia-webteam/2011-June/001173.html
new file mode 100644
index 000000000..059f5fc86
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001173.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110620140042.12ABC431F5%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="001138.html">
+ <LINK REL="Next" HREF="001120.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Wendy Umarov</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20110620140042.12ABC431F5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 20 16:00:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001138.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001120.html">[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1173">[ date ]</a>
+ <a href="thread.html#1173">[ thread ]</a>
+ <a href="subject.html#1173">[ subject ]</a>
+ <a href="author.html#1173">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</A>
+
+--- Comment #7 from Wendy Umarov &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">wendy.umarov at free.fr</A>&gt; 2011-06-20 16:00:42 CEST ---
+Still missing informations about Live content non-free drivers/software and
+complete is Free only (no-proprietaries drivers, may request manuals
+installations).
+
+Eg:
+<A HREF="http://www.theinquirer.net/inquirer/review/2076258/impressions-mageia-linux/page/3?WT.rss_a=first+impressions+of+mageia+linux">http://www.theinquirer.net/inquirer/review/2076258/impressions-mageia-linux/page/3?WT.rss_a=first+impressions+of+mageia+linux</A>
+
+Regards.
+
+--
+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="001138.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001120.html">[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1173">[ date ]</a>
+ <a href="thread.html#1173">[ thread ]</a>
+ <a href="subject.html#1173">[ subject ]</a>
+ <a href="author.html#1173">[ 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-June/001174.html b/zarb-ml/mageia-webteam/2011-June/001174.html
new file mode 100644
index 000000000..b3e88cdae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001174.html
@@ -0,0 +1,143 @@
+<!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=%3C20110620220003.595E9429A1%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="001172.html">
+ <LINK REL="Next" HREF="001176.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=%3C20110620220003.595E9429A1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 21 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001172.html">[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI>Next message: <A HREF="001176.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1174">[ date ]</a>
+ <a href="thread.html#1174">[ thread ]</a>
+ <a href="subject.html#1174">[ subject ]</a>
+ <a href="author.html#1174">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001172.html">[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI>Next message: <A HREF="001176.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1174">[ date ]</a>
+ <a href="thread.html#1174">[ thread ]</a>
+ <a href="subject.html#1174">[ subject ]</a>
+ <a href="author.html#1174">[ 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-June/001175.html b/zarb-ml/mageia-webteam/2011-June/001175.html
new file mode 100644
index 000000000..76b4f9b65
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001175.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308608040.11316.303.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001163.html">
+ <LINK REL="Next" HREF="001251.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3C1308608040.11316.303.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">misc at zarb.org
+ </A><BR>
+ <I>Tue Jun 21 00:13:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001163.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001251.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1175">[ date ]</a>
+ <a href="thread.html#1175">[ thread ]</a>
+ <a href="subject.html#1175">[ subject ]</a>
+ <a href="author.html#1175">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le samedi 18 juin 2011 &#224; 15:59 +0200, Michael Scherer a &#233;crit :
+&gt;<i> Le vendredi 17 juin 2011 &#224; 10:23 +0200, Romain d'Alverny a &#233;crit :
+</I>&gt;<i> &gt; On Wed, Jun 15, 2011 at 19:42, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt; &gt; I have finally uploaded the mediawiki module, and tested on a vm.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Cool!
+</I>&gt;<i>
+</I>&gt;<i> So now, it even automatically load the db content remotely, and I tested
+</I>&gt;<i> several time without trouble ( which reduce the chances of failing to
+</I>&gt;<i> 50% once deployed in production ).
+</I>&gt;<i>
+</I>&gt;<i> Next step :
+</I>&gt;<i> - ldap integration ( should be easy )
+</I>
+This part is done.
+as a side note, mediawiki has a password checking system, so we will
+have to keep it in sync with the one for identity. I searched for 1 day
+why misc/misc was refused on my test vm, while blino/misc was ok.
+
+Now, I just need to follow a few easy steps to make sure password are
+sent encrypted. ( something along the line of a 45 lines config change,
+and 5 rewrite url directives... )
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001163.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001251.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1175">[ date ]</a>
+ <a href="thread.html#1175">[ thread ]</a>
+ <a href="subject.html#1175">[ subject ]</a>
+ <a href="author.html#1175">[ 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-June/001176.html b/zarb-ml/mageia-webteam/2011-June/001176.html
new file mode 100644
index 000000000..d5d58679a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001176.html
@@ -0,0 +1,146 @@
+<!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=%3C20110621220003.E82AF43220%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="001174.html">
+ <LINK REL="Next" HREF="001177.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=%3C20110621220003.E82AF43220%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 22 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001174.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001177.html">[Mageia-webteam] Volunteer
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1176">[ date ]</a>
+ <a href="thread.html#1176">[ thread ]</a>
+ <a href="subject.html#1176">[ subject ]</a>
+ <a href="author.html#1176">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001174.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001177.html">[Mageia-webteam] Volunteer
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1176">[ date ]</a>
+ <a href="thread.html#1176">[ thread ]</a>
+ <a href="subject.html#1176">[ subject ]</a>
+ <a href="author.html#1176">[ 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-June/001177.html b/zarb-ml/mageia-webteam/2011-June/001177.html
new file mode 100644
index 000000000..9c6e99aff
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001177.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Volunteer
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Volunteer&In-Reply-To=%3C4E012560.2060107%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001176.html">
+ <LINK REL="Next" HREF="001180.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Volunteer</H1>
+ <B>Matteo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Volunteer&In-Reply-To=%3C4E012560.2060107%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Volunteer">pasotti.matteo at gmail.com
+ </A><BR>
+ <I>Wed Jun 22 01:12:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001176.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001180.html">[Mageia-webteam] Volunteer
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1177">[ date ]</a>
+ <a href="thread.html#1177">[ thread ]</a>
+ <a href="subject.html#1177">[ subject ]</a>
+ <a href="author.html#1177">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+Hi all,
+as promised to Oliver some week ago, I'm offering my help to the webteam.
+I don't know how specifically can I help but I'm quite skilled with php,
+perl, mysql, xhtml, css, bash. Minor knowledges of things like cakephp
+and code igniter, esapi-php, python, ruby, postgresql, C, c++, java,
+basic, c# and other minor stuff.
+I use all of these at work. I've no great experiences with large teams
+and large projects, but I believe I can learn =)
+
+Regards,
+
+Matteo
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.10 (GNU/Linux)
+Comment: Using GnuPG with Mozilla - <A HREF="http://enigmail.mozdev.org/">http://enigmail.mozdev.org/</A>
+
+iQEcBAEBAgAGBQJOASVgAAoJED3LowjDDWbNxTwIAKw6RtgmdbPV8ClPjsbhsM5X
+TKSleSGy6LO4nTt+8mo0RIypLIbp0xdPZL7J24kjZR80NVvTAirP4lbjDcyWdNf1
+3UQlkUpReI9FcTGrnY3yFDNDAuzHAH+ESe/WUQkAZSsP4by/NMogIXu0Mz4iZcGe
+T5yde64laxINkw1NxpHQl8JBY5XLYBxtLdKKdPDigRUQXRIVGgvqLNYZyzkkCYWA
+r7F0RRzy7mruvhvTPH9LEC7WHmTklDBua8rhHAkQRsDZY5Uwwt3hdj9d4QbpKyZs
+wgmeV4CAxc0lV4sQ12K+Z6w6dbEUKhv0R9d3eiMA3Y2Gn5AOrGZacjMP2RQgtgk=
+=nFRg
+-----END PGP SIGNATURE-----
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001176.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001180.html">[Mageia-webteam] Volunteer
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1177">[ date ]</a>
+ <a href="thread.html#1177">[ thread ]</a>
+ <a href="subject.html#1177">[ subject ]</a>
+ <a href="author.html#1177">[ 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-June/001178.html b/zarb-ml/mageia-webteam/2011-June/001178.html
new file mode 100644
index 000000000..5218cbb46
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001178.html
@@ -0,0 +1,147 @@
+<!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=%3C20110622220005.ED99A43242%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="001180.html">
+ <LINK REL="Next" HREF="001179.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=%3C20110622220005.ED99A43242%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 23 00:00:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001180.html">[Mageia-webteam] Volunteer
+</A></li>
+ <LI>Next message: <A HREF="001179.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1178">[ date ]</a>
+ <a href="thread.html#1178">[ thread ]</a>
+ <a href="subject.html#1178">[ subject ]</a>
+ <a href="author.html#1178">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001180.html">[Mageia-webteam] Volunteer
+</A></li>
+ <LI>Next message: <A HREF="001179.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1178">[ date ]</a>
+ <a href="thread.html#1178">[ thread ]</a>
+ <a href="subject.html#1178">[ subject ]</a>
+ <a href="author.html#1178">[ 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-June/001179.html b/zarb-ml/mageia-webteam/2011-June/001179.html
new file mode 100644
index 000000000..576152b43
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001179.html
@@ -0,0 +1,149 @@
+<!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=%3C20110623220004.3C35E43259%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="001178.html">
+ <LINK REL="Next" HREF="001181.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=%3C20110623220004.3C35E43259%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 24 00:00:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001178.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001181.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1179">[ date ]</a>
+ <a href="thread.html#1179">[ thread ]</a>
+ <a href="subject.html#1179">[ subject ]</a>
+ <a href="author.html#1179">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001178.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001181.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1179">[ date ]</a>
+ <a href="thread.html#1179">[ thread ]</a>
+ <a href="subject.html#1179">[ subject ]</a>
+ <a href="author.html#1179">[ 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-June/001180.html b/zarb-ml/mageia-webteam/2011-June/001180.html
new file mode 100644
index 000000000..8b30b0d75
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001180.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Volunteer
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Volunteer&In-Reply-To=%3C4E04CBBB.9050809%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001177.html">
+ <LINK REL="Next" HREF="001178.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Volunteer</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Volunteer&In-Reply-To=%3C4E04CBBB.9050809%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Volunteer">maat-ml at vilarem.net
+ </A><BR>
+ <I>Fri Jun 24 19:39:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001177.html">[Mageia-webteam] Volunteer
+</A></li>
+ <LI>Next message: <A HREF="001178.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1180">[ date ]</a>
+ <a href="thread.html#1180">[ thread ]</a>
+ <a href="subject.html#1180">[ subject ]</a>
+ <a href="author.html#1180">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi Matteo,
+
+We are lacking php/phpbb skills to add mods that users ask for...
+
+If the idea to work on that inspires you... that would be really appreciated :)
+
+Cheers, Ma&#226;t
+
+
+Le 22/06/2011 01:12, Matteo a &#233;crit :
+&gt;<i> Hi all,
+</I>&gt;<i> as promised to Oliver some week ago, I'm offering my help to the webteam.
+</I>&gt;<i> I don't know how specifically can I help but I'm quite skilled with php,
+</I>&gt;<i> perl, mysql, xhtml, css, bash. Minor knowledges of things like cakephp
+</I>&gt;<i> and code igniter, esapi-php, python, ruby, postgresql, C, c++, java,
+</I>&gt;<i> basic, c# and other minor stuff.
+</I>&gt;<i> I use all of these at work. I've no great experiences with large teams
+</I>&gt;<i> and large projects, but I believe I can learn =)
+</I>&gt;<i>
+</I>&gt;<i> Regards,
+</I>&gt;<i>
+</I>&gt;<i> Matteo
+</I>
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001177.html">[Mageia-webteam] Volunteer
+</A></li>
+ <LI>Next message: <A HREF="001178.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1180">[ date ]</a>
+ <a href="thread.html#1180">[ thread ]</a>
+ <a href="subject.html#1180">[ subject ]</a>
+ <a href="author.html#1180">[ 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-June/001181.html b/zarb-ml/mageia-webteam/2011-June/001181.html
new file mode 100644
index 000000000..bcdda4923
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001181.html
@@ -0,0 +1,148 @@
+<!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=%3C20110624220004.DA4E843243%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="001179.html">
+ <LINK REL="Next" HREF="001182.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=%3C20110624220004.DA4E843243%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 25 00:00:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001179.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001182.html">[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1181">[ date ]</a>
+ <a href="thread.html#1181">[ thread ]</a>
+ <a href="subject.html#1181">[ subject ]</a>
+ <a href="author.html#1181">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001179.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001182.html">[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1181">[ date ]</a>
+ <a href="thread.html#1181">[ thread ]</a>
+ <a href="subject.html#1181">[ subject ]</a>
+ <a href="author.html#1181">[ 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-June/001182.html b/zarb-ml/mageia-webteam/2011-June/001182.html
new file mode 100644
index 000000000..a600021b4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001182.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1914] [New] Display of user details/avatars
+ </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%201914%5D%20%5BNew%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3Cbug-1914-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="001181.html">
+ <LINK REL="Next" HREF="001183.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars</H1>
+ <B>Martin Foster</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201914%5D%20%5BNew%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3Cbug-1914-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 25 13:35:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001181.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001183.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1182">[ date ]</a>
+ <a href="thread.html#1182">[ thread ]</a>
+ <a href="subject.html#1182">[ subject ]</a>
+ <a href="author.html#1182">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1914">https://bugs.mageia.org/show_bug.cgi?id=1914</A>
+
+ Summary: Display of user details/avatars
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">mageia at stargate.org.uk</A>
+
+
+User details/avatars are currently displayed to the right of their post(s).
+Further to requests on the forum to have them displayed to the left, I'm
+formally requesting that this be implemented right away. 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="001181.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001183.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1182">[ date ]</a>
+ <a href="thread.html#1182">[ thread ]</a>
+ <a href="subject.html#1182">[ subject ]</a>
+ <a href="author.html#1182">[ 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-June/001183.html b/zarb-ml/mageia-webteam/2011-June/001183.html
new file mode 100644
index 000000000..9150529f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001183.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1914] Display of user details/avatars
+ </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%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20110625114420.85DC643233%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="001182.html">
+ <LINK REL="Next" HREF="001184.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1914] Display of user details/avatars</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20110625114420.85DC643233%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1914] Display of user details/avatars">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 25 13:44:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001182.html">[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001184.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1183">[ date ]</a>
+ <a href="thread.html#1183">[ thread ]</a>
+ <a href="subject.html#1183">[ subject ]</a>
+ <a href="author.html#1183">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1914">https://bugs.mageia.org/show_bug.cgi?id=1914</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-06-25 15:44:20 CEST ---
+As you can see in the related forum discussion this is a feature which is
+subject to individual taste, some like it, some not.
+
+Forum discussion: <A HREF="https://forums.mageia.org/en/viewtopic.php?f=18&amp;t=22">https://forums.mageia.org/en/viewtopic.php?f=18&amp;t=22</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="001182.html">[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001184.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1183">[ date ]</a>
+ <a href="thread.html#1183">[ thread ]</a>
+ <a href="subject.html#1183">[ subject ]</a>
+ <a href="author.html#1183">[ 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-June/001184.html b/zarb-ml/mageia-webteam/2011-June/001184.html
new file mode 100644
index 000000000..fae5049bf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001184.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1914] Display of user details/avatars
+ </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%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20110625114806.6499B43212%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="001183.html">
+ <LINK REL="Next" HREF="001185.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1914] Display of user details/avatars</H1>
+ <B>Martin Foster</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20110625114806.6499B43212%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1914] Display of user details/avatars">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 25 13:48:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001183.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001185.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1184">[ date ]</a>
+ <a href="thread.html#1184">[ thread ]</a>
+ <a href="subject.html#1184">[ subject ]</a>
+ <a href="author.html#1184">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1914">https://bugs.mageia.org/show_bug.cgi?id=1914</A>
+
+--- Comment #2 from Martin Foster &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at stargate.org.uk</A>&gt; 2011-06-25 13:48:06 CEST ---
+In which case, it should be implemented as an option.
+
+--
+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="001183.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001185.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1184">[ date ]</a>
+ <a href="thread.html#1184">[ thread ]</a>
+ <a href="subject.html#1184">[ subject ]</a>
+ <a href="author.html#1184">[ 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-June/001185.html b/zarb-ml/mageia-webteam/2011-June/001185.html
new file mode 100644
index 000000000..548343f42
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001185.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1914] Display of user details/avatars
+ </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%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20110625115522.866A843130%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="001184.html">
+ <LINK REL="Next" HREF="001186.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1914] Display of user details/avatars</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20110625115522.866A843130%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1914] Display of user details/avatars">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 25 13:55:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001184.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001186.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1185">[ date ]</a>
+ <a href="thread.html#1185">[ thread ]</a>
+ <a href="subject.html#1185">[ subject ]</a>
+ <a href="author.html#1185">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1914">https://bugs.mageia.org/show_bug.cgi?id=1914</A>
+
+--- Comment #3 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-06-25 13:55:22 CEST ---
+This is going to come with an alternative theme, which is already planned (so I
+heard). When this alternative theme is installed the user can select the one
+which suits his taste.
+Of course this may not be on top of the ToDo list for the system/forum
+administration as it is not a bug.
+
+--
+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="001184.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001186.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1185">[ date ]</a>
+ <a href="thread.html#1185">[ thread ]</a>
+ <a href="subject.html#1185">[ subject ]</a>
+ <a href="author.html#1185">[ 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-June/001186.html b/zarb-ml/mageia-webteam/2011-June/001186.html
new file mode 100644
index 000000000..2c1db3635
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001186.html
@@ -0,0 +1,150 @@
+<!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=%3C20110625220004.09CDD43252%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="001185.html">
+ <LINK REL="Next" HREF="001187.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=%3C20110625220004.09CDD43252%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 00:00:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001185.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001187.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1186">[ date ]</a>
+ <a href="thread.html#1186">[ thread ]</a>
+ <a href="subject.html#1186">[ subject ]</a>
+ <a href="author.html#1186">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+ &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001185.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001187.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1186">[ date ]</a>
+ <a href="thread.html#1186">[ thread ]</a>
+ <a href="subject.html#1186">[ subject ]</a>
+ <a href="author.html#1186">[ 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-June/001187.html b/zarb-ml/mageia-webteam/2011-June/001187.html
new file mode 100644
index 000000000..d516a5e3d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001187.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Insert mageiaitalia.org among community forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3C201106261623.50576.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="001186.html">
+ <LINK REL="Next" HREF="001190.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Insert mageiaitalia.org among community forums</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3C201106261623.50576.marcello.anni%40alice.it%3E"
+ TITLE="[Mageia-webteam] Insert mageiaitalia.org among community forums">marcello.anni at alice.it
+ </A><BR>
+ <I>Sun Jun 26 16:23:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001186.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001190.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1187">[ date ]</a>
+ <a href="thread.html#1187">[ thread ]</a>
+ <a href="subject.html#1187">[ subject ]</a>
+ <a href="author.html#1187">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi all,
+
+could you add mageiaitalia.org among the italian community forums that provide
+support for mageia? thanks
+
+
+cheers,
+Marcello
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001186.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001190.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1187">[ date ]</a>
+ <a href="thread.html#1187">[ thread ]</a>
+ <a href="subject.html#1187">[ subject ]</a>
+ <a href="author.html#1187">[ 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-June/001188.html b/zarb-ml/mageia-webteam/2011-June/001188.html
new file mode 100644
index 000000000..0c6c9aa37
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001188.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110626143316.5CDF443105%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="001225.html">
+ <LINK REL="Next" HREF="001189.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</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.1&In-Reply-To=%3C20110626143316.5CDF443105%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 16:33:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001225.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001189.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1188">[ date ]</a>
+ <a href="thread.html#1188">[ thread ]</a>
+ <a href="subject.html#1188">[ subject ]</a>
+ <a href="author.html#1188">[ 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 #14 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-06-26 16:33:16 CEST ---
+when is planned the switch to the new bugzilla? i think it can have an
+important role about the improving of the distro quality and stability. thanks
+
+
+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="001225.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001189.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1188">[ date ]</a>
+ <a href="thread.html#1188">[ thread ]</a>
+ <a href="subject.html#1188">[ subject ]</a>
+ <a href="author.html#1188">[ 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-June/001189.html b/zarb-ml/mageia-webteam/2011-June/001189.html
new file mode 100644
index 000000000..e1eacaab6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001189.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110626143825.778CD4310D%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="001188.html">
+ <LINK REL="Next" HREF="001191.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110626143825.778CD4310D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 16:38:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001188.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="001191.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1189">[ date ]</a>
+ <a href="thread.html#1189">[ thread ]</a>
+ <a href="subject.html#1189">[ subject ]</a>
+ <a href="author.html#1189">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #10 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-06-26 18:38:25 CEST ---
+news about this bug?
+
+--
+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="001188.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="001191.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1189">[ date ]</a>
+ <a href="thread.html#1189">[ thread ]</a>
+ <a href="subject.html#1189">[ subject ]</a>
+ <a href="author.html#1189">[ 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-June/001190.html b/zarb-ml/mageia-webteam/2011-June/001190.html
new file mode 100644
index 000000000..f24470c2b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001190.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Insert mageiaitalia.org among community forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3CBANLkTi%3DYELCmeZSN15ao300FKnxWpM0rJg%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="001187.html">
+ <LINK REL="Next" HREF="001214.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Insert mageiaitalia.org among community forums</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3CBANLkTi%3DYELCmeZSN15ao300FKnxWpM0rJg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Insert mageiaitalia.org among community forums">molch.b at googlemail.com
+ </A><BR>
+ <I>Sun Jun 26 16:39:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001187.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001214.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1190">[ date ]</a>
+ <a href="thread.html#1190">[ thread ]</a>
+ <a href="subject.html#1190">[ subject ]</a>
+ <a href="author.html#1190">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/26 Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt;:
+&gt;<i> Hi all,
+</I>&gt;<i>
+</I>&gt;<i> could you add mageiaitalia.org among the italian community forums that provide
+</I>&gt;<i> support for mageia? thanks
+</I>
+At the same time pls remove the german mandrivauser.de forum, now the
+German Mageia forum is in place.
+
+Thx
+
+--
+wobo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001187.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001214.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1190">[ date ]</a>
+ <a href="thread.html#1190">[ thread ]</a>
+ <a href="subject.html#1190">[ subject ]</a>
+ <a href="author.html#1190">[ 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-June/001191.html b/zarb-ml/mageia-webteam/2011-June/001191.html
new file mode 100644
index 000000000..4bc6bcda1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001191.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110626143931.E0A2643147%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="001189.html">
+ <LINK REL="Next" HREF="001192.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110626143931.E0A2643147%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 16:39:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001189.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001192.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1191">[ date ]</a>
+ <a href="thread.html#1191">[ thread ]</a>
+ <a href="subject.html#1191">[ subject ]</a>
+ <a href="author.html#1191">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+--- Comment #2 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-06-26 16:39:32 CEST ---
+news about this bug? can you implement this feature?
+
+--
+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="001189.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001192.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1191">[ date ]</a>
+ <a href="thread.html#1191">[ thread ]</a>
+ <a href="subject.html#1191">[ subject ]</a>
+ <a href="author.html#1191">[ 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-June/001192.html b/zarb-ml/mageia-webteam/2011-June/001192.html
new file mode 100644
index 000000000..3c847bbc8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001192.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110626145334.F24874315D%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="001191.html">
+ <LINK REL="Next" HREF="001193.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>D Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110626145334.F24874315D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 16:53:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001191.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001193.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1192">[ date ]</a>
+ <a href="thread.html#1192">[ thread ]</a>
+ <a href="subject.html#1192">[ subject ]</a>
+ <a href="author.html#1192">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+--- Comment #3 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-06-26 16:53:34 CEST ---
+this will be done when we will upgrade bugzilla
+
+--
+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="001191.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001193.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1192">[ date ]</a>
+ <a href="thread.html#1192">[ thread ]</a>
+ <a href="subject.html#1192">[ subject ]</a>
+ <a href="author.html#1192">[ 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-June/001193.html b/zarb-ml/mageia-webteam/2011-June/001193.html
new file mode 100644
index 000000000..1134fbd0b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001193.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110626145538.83DDC43147%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="001192.html">
+ <LINK REL="Next" HREF="001194.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to</H1>
+ <B>D Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110626145538.83DDC43147%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 16:55:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001192.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001194.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1193">[ date ]</a>
+ <a href="thread.html#1193">[ thread ]</a>
+ <a href="subject.html#1193">[ subject ]</a>
+ <a href="author.html#1193">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+--- Comment #11 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-06-26 16:55:38 CEST ---
+will be done when using bugzilla 4.0.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="001192.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001194.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1193">[ date ]</a>
+ <a href="thread.html#1193">[ thread ]</a>
+ <a href="subject.html#1193">[ subject ]</a>
+ <a href="author.html#1193">[ 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-June/001194.html b/zarb-ml/mageia-webteam/2011-June/001194.html
new file mode 100644
index 000000000..98a2f0984
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001194.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110626181128.B87524315D%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="001193.html">
+ <LINK REL="Next" HREF="001195.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20110626181128.B87524315D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 20:11:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001193.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001195.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1194">[ date ]</a>
+ <a href="thread.html#1194">[ thread ]</a>
+ <a href="subject.html#1194">[ subject ]</a>
+ <a href="author.html#1194">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</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| |40
+
+--
+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="001193.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001195.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1194">[ date ]</a>
+ <a href="thread.html#1194">[ thread ]</a>
+ <a href="subject.html#1194">[ subject ]</a>
+ <a href="author.html#1194">[ 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-June/001195.html b/zarb-ml/mageia-webteam/2011-June/001195.html
new file mode 100644
index 000000000..d810407ab
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001195.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110626181129.12A494316F%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="001194.html">
+ <LINK REL="Next" HREF="001197.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0.1&In-Reply-To=%3C20110626181129.12A494316F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 20:11:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001194.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001197.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1195">[ date ]</a>
+ <a href="thread.html#1195">[ thread ]</a>
+ <a href="subject.html#1195">[ subject ]</a>
+ <a href="author.html#1195">[ 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>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |42
+
+--
+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="001194.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001197.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1195">[ date ]</a>
+ <a href="thread.html#1195">[ thread ]</a>
+ <a href="subject.html#1195">[ subject ]</a>
+ <a href="author.html#1195">[ 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-June/001196.html b/zarb-ml/mageia-webteam/2011-June/001196.html
new file mode 100644
index 000000000..60500761a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001196.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110626181144.079144316F%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="001197.html">
+ <LINK REL="Next" HREF="001198.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0.1&In-Reply-To=%3C20110626181144.079144316F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 20:11:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001197.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001198.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1196">[ date ]</a>
+ <a href="thread.html#1196">[ thread ]</a>
+ <a href="subject.html#1196">[ subject ]</a>
+ <a href="author.html#1196">[ 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>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |166
+
+--
+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="001197.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001198.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1196">[ date ]</a>
+ <a href="thread.html#1196">[ thread ]</a>
+ <a href="subject.html#1196">[ subject ]</a>
+ <a href="author.html#1196">[ 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-June/001197.html b/zarb-ml/mageia-webteam/2011-June/001197.html
new file mode 100644
index 000000000..7b9c6d49a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001197.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110626181143.B36864314D%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="001195.html">
+ <LINK REL="Next" HREF="001196.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20110626181143.B36864314D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 26 20:11:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001195.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="001196.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1197">[ date ]</a>
+ <a href="thread.html#1197">[ thread ]</a>
+ <a href="subject.html#1197">[ subject ]</a>
+ <a href="author.html#1197">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</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| |40
+
+--
+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="001195.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="001196.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1197">[ date ]</a>
+ <a href="thread.html#1197">[ thread ]</a>
+ <a href="subject.html#1197">[ subject ]</a>
+ <a href="author.html#1197">[ 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-June/001198.html b/zarb-ml/mageia-webteam/2011-June/001198.html
new file mode 100644
index 000000000..ddb7a671f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001198.html
@@ -0,0 +1,155 @@
+<!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=%3C20110626220003.8AE454318B%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="001196.html">
+ <LINK REL="Next" HREF="001199.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=%3C20110626220003.8AE454318B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 27 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001196.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="001199.html">[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1198">[ date ]</a>
+ <a href="thread.html#1198">[ thread ]</a>
+ <a href="subject.html#1198">[ subject ]</a>
+ <a href="author.html#1198">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+ &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001196.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="001199.html">[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1198">[ date ]</a>
+ <a href="thread.html#1198">[ thread ]</a>
+ <a href="subject.html#1198">[ subject ]</a>
+ <a href="author.html#1198">[ 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-June/001199.html b/zarb-ml/mageia-webteam/2011-June/001199.html
new file mode 100644
index 000000000..08d911ee8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001199.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1932] [New] 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%20%5BBug%201932%5D%20%5BNew%5D%20Your%20Bugzilla%20bug%20list%20needs%0A%20attention.&In-Reply-To=%3Cbug-1932-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="001198.html">
+ <LINK REL="Next" HREF="001200.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.</H1>
+ <B>Edward dAuvergne</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201932%5D%20%5BNew%5D%20Your%20Bugzilla%20bug%20list%20needs%0A%20attention.&In-Reply-To=%3Cbug-1932-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 27 11:25:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001198.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001200.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1199">[ date ]</a>
+ <a href="thread.html#1199">[ thread ]</a>
+ <a href="subject.html#1199">[ subject ]</a>
+ <a href="author.html#1199">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1932">https://bugs.mageia.org/show_bug.cgi?id=1932</A>
+
+ Summary: [Mageia-webteam] Your Bugzilla bug list needs
+ attention.
+ 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">true.bugman at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem:
+
+If you submit a bug report, then you receive one email per day with the title
+&quot;[Mageia-webteam] Your Bugzilla bug list needs attention.&quot;. There are
+instructions in there, but none of these can be followed to suppress this
+message. Mageia users who summit a bug report should not be bombarded with
+such nonsense! The only way to remove this problem for the user is to mark the
+bug as INVALID. The 3 options given in the email, including the starting text,
+is:
+
+-----
+[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.
+-----
+
+Option 2 is not on the bug report page, and is ridiculous. Options 1 and 3
+should not be suggested to a Mageia user who just reported a bug. That is
+incredibly user unfriendly!
+
+
+Version-Release number of selected component (if applicable):
+
+Current.
+
+
+How reproducible:
+
+?
+
+Steps to Reproduce:
+1. Submit a bug report.
+2.
+3.
+
+--
+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="001198.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001200.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1199">[ date ]</a>
+ <a href="thread.html#1199">[ thread ]</a>
+ <a href="subject.html#1199">[ subject ]</a>
+ <a href="author.html#1199">[ 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-June/001200.html b/zarb-ml/mageia-webteam/2011-June/001200.html
new file mode 100644
index 000000000..081aa5005
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001200.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1932] 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%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627094918.DC24243118%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="001199.html">
+ <LINK REL="Next" HREF="001201.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.</H1>
+ <B>Sander Lepik</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627094918.DC24243118%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 27 11:49:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001199.html">[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001201.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1200">[ date ]</a>
+ <a href="thread.html#1200">[ thread ]</a>
+ <a href="subject.html#1200">[ subject ]</a>
+ <a href="author.html#1200">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1932">https://bugs.mageia.org/show_bug.cgi?id=1932</A>
+
+Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>
+
+--- Comment #1 from Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; 2011-06-27 13:49:18 CEST ---
+This email is not sent to user who submitted bug report. It's sent to webteam
+mailinglist AFAIK.
+
+(Don't submit a new bug, better deal with the bugs that need attention ;P)
+
+--
+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="001199.html">[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001201.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1200">[ date ]</a>
+ <a href="thread.html#1200">[ thread ]</a>
+ <a href="subject.html#1200">[ subject ]</a>
+ <a href="author.html#1200">[ 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-June/001201.html b/zarb-ml/mageia-webteam/2011-June/001201.html
new file mode 100644
index 000000000..918cd7d44
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001201.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1932] 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%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627101140.EFDCA43159%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="001200.html">
+ <LINK REL="Next" HREF="001202.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.</H1>
+ <B>Edward dAuvergne</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627101140.EFDCA43159%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 27 12:11:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001200.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001202.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1201">[ date ]</a>
+ <a href="thread.html#1201">[ thread ]</a>
+ <a href="subject.html#1201">[ subject ]</a>
+ <a href="author.html#1201">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1932">https://bugs.mageia.org/show_bug.cgi?id=1932</A>
+
+--- Comment #2 from Edward dAuvergne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">true.bugman at gmail.com</A>&gt; 2011-06-27 14:11:41 CEST ---
+You're kidding me! Ok, so should I reassign this to somewhere else. Why is
+this being sent to a public mailing list anyway? This looks like a bugzilla
+setting that needs fixing.
+
+--
+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="001200.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001202.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1201">[ date ]</a>
+ <a href="thread.html#1201">[ thread ]</a>
+ <a href="subject.html#1201">[ subject ]</a>
+ <a href="author.html#1201">[ 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-June/001202.html b/zarb-ml/mageia-webteam/2011-June/001202.html
new file mode 100644
index 000000000..9c3e2dc4e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001202.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1932] 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%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627102056.3725843162%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="001201.html">
+ <LINK REL="Next" HREF="001203.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.</H1>
+ <B>Sander Lepik</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627102056.3725843162%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 27 12:20:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001201.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001203.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1202">[ date ]</a>
+ <a href="thread.html#1202">[ thread ]</a>
+ <a href="subject.html#1202">[ subject ]</a>
+ <a href="author.html#1202">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1932">https://bugs.mageia.org/show_bug.cgi?id=1932</A>
+
+--- Comment #3 from Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; 2011-06-27 12:20:56 CEST ---
+Maybe assign to webteam so they would resolve problems with bugs that need
+attention.
+
+&quot;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.&quot;
+
+It's quite easy :)
+
+--
+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="001201.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001203.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1202">[ date ]</a>
+ <a href="thread.html#1202">[ thread ]</a>
+ <a href="subject.html#1202">[ subject ]</a>
+ <a href="author.html#1202">[ 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-June/001203.html b/zarb-ml/mageia-webteam/2011-June/001203.html
new file mode 100644
index 000000000..d6530e0e5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001203.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1932] 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%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627104218.2C13043162%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="001202.html">
+ <LINK REL="Next" HREF="001204.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.</H1>
+ <B>Edward dAuvergne</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627104218.2C13043162%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 27 12:42:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001202.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001204.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1203">[ date ]</a>
+ <a href="thread.html#1203">[ thread ]</a>
+ <a href="subject.html#1203">[ subject ]</a>
+ <a href="author.html#1203">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1932">https://bugs.mageia.org/show_bug.cgi?id=1932</A>
+
+Edward dAuvergne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">true.bugman at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Websites
+ Version|unspecified |trunk
+ Component|Bugzilla |Other
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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.
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001202.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001204.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1203">[ date ]</a>
+ <a href="thread.html#1203">[ thread ]</a>
+ <a href="subject.html#1203">[ subject ]</a>
+ <a href="author.html#1203">[ 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-June/001204.html b/zarb-ml/mageia-webteam/2011-June/001204.html
new file mode 100644
index 000000000..95c85a34c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001204.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1932] 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%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627111345.BBA7D4317A%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="001203.html">
+ <LINK REL="Next" HREF="001205.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201932%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110627111345.BBA7D4317A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 27 13:13:45 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001203.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001205.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1204">[ date ]</a>
+ <a href="thread.html#1204">[ thread ]</a>
+ <a href="subject.html#1204">[ subject ]</a>
+ <a href="author.html#1204">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1932">https://bugs.mageia.org/show_bug.cgi?id=1932</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-06-27 15:13:44 CEST ---
+I disabled the sending 1 week ago, but either I forgot to commit, or it didn't
+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.
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001203.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001205.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1204">[ date ]</a>
+ <a href="thread.html#1204">[ thread ]</a>
+ <a href="subject.html#1204">[ subject ]</a>
+ <a href="author.html#1204">[ 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-June/001205.html b/zarb-ml/mageia-webteam/2011-June/001205.html
new file mode 100644
index 000000000..99de7e891
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001205.html
@@ -0,0 +1,155 @@
+<!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=%3C20110627220003.D114643180%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="001204.html">
+ <LINK REL="Next" HREF="001206.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=%3C20110627220003.D114643180%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001204.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001206.html">[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1205">[ date ]</a>
+ <a href="thread.html#1205">[ thread ]</a>
+ <a href="subject.html#1205">[ subject ]</a>
+ <a href="author.html#1205">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+ &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001204.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001206.html">[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1205">[ date ]</a>
+ <a href="thread.html#1205">[ thread ]</a>
+ <a href="subject.html#1205">[ subject ]</a>
+ <a href="author.html#1205">[ 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-June/001206.html b/zarb-ml/mageia-webteam/2011-June/001206.html
new file mode 100644
index 000000000..bf4e3a4ec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001206.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1942] [New] Guatemala mirror down
+ </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%201942%5D%20%5BNew%5D%20Guatemala%20mirror%20down&In-Reply-To=%3Cbug-1942-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="001205.html">
+ <LINK REL="Next" HREF="001207.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down</H1>
+ <B>Juan Baptiste</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201942%5D%20%5BNew%5D%20Guatemala%20mirror%20down&In-Reply-To=%3Cbug-1942-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 07:17:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001205.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001207.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1206">[ date ]</a>
+ <a href="thread.html#1206">[ thread ]</a>
+ <a href="subject.html#1206">[ subject ]</a>
+ <a href="author.html#1206">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1942">https://bugs.mageia.org/show_bug.cgi?id=1942</A>
+
+ Summary: Guatemala mirror down
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: mirrors.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">juan.baptiste at gmail.com</A>
+
+
+Guatemala mirror (<A HREF="http://www.quicklynet.com/mageia">http://www.quicklynet.com/mageia</A>) returns 404 since at least
+2 weeks, making a lot of south american users not able to add any of the repos.
+
+I had to remove it from /var/cache/urpmi/mirrors.cache and set as chosen
+another one to be able to add all the repos and get updates.
+
+--
+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="001205.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001207.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1206">[ date ]</a>
+ <a href="thread.html#1206">[ thread ]</a>
+ <a href="subject.html#1206">[ subject ]</a>
+ <a href="author.html#1206">[ 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-June/001207.html b/zarb-ml/mageia-webteam/2011-June/001207.html
new file mode 100644
index 000000000..5eb2a1a96
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001207.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1942] Guatemala mirror down
+ </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%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110628052659.141E1430F4%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="001206.html">
+ <LINK REL="Next" HREF="001212.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1942] Guatemala mirror down</H1>
+ <B>Juan Baptiste</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110628052659.141E1430F4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1942] Guatemala mirror down">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 07:26:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001206.html">[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001212.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1207">[ date ]</a>
+ <a href="thread.html#1207">[ thread ]</a>
+ <a href="subject.html#1207">[ subject ]</a>
+ <a href="author.html#1207">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1942">https://bugs.mageia.org/show_bug.cgi?id=1942</A>
+
+--- Comment #1 from Juan Baptiste &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">juan.baptiste at gmail.com</A>&gt; 2011-06-28 09:26:59 CEST ---
+Also, taking just into account geographical location to select a mirror, at
+least for south america, doesn't work that good. Why ? because there are none
+cross-country ISP interconnection, so if I need to get to a central american
+ISP (from Colombia) I always have to go to the US and then go down again.
+There's no other way to do it. This happens with most countries, maybe Brazil,
+Chile and Argentina are the exception and maybe they're interconnected, but
+just between them.
+
+So, for the rest of south american countries, US mirrors are best.
+
+--
+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="001206.html">[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001212.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1207">[ date ]</a>
+ <a href="thread.html#1207">[ thread ]</a>
+ <a href="subject.html#1207">[ subject ]</a>
+ <a href="author.html#1207">[ 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-June/001208.html b/zarb-ml/mageia-webteam/2011-June/001208.html
new file mode 100644
index 000000000..46035f80f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001208.html
@@ -0,0 +1,114 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20%5BNew%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3Cbug-1945-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="001213.html">
+ <LINK REL="Next" HREF="001209.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Thomas Courbon</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20%5BNew%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3Cbug-1945-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 10:59:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001213.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001209.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1208">[ date ]</a>
+ <a href="thread.html#1208">[ thread ]</a>
+ <a href="subject.html#1208">[ subject ]</a>
+ <a href="author.html#1208">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+ Summary: When language is set at French, links &quot;forum&quot; on
+ different page may send to different forums.
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://mageia.org/fr/">http://mageia.org/fr/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">thcourbon at gmail.com</A>
+
+
+Description of problem:
+When loading the Mageia's main site my language is detected as fr and the
+localised version of the site is presented. On the main page's navigation bar,
+the &quot;Forum&quot; link points at <A HREF="http://www.mageialinux-online.org/forum/">http://www.mageialinux-online.org/forum/</A> which
+redirect to <A HREF="http://www.mageialinux-online.org/forum/.">http://www.mageialinux-online.org/forum/.</A>
+
+But if you click on &quot;Contribuer&quot; (French for &quot;contribute&quot;) and then on any link
+that points toward the forum you're send on &quot;forum.mageia.org&quot;.
+
+Why that's bugging me:
+Two apparently similar links are actually different.
+Also, as far I understand the Mageia's ecosystem,forum at mageia.org haven't
+the same purpose (support in English, international community and discussion on
+contributing) than mageialinux-online forum (support in French language). I
+would have expected to find a link to the later only on the &quot;Assistance&quot; page.
+Of course I may misunderstand the link between mageia.org and
+mageialinux-online.fr, please educate me !
+
+
+
+How reproducible:
+Always.
+
+Steps to Reproduce:
+1. Load <A HREF="http://mageia.org/fr/">http://mageia.org/fr/</A>
+2. Click on the &quot;Forum&quot; link on the upper navigation bar
+3. Get redirecto to <A HREF="http://www.mageialinux-online.org/forum">http://www.mageialinux-online.org/forum</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="001213.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001209.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1208">[ date ]</a>
+ <a href="thread.html#1208">[ thread ]</a>
+ <a href="subject.html#1208">[ subject ]</a>
+ <a href="author.html#1208">[ 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-June/001209.html b/zarb-ml/mageia-webteam/2011-June/001209.html
new file mode 100644
index 000000000..304a4f8fb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001209.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20110628091049.366E543136%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="001208.html">
+ <LINK REL="Next" HREF="001210.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20110628091049.366E543136%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 11:10:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001208.html">[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001210.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1209">[ date ]</a>
+ <a href="thread.html#1209">[ thread ]</a>
+ <a href="subject.html#1209">[ subject ]</a>
+ <a href="author.html#1209">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-06-28 13:10:48 CEST ---
+First about the forum ecosystem:
+Mageia lets local communities decide whether they want to establish a localized
+forum inside the forums.mageia.org system (such as the Germans did) or have
+their (possibly already existing) forum on their own server. That's what MLO
+did.
+
+So, the main nav bar leads you to MLO if your browser is redirected to the
+French Mageia pages. This redirection is not possible inside the text of the
+pages, so this is the task of the translators of the page - meaning, this is a
+bug in the french web translation.
+
+It may also be that this link is inside a variable field of a web page, which
+will net be translated. Then you will be sent to the international forum. I
+don't know if it is possible to change that.
+
+If you are sent to the international forum you can go to the section
+&quot;Communities&quot; and click on the MLO link. Plans are to have a header on the
+forum site which displays links to all local forums.
+
+--
+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="001208.html">[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001210.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1209">[ date ]</a>
+ <a href="thread.html#1209">[ thread ]</a>
+ <a href="subject.html#1209">[ subject ]</a>
+ <a href="author.html#1209">[ 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-June/001210.html b/zarb-ml/mageia-webteam/2011-June/001210.html
new file mode 100644
index 000000000..225b8ca9f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001210.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20110628092030.0D5BB42C02%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="001209.html">
+ <LINK REL="Next" HREF="001211.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Thomas Courbon</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20110628092030.0D5BB42C02%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 11:20:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001209.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001211.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1210">[ date ]</a>
+ <a href="thread.html#1210">[ thread ]</a>
+ <a href="subject.html#1210">[ subject ]</a>
+ <a href="author.html#1210">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+--- Comment #2 from Thomas Courbon &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thcourbon at gmail.com</A>&gt; 2011-06-28 11:20:28 CEST ---
+(In reply to comment #1)
+&gt;<i> First about the forum ecosystem:
+</I>&gt;<i> Mageia lets local communities decide whether they want to establish a localized
+</I>&gt;<i> forum inside the forums.mageia.org system (such as the Germans did) or have
+</I>&gt;<i> their (possibly already existing) forum on their own server. That's what MLO
+</I>&gt;<i> did.
+</I>
+Didn't know that, thank for the hint.
+
+&gt;<i> So, the main nav bar leads you to MLO if your browser is redirected to the
+</I>&gt;<i> French Mageia pages. This redirection is not possible inside the text of the
+</I>&gt;<i> pages, so this is the task of the translators of the page - meaning, this is a
+</I>&gt;<i> bug in the french web translation.
+</I>&gt;<i>
+</I>&gt;<i> It may also be that this link is inside a variable field of a web page, which
+</I>&gt;<i> will net be translated. Then you will be sent to the international forum. I
+</I>&gt;<i> don't know if it is possible to change that.
+</I>
+Then, should I open a bug somewhere else, or is it possible to move this report
+to the correct category ? So the support page's link will be eventually
+corrected.
+
+&gt;<i> If you are sent to the international forum you can go to the section
+</I>&gt;<i> &quot;Communities&quot; and click on the MLO link. Plans are to have a header on the
+</I>&gt;<i> forum site which displays links to all local forums.
+</I>
+Actually I was looking for pointer onto how to get onboard the Mageia
+contributing train and expected to find myself on the international forum.
+
+Cheers !
+Thomas
+
+--
+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="001209.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001211.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1210">[ date ]</a>
+ <a href="thread.html#1210">[ thread ]</a>
+ <a href="subject.html#1210">[ subject ]</a>
+ <a href="author.html#1210">[ 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-June/001211.html b/zarb-ml/mageia-webteam/2011-June/001211.html
new file mode 100644
index 000000000..bec5b6cb9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001211.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CBANLkTi%3DdO3Znt8Xm-L0ozKsfAxnGjDeiWg%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="001210.html">
+ <LINK REL="Next" HREF="001250.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CBANLkTi%3DdO3Znt8Xm-L0ozKsfAxnGjDeiWg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Jun 28 11:20:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001210.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001250.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1211">[ date ]</a>
+ <a href="thread.html#1211">[ thread ]</a>
+ <a href="subject.html#1211">[ subject ]</a>
+ <a href="author.html#1211">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi guys,
+
+it's been some time again. I'll be there for tomorrow, Wednesday
+meeting, at 13:00 UTC (15:00 Paris time) on #mageia-web but any topic
+can be discussed here firsthand.
+
+I would like us to close the post-mortem (will gather notes from
+previous meetings and discussions) and see what we plan for the coming
+months - and welcome Matteo in the team!
+
+Cheers!
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001210.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001250.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1211">[ date ]</a>
+ <a href="thread.html#1211">[ thread ]</a>
+ <a href="subject.html#1211">[ subject ]</a>
+ <a href="author.html#1211">[ 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-June/001212.html b/zarb-ml/mageia-webteam/2011-June/001212.html
new file mode 100644
index 000000000..baeaf64d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001212.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1942] Guatemala mirror down
+ </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%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110628121741.DE57A43107%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="001207.html">
+ <LINK REL="Next" HREF="001213.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1942] Guatemala mirror down</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110628121741.DE57A43107%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1942] Guatemala mirror down">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 14:17:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001207.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001213.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1212">[ date ]</a>
+ <a href="thread.html#1212">[ thread ]</a>
+ <a href="subject.html#1212">[ subject ]</a>
+ <a href="author.html#1212">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1942">https://bugs.mageia.org/show_bug.cgi?id=1942</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 #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-28 16:17:42 CEST ---
+Quicklynet is already disabled in our list, so you have to contact them if you
+want them to fix 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001207.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001213.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1212">[ date ]</a>
+ <a href="thread.html#1212">[ thread ]</a>
+ <a href="subject.html#1212">[ subject ]</a>
+ <a href="author.html#1212">[ 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-June/001213.html b/zarb-ml/mageia-webteam/2011-June/001213.html
new file mode 100644
index 000000000..63812423e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001213.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1942] Guatemala mirror down
+ </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%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110628130342.CA5FA43134%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="001212.html">
+ <LINK REL="Next" HREF="001208.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1942] Guatemala mirror down</H1>
+ <B>Juan Baptiste</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201942%5D%20Guatemala%20mirror%20down&In-Reply-To=%3C20110628130342.CA5FA43134%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1942] Guatemala mirror down">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 15:03:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001212.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001208.html">[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1213">[ date ]</a>
+ <a href="thread.html#1213">[ thread ]</a>
+ <a href="subject.html#1213">[ subject ]</a>
+ <a href="author.html#1213">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1942">https://bugs.mageia.org/show_bug.cgi?id=1942</A>
+
+--- Comment #3 from Juan Baptiste &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">juan.baptiste at gmail.com</A>&gt; 2011-06-28 15:03:42 CEST ---
+As I said, I prefer US mirrors, but until last night when I opened this bug I
+was still getting that mirror, even after deleting
+/var/cache/urpmi/mirrors.cache which is downloaded from the mirrors servers I
+suppose.
+
+I'll test that again 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001212.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A></li>
+ <LI>Next message: <A HREF="001208.html">[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1213">[ date ]</a>
+ <a href="thread.html#1213">[ thread ]</a>
+ <a href="subject.html#1213">[ subject ]</a>
+ <a href="author.html#1213">[ 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-June/001214.html b/zarb-ml/mageia-webteam/2011-June/001214.html
new file mode 100644
index 000000000..f7bdd6cd1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001214.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Insert mageiaitalia.org among community forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3C4E09D84E.9090400%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001190.html">
+ <LINK REL="Next" HREF="001215.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Insert mageiaitalia.org among community forums</H1>
+ <B>Matteo Pasotti</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3C4E09D84E.9090400%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Insert mageiaitalia.org among community forums">pasotti.matteo at gmail.com
+ </A><BR>
+ <I>Tue Jun 28 15:34:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001190.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001215.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1214">[ date ]</a>
+ <a href="thread.html#1214">[ thread ]</a>
+ <a href="subject.html#1214">[ subject ]</a>
+ <a href="author.html#1214">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Il 26/06/11 16.39, Wolfgang Bornath ha scritto:
+&gt;<i> 2011/6/26 Marcello Anni&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt;:
+</I>&gt;&gt;<i> Hi all,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> could you add mageiaitalia.org among the italian community forums that provide
+</I>&gt;&gt;<i> support for mageia? thanks
+</I>&gt;<i> At the same time pls remove the german mandrivauser.de forum, now the
+</I>&gt;<i> German Mageia forum is in place.
+</I>&gt;<i>
+</I>&gt;<i> Thx
+</I>&gt;<i>
+</I>I think it would be great having a forum on mageia.org platform for
+italian users, too (I don't know the availability).
+That way we give to the users a greater feeling of community and at the
+same time we don't have to ask for some kind of &quot;official certification&quot;
+for other resources that can continue to exist anyway.
+But that's my opinion, as I can see even french users have they own
+forum platform (maybe I'm missing some information written into previous
+emails).
+Regards,
+--
+Matteo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001190.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001215.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1214">[ date ]</a>
+ <a href="thread.html#1214">[ thread ]</a>
+ <a href="subject.html#1214">[ subject ]</a>
+ <a href="author.html#1214">[ 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-June/001215.html b/zarb-ml/mageia-webteam/2011-June/001215.html
new file mode 100644
index 000000000..f5e7af33c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001215.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Insert mageiaitalia.org among community forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3CBANLkTi%3DyouMkyDzK4TvFru7e%2B1iqVw5bag%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="001214.html">
+ <LINK REL="Next" HREF="001217.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Insert mageiaitalia.org among community forums</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3CBANLkTi%3DyouMkyDzK4TvFru7e%2B1iqVw5bag%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Insert mageiaitalia.org among community forums">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue Jun 28 15:57:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001214.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001217.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1215">[ date ]</a>
+ <a href="thread.html#1215">[ thread ]</a>
+ <a href="subject.html#1215">[ subject ]</a>
+ <a href="author.html#1215">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/28 Matteo Pasotti &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pasotti.matteo at gmail.com</A>&gt;:
+&gt;<i> Il 26/06/11 16.39, Wolfgang Bornath ha scritto:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 2011/6/26 Marcello Anni&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt;:
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Hi all,
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> could you add mageiaitalia.org among the italian community forums that
+</I>&gt;&gt;&gt;<i> provide
+</I>&gt;&gt;&gt;<i> support for mageia? thanks
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> At the same time pls remove the german mandrivauser.de forum, now the
+</I>&gt;&gt;<i> German Mageia forum is in place.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Thx
+</I>&gt;&gt;<i>
+</I>&gt;<i> I think it would be great having a forum on mageia.org platform for italian
+</I>&gt;<i> users, too (I don't know the availability).
+</I>&gt;<i> That way we give to the users a greater feeling of community and at the same
+</I>&gt;<i> time we don't have to ask for some kind of &quot;official certification&quot; for
+</I>&gt;<i> other resources that can continue to exist anyway.
+</I>&gt;<i> But that's my opinion, as I can see even french users have they own forum
+</I>&gt;<i> platform (maybe I'm missing some information written into previous emails).
+</I>
+You have to evaluate this carefully. There are benefits and
+disadvantages on both sides.
+
+On one side is the benefit of being &quot;inside&quot; the Mageia family. Users
+access is done by LDAP. You (as admin) do not have to care for updates
+or maintenance of the forum software, etc.
+
+On the other side is the need of a tight structure of the Mageia forum
+software management, you can't just up and change a code line for the
+sake of convenience or add your flavor of smilies on request of your
+users or add some MODs you are used to have, as you would do with a
+standalone forum - this has to be decided and done by the sysadmins /
+forum admins. In short: you are not free to do as you like, you depend
+on the decisions and the workflow of others because your forum is a
+part of a larger system.
+--
+wobo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001214.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001217.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1215">[ date ]</a>
+ <a href="thread.html#1215">[ thread ]</a>
+ <a href="subject.html#1215">[ subject ]</a>
+ <a href="author.html#1215">[ 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-June/001216.html b/zarb-ml/mageia-webteam/2011-June/001216.html
new file mode 100644
index 000000000..9ac26fdb6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001216.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+ </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%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20110628161204.9267F43199%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="001254.html">
+ <LINK REL="Next" HREF="001219.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20110628161204.9267F43199%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 18:12:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001254.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001219.html">[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1216">[ date ]</a>
+ <a href="thread.html#1216">[ thread ]</a>
+ <a href="subject.html#1216">[ subject ]</a>
+ <a href="author.html#1216">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+
+--- Comment #3 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-06-28 20:12:01 CEST ---
+Any news about this ? I see you are still listed as admin on the forum.
+
+--
+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="001254.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001219.html">[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1216">[ date ]</a>
+ <a href="thread.html#1216">[ thread ]</a>
+ <a href="subject.html#1216">[ subject ]</a>
+ <a href="author.html#1216">[ 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-June/001217.html b/zarb-ml/mageia-webteam/2011-June/001217.html
new file mode 100644
index 000000000..fae698736
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001217.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Insert mageiaitalia.org among community forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3C4E0A05F6.90106%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001215.html">
+ <LINK REL="Next" HREF="001218.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Insert mageiaitalia.org among community forums</H1>
+ <B>Matteo Pasotti</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3C4E0A05F6.90106%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Insert mageiaitalia.org among community forums">pasotti.matteo at gmail.com
+ </A><BR>
+ <I>Tue Jun 28 18:48:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001215.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001218.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1217">[ date ]</a>
+ <a href="thread.html#1217">[ thread ]</a>
+ <a href="subject.html#1217">[ subject ]</a>
+ <a href="author.html#1217">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Il 28/06/11 15.57, Wolfgang Bornath ha scritto:
+&gt;<i> 2011/6/28 Matteo Pasotti&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pasotti.matteo at gmail.com</A>&gt;:
+</I>&gt;&gt;<i> Il 26/06/11 16.39, Wolfgang Bornath ha scritto:
+</I>&gt;&gt;&gt;<i> 2011/6/26 Marcello Anni&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt;:
+</I>&gt;&gt;&gt;&gt;<i> Hi all,
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> could you add mageiaitalia.org among the italian community forums that
+</I>&gt;&gt;&gt;&gt;<i> provide
+</I>&gt;&gt;&gt;&gt;<i> support for mageia? thanks
+</I>&gt;&gt;&gt;<i> At the same time pls remove the german mandrivauser.de forum, now the
+</I>&gt;&gt;&gt;<i> German Mageia forum is in place.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Thx
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> I think it would be great having a forum on mageia.org platform for italian
+</I>&gt;&gt;<i> users, too (I don't know the availability).
+</I>&gt;&gt;<i> That way we give to the users a greater feeling of community and at the same
+</I>&gt;&gt;<i> time we don't have to ask for some kind of &quot;official certification&quot; for
+</I>&gt;&gt;<i> other resources that can continue to exist anyway.
+</I>&gt;&gt;<i> But that's my opinion, as I can see even french users have they own forum
+</I>&gt;&gt;<i> platform (maybe I'm missing some information written into previous emails).
+</I>&gt;<i> You have to evaluate this carefully. There are benefits and
+</I>&gt;<i> disadvantages on both sides.
+</I>&gt;<i>
+</I>&gt;<i> On one side is the benefit of being &quot;inside&quot; the Mageia family. Users
+</I>&gt;<i> access is done by LDAP. You (as admin) do not have to care for updates
+</I>&gt;<i> or maintenance of the forum software, etc.
+</I>&gt;<i>
+</I>&gt;<i> On the other side is the need of a tight structure of the Mageia forum
+</I>&gt;<i> software management, you can't just up and change a code line for the
+</I>&gt;<i> sake of convenience or add your flavor of smilies on request of your
+</I>&gt;<i> users or add some MODs you are used to have, as you would do with a
+</I>&gt;<i> standalone forum - this has to be decided and done by the sysadmins /
+</I>&gt;<i> forum admins. In short: you are not free to do as you like, you depend
+</I>&gt;<i> on the decisions and the workflow of others because your forum is a
+</I>&gt;<i> part of a larger system.
+</I>I'm still thinking that the advantages you've proposed are more
+important compared to the disadvantages.
+I think that people use forums to find solutions, to propose ideas or
+whatever: the appearance is less important compared to the contents,
+IMHO. Moreover, as you suggested, the admin doesn't have to take care of
+the maintenance.
+If someone doesn't like the official forums because they are not
+stylish, they can always take a look around and find other places that
+are more aesthetically-performant.
+--
+Matteo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001215.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001218.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1217">[ date ]</a>
+ <a href="thread.html#1217">[ thread ]</a>
+ <a href="subject.html#1217">[ subject ]</a>
+ <a href="author.html#1217">[ 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-June/001218.html b/zarb-ml/mageia-webteam/2011-June/001218.html
new file mode 100644
index 000000000..11cf2baa3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001218.html
@@ -0,0 +1,120 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Insert mageiaitalia.org among community forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3CBANLkTimSBpkYtd-mKfPgTBmF8ktTGJnggg%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="001217.html">
+ <LINK REL="Next" HREF="001225.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Insert mageiaitalia.org among community forums</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3CBANLkTimSBpkYtd-mKfPgTBmF8ktTGJnggg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Insert mageiaitalia.org among community forums">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue Jun 28 20:47:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001217.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001225.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1218">[ date ]</a>
+ <a href="thread.html#1218">[ thread ]</a>
+ <a href="subject.html#1218">[ subject ]</a>
+ <a href="author.html#1218">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/28 Matteo Pasotti &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pasotti.matteo at gmail.com</A>&gt;:
+&gt;<i> Il 28/06/11 15.57, Wolfgang Bornath ha scritto:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 2011/6/28 Matteo Pasotti&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pasotti.matteo at gmail.com</A>&gt;:
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Il 26/06/11 16.39, Wolfgang Bornath ha scritto:
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> 2011/6/26 Marcello Anni&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt;:
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;&gt;<i> Hi all,
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;&gt;<i> could you add mageiaitalia.org among the italian community forums that
+</I>&gt;&gt;&gt;&gt;&gt;<i> provide
+</I>&gt;&gt;&gt;&gt;&gt;<i> support for mageia? thanks
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> At the same time pls remove the german mandrivauser.de forum, now the
+</I>&gt;&gt;&gt;&gt;<i> German Mageia forum is in place.
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> Thx
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> I think it would be great having a forum on mageia.org platform for
+</I>&gt;&gt;&gt;<i> italian
+</I>&gt;&gt;&gt;<i> users, too (I don't know the availability).
+</I>&gt;&gt;&gt;<i> That way we give to the users a greater feeling of community and at the
+</I>&gt;&gt;&gt;<i> same
+</I>&gt;&gt;&gt;<i> time we don't have to ask for some kind of &quot;official certification&quot; for
+</I>&gt;&gt;&gt;<i> other resources that can continue to exist anyway.
+</I>&gt;&gt;&gt;<i> But that's my opinion, as I can see even french users have they own forum
+</I>&gt;&gt;&gt;<i> platform (maybe I'm missing some information written into previous
+</I>&gt;&gt;&gt;<i> emails).
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> You have to evaluate this carefully. There are benefits and
+</I>&gt;&gt;<i> disadvantages on both sides.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> On one side is the benefit of being &quot;inside&quot; the Mageia family. Users
+</I>&gt;&gt;<i> access is done by LDAP. You (as admin) do not have to care for updates
+</I>&gt;&gt;<i> or maintenance of the forum software, etc.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> On the other side is the need of a tight structure of the Mageia forum
+</I>&gt;&gt;<i> software management, you can't just up and change a code line for the
+</I>&gt;&gt;<i> sake of convenience or add your flavor of smilies on request of your
+</I>&gt;&gt;<i> users or add some MODs you are used to have, as you would do with a
+</I>&gt;&gt;<i> standalone forum - this has to be decided and done by the sysadmins /
+</I>&gt;&gt;<i> forum admins. In short: you are not free to do as you like, you depend
+</I>&gt;&gt;<i> on the decisions and the workflow of others because your forum is a
+</I>&gt;&gt;<i> part of a larger system.
+</I>&gt;<i>
+</I>&gt;<i> I'm still thinking that the advantages you've proposed are more important
+</I>&gt;<i> compared to the disadvantages.
+</I>&gt;<i> I think that people use forums to find solutions, to propose ideas or
+</I>&gt;<i> whatever: the appearance is less important compared to the contents, IMHO.
+</I>&gt;<i> Moreover, as you suggested, the admin doesn't have to take care of the
+</I>&gt;<i> maintenance.
+</I>&gt;<i> If someone doesn't like the official forums because they are not stylish,
+</I>&gt;<i> they can always take a look around and find other places that are more
+</I>&gt;<i> aesthetically-performant.
+</I>
+That is sure right, but I was not talking about &quot;stylish&quot;. I only
+tried to give a fair picture of both sides.
+
+--
+wobo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001217.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001225.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1218">[ date ]</a>
+ <a href="thread.html#1218">[ thread ]</a>
+ <a href="subject.html#1218">[ subject ]</a>
+ <a href="author.html#1218">[ 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-June/001219.html b/zarb-ml/mageia-webteam/2011-June/001219.html
new file mode 100644
index 000000000..24154ea08
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001219.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20%5BNew%5D%20Can%20not%20edit%20posts%20in%20forum%0A%09%28after%20timeout%29&In-Reply-To=%3Cbug-1956-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="001216.html">
+ <LINK REL="Next" HREF="001220.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20%5BNew%5D%20Can%20not%20edit%20posts%20in%20forum%0A%09%28after%20timeout%29&In-Reply-To=%3Cbug-1956-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 22:19:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001216.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="001220.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1219">[ date ]</a>
+ <a href="thread.html#1219">[ thread ]</a>
+ <a href="subject.html#1219">[ subject ]</a>
+ <a href="author.html#1219">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+ Summary: Can not edit posts in forum (after timeout)
+ Product: Websites
+ Version: trunk
+ Platform: All
+ 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">zen25000 at zen.co.uk</A>
+
+
+Description of problem:
+After a certain (unknown) time delay it is not possible to edit posts.
+This is not, in my experience, normal forum behaviour and is very unexpected
+and undesirable.
+
+There are many valid reasons why it may be necessary to edit a post.
+
+1. It imparts incorrect information.
+2. The information is out of date.
+3. A minor edit would improve comprehension.
+
+In all these cases it is not appropriate to add another post to offer a
+correction as it may be several pages from the original post, also the
+incorrect post would still be available to be read.
+
+Forum posts are searched and used to solve problems in a similar way to the
+wiki.
+Imagine the author not being able to edit a wiki entry.
+
+Surely it is preferable to be able to add a (suitably annotated) correction or
+update to a post.
+
+Can we please remove this timeout?
+
+Time has no relevance here.
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1.
+2.
+3.
+
+--
+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="001216.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="001220.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1219">[ date ]</a>
+ <a href="thread.html#1219">[ thread ]</a>
+ <a href="subject.html#1219">[ subject ]</a>
+ <a href="author.html#1219">[ 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-June/001220.html b/zarb-ml/mageia-webteam/2011-June/001220.html
new file mode 100644
index 000000000..16689f3cf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001220.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110628202936.32C0E4319D%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="001219.html">
+ <LINK REL="Next" HREF="001222.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110628202936.32C0E4319D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 28 22:29:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001219.html">[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001222.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1220">[ date ]</a>
+ <a href="thread.html#1220">[ thread ]</a>
+ <a href="subject.html#1220">[ subject ]</a>
+ <a href="author.html#1220">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-06-28 22:29:36 CEST ---
+This has been discussed at length and after the discussion it was decided. Pls
+see <A HREF="https://forums.mageia.org/en/viewtopic.php?f=18&amp;t=134">https://forums.mageia.org/en/viewtopic.php?f=18&amp;t=134</A>
+
+No need to start all over again.
+
+--
+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="001219.html">[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001222.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1220">[ date ]</a>
+ <a href="thread.html#1220">[ thread ]</a>
+ <a href="subject.html#1220">[ subject ]</a>
+ <a href="author.html#1220">[ 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-June/001221.html b/zarb-ml/mageia-webteam/2011-June/001221.html
new file mode 100644
index 000000000..0a4ba09d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001221.html
@@ -0,0 +1,159 @@
+<!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=%3C20110628220003.F4003431B7%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="001228.html">
+ <LINK REL="Next" HREF="001229.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=%3C20110628220003.F4003431B7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001228.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001229.html">[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1221">[ date ]</a>
+ <a href="thread.html#1221">[ thread ]</a>
+ <a href="subject.html#1221">[ subject ]</a>
+ <a href="author.html#1221">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+ &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001228.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001229.html">[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1221">[ date ]</a>
+ <a href="thread.html#1221">[ thread ]</a>
+ <a href="subject.html#1221">[ subject ]</a>
+ <a href="author.html#1221">[ 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-June/001222.html b/zarb-ml/mageia-webteam/2011-June/001222.html
new file mode 100644
index 000000000..993612ec4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001222.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110628222149.BE9A143165%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="001220.html">
+ <LINK REL="Next" HREF="001223.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110628222149.BE9A143165%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 00:21:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001220.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001223.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1222">[ date ]</a>
+ <a href="thread.html#1222">[ thread ]</a>
+ <a href="subject.html#1222">[ subject ]</a>
+ <a href="author.html#1222">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #2 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-06-29 02:21:48 CEST ---
+(In reply to comment #1)
+&gt;<i> This has been discussed at length and after the discussion it was decided. Pls
+</I>&gt;<i> see <A HREF="https://forums.mageia.org/en/viewtopic.php?f=18&amp;t=134">https://forums.mageia.org/en/viewtopic.php?f=18&amp;t=134</A>
+</I>&gt;<i>
+</I>&gt;<i> No need to start all over again.
+</I>
+Well I missed that topic at the time, but having just read it from start to
+finish I would have expected that the time limit would have been removed by
+now.
+
+What was decided?
+
+A limit is still there, so I think there is every need to start over again.
+
+Having to request a mod to change a post to mark it solved, or to update a
+changed URL or to add a line of text is just crazy - what are we supposed to
+do, send him a patch?
+
+I for one will be giving the forum a much wider berth if this persists.
+It's a pity as I quite enjoyed helping out when I could. (witness my 2237 posts
+in mdv forum since 2008 - many of which have been edited and updated over the
+years).
+
+--
+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="001220.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001223.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1222">[ date ]</a>
+ <a href="thread.html#1222">[ thread ]</a>
+ <a href="subject.html#1222">[ subject ]</a>
+ <a href="author.html#1222">[ 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-June/001223.html b/zarb-ml/mageia-webteam/2011-June/001223.html
new file mode 100644
index 000000000..5672fb2ea
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001223.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629053738.CD4F2431AD%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="001222.html">
+ <LINK REL="Next" HREF="001224.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629053738.CD4F2431AD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 07:37:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001222.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001224.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1223">[ date ]</a>
+ <a href="thread.html#1223">[ thread ]</a>
+ <a href="subject.html#1223">[ subject ]</a>
+ <a href="author.html#1223">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #3 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-06-29 09:37:37 CEST ---
+As you can read at the end of the thread the council took the case (in sync
+with our governance model) and decided what was proposed by some participants
+in the forum thread: there is a 6 hour time-to-edit which is enough to edit an
+occasional error in a forum post.
+
+It does not solve the &quot;mark a thread as solved&quot; issue, that's right. This will
+be done by adding a MOD where you click on a button to mark a thread as solved.
+
+--
+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="001222.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001224.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1223">[ date ]</a>
+ <a href="thread.html#1223">[ thread ]</a>
+ <a href="subject.html#1223">[ subject ]</a>
+ <a href="author.html#1223">[ 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-June/001224.html b/zarb-ml/mageia-webteam/2011-June/001224.html
new file mode 100644
index 000000000..2a43f45b6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001224.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629070718.63644431AD%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="001223.html">
+ <LINK REL="Next" HREF="001226.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>James Kerr</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629070718.63644431AD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 09:07:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001223.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001226.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1224">[ date ]</a>
+ <a href="thread.html#1224">[ thread ]</a>
+ <a href="subject.html#1224">[ subject ]</a>
+ <a href="author.html#1224">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #4 from James Kerr &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jim at jkerr82508.free-online.co.uk</A>&gt; 2011-06-29 09:07:18 CEST ---
+The council discussion is here: (beginning at 18:53:06)
+
+<A HREF="http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-05-02-18.36.log.html">http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-05-02-18.36.log.html</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="001223.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001226.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1224">[ date ]</a>
+ <a href="thread.html#1224">[ thread ]</a>
+ <a href="subject.html#1224">[ subject ]</a>
+ <a href="author.html#1224">[ 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-June/001225.html b/zarb-ml/mageia-webteam/2011-June/001225.html
new file mode 100644
index 000000000..d011fc7b8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001225.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Insert mageiaitalia.org among community forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3C4E0ACB0A.3060602%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001218.html">
+ <LINK REL="Next" HREF="001188.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Insert mageiaitalia.org among community forums</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Insert%20mageiaitalia.org%20among%20community%20forums&In-Reply-To=%3C4E0ACB0A.3060602%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Insert mageiaitalia.org among community forums">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Jun 29 08:49:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001218.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001188.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1225">[ date ]</a>
+ <a href="thread.html#1225">[ thread ]</a>
+ <a href="subject.html#1225">[ subject ]</a>
+ <a href="author.html#1225">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 26/06/2011 16:23, Marcello Anni a &#233;crit :
+&gt;<i> Hi all,
+</I>&gt;<i>
+</I>&gt;<i> could you add mageiaitalia.org among the italian community forums that provide
+</I>&gt;<i> support for mageia? thanks
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> cheers,
+</I>&gt;<i> Marcello
+</I>Done :)
+
+Cheers,
+
+Ma&#226;t
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001218.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A></li>
+ <LI>Next message: <A HREF="001188.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1225">[ date ]</a>
+ <a href="thread.html#1225">[ thread ]</a>
+ <a href="subject.html#1225">[ subject ]</a>
+ <a href="author.html#1225">[ 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-June/001226.html b/zarb-ml/mageia-webteam/2011-June/001226.html
new file mode 100644
index 000000000..73cd22346
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001226.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629113316.F0C17431C5%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="001224.html">
+ <LINK REL="Next" HREF="001227.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629113316.F0C17431C5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 13:33:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001224.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001227.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1226">[ date ]</a>
+ <a href="thread.html#1226">[ thread ]</a>
+ <a href="subject.html#1226">[ subject ]</a>
+ <a href="author.html#1226">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #5 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-06-29 13:33:17 CEST ---
+As I see it, virtually all the discussion to date has been about politics and
+very little about the logic behind this.
+
+Over time, many forum posts become &quot;standard works&quot; on a particular subject and
+are referenced repeatedly by different contributors. When this begins to happen
+the author will often want to expand slightly on the original post and clarify
+some points in response to user queries.
+Any timeout precludes this.
+Adding the same edited information elsewhere also makes any existing links to
+the original post of less value.
+
+I have placed scripts on forums in the past which I have improved over time by
+editing the original and keeping a changelog in the script. I think this is
+preferable to using a 3rd party pastebin, which I see as the only alternative.
+
+Can we remove the time limit for six months and review then, as I feel that the
+current situation will only drive away contributors.
+
+@jkerr - well that seemed to end unresolved and the most sensible comments to
+my eyes were:-
+
+19:41:56 &lt;obgr_seneca&gt; I think it's always a good idea to be open in the
+beginning and more restrictive if proven wrong
+19:42:02 &lt;wobo&gt; it will be easy to explain a limitation to new users when you
+have proof of the need for the limitation
+19:42:02 &lt;tmb&gt; yeah, I really like to start with the assumption that the mageia
+community knows how to behave
+19:42:25 &lt;obgr_seneca&gt; if you are restrictive in the beginning you'll never
+see, if it wouldn't work more openly 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001224.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001227.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1226">[ date ]</a>
+ <a href="thread.html#1226">[ thread ]</a>
+ <a href="subject.html#1226">[ subject ]</a>
+ <a href="author.html#1226">[ 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-June/001227.html b/zarb-ml/mageia-webteam/2011-June/001227.html
new file mode 100644
index 000000000..390e9bcfc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001227.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629124542.7C560431BA%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="001226.html">
+ <LINK REL="Next" HREF="001228.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>James Kerr</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629124542.7C560431BA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 14:45:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001226.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001228.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1227">[ date ]</a>
+ <a href="thread.html#1227">[ thread ]</a>
+ <a href="subject.html#1227">[ subject ]</a>
+ <a href="author.html#1227">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #6 from James Kerr &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jim at jkerr82508.free-online.co.uk</A>&gt; 2011-06-29 16:45:42 CEST ---
+I agree with comment 5. My impression of the council discussion (and the
+consequent decision) is that there was concern about everyone having a &quot;warm
+and cuddly&quot; feeling about Mageia (and each other) and little or no
+consideration of the utility of the Forum as a research resource for users and
+of the fact that this limit can make life difficult for those people who spend
+time providing assistance to other users.
+
+The weakness of the council (when faced with a recalcitrant forum admin) I put
+down to the fact that everyone involved is still learning how to make this
+community-based structure work in practice. Hopefully, as the distro matures we
+will see the council showing a more decisive leadership.
+
+--
+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="001226.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001228.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1227">[ date ]</a>
+ <a href="thread.html#1227">[ thread ]</a>
+ <a href="subject.html#1227">[ subject ]</a>
+ <a href="author.html#1227">[ 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-June/001228.html b/zarb-ml/mageia-webteam/2011-June/001228.html
new file mode 100644
index 000000000..7f9ebb377
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001228.html
@@ -0,0 +1,123 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629133407.B191A431B8%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="001227.html">
+ <LINK REL="Next" HREF="001221.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20110629133407.B191A431B8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 15:34:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001227.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001221.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1228">[ date ]</a>
+ <a href="thread.html#1228">[ thread ]</a>
+ <a href="subject.html#1228">[ subject ]</a>
+ <a href="author.html#1228">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</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 #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-29 17:34:07 CEST ---
+(In reply to comment #6)
+&gt;<i> My impression of the council discussion (and the consequent decision) is
+</I>&gt;<i> that there was concern about everyone having a &quot;warm and cuddly&quot;
+</I>&gt;<i> feeling about Mageia (and each other)
+</I>
+Concern #1 was about the attitude, and indeed, how this would turn out for
+everyone. Concern #2 was about the technical topic at hand, and a decision has
+been reached, waiting to be fully implemented.
+
+&gt;<i> and little or no consideration of the utility of the Forum as a research resource
+</I>&gt;<i> for users and of the fact that this limit can make life difficult for those people
+</I>&gt;<i> who spend time providing assistance to other users.
+</I>
+You have to distinguish the forum-as-a-discussion-place (where keeping posts in
+their original form is crucial) and the forum-as-a-support/doc-tool-place
+(where obsoleting/updating posts, with update timestamps is crucial as well).
+
+Both have their own contingencies and may be best served by distinct platform
+(the former is more in phpBB's original purpose, the latter more in an
+equivalent to <A HREF="http://stackoverflow.com/">http://stackoverflow.com/</A> platform).
+
+If those are to be served by the same platform, that makes several use cases to
+satisfy. And here obviously, the forum was first thought as a discussion
+platform.
+
+So you may of course argue of the contrary, but arguing won't lead as far as
+really giving a hand, joining the team and helping to better configure the
+team, the platform, and if needed, a distinct platform.
+
+Furthermore, arguing of one's experience with forum is not that much helpful -
+some have satisfying experience with forums with no edit capacity, as that was
+an expected behaviour. Some have contrary experiences because they expect
+something different. As said above, it comes down to what is the role of a
+given platform and how expectations are met with it: discussion, sharing,
+supporting, documenting (you have the wiki as well), other?
+
+&gt;<i> The weakness of the council (when faced with a recalcitrant forum admin) I put
+</I>&gt;<i> down to the fact that everyone involved is still learning how to make this
+</I>&gt;<i> community-based structure work in practice. Hopefully, as the distro matures we
+</I>&gt;<i> will see the council showing a more decisive leadership.
+</I>
+I see no weakness here. The Council can expect from everyone, the capacity to
+cool down, understand each others' views and collaborate constructively and
+actively. What we came to is the possibility for everyone in the situation to
+get something good out of the heat generated. Now, how it turns out is another
+point, still to be written.
+
+Not everything is in the hands of the Council (far from that). :-)
+
+--
+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="001227.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001221.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1228">[ date ]</a>
+ <a href="thread.html#1228">[ thread ]</a>
+ <a href="subject.html#1228">[ subject ]</a>
+ <a href="author.html#1228">[ 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-June/001229.html b/zarb-ml/mageia-webteam/2011-June/001229.html
new file mode 100644
index 000000000..6d941fc5b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001229.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20%5BNew%5D%20Devise%20and%20implement%20how%20to%0A%20manage%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3Cbug-1964-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="001221.html">
+ <LINK REL="Next" HREF="001230.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20%5BNew%5D%20Devise%20and%20implement%20how%20to%0A%20manage%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3Cbug-1964-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 15:45:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001221.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001230.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1229">[ date ]</a>
+ <a href="thread.html#1229">[ thread ]</a>
+ <a href="subject.html#1229">[ subject ]</a>
+ <a href="author.html#1229">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</A>
+
+ Summary: Devise and implement how to manage mageia.$tld =&gt;
+ mageia.org redirection
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">rdalverny at gmail.com</A>
+
+
+We have many mageia.$tld domains out there. Some want to redirect to
+mageia.org. We need to know how we manage that:
+ - for domain owners (DNS config)
+ - for admins (vhost config and redirection behaviour)
+ - for webdev (receiving the redirection and deciding what to do next)
+
+--
+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="001221.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001230.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1229">[ date ]</a>
+ <a href="thread.html#1229">[ thread ]</a>
+ <a href="subject.html#1229">[ subject ]</a>
+ <a href="author.html#1229">[ 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-June/001230.html b/zarb-ml/mageia-webteam/2011-June/001230.html
new file mode 100644
index 000000000..1786c3124
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001230.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629134928.19D67431AD%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="001229.html">
+ <LINK REL="Next" HREF="001231.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629134928.19D67431AD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 15:49:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001229.html">[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001231.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1230">[ date ]</a>
+ <a href="thread.html#1230">[ thread ]</a>
+ <a href="subject.html#1230">[ subject ]</a>
+ <a href="author.html#1230">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</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-06-29 17:49:28 CEST ---
+A solution:
+ - have domains point to mageia.org host server;
+ - have a vhost for each domain, that will rewrite the request &quot;mageia.$tld&quot; to
+&quot;mageia.org/?fromtld=$tld&quot;
+ - have the webapp decide or propose where to go, depending on:
+ - a locally maintained map of tld =&gt; language when this is easy [1]
+ - browser language preferences
+ - user interactive decision if needed
+
+[1] Mageia.org website is handling languages, not countries. TLDs are not
+related to languages, but to countries, or non-country stuff. In some cases,
+however, there's a single match (mageia.fr =&gt; mageia.org/fr for instance). In
+some other cases, that may be different (mageia.ch =&gt; de(-ch), fr(-ch),
+it(-ch)).
+
+--
+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="001229.html">[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001231.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1230">[ date ]</a>
+ <a href="thread.html#1230">[ thread ]</a>
+ <a href="subject.html#1230">[ subject ]</a>
+ <a href="author.html#1230">[ 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-June/001231.html b/zarb-ml/mageia-webteam/2011-June/001231.html
new file mode 100644
index 000000000..d6c92bf50
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001231.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629140359.69437431A1%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="001230.html">
+ <LINK REL="Next" HREF="001232.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629140359.69437431A1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 16:03:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001230.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001232.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1231">[ date ]</a>
+ <a href="thread.html#1231">[ thread ]</a>
+ <a href="subject.html#1231">[ subject ]</a>
+ <a href="author.html#1231">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</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 #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-06-29 18:03:59 CEST ---
+There is 2 steps :
+- dns setup, do we host the dns for them or not
+
+Hosting the dns on our server is rather easy, the only problem is the
+administrative burden of renewal ( and the cost )
+Letting people taking care of dns is easier for now, but will be bad if we need
+to do change, and is not good if we want to ensure it work, etc.
+
+
+- vhost setup
+ - would the $tld information be useful ?
+Otherwise, this part would be quite easy, just one template of mod_rewrite and
+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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001230.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001232.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1231">[ date ]</a>
+ <a href="thread.html#1231">[ thread ]</a>
+ <a href="subject.html#1231">[ subject ]</a>
+ <a href="author.html#1231">[ 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-June/001232.html b/zarb-ml/mageia-webteam/2011-June/001232.html
new file mode 100644
index 000000000..af7dcbf11
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001232.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629141338.6186E43169%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="001231.html">
+ <LINK REL="Next" HREF="001233.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629141338.6186E43169%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 16:13:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001231.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001233.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1232">[ date ]</a>
+ <a href="thread.html#1232">[ thread ]</a>
+ <a href="subject.html#1232">[ subject ]</a>
+ <a href="author.html#1232">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</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-06-29 16:13:38 CEST ---
+(In reply to comment #2)
+&gt;<i> There is 2 steps :
+</I>&gt;<i> - dns setup, do we host the dns for them or not
+</I>&gt;<i>
+</I>&gt;<i> Hosting the dns on our server is rather easy, the only problem is the
+</I>&gt;<i> administrative burden of renewal ( and the cost )
+</I>&gt;<i> Letting people taking care of dns is easier for now, but will be bad if we need
+</I>&gt;<i> to do change, and is not good if we want to ensure it work, etc.
+</I>
+So far, let's say that they manage their DNS to point to our server. If
+relevant, and they are ok with it, we may get the hosting/managing ourselves.
+
+&gt;<i> - vhost setup
+</I>&gt;<i> - would the $tld information be useful ?
+</I>
+Yes, to automate the redirection from a given country tld to the proper
+language, if this can be automated easily (remove the &quot;mageia.&quot; part of it and
+send it in the query string), when obvious (other cases will have the list of
+supported languages).
+
+--
+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="001231.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001233.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1232">[ date ]</a>
+ <a href="thread.html#1232">[ thread ]</a>
+ <a href="subject.html#1232">[ subject ]</a>
+ <a href="author.html#1232">[ 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-June/001233.html b/zarb-ml/mageia-webteam/2011-June/001233.html
new file mode 100644
index 000000000..aee14a460
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001233.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629141449.6BE97431A1%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="001232.html">
+ <LINK REL="Next" HREF="001234.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629141449.6BE97431A1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 16:14:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001232.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001234.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1233">[ date ]</a>
+ <a href="thread.html#1233">[ thread ]</a>
+ <a href="subject.html#1233">[ subject ]</a>
+ <a href="author.html#1233">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #4 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-06-29 16:14:49 CEST ---
+I'm not sure what you are talking about.
+
+I own the domain mageia.de. I'm using a costfree hoster for a minimal webspace.
+There's no contents except a .htaccess file:
+--------------------------
+#RewriteEngine On
+#RewriteBase /
+
+RedirectPermanent / <A HREF="http://mageia.org/de/">http://mageia.org/de/</A>
+--------------------------
+
+That's all.
+
+--
+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="001232.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001234.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1233">[ date ]</a>
+ <a href="thread.html#1233">[ thread ]</a>
+ <a href="subject.html#1233">[ subject ]</a>
+ <a href="author.html#1233">[ 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-June/001234.html b/zarb-ml/mageia-webteam/2011-June/001234.html
new file mode 100644
index 000000000..623284471
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001234.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629143041.9E1CC42C02%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="001233.html">
+ <LINK REL="Next" HREF="001235.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629143041.9E1CC42C02%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 16:30:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001233.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001235.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1234">[ date ]</a>
+ <a href="thread.html#1234">[ thread ]</a>
+ <a href="subject.html#1234">[ subject ]</a>
+ <a href="author.html#1234">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</A>
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-29 16:30:41 CEST ---
+ * that works too, with the redirection maintainance being in each
+.htaccess/vhost file (be it hosted on your end, or in a central place);
+ * some people may not want to host it on their end (this bug comes from such
+one query wrt mageia.ro that was discussed on sysadmin ml, but got forgotten);
+ * for one tld, there may be several languages available (.ch =&gt; de, fr, it;
+.us =&gt; en, es for instance);
+ * if we are to manage several domains in a row like this, better have a
+minimal setup;
+ * the proposal above is just to have the same place for all vhosts, redirect
+to the same place and move the redirection map in a single place in the web
+site config).
+
+By the way, thinking of it now, a perhaps even lighter solution could be to
+have all domains config in the same vhost as mageia.org and have the website
+conf detect the virtualhost and act accordingly (no need to redirect to
+mageia.org/?fromtld=).
+
+--
+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="001233.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001235.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1234">[ date ]</a>
+ <a href="thread.html#1234">[ thread ]</a>
+ <a href="subject.html#1234">[ subject ]</a>
+ <a href="author.html#1234">[ 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-June/001235.html b/zarb-ml/mageia-webteam/2011-June/001235.html
new file mode 100644
index 000000000..ce2c87b56
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001235.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629143223.037B543183%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="001234.html">
+ <LINK REL="Next" HREF="001236.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629143223.037B543183%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 16:32:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001234.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001236.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1235">[ date ]</a>
+ <a href="thread.html#1235">[ thread ]</a>
+ <a href="subject.html#1235">[ subject ]</a>
+ <a href="author.html#1235">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</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">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-06-29 16:32:23 CEST ---
+(In reply to comment #2)
+&gt;<i> There is 2 steps :
+</I>&gt;<i> - dns setup, do we host the dns for them or not
+</I>&gt;<i>
+</I>&gt;<i> Hosting the dns on our server is rather easy, the only problem is the
+</I>&gt;<i> administrative burden of renewal ( and the cost )
+</I>&gt;<i> Letting people taking care of dns is easier for now, but will be bad if we need
+</I>&gt;<i> to do change, and is not good if we want to ensure it work, etc.
+</I>
+dns hosting and &quot;administrative burden of renewal ( and the cost )&quot; is two
+different things. We could host the dns, without being owner of/paying the
+domain name. But I don't know if we should do that.
+
+Or we could ask that mageia.org association own the domains, and ask people to
+donate money instead of paying a domain they only redirect to mageia.
+
+--
+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="001234.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001236.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1235">[ date ]</a>
+ <a href="thread.html#1235">[ thread ]</a>
+ <a href="subject.html#1235">[ subject ]</a>
+ <a href="author.html#1235">[ 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-June/001236.html b/zarb-ml/mageia-webteam/2011-June/001236.html
new file mode 100644
index 000000000..320df3b45
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001236.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629143712.8447043183%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="001235.html">
+ <LINK REL="Next" HREF="001237.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629143712.8447043183%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 16:37:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001235.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001237.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1236">[ date ]</a>
+ <a href="thread.html#1236">[ thread ]</a>
+ <a href="subject.html#1236">[ subject ]</a>
+ <a href="author.html#1236">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</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-06-29 16:37:12 CEST ---
+(In reply to comment #5)
+&gt;<i>
+</I>&gt;<i> By the way, thinking of it now, a perhaps even lighter solution could be to
+</I>&gt;<i> have all domains config in the same vhost as mageia.org and have the website
+</I>&gt;<i> conf detect the virtualhost and act accordingly (no need to redirect to
+</I>&gt;<i> mageia.org/?fromtld=).
+</I>
+I think we should have everything official hosted on mageia.org only, so a
+redirect would be better.
+
+So the people visiting websites understand what is official or not :
+ - <A HREF="http://mageia.org">http://mageia.org</A> =&gt; official
+ - <A HREF="http://mageia.[somethingelse">http://mageia.[somethingelse</A>] =&gt; not official
+
+--
+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="001235.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001237.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1236">[ date ]</a>
+ <a href="thread.html#1236">[ thread ]</a>
+ <a href="subject.html#1236">[ subject ]</a>
+ <a href="author.html#1236">[ 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-June/001237.html b/zarb-ml/mageia-webteam/2011-June/001237.html
new file mode 100644
index 000000000..5f87558fc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001237.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629144005.1EA3743183%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="001236.html">
+ <LINK REL="Next" HREF="001238.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629144005.1EA3743183%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 16:40:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001236.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001238.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1237">[ date ]</a>
+ <a href="thread.html#1237">[ thread ]</a>
+ <a href="subject.html#1237">[ subject ]</a>
+ <a href="author.html#1237">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</A>
+
+--- Comment #8 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-29 18:40:05 CEST ---
+(In reply to comment #7)
+&gt;<i> I think we should have everything official hosted on mageia.org only, so a
+</I>&gt;<i> redirect would be better.
+</I>
+That wouldn't change.
+
+&gt;<i> So the people visiting websites understand what is official or not :
+</I>&gt;<i> - <A HREF="http://mageia.org">http://mageia.org</A> =&gt; official
+</I>&gt;<i> - <A HREF="http://mageia.[somethingelse">http://mageia.[somethingelse</A>] =&gt; not official
+</I>
+This one would, in case it were redirected, be rewritten under mageia.org
+anyway. And that is only to manage domains that are registered and people want
+to forward to us.
+
+--
+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="001236.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001238.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1237">[ date ]</a>
+ <a href="thread.html#1237">[ thread ]</a>
+ <a href="subject.html#1237">[ subject ]</a>
+ <a href="author.html#1237">[ 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-June/001238.html b/zarb-ml/mageia-webteam/2011-June/001238.html
new file mode 100644
index 000000000..b639e050e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001238.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629144531.8206F431AD%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="001237.html">
+ <LINK REL="Next" HREF="001248.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110629144531.8206F431AD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 16:45:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001237.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001248.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1238">[ date ]</a>
+ <a href="thread.html#1238">[ thread ]</a>
+ <a href="subject.html#1238">[ subject ]</a>
+ <a href="author.html#1238">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</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-06-29 16:45:31 CEST ---
+(In reply to comment #8)
+&gt;<i> (In reply to comment #7)
+</I>&gt;<i> &gt; I think we should have everything official hosted on mageia.org only, so a
+</I>&gt;<i> &gt; redirect would be better.
+</I>&gt;<i>
+</I>&gt;<i> That wouldn't change.
+</I>
+Ah, I misunderstood you previous comment talking about one vhost for all
+domains.
+
+--
+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="001237.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001248.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1238">[ date ]</a>
+ <a href="thread.html#1238">[ thread ]</a>
+ <a href="subject.html#1238">[ subject ]</a>
+ <a href="author.html#1238">[ 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-June/001239.html b/zarb-ml/mageia-webteam/2011-June/001239.html
new file mode 100644
index 000000000..c4183ec24
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001239.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110629151349.B79614311F%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="001248.html">
+ <LINK REL="Next" HREF="001240.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110629151349.B79614311F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 17:13:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001248.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001240.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1239">[ date ]</a>
+ <a href="thread.html#1239">[ thread ]</a>
+ <a href="subject.html#1239">[ subject ]</a>
+ <a href="author.html#1239">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Mageia |Websites
+ Version|1 |trunk
+ Component|Release (media, process) |www.mageia.org
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="001248.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001240.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1239">[ date ]</a>
+ <a href="thread.html#1239">[ thread ]</a>
+ <a href="subject.html#1239">[ subject ]</a>
+ <a href="author.html#1239">[ 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-June/001240.html b/zarb-ml/mageia-webteam/2011-June/001240.html
new file mode 100644
index 000000000..af01d43a3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001240.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110629151855.B78B5431B5%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="001239.html">
+ <LINK REL="Next" HREF="001241.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110629151855.B78B5431B5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 29 17:18:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001239.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001241.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1240">[ date ]</a>
+ <a href="thread.html#1240">[ thread ]</a>
+ <a href="subject.html#1240">[ subject ]</a>
+ <a href="author.html#1240">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-06-29 19:18:55 CEST ---
+<A HREF="http://www.quicklynet.com/">http://www.quicklynet.com/</A>
+<A HREF="http://mirrors.kernel.org/">http://mirrors.kernel.org/</A>
+<A HREF="ftp://mirrors.kernel.org/">ftp://mirrors.kernel.org/</A> are wrong here
+
+--
+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="001239.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001241.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1240">[ date ]</a>
+ <a href="thread.html#1240">[ thread ]</a>
+ <a href="subject.html#1240">[ subject ]</a>
+ <a href="author.html#1240">[ 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-June/001241.html b/zarb-ml/mageia-webteam/2011-June/001241.html
new file mode 100644
index 000000000..5741768ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001241.html
@@ -0,0 +1,153 @@
+<!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=%3C20110629220003.011BC431CC%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="001240.html">
+ <LINK REL="Next" HREF="001242.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=%3C20110629220003.011BC431CC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001240.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001242.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1241">[ date ]</a>
+ <a href="thread.html#1241">[ thread ]</a>
+ <a href="subject.html#1241">[ subject ]</a>
+ <a href="author.html#1241">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+ Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+ SSL for checksums
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+ Bad bugzilla link for website
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</A>
+ bad encoding for ru and ua
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+ Sync the release notes with the release notes wiki page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+ Manual mirrorlist command in migration guide doesn't work
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+ Wrong checksums of Dual-Arch-CD
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1737">https://bugs.mageia.org/show_bug.cgi?id=1737</A>
+ Forum does not provide prominent registration link
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+ All forums need to refer to each other
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+ Define <A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A> default behaviour
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+ &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001240.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001242.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1241">[ date ]</a>
+ <a href="thread.html#1241">[ thread ]</a>
+ <a href="subject.html#1241">[ subject ]</a>
+ <a href="author.html#1241">[ 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-June/001242.html b/zarb-ml/mageia-webteam/2011-June/001242.html
new file mode 100644
index 000000000..3f2d7d9dd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001242.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630014447.880ED431C5%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="001241.html">
+ <LINK REL="Next" HREF="001243.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630014447.880ED431C5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 03:44:47 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001241.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001243.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1242">[ date ]</a>
+ <a href="thread.html#1242">[ thread ]</a>
+ <a href="subject.html#1242">[ subject ]</a>
+ <a href="author.html#1242">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</A>
+
+Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>
+
+--- Comment #2 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2011-06-30 05:44:47 CEST ---
+<A HREF="http://www.quicklynet.com/mageia">http://www.quicklynet.com/mageia</A> is 404.
+
+<A HREF="http://mirrors.kernel.org/">http://mirrors.kernel.org/</A> doesn't list Mageia, but
+<A HREF="http://mirrors.kernel.org/mageia/">http://mirrors.kernel.org/mageia/</A> does exist.
+
+Both the http and ftp versions from kernel.org work for torrents in opera
+11.50,
+so for those two it's a browser (possibly configuration) problem, not
+a website problem.
+
+--
+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="001241.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001243.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1242">[ date ]</a>
+ <a href="thread.html#1242">[ thread ]</a>
+ <a href="subject.html#1242">[ subject ]</a>
+ <a href="author.html#1242">[ 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-June/001243.html b/zarb-ml/mageia-webteam/2011-June/001243.html
new file mode 100644
index 000000000..f13d37d4c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001243.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630023635.B0F17431C4%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="001242.html">
+ <LINK REL="Next" HREF="001308.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Garth Hoyman</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630023635.B0F17431C4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 04:36:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001242.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001308.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1243">[ date ]</a>
+ <a href="thread.html#1243">[ thread ]</a>
+ <a href="subject.html#1243">[ subject ]</a>
+ <a href="author.html#1243">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</A>
+
+--- Comment #3 from Garth Hoyman &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Gchoyman at gmail.com</A>&gt; 2011-06-30 06:36:35 CEST ---
+It works on Opera
+here's the error message from chromium
+The requested URL
+/mageia/iso/1/torrents/mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.torrent
+was not found on this server.
+
+--
+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="001242.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001308.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1243">[ date ]</a>
+ <a href="thread.html#1243">[ thread ]</a>
+ <a href="subject.html#1243">[ subject ]</a>
+ <a href="author.html#1243">[ 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-June/001244.html b/zarb-ml/mageia-webteam/2011-June/001244.html
new file mode 100644
index 000000000..ded87021b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001244.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630024055.4B138431C4%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="001308.html">
+ <LINK REL="Next" HREF="001245.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Garth Hoyman</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630024055.4B138431C4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 04:40:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001308.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001245.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1244">[ date ]</a>
+ <a href="thread.html#1244">[ thread ]</a>
+ <a href="subject.html#1244">[ subject ]</a>
+ <a href="author.html#1244">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</A>
+
+--- Comment #5 from Garth Hoyman &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Gchoyman at gmail.com</A>&gt; 2011-06-30 06:40:54 CEST ---
+same as above on the next 2 tries
+the 5th attempt was sucessful
+
+--
+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="001308.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001245.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1244">[ date ]</a>
+ <a href="thread.html#1244">[ thread ]</a>
+ <a href="subject.html#1244">[ subject ]</a>
+ <a href="author.html#1244">[ 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-June/001245.html b/zarb-ml/mageia-webteam/2011-June/001245.html
new file mode 100644
index 000000000..2bbdf8d1e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001245.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630024632.E45FD431C3%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="001244.html">
+ <LINK REL="Next" HREF="001246.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Garth Hoyman</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630024632.E45FD431C3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 04:46:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001244.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001246.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1245">[ date ]</a>
+ <a href="thread.html#1245">[ thread ]</a>
+ <a href="subject.html#1245">[ subject ]</a>
+ <a href="author.html#1245">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</A>
+
+--- Comment #6 from Garth Hoyman &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Gchoyman at gmail.com</A>&gt; 2011-06-30 06:46:33 CEST ---
+Firefox worked on the 1st try
+
+--
+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="001244.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001246.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1245">[ date ]</a>
+ <a href="thread.html#1245">[ thread ]</a>
+ <a href="subject.html#1245">[ subject ]</a>
+ <a href="author.html#1245">[ 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-June/001246.html b/zarb-ml/mageia-webteam/2011-June/001246.html
new file mode 100644
index 000000000..efde3388d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001246.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630032410.446AA431C0%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="001245.html">
+ <LINK REL="Next" HREF="001247.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630032410.446AA431C0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 05:24:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001245.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001247.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1246">[ date ]</a>
+ <a href="thread.html#1246">[ thread ]</a>
+ <a href="subject.html#1246">[ subject ]</a>
+ <a href="author.html#1246">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</A>
+
+--- Comment #7 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2011-06-30 07:24:10 CEST ---
+Please don't put 100KB messages in the Comments. It goes to everyone who
+is subscribed to the bugs mailing list, as well as a separate copy to
+everyone subscribed to this bug.
+
+If it's required for the bug report, put it in a text file and attach it. In
+this case, most of it could have been trimmed without making it unclear what
+was happening.
+
+--
+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="001245.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001247.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1246">[ date ]</a>
+ <a href="thread.html#1246">[ thread ]</a>
+ <a href="subject.html#1246">[ subject ]</a>
+ <a href="author.html#1246">[ 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-June/001247.html b/zarb-ml/mageia-webteam/2011-June/001247.html
new file mode 100644
index 000000000..7232b87e2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001247.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630081155.07285431C6%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="001246.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630081155.07285431C6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 10:11:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001246.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1247">[ date ]</a>
+ <a href="thread.html#1247">[ thread ]</a>
+ <a href="subject.html#1247">[ subject ]</a>
+ <a href="author.html#1247">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</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 #8 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-30 12:11:55 CEST ---
+mirrors.kernel.org has several hosts, and one of them is not in sync and does
+not host mageia repository. So it depends on your DNS resolution of the host.
+
+quicklynet.com is different it seems. But its status should have been updated
+from mirrors.mageia.org.
+
+--
+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="001246.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1247">[ date ]</a>
+ <a href="thread.html#1247">[ thread ]</a>
+ <a href="subject.html#1247">[ subject ]</a>
+ <a href="author.html#1247">[ 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-June/001248.html b/zarb-ml/mageia-webteam/2011-June/001248.html
new file mode 100644
index 000000000..080946a85
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001248.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110630114953.ED77543147%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="001238.html">
+ <LINK REL="Next" HREF="001239.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Florin Catalin RUSSEN</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20110630114953.ED77543147%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 13:49:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001238.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001239.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1248">[ date ]</a>
+ <a href="thread.html#1248">[ thread ]</a>
+ <a href="subject.html#1248">[ subject ]</a>
+ <a href="author.html#1248">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</A>
+
+Florin Catalin RUSSEN &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">cfrussen at yahoo.co.uk</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">cfrussen at yahoo.co.uk</A>
+
+--- Comment #10 from Florin Catalin RUSSEN &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">cfrussen at yahoo.co.uk</A>&gt; 2011-06-30 13:49:54 CEST ---
+I saw that this thread was abandoned, but I'd like to breath new life into it
+:<i>-)
+</I>Warning: I have no technical skills in this domain, so please excuse my
+&quot;innocence&quot;.
+
+I own the mageia.ro, there's no DNS service associated with it at the registrar
+where it was bought and there's no renewal fee, I pay once and it's for life.
+Lucky for me it didn't cost me a fortune, only 50 EUR :-)
+
+The registrar technical team told me that as it's registered in their system, I
+only need to replace in the fields where their DNS servers are indicated with
+the Mageia's one. They also told me that this is the easiest way to do it and
+the redirection from mageia.ro to mageia.org/ro/ to be done on Mageia's
+servers.
+
+And, in the end, there's no will to sparse the community efforts in a non
+official site for the Romanian community, this is why I (insist) would like
+that the Romanian's community official site to be mageia.org/ro/ (and redirect
+mageia.ro to it). This will respect and preserve the model in place: an
+official site translated in every possible language :-)
+
+The forum in Romanian language will follow the same model as the others, it'll
+be hosted externally on www.MageiaUsers.ro and there will be a redirection link
+in the official forum. Once again, we (insist) like to preserver the actual
+model in place.
+
+A community is stronger than ever when it stays together.
+
+--
+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="001238.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="001239.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1248">[ date ]</a>
+ <a href="thread.html#1248">[ thread ]</a>
+ <a href="subject.html#1248">[ subject ]</a>
+ <a href="author.html#1248">[ 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-June/001249.html b/zarb-ml/mageia-webteam/2011-June/001249.html
new file mode 100644
index 000000000..bc7a50c90
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001249.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1515] Bad bugzilla link for 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%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110630142636.3E080431DE%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="001057.html">
+ <LINK REL="Next" HREF="001032.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1515] Bad bugzilla link for website</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201515%5D%20Bad%20bugzilla%20link%20for%20website&In-Reply-To=%3C20110630142636.3E080431DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1515] Bad bugzilla link for website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 16:26:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001057.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001032.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1249">[ date ]</a>
+ <a href="thread.html#1249">[ thread ]</a>
+ <a href="subject.html#1249">[ subject ]</a>
+ <a href="author.html#1249">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1515">https://bugs.mageia.org/show_bug.cgi?id=1515</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|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #6 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-06-30 16:26:34 CEST ---
+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="001057.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A></li>
+ <LI>Next message: <A HREF="001032.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1249">[ date ]</a>
+ <a href="thread.html#1249">[ thread ]</a>
+ <a href="subject.html#1249">[ subject ]</a>
+ <a href="author.html#1249">[ 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-June/001250.html b/zarb-ml/mageia-webteam/2011-June/001250.html
new file mode 100644
index 000000000..c177e8e94
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001250.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CBANLkTinzr%3D7ON%3Dy8UCPzBNpWrJThQp1idQ%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="001211.html">
+ <LINK REL="Next" HREF="001252.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CBANLkTinzr%3D7ON%3Dy8UCPzBNpWrJThQp1idQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Jun 30 16:32:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001211.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001252.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1250">[ date ]</a>
+ <a href="thread.html#1250">[ thread ]</a>
+ <a href="subject.html#1250">[ subject ]</a>
+ <a href="author.html#1250">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Jun 28, 2011 at 11:20, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> I would like us to close the post-mortem (will gather notes from
+</I>&gt;<i> previous meetings and discussions) and see what we plan for the coming
+</I>&gt;<i> months - and welcome Matteo in the team!
+</I>
+Ok, nothing much happened actually. It happens. So, Matteo, you're
+very welcome in the team! just ask questions when you feel it to; you
+may want to ask for a mentor in the team, to help you find your
+directions and know what to contribute to, or what to build.
+
+So to sum up here:
+ - <A HREF="http://mageia.org/wiki/doku.php?id=web#mageia_1_release_post-mortem">http://mageia.org/wiki/doku.php?id=web#mageia_1_release_post-mortem</A>
+(taken from past meeting) please update/comment if needed
+ - cleaned up <A HREF="http://mageia.org/wiki/doku.php?id=web">http://mageia.org/wiki/doku.php?id=web</A> - you'll notice
+that some platforms don't have a doc page yet
+ - global nav bar:
+ - full width, with some more items (wiki, bugzilla)
+ - statically spread on a few platforms to evaluate in place
+(forums.mageia.org, bugs; wiki and blog are next)
+ - new wiki: do we have a status?
+ - www (+i18n): I'm late integrating some strings
+ - lots of bugs to review/check/fix/close here:
+<A HREF="https://bugs.mageia.org/buglist.cgi?cmdtype=dorem&amp;remaction=run&amp;namedcmd=Websites%20bugs&amp;sharer_id=133">https://bugs.mageia.org/buglist.cgi?cmdtype=dorem&amp;remaction=run&amp;namedcmd=Websites%20bugs&amp;sharer_id=133</A>
+ - contributors map: any news? (<A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A> )
+ - I pushed <A HREF="http://dashboard.mageia.org/">http://dashboard.mageia.org/</A> a few days ago; it's still
+quite a draft, but that's a start
+(<A HREF="https://bugs.mageia.org/show_bug.cgi?id=1308">https://bugs.mageia.org/show_bug.cgi?id=1308</A> ); code is in svn
+soft/dashboard;
+ - I started a quick mockup of users/groups pages, sourcing from LDAP
+(<A HREF="https://bugs.mageia.org/show_bug.cgi?id=1045">https://bugs.mageia.org/show_bug.cgi?id=1045</A> ), based on Rails for
+now, but not public/versioned yet;
+ - are these still valid?
+ - (wobo) <A HREF="https://bugs.mageia.org/show_bug.cgi?id=860">https://bugs.mageia.org/show_bug.cgi?id=860</A> still valid?
+(German forums);
+ - (obgr) <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1328">https://bugs.mageia.org/show_bug.cgi?id=1328</A> (contributors page);
+ - (dams) <A HREF="https://bugs.mageia.org/show_bug.cgi?id=450">https://bugs.mageia.org/show_bug.cgi?id=450</A> (reporting
+page - we discussed having more graphical items and a new layout, but
+that may be a distinct bug).
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001211.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001252.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1250">[ date ]</a>
+ <a href="thread.html#1250">[ thread ]</a>
+ <a href="subject.html#1250">[ subject ]</a>
+ <a href="author.html#1250">[ 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-June/001251.html b/zarb-ml/mageia-webteam/2011-June/001251.html
new file mode 100644
index 000000000..ed65b0aa8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001251.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mediawiki installation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTi%3D855QNqDN9fx1Aba16H6HKEBFe3Q%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="001175.html">
+ <LINK REL="Next" HREF="001142.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mediawiki installation</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mediawiki%20installation&In-Reply-To=%3CBANLkTi%3D855QNqDN9fx1Aba16H6HKEBFe3Q%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mediawiki installation">rda at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 16:35:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001175.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001142.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1251">[ date ]</a>
+ <a href="thread.html#1251">[ thread ]</a>
+ <a href="subject.html#1251">[ subject ]</a>
+ <a href="author.html#1251">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Jun 21, 2011 at 00:13, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Le samedi 18 juin 2011 &#224; 15:59 +0200, Michael Scherer a &#233;crit :
+</I>&gt;&gt;<i> So now, it even automatically load the db content remotely, and I tested
+</I>&gt;&gt;<i> several time without trouble ( which reduce the chances of failing to
+</I>&gt;&gt;<i> 50% once deployed in production ).
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Next step :
+</I>&gt;&gt;<i> - ldap integration ( should be easy )
+</I>&gt;<i>
+</I>&gt;<i> This part is done.
+</I>&gt;<i> as a side note, mediawiki has a password checking system, so we will
+</I>&gt;<i> have to keep it in sync with the one for identity. I searched for 1 day
+</I>&gt;<i> why misc/misc was refused on my test vm, while blino/misc was ok.
+</I>
+Isn't there a LDAP auth plugin for mediawiki ?
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001175.html">[Mageia-webteam] Mediawiki installation
+</A></li>
+ <LI>Next message: <A HREF="001142.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1251">[ date ]</a>
+ <a href="thread.html#1251">[ thread ]</a>
+ <a href="subject.html#1251">[ subject ]</a>
+ <a href="author.html#1251">[ 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-June/001252.html b/zarb-ml/mageia-webteam/2011-June/001252.html
new file mode 100644
index 000000000..e33ef8a98
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001252.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CBANLkTi%3DfXkUDgFR3rjiZLyUrrxRBVYoCNQ%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="001250.html">
+ <LINK REL="Next" HREF="001253.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CBANLkTi%3DfXkUDgFR3rjiZLyUrrxRBVYoCNQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Jun 30 23:00:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001250.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001253.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1252">[ date ]</a>
+ <a href="thread.html#1252">[ thread ]</a>
+ <a href="subject.html#1252">[ subject ]</a>
+ <a href="author.html#1252">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+&gt;<i> &#160;- are these still valid?
+</I>&gt;<i> &#160; - (wobo) <A HREF="https://bugs.mageia.org/show_bug.cgi?id=860">https://bugs.mageia.org/show_bug.cgi?id=860</A> still valid?
+</I>&gt;<i> (German forums);
+</I>
+If you mean the forum redirection?
+ - <A HREF="https://forums.mageia.org/de">https://forums.mageia.org/de</A> without trailing slash still gives 403
+ - <A HREF="https://forums.mageia.org">https://forums.mageia.org</A> goes to the english forum, no matter what
+browser language
+
+In short: no change.
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001250.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001253.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1252">[ date ]</a>
+ <a href="thread.html#1252">[ thread ]</a>
+ <a href="subject.html#1252">[ subject ]</a>
+ <a href="author.html#1252">[ 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-June/001253.html b/zarb-ml/mageia-webteam/2011-June/001253.html
new file mode 100644
index 000000000..f8c52f244
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001253.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CBANLkTinzoDAZ2tXBLn19npVLzkiUzsiMHA%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="001252.html">
+ <LINK REL="Next" HREF="001254.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CBANLkTinzoDAZ2tXBLn19npVLzkiUzsiMHA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">rda at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 23:07:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001252.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001254.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1253">[ date ]</a>
+ <a href="thread.html#1253">[ thread ]</a>
+ <a href="subject.html#1253">[ subject ]</a>
+ <a href="author.html#1253">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Jun 30, 2011 at 23:00, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i>
+</I>&gt;<i> If you mean the forum redirection?
+</I>&gt;<i> &#160;- <A HREF="https://forums.mageia.org/de">https://forums.mageia.org/de</A> without trailing slash still gives 403
+</I>&gt;<i> &#160;- <A HREF="https://forums.mageia.org">https://forums.mageia.org</A> goes to the english forum, no matter what
+</I>&gt;<i> browser language
+</I>&gt;<i>
+</I>&gt;<i> In short: no change.
+</I>
+I meant the original bug purpose. / redirections is in
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A> and that indeed is not
+solved.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001252.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001254.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1253">[ date ]</a>
+ <a href="thread.html#1253">[ thread ]</a>
+ <a href="subject.html#1253">[ subject ]</a>
+ <a href="author.html#1253">[ 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-June/001254.html b/zarb-ml/mageia-webteam/2011-June/001254.html
new file mode 100644
index 000000000..f7810ed75
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001254.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 26 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%2026%20meeting&In-Reply-To=%3CBANLkTin8C7kM2huXtZCH0yFgnqtYCmZj_g%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="001253.html">
+ <LINK REL="Next" HREF="001216.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 26 meeting</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2026%20meeting&In-Reply-To=%3CBANLkTin8C7kM2huXtZCH0yFgnqtYCmZj_g%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 26 meeting">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Jun 30 23:16:52 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001253.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001216.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1254">[ date ]</a>
+ <a href="thread.html#1254">[ thread ]</a>
+ <a href="subject.html#1254">[ subject ]</a>
+ <a href="author.html#1254">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/6/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+&gt;<i> On Thu, Jun 30, 2011 at 23:00, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> If you mean the forum redirection?
+</I>&gt;&gt;<i> &#160;- <A HREF="https://forums.mageia.org/de">https://forums.mageia.org/de</A> without trailing slash still gives 403
+</I>&gt;&gt;<i> &#160;- <A HREF="https://forums.mageia.org">https://forums.mageia.org</A> goes to the english forum, no matter what
+</I>&gt;&gt;<i> browser language
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> In short: no change.
+</I>&gt;<i>
+</I>&gt;<i> I meant the original bug purpose. / redirections is in
+</I>&gt;<i> <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A> and that indeed is not
+</I>&gt;<i> solved.
+</I>
+Yes, other items of #860 are closed (solved or just closed), so #860
+could be closed as a whole because the open topics are in #1798
+
+--
+wobo
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001253.html">[Mageia-webteam] 2011/week 26 meeting
+</A></li>
+ <LI>Next message: <A HREF="001216.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1254">[ date ]</a>
+ <a href="thread.html#1254">[ thread ]</a>
+ <a href="subject.html#1254">[ subject ]</a>
+ <a href="author.html#1254">[ 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-June/001308.html b/zarb-ml/mageia-webteam/2011-June/001308.html
new file mode 100644
index 000000000..f3b413b40
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/001308.html
@@ -0,0 +1,789 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630023723.791E8431C4%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="001243.html">
+ <LINK REL="Next" HREF="001244.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Garth Hoyman</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20110630023723.791E8431C4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 30 04:37:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001243.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001244.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1308">[ date ]</a>
+ <a href="thread.html#1308">[ thread ]</a>
+ <a href="subject.html#1308">[ subject ]</a>
+ <a href="author.html#1308">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</A>
+
+--- Comment #4 from Garth Hoyman &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Gchoyman at gmail.com</A>&gt; 2011-06-30 06:37:23 CEST ---
+here's the 2nd try on Chromium
+
+d8:announce70:<A HREF="http://linuxtracker.org:2710/8df38a1e678ccbb1ce4d26844e4d64e1/announce10:created">http://linuxtracker.org:2710/8df38a1e678ccbb1ce4d26844e4d64e1/announce10:created</A>
+by25:Transmission/2.31 (12441)13:creation
+datei1306857376e8:encoding5:UTF-84:infod5:filesld6:lengthi651165696e4:pathl53:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.isoeed6:lengthi88e4:pathl57:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.iso.md5eed6:lengthi684e4:pathl61:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.iso.md5.gpgeed6:lengthi96e4:pathl58:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.iso.sha1eed6:lengthi696e4:pathl62:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.iso.sha1.gpgeed6:lengthi310e4:pathl55:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.langseed6:lengthi36593e4:pathl53:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.lsteed6:lengthi35387e4:pathl58:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.lst.fulleed6:lengthi3927e4:pathl60:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.lst.leaveseed6:lengthi18040e4:pathl59:mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.lst.nameseee4:name49:mageia-livecd-1-GNOME-europe1-americas-cdrom-i58612:piece
+lengthi524288e6:pieces24860:/&#183;
+3&#194;&#376;&#209;1&#181;qTw`T&#8216;G&#189;&#178;[q
+&#209;H&#352;&#141;&#186;x&#177;&#376;&#169;&#166;&#251;_&#182; &#8240;&#141;&#338;&#208;&#219;
+&#223;*&#217;&#376;!&#219;&#174;&#176;&#209;!`9&#201;1&#254;!Q&#188;J&#141;&#247;v
+&#8226;6&#205;
+f&#198;=&#8230;&#8211;&#201;
+8&#192;-&#177;X&#206;&#176;.&#8249;&#168;_&#221;Hg&#232;&quot;}|&#8250;&#245;&#208;&#198;'K!0&#166;&#170;&#247;D&#174;&#191;L&#188;&#189;J&#220;k&#166;&#402;&#234;km&#203;&#200;&#166;&#169;&#222;&#251;{;&#183;E&#174;]l&#172;4&#174;&#182;&#186;S&#237;bdD
+Mp
+&#168;R ;&#164;&#180;&#402;
+R'.&#222;#&#235;&#246;A&#180;%&#232;J&#227;Q&#229;a&#8217;&#249;?&#240;&#185;&#179;&#196;&#208;&#230;&#255;&#254;5
+ou&#225;,&#339;&#339;!&#241;&#381;&#207;g&#8221;&#210;&#338;&#238;&#211;&#209;&#167;&#710;x&#242;&#189;}%*Q&#214;&#221;&#239;&#167;&#194;q/&#237;&#173;&#220;&#251;&#248;&gt;6&#192;&#226;&#253;i&#252;s&#199;&#157;!j&#8226;&#234;B&#338;&#163;WhzU&#186;&#8220;w&#382;p5&#207;y&#197;&#184;&#255;c-q&#8218;/&#180;&#144;m&#224;O&#8224;&#8217;&#189;&#168;&#8249;&#234;&#8217;TA11E&#244;6&#169;3}_`&#180;xP&#188;&#167;&#8482;&#169;M&#172;&#254;&#8216;+
+&#180;&#402;&#250;&#352;&#173;(&#212;&#244;zs&#255;&#382;
+QY?&#201;n_E&#210;{MR&#255;&#172;&#8240;&#8224;&#8220;C&#174;S3l{&#218;T&#166;o&#172;zJ&#240;&#339;&#213;&#224;o&#196;&#8249;&#201;&#184;&#198;`&#157;H
+&#205;&#201;QHb&#402;&#193;[&#250;&#250;&#229;&#237;$M#&#170;&#8226;&#234;Gf&#167;&#177;&#210;3;&#180;&#8212;&quot;,
+&#214;*{&#376;&#240;&#184;&#8222;&#223;fR&#221;mc&#212;&#225;&#710;&#382;Bm&#189;&#228;&#8364;&#202;&#255;&#143;
+&#339;&#8222;&#177;&#179;&#166;&#252;.&#8240;&#175;Z&#162;&#232;H:&#129;&amp;&#211;&#732;&#247;&#192;&#8221;&#710; #I-^U&#8222;$&#198;&#182;&#196;&#181; s~SP&#224;&amp;3&#8249;k?&#141;&#8222;A&#163;&#174;&#144;c&#221;J&#376;P&#215;
+Um&#206;&#197;&#8364;&#353;F&#732;&#209;&#242;&#231;&#221;LEp)n?&#353;iD&#244;&#8218;&#186;xe&#220;&#249;&#180;&#236;|&#8250;;&#166;&#206;&#8212;&#210;f&#163;&#8217;&#199;&#166;0&#8225;&#161;Y&#208;&#184;&#8218;x&#161;a&#234;&#250;&#224;n|o}&#382;&#238;&#229;aj&#255;U&#247;.&quot;+y&#165;&#248;3N9&#402;&#161;2Y&#8482;&#339;&#226;w(UmUyA&#247;&#253;&#174;U&#206;&#227;&#157;&#8225;f&#199;&#235;+
+H&#223;4&#216;&#732;&#241;5ERMF&#194;&#183;g1NQij&#239;1&#187;&#218;&#247;O&#381;&#180;&#244;{&#129;&#177;&#224;&#204;&#165;&#177;&#251;&#229;&#202;&#214;E7&#203;{&#338;&#235;Q6&#247;I};&#208;G,P&#8230;&#8222;&#234;7&#194;g5&#8212;&#214;2
+&#8482;prh&#144;,x&#213;u&#164;&#179;&#246;&#251;IS]&#8226;&#245;&#194;&#211;&#8216;&#211;&#190;;&#226;5yi&#222;&#217;5&#196;&#8250;:E&#178;&#208;&#179;0M&#165;&#353; ?&#209;?&#164;&#218;&#255;Fl&#189;
+&#402;&#164;Z&#190;&#8221;&#236;^F9&#245;o&#239;&#221;&#232;&#218;&#240;&#226;:6&#141;C&#202;&#169;&#710;&#186;&#246;&#235;.&#232;&#206;.f0Y&#8220;q%&#232;&#157;FV4&#194;&#233;&#247;[&#157;8&#171;&#164;uK&#8212;&#171;_&#166;
+E4&#8225;&#227;&#381;&#176;&#245;&#254;U&#176;&#243;&#183;&#182;&#241;x&lt;&#234;/
+pj&#249;p&#237;&#186;f&#199; x&#161;&#8222;&#8216;D&#161;&#381;&#186;AK
+E~o&#221;&#240;&#246;&gt;&#236;&#171;&#8240;&#233;j&#353;i &#339;&#209;
+_Hpi8&#8220;d&#220;K&#166;Y&#382;&#232;&#255;&#195;&#230;&#188;&#8222;f&#206;&#234;&#202;}I&#242;&#240;&#352;tb&#255;&#143;;&#161;&#196;&#402;&#217;&#255;2]&#244;&#192;d&#8220;
+&#338;&#215;&#204;&#225;&#216;&#8225;&#238;&#170;&#339;&#227;&#203;&#162;&#225;&#232;&#252;L&#223;&#196;&#8211;G&#178;&#170;&#194;&#208;&#170;&#243;&#241;|r&#198;HZ
+&#144;&#162;W&#200;&#209; &#239;&#253;&#181;&#190;;u&#242;#R~&#254;(&#8224;`&#382;&#8212;u&#180;&#247;&#208;&#214;&#212;jR&#241;&#176;i&#8230;&#204;&#244;&#382;\C&#244;3I&#202;&#164;&#177;&#252;&#175;&#8249;&#162;&#247; &#8218;/~7
+&#338;&#213;'&#214;&#183;Y&#710;&#243;7&#202;.7&#252;&#207;2&#8225;Np&#173;&#8221;&#255;&#164;IsJ5b&#8212;9*&#164;&#191; &#219;0&#8217;&#249;&#376;7&#204;&#129;~.&#177;&#129;
+&#178;&#184;&#8211;F&#177;zC&#188;?b7&#8222;&#202;&#8249;&#245;&#353;&#8249;&#246;hBT&#732;%&#8221;BG&#229;Q&#161;.&#163;&#197;&#192;U&#254;CZ k&quot;3K&#225;&#172;&#247;*W2&#215;&#247;&#222;0&#223;z &#129;&#218;}&#710;C
+2&#173;&#198;Z&#141;&#184;&#238;D&#237;&#169;&#185;&#8225;v&#236;*&#174;&#229;&#235;=&#353;J&#233;PRW&#216;l&#338;&#189;&#227;&#255;dW&#8216;&#209;K&#181;&#353;&#163;
+&#208;O&#252;m:4&#197;k&#238;&#166;4&#192;&#226;&#206;&#8211;&#222;&#208;&#129;&#202;&#175;2P E&gt;&#8225;&#163;{&#184;&#129;Y&#247;&#8482;&#8221;V(&#221;&#214;&#241;&#250;|P&#199;rnI&#232;&#176;$&#216;&#8222;&#182;}&#192;&#353;&#8212;+A&#209;6
+?&#238;&#8225;`&#228;Ny&#218;&#167;&#169;&#8240;&#189;&#247;V&#239;&#242;&#229;-&#202;&#8364;&#199;1N&#8222;&#178;;&#187;/&#219;c&#218;&#8240;&#162;&#141;&#203;&#8250;&#213;u&#8482;
+&#218;N&#237;&#215; S
+C&#171;&#129;&#185;K&#381;4&#208;XW6&#225;&#8226;!y 6&#251;&#191;&#183;&#167;r9)&#174;&#186;4;&#8212;&#157;&lt;m&#210;&#195;w
+)j&#229;&#227;k)QP&#243;&#218;&#211;&#199;`2*.&#225; &#216;&#8482;&#381;&#353;&#8225;I|&#219;8F&#200;&#199;&#246;&#200;&#231;&#710;&#172;A&#206;Y&#228;&#141;&#224;
+O&#402;'h&#176;&#212;&#8250;&#165;&#129;&#8217;&#205;2
+&#228;&#202;&#249;&#129;ZH&#8220;@*Q&#193;&#252;Y.
+&#218;&#171;0&#382;
+&#169;&#185; &#244;&#186; l&#217;&#207;&#245;&#8364;=)@b|&#184;nj&#186;s&lt;
+&#240;&#223;D:cce
+H#*'&#192;&#166;&#222;I&#250;F&#144;&#209;3&#8221;H&#187;&#338;e&#201;&#710;xND&#200;&#353;Q&#199;cJa&#165;&#183;&#173;&#229;&#184;&#8211;&#8250;qy}&#168;s8&#249;D&#219;&#229;&#219;&#220;XPv&#241;&#204;grM&#174;&#177;Y$0&#169;=&#166;P{&#172;&#173;&#143;&#246;&#212;&#199;&#184;&#253;&#215;&#732;&#174;&#244;,&#236;
+&#163;7&#8482;Ydx
+p&#220;e&#194;&#187;&#202;CR&#171;&#197;&#215;&#144;;]c&#220;~&#250;&#186;*7&#237; &#165;
+F&#141;t&#8211;&#228;&#186;&#236;&#234;
+&#143;
+7&#255;F
+O-&#234;&#234;&#209;&#8221;&#200;&#187;.&#184;&#170;&#187;[&#253;&#177;&#204;s&#201;Z5&#8240;R&#199;&#238;&#241;!&#195;&#196;%&#252;2tt&#197;LT&#200;muWo&#252;&#175;tN&#216;&#8482;,@J$BM&#8249;&#195;&#8240;%&#171;#
+]el`&#242;{(&#253;6&#187;&#193;&#169;&#189;&#195;&#710;&#172;&#225;&#8212;&#247;&#376;!F&#8218;&#193;&#213;&#189;H-&#190;&#207;~N&#8220;&#353;&#173;;&#8224;
+&#192;&#244;&#171;&#224;T&#212;&#157;K\&#255;&#201;\&#353;Jk&#241;RExV&#234;e&#144;/&#249;#&#194;:
+&#165;&#143;&#169;^&#8212;&#199;&#172;xH=&#249;&#338;&#381;h&#200;\&#8249;b&#215;&#8225;wP&#241;Wi&#353;
+&#214;&#191;e8&#191;~!:{H&#141;dy&#194;&#710;&#182;&#8230;&#338;/
+k&#8225;(c&#187;&#209;&lt;,&#171;&#8240;5&#202;&#180;&#201;&#199;&#162;&#245;&#195;t&#218;]&#8226;|&#201;m&#198;
+&#381;&#190;s&#235;&#174;&#244;
+&#244;-&#8220;&#224;&#226;&#231;q&#213;&#165;&#242;)&#184;&#183;&#241;&#338;)&#187;&#188;
+&#176;&#181;&#217;&#339;&#177;'&#8225;&#221;&#212;&#166;+&#216;&#208;9&#244;-&#199;
+b}&#203;&#188;+&#381;E
++&#213;&#8221;&#193;mHK&#214;
+8&#254;&#240;[&gt;`CU&#247;&#165;&gt;&#8249;&#231;Z?&#8240;&#250;Q&#8225;&#172;Ta&#224;&#186;&#244;
+&#183;a&#220;&#163;3+&#187;&#162;&#162;-&#8211;&#189;&#184;&#382;T&#201;&#8364;R&#213;&#251;&#182;3&#183;8&#193;1#&#230;&#255;&#169;&#202;&#212;W&#198;A&#8217;&#166;&#8250;&#224;
+qhkv&#220;&quot;&#352;&#175;E&#204;w&#194;)-&#223;&#206;9&#199;&#223;&#163;&#254;&#8221;&#8230;&#353;&#234;&#230;
+&#8212;e&#239;&#166;&#171;&#186;WO&#169;&#180;&#8221;`&#214;~&#210;EU&#8364;&#143;e
+G&#216;&#8222;4&#174;&#181;&#172;@Sc&#244;~L
+&#197;&#176;&#8230;&#210;
+C&#246;y1&#710;`&#214;&#8226;&#8250;&#218;&#172;
+lcw&#184;sZU.J&#8218;&#157;C
+&#217;&#191;&#161;@O]&#352;U&#172;&#217;u&#220;&#235;&#8240;&#218;&#8211;?&#206;&#381;&#236;&#213;&#8226;&#207;N&#8216;s&#224;&#206;&#235;!&#218;X&#241;@&#221;&#165;d&#8220;*N&#181;8&#213;&#208;P(pX(g&#225;&#239;&#208;/}&#204;N%&#196;&#185;&#177;4;&#230;3gdB&#252;&#163;&gt;a&#168;T&#170;&#8220;&#376;
+D&#201;t&#240;&#8240;&#223;&#188;&#177;&#251;'&#185;&#217;AOz&quot;h6&lt;&#168;Amk&#710;&#8250;&#8217;&#247;K&#173;&#143;&#162;&#710;
+&#176;H&#233;&#231;&#129;j&#237;&#217;&#252;Jl#&#8220;g&#161;&#246;%&#211;&#191;&#192; &#172;-&#220;&#204;&#164;&#189;x^&#172;&#239;&#249;&#353;
+j&#8216;T&#195;&#197;&#200;&#189;6&#184;&#8216;&#220;&#214;&#205;&#181;&#206; +&#226;
+&#185;&#234;k
+&#255;&#248;&#161;&#8482;8ROt&#8217;&#129;x&#187;&#222;[ &#212;/&#175;i&#224;&#8217;
+&#248;u&#200;),`d&#246;&#234;e&#8250;&#231;S&#8221;m&#208;&#8224;J&#194;&#227;`&#208;q&#202;&#249;N2
+&#8216;&#187;&#199;&#171;&#8221;&#216; &#223;c&#166;FD
+^&#228;&#180;P&#177;&#234;
+hp&amp;~&#187;Lm&#226;&#226;&#183;Q&#183;8&#225;N&#171;f0&#197;&#178;1&#195;&#183;$n&#221;&#167;&#219;4&#228;
+&#169;B&#224;u&#217;&#8212;&#175;&#252;H&#244;N &#162;&#166;|Z&#198;&#245;&#243;&#238;p&#207;&#253;&#198;&#187;&#144;5&#177;
+W&#198;&#183;uJS&#251;&#710;]&#710;T&#212;*V&#197;0&#221;&#382;v.o&#129;~k&#167;a&#248;g&#200;&#220;5&#197;&#253;&#168;'J(&#178;U&#217;&#8211;Z&#8482;^&#8230;&#225;uO#&#162;&#234;p&#8212;&#215;q&#172;&#166;o&#201;&#255;_K&#177;&#208;&#163;&#166;&#168;&#194;F&#157;
+&#8249;'7i&#165;&#202;5Y&#233;&#231;20&#173;e&#376;&#220;&#338;&#207;&#168;#&#144;2&amp;&#8225;&#381;&#8240;&gt;&#173;&#238;&#222;&#205;
+h&#338;L&#353;C_&#188;&#166;&#175;&#202;&#166;D9&#189;&amp;wt&#224;\&#8482;4&#8221;&#209;b&#8211;y,&#353;1&#8249;&#178;&#241;[
+5u{&amp;Da!&#210;C/c&#223;&#170;O&#339;&#174;&#180;&#206;&#239;&#8222;R&#200;Y&#182;&#8221;/j &#203;&#8216;&#196;-d&#165;I&#129;&#143;+&#8230;Y&#8217;&#193;&#176;*&#175;&#195;&#212;Ty&#8240;&#221;
+x&#171;&#207;&#243;&lt;&#194;&#8240;\*x.V&#162;v&#189;b&#237;O_&#207;}mY/gn9&#204;&#250;&#221;Ed0Zs2&#8217;&#236;K[&#8211;[YRG&#8249;&#236;&#196;&#182;&#8230;-&#223;4&#8240;&#217;@
+5&#732;L&#180;&#353;&#8222;&#237;%&#212;&#218;d&#194;&#8217;k&#182;&#165;3&lt;]d&#8216;J&#170;O~&#252;&#205;&#381;-&#186;P
+a&#247;Ai&#200;*P&#216;&#198;&#243;&#169;/&#223;&#246;v&#171;M&#164;&#8224;&#203;t&#8364;&#8364;&#198;&#141;0S~&#190;&#163;&#205;&#229;#&#216;&#246;&#8224;&#250;&#213;&#173;&#222;@h^
+&#198;&#8364;&#376;&#8226;&#176;&#234;/A&#192;S&#225;&#229;&#141;&#249;N&#8250;&#211;&#163;L&#192;&#246;&#248;m&#201;&#248;&#382;i2&#8249;&#237;
+&#248;&#224;r&lt;&#732;
+&#225;&#200;&#175;Aj38&#171;&#250;:&#8224;&#201; &#222;&#203;&#210;&#169;c&#228; ,&#220;^&amp;&#168;F&#164;&#177;7{n
+&#206;&#165;&#204;P:Y&#217;&#197;aE&#255;&#208;A*&#143;&#144;&#225;
+b&#202;?F:
+&#215;&#229;&#202;^&#253;&#243;~&#248;fm&#185;&#239;Q&#211;&#220;V&#339;P&#255;&#229;0*&#381;&#237;o&amp;u&#216;&#8211;?:&#732;&#213;&#161;&#239;&#209;
+&#186;&#166;
+&#194;&#338;&#176;c&#241;&#8222;{&#177;k:&#732;&#710;&#194;*C4i[&#164;&#251;=&#193;&#244;&#172;g&#8218;&#183;&#166;E&#165;&#8250;&#238;
+&#234;&#157;&#215;&#8250;
+&#214;&#177; b0&#180;
+&#171;z&#161;)&#228;q&#196;5&#213;&#223;&#187;5&#210;&#174;&#216;p&#236;&#178;
+&#8211;&#192;&#237;6^&#218;S&#179;hI&#225;?
+&#204;\,VZj&#161;&#234;K&#171;t&#208;#1r&lt;&#251;&#170;1&#382;&#232;&#192;&#189;1&#8230;LJ&#214;&#212;&#376;&#170;&#186;&#175;rR
+6&#163;E
+&#193;&#191;&#129;2:&#175;M&#224;&#164;&#178;V5
+o&#215;n;^&#251;&#217;g55c&#254;`&#144;K)Cw&#191;W/&#190;&#217;&#8212;/&#179;&#207;&#192;t{&#163;d&#212;`&#227;
+&#8217;&#254;&#8364;
+&#239;&#238;b&#191;6&#255;3&#211;N+&#250;m&#233;~_6&#242;&#206;QXk&#192; TS&#212;&#8226;+&#209;H
+@&#8225;2o&quot;&#162;Y&#8211;&quot;&#188;&#194;&#211;&#245;SR|&#352;r&#202;&#229;&#8240;
+&#382;&#254;&#219;&gt;ii&#244;
+&#191;&#209;U&#203;&#191;&#189;UEU&#8224;G&#8226;&#218;&#237;l{u,&#209;&#241;T&#209;[&#376;&#224;&#207;,&#169;&#198;&#242;6&#182;&#252;&#8211;&#197;&#165;&#236;Z&#201;&#174;&#209;&#242;k)&#8212;90J&#179;&#8212;.&#247;&#230;&#183;a&#172;c&#8224;j
+~&#8222;&#240;&#174;&#205;&#236;&#196;&#141;x&#732;j&#352;&#247;&#203;,n&#181;i&#190;UT&#8221;Tq&#239;&#8230;&#189;&#141;A&#8220;&#174;
+
+&#8220;&#8217;
+&#169;&#143;!V&#233;&#180;&#214;]i&#144;d&#233;&#174;&#169;
+&#227;&quot;[&#225;&#243;&#245;I&#381;&#238;&#203;o&#179;7&#186;S&#169;&#217;(&#248;&#381;!&#218;$&#215;&#165;&#211;&#170;&#217;&#183;8&#8226;&#184;p&#209;&#210;&#177;&#8249;&#228;!&#163;&#8221;e&#249;&#226;&#248;&#188;&#249;)}&#180;&#381;=&#339;;&#215;N&#186;jK&#353;&#170;&#234;&#182;&#236;&#381;
+r;
+&#8482;1&#189;&#8482;&#143;&#199;&#214;%&#181;'&#164;&#164;2/&#167;&#353;H^/&#174;7&#242;&#214;&#8220;&quot;
+Vu&#8211;RiPe&#166;&#180;Z&#8211;L&#8220;&#209;_&#246;:&#710;&#192;&#194;+&#8224;}&#206;mcU$p0&#206;~&#245;v&#8225;&#162;&#234;H&#233;&#8212;
+&#179;z|&#8212;/&#204;Ut&#240;&#8224;&#196;&#8224;r&#8216;/&#244;&#176;&#227;$_b#&#193;&#185;  &#227;
+&#197;&#201;&#8482;:&#181;
+&#219;1x&#230;4&#240;&#382;9&#8220;;&#225;&#163;&#234;G&#8212;/&#209;
+&#241;&#254;&#211;&#191;&#188;&#178;&#186;Pl\&#732;&#205;}&#8249;uM#&#174;&#8249;!p&#205;&#8240;&#8249;}&#339;&#206;MI&#205;&#197;&#129;A&#244;Xm&#230;&#233;&#188;&#194;j&#189;6&#8218;g8{%&#182;&#382;&#8220;}q&#238;
+&#172;/aB8%&#225;CC?&#8217;&#179;&#339;9H&#143;&#175;&#189;|(-&#206;&#353;x&#217;c&#732;i&#233;&#222;fJ&#202;&gt;&#239;&#236;.&#167;5,&#170;&#221;N&#237;&#245;@&#248;&#184;&#208;+:&amp;&#229;i&#252;u&#226;&#173;&#236;c&#165;&#141;,})tS&#193;&#8211;&#157;
+/&#381;&#208;&#194;O&lt;#&#205;&lt;a&#255;B?&#185;b&#166;&#197;&#219;&#165;
+&#223;&#168;&#352;&#8364;&#208;&#8226;&#205;&#8250;&#8249;&#216;5~D0x&#249;&#167;E&#161;H&#255;&#199;`&#170;&#163;0la&#143;\R&#181;
+&#353;&#205;&#163;^&#213;&lt;&#710;&#242;&#168;
+&#129;(&#188;&#376;6&#184;v7&#180;&#402;7&#194;%/&#236;95&#205;ioPz/ee&#207;&#222;)&#8224;&#8216;&#230;e
+O,&#164;?h &#252;GW3J&#184;&#200;&#143;&#180;+0Jl&#8364;&gt;&#197;&#220;q
+0&#254;&#8212;&#8230;&quot;&#163;
+&#253;&#246;&#8226;b&gt;&#249;&#216;if&#376;&#201;}&#220;n&#254;2D&#166;hd&#167;Xhl L&#185;G&#196;&#168;&#8221;&#193;&#204;&#161;
+-
+h&#233;&#177;V&#186;vX&#194;&#710;&#178;r1&#221;Y&#353;&#8222;&#141;&#200;k&#230;&lt;2&#353;:
+&#245;&#181;&#205;&#198;n&#204;T&#187;&#201;&#170;&#382;&#226;&#230;&#233;5$m&#208;O&#222;&#8240;;X&#228;F&#239;&#249;|
+&#8221;*v&#141;Mb9&#174;nTV6&#170;!P&#382;&#141;&#195;&#199;kt~B&gt;&#172;&#212;$\&#8217;&#172;&lt;&#252;&#198;4z&#183;&#8250;&#234;+&#247;&#168;\.&#179;&#244;W lo)&#196;
+&#233;~/&#227;&#171;&#246;&#208;&#209;R:&#212;c&#382;&#170;F&#174;8:&#251;5&#227;n&#250;n&#235;Si
+&#8212;&#8364;7
+H7&#230;!&#207;&#352;&#250;
+&#249;&#210;&#353;&#188;AQ&#376;e&#215;Y&quot;uq&#235;&#181;D&#190;p&#8218;&#163;&#339;O&#184;&#176;&#188;&#245;&quot;
+_L_&#201;d/&#252;&#192;&#183;&#169;p&#221;&#8220;&#175;o&#163;m&#164;&#236;&#236;&#215;&#213;&#381;&#177;eE9&#381;F&#230;rPZ&#181;1F&#8218;&#8250;&#165;&#226;
+&#187;&#226;O&#228;&#167;&#175;&#235;(&#232;&#255;&#232;/&#177;csv
+&#204;&#157;jd&#229;&#220;&#163;0&#234;&#172;&#177;&#183;/&#8216; -{R&#224;&#222;N&#219;&#243;&#241;&#252;0@
+&#168;(&#8249;$8Y{&#185;i
+&#143;&#255;&#241;&#162;&#234;&#141;&#8482;&#229;V,![&#188;&#246;&#201;&#8230;&#173;&#402;&#220;&#242;u&#8482;&#224;W&#353;
+&#244;&#382;O&#188;%&#238;4i&#254;@jD&#189;&#246;&#188;&#194;&#182;&#352;&#710;&#169;&#178;&#248;y&#177;[&#168;&#193;=&#179;&#228;?&#223;w&#251;A`&#187;&#235;&#232;&gt;&#170;&#8212;&#8225;&#248;&#168;8M&#248;&#190;&#164;;&#244;&#8225;t&#250;&#224;K
+rI&#141;&#181;&#255;&#237;x&#8211;({&#177;lJi[&#241;\&#338;&#211;&#162;&#176;X&#172;&#186;Y&#170;&#8212;&#8224;&#196;&#8220;v&#221;MH&#210;&#164;!TwQ9&#162;'&#204;&#353;d`&#209;.wJ&#172;&#208;
+k&#229;!&#221;&#208;&#248;&#234;5
+&#732;&#376;R#&#182;&#217;&#250;&#8211;&#193;t&#221;kW&#210;V&#211;vQX'&#167;,&#202;)r&#194;&#174;&#192;&#198;@W&#236;&#247;t[.U#&#210;&#8240;&#211;&#223;qM&#192;v4&#710;b&#165;&#199;:
+&#174;&#165;&#248;/&#166;Gc&#381;&#189;M&#239;&#168;u8&#241;m&#170;&#214;&#176;&#170;J&#165;&#165;&#239;|&quot;)&#8224;'T&#191;&#8364;&#202;&#205;&#231;&#234;&#169;&#251;&#176;T0~cM&#170;}&#215;&#226;?&#252;&#157;^1&#8226;&#8225;
+ &#247;o&#8226;&#209;Qk`&#240;&#8212;&#202;&#171;&#166;&#732;L\Z&#226;2G&#178;
+&#226;&#197;&#187;&#229;&#161;&#244;&#247;D*U&#141;&#8218;RR&#218;K&#243;{&#194;q&#710;&#217;&#8218;p&#175; &#223;LwF&#167;&#243;&#237;&#186;]&#163;&#190;&#353;&#352;&#172;/&#186;&#248;i&#221;&#179;&#184;9&#215;&#171;&#338;&#172;G(d&#231;y&#8250;&#244;bF&#211;o&#213;oA&#8482;K&#225;&#186;'^&#239;&#177;&#166;
+zz&#180;9&#228;_&#187;&#203;&#222;&#143;&#220;&#339;dZ&#183;W&#8240;&#172;Px&#216;+
+&#732;Y&#195;&#166;#=&#167;n&#8217;(&#252;
+&#168;&#187;C&#245;&#8225;k&#176;&#8218;Y&#204;&#215;&#210;&#129;q&#195;&#8212;MJ &#184;t&#179;%D&#183;&#8211;;\E4&#165;n&#164;&#217;&#402;z&#221;&#202;&#8221;&#8216;&#174;&#179;&#191;&#195;&#381; i&#213;
+&#253;Zs&#189;*;&#187;*#`&#248;&#198;Gw@?g&#202;lM&#8222;&#143; &#198;&#220;T&#234;y&#190;&#8221;
+&#255;&#213;&#193;K
+OI&#8224;2&#179;&#190;&#250;&#162;8LPg&#8222;&#216;R&#182;&#222;KYB%&#710;$&#187;\&#170;yq&#242;&#8222;&#205;L&#190;M
+&#255;Q&#179;
+&#216;&#8222;&#200;#&#206;&#129;+]MT&#202;s&#338;Zpe&#246;4&#199;&#164;%&#8249;&#175;&#339;;&#168;&#169;&#207;&#162;&#196;&#8216;&#188;&#173;&#243;&#169;&#170;_&#189;&quot;&#8230;&#8216;&#382;&#157;&#222;Rt^&amp;&#233;&#174;&#8230;j&#197;&#208;&#8221;64',&#162;&#8225;&#200;&#226;&#179;l)&#249;&#202;5&#157;vq&#8250;&#206;&#165;
+&#246;&#250;&#8240;e9&#214;&#235;&#238;&#8220;=&#190;6&#227;&#204;m}*W?&#244;M&#381;t&#241;&#241;s[&#221;&quot;T,&#219;&#253;
+T&#206;(s&#143;
+&#172;^&#236;G&#176;6A)&#181;&#213;&#228;&quot;|&#402;&#129;&#8482;&#168;&#187;&#246;y&#8212;&#8482;&#171;fg]f&#211;-S&#235;GZVc&#129;&#168;&#339;&#240;&#244;&#164;`b&#217;N&#8221;IR3O&#186;&#196;&#167;&#8364;n&#353;&#218;O&#235;&#208;&#8217;&#353;U&#182;_&#129;&#218;&#167;z&#252;&#220;&#200;&#200;&#184;N&#177;&#8211;&#250;&#339;|B&#180;&#225;XN&#8220;&#208;&#223;7&#176;&#192;L&#164;=i.&#353;~wA&#167;M$&#182;&#190;&#171;&#196;%&#221;(G+{0r}&gt;a/&#222;&#226;U9&#732;&#214;&#189;&#233;&#228;&#144;z9&#174;{&#181;0&#8226;
+=&#233;&#170;&#224;S&#226;P
+ ?&#198;&#382;&#169;
+&#181;&#203; sn&#247;&#352;{&#143;&#226;&#193;Bq&#232;0&#217;]&#8222;o&#180;&#228;&#224;&#196;Q&#236;_c&#240;&#167;&#238;&#246;&#198;&#209;&#197;;&#162;&#215;&#216;&#215;&#352;X0`U&#8220;&#229;1&#376;j&#182;j&#184;&#8218;&#166;&#202;VQW&#180;b&amp;
+&#157;E&gt;
+&#163;&#255;D&#8482;;m#x&#166;&#8220;&#229;&#164;L0&#188;&#164;&#230;\
+R&#353;N3&#8222;&#193;&#192;&#8250;&#8222;M&#180;&#196;% &#162;5&#246;Z6A&#253;&#732;&#200;H&#141;&#8222;&#248;&#199;&#8222;&#246;D&#8226;~3&#402;&#166;{{Q&#203;&#183;&#240;&#199;&#223;&#246;&#192;&#215;&#226;&#206;&#196;Pz&#339;S&#171;:&#8224;&#217;&#252;&#223;V&#196;EnU&#195;_&#8225;?0&#203;
+m}
+[&#195;|4&#214;|E&#339;&#402;&#8220;q&#8364;&#223;&#188;,&#233;/i0&#187;(
+&#213;&#248;&#198;&#238;&#220;o&#255;&#219;*,&#236;t&#245;&#8364;&#243;@&#8216;&#204;&#199;&#196;))&#176;^&amp;&#8218;Xrv@Z&#205;&#210;&#179;&#8222;.&#243;&#141;&#220;ed&#192;I&#192;&#214;&#216;A=-[*D\&#228;&#238;&#182;Z&#167;&#221;O&#195;,&#8364;Y&#251;&#381;R'4&#198;&#190;[&#209;h&#353;&#177;9yk&#253;bd]&#129;&#237;&#168;&#710;FI)&#163;by&#8482;Y&#237;&#178;u&#8224;iE&#241;&#232;&#187;4&#178;&#182;
+x&#169;1&#175;so5
+&#8482;&#168;&#217;U&#192;&#212;&#178;~\X&#210;&#228;&#8240;&#236;&#249;&#240;&#243;.&#8216;
+&#163; &#225;#&#193;&#238;Ch&#185;&#179;@r&#180;gC'&#218;&#178;&#235;&#8250;&#163;W&#227;C&#209;&#338;5_v&#248;&#206;]D&#186;
+d&#199;/&#255;&#201;OD&#218;&#214;
+&#8220;&#190;&#181;&#251;!&#226;&#206;NC&#180;&#217;?&#352;&#184;&#162;&#8230;&#143;&#215;qrA&#8482;&#8364;&#176;&#249;&#353;&#223;:r&amp;&#212;&#232;b-n&#204;C&#207;&#8221;&#221;&#248;v&#216;&#172;&#180;@Z&#246;&#8222;&#249;&#165;&#172;j&#190;?'9&#231;)&#168;&#164;&#204;-&#210;U,&#214;
+&#188;&#8226;P&#194;&#178;&amp;&#173;z&#217;&#161;&#339;L+&#222;&#163;d]U&#179;&#710;7&#224;X&#252;&#251;&#208;&#216;Z#&#187;&#201;&#243;&#244;#A&#186;?&#204;&#218;&#245;&#222;?&#221;&#222;&#244;#&#8226;&#8249;[:q&#245;&#203;&#231;&#215;&#218;&lt;&#178;c&#206;&#198;&lt;jA&#165;U
+&#352;[&#227;7&#213;&#250;]&#179;$&#195;o&#201;+&#186;&#203;@/&#402;0&#251;&#173;.T ]77&#161;VY&#165;G&#217;&#8222;W/y)&#167;+&#172;&#162;&#8211;&amp;&gt;_&#190;%U&#238;&#224;&#353;&#193;&#8221;&#195;&#8212;&#238;
+&#129;QQ&#181;&#189;uA&#180;&#245;y&#214;0F&#203;T&#217;2&#222;&#191;&#168;}&#164;&#173;
+}t&#8250;`&#172;&#196;&#381;&#215;V&gt;&#8482;&#243;&#212;&#8222;&#201;
+&#247;&#228;3&#246;&#185;&#8216;E:3s&#224;&#249;I{$&#231;g&#210;/&#203;
+&#183;|&#197;7|&#195;*9&#208;;C&#732;&#230;&#232;1&#8222;&#161;d&#253;b&#238;&#143;&#8221;4&#244;&#219;&#245;&#177;&#239;O&#732;&#8250;&#246;&#402;&#144;Ss4Vw&#199;&#201;&gt;P&#219;&#241;&#209;&#188;H&#176;&#214;&quot;9I&#141;M&#163;&#233;&#352;D&#207; &#382;z&#250;&#244;&#240;&#227;T&#8221;&#207;&#210;w&#220;D}qfP*&#209;&#162;?&#8364;&#183;k&#8249;&#8224;&#218;V&#241;&#210;'&#8222;=&#8222;&#210;Il&amp;&#232;Zjo&#162;&#242;&#221;@6&#8364;&#169;&#249;&#193;]8&#188;&#239;&#710;&#252;%&#201;76
+&#225;:# N&#219;_&#8249;q,&#242;VL$&#8364;&#233;m&#710;&#171;p&#172;
+&#382;T?&#214;&#219;$
+&#352;&#235;&#165;&#247;(vdV&#249;&#8482;&#237;2&#234;&#247;&#242;^`X
+c&#201;s%&#243;V&#164;&#217;*&#175;&#207;&#174;&#8250;&#203;]&#255;
+&#199;p&#201;&#353;j&#250;8Am
+(R(V&#196;j&#8217; )
+\&#8226;
+D&#225;&#234;9&#169;Q&#203;&#246;&#8221;&#189;A&#219;&#382;&#144;p&#211;D&#218;&#129;&#8220;&#222;azy
+g&#339;&#238;&#232;&#165;%/6&#235;g&#241;|&#382;(;&#8220;&#165;X4/&#184;&#211;)kc&#173;&#191;s&#235;6&#250;M&#8226;&#173;&#220;&#255;&#185;&#225;&#381;&#216;&#225;&#164;TR
+i&#239;4&#381;n&#338;D=~y&#193;Z
+&#8240;&#203;&amp;-&#8240;&#195;&#8226;b6&#255;,4+L&#236;&#252;&#8224;&#237;&#170;MX&#381;&#217;m&#172;&#177;&#251;;&#167;&#251;&#216;&#381;&#240;
+
+&#231;&#186;&#198;cEu&#205;B&#8220;F4&#209;?N4;&#201;&#182;&#208;
+-&#230;&#200;&#184;&#206;SUeg&#171;&#226; &#141;*6z
+Z&#219;&#162;z,6&#163;J&#144;~&#253;)&#181;o&#241;&#188;&#204;&#732;&#193;&#169;
+&#167;&#163;&#252;lS&#8224;&#199;&#193;=u&#8217;z&#234;
+&#166;$F&#197;&#219;9&#231;&#710;&#184;&#8218;&#214;&#250;&#8217;k&#164;+&#190;&#199;&#232;&#338;
+?&#381;!)J?J&#227;&#217;8&gt;&#179;R&#220;&#209;&#165;&#174;j+&#234;&#212;&#194;&#8217;&#190;50&#221;&#251;&amp;K&#205;&#249;&#239;kW&#8218;&#170;B&#175;
+&#217;&#352;D&#208;&#218;&#237;+&#184;X&#338;(=&#217;&#166;1ds?&#207;&#168; A]&#173;E&#8482;&#237;Qs&#242;
+&#175;&#226;W&#8225;z&#193;&#174;q&#209;{&#218;&#339;&#205;:@g&#240;S&#231;s&#200;Vl&#376;&#219;!&#252;S&#339;&#8220;
+&#224;:=&#8225;&#8482;&#8222;&#191;.&#201;&#144;Tp&#167;&#245;&#194;0&#191;&#181;'&#352;i&#191;&#338;V&#189;&#8224;&#248;cv&#163;B
+&#8221;&#238;
+&#223;z&#189;&#243;Jv5*&#245;&#231;&#190;LGBh&#243;]&#8230;&#195;&gt;]1&#220;&gt;&#242;&#234;&#247;&#218;y(`&#206;R&#8216;&#8212;&#166;{&#253;d&#222;VN&#209;:;
+S&#228;&#220;r&#376;&amp;}{&#229;&#164;UkC&#8249;r&#352;&#8226;&#238;&#179;+u&#219;&#202;&#230;&#193;&#179;6
+$pm&#170;&#8221;w/&#248;&#222;&#8364;)f-
+&#172;&#8482;Mu&#190;&#352;&#201;&#376;L&#212;&#163;!
+&#164;M&#338;&#202;2&amp;M&#174;Q&#376;&#201;{b7yZlDRh&#157;l&#144;&#178;&#221;&#235;&#219;&#161;&#216;&#214;s&#186;&#193;.&#174;F
+&#201;t&#205;}&#249;&#250;&#170;*[JC*&#141;&#251;C&#161;&#169;&#226;1&#376;&#210;&#228;^d&#352;U&#8224;&#237;S&#247;&#224;&#161;G7&#174;&#211;b&#230;&#184;z&#211;
+ &#189;n-}&#376;&#161;&#339;&#205;&#237;&lt;}v
+f&#170;q&#338;l&#236;l&#253;NX&#197;&#195;&gt;&#215;&#217;'Bb&#220;%b&#251;
+ <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">t at d</A>&amp;&#202;&#172;&#254;D&#250;&#8482;&#221;u&#213;~&#194;&#242;&#230;&#196;@H &#222;
+Om&#184;]
+&#382;&#218;&#216;&#229;z&#8224;2&#227;&#182;&#8218;&#710;\
+&#172;2{r#&#231;]$)&#8249;&#8224;7&#352;&#732;@&#203;&#186;&#212;&#193;&#162;&#175;&#190;&#179;/l&#8217;&#228;&#168;&#229;&#173;&#352;
+&#382;_&#216;&#169;&#182;&#231;c&#8211; &#197;&#732;&#243;&#352;&#8211;RH&#8364;&#225; &#210;X_&#243;(&#190;&#183;&amp;&#182;&#8249;&#182;:&#162;&quot;&#215;&#197;m&#252;Y\&#381;&#203;'Q3G:w&#8220;&#253;&#227;v&#352;v
+r&#161;&#245;L&#339;x}&#215;&#169;&#195;D&#338;&#176;j:t&#8240;&#240;&#241; &#338;&#242;&#216;t&#247;&#8222;&#215;&#188;Q&#183;)B&#402;c&lt;&#8364;cK&#178;hI&#229;&#184;&#382;:7&#175;7&#8249;&#402;&#166;S rq=&#199;&#196;&#8222;&#230;&#243;_
+]D&#225;D&#211;&#214;O&#228;&#213;kn*K&#381;&#250;bG&#166;=&#381;&#164;&#231;&#215;\&#352;q&#220;4&#229;&#203;jG&#202;&#233;&#228;*&#245;&#169;'&#237;W&#218;&#225;&#173;&#227;&#252;&#245;&#8364;&#8211;~&#229;&#165;&#197;
+r&#8224;c&#8218;&#8220;&#8482;h3&#222;&#244;&#194;&#218;&#231;&#205;&#239;&#215;&#170;r&#244;|!g&#169;&#205;&#249;&#248;&#229;&#8230;&#222;&#200;&#227;&#241;7|&#240;&#195;el&#402;S&#203;]r&#232;&#338;\&#189;Qd &#240;YA8(r&#248;&#254;&#197;&#178;&gt;&#186;&#234;po&#164;&#219;&#255;,&#170;&#192;(&#8230;&#205;&#166;z&#165;&#186;&#196;&#232;&#203;s*&#732;&#233;4+_&#224;&gt;~&#8482;3n$Km&#217;&#255;n&#237;&#198;&#246;O&#8220;&#247;
+ &#227;&#217;1|&#206;&#211;x&#242;W(L&#215;j&amp;&#221;&#180;y&#219;&#216;&amp;hv4&#170;
+&#213;&#8249;&#167;&#216;&#8250;&#8222;&amp;-&#157;[&#352;I&#382;`&#197;&#143;F&#230;&#236;&#376;(&#211;3&#244;&amp;&#232;HP&#246;6&#252;d=&#182;Y4&#231;&#244;&#213;}&#8222;&#193;&#242;&#227;cpcm&#203;v'M&#217;v&#222;&#215;
+&#175;7&#172;f&#732;Y
+&#8212;&#352;N&#240;}(&#339;0p&#170;&#202;6&#252;(3&#238;&#220;Y2&#237;&#174;&#168;K&#214;&#710;&#200;&#224;&#231;
+&#254;7&#234;&#8218;&#8221;X&#198;&#205;&#8250;y&#162;[&#246;q[&amp;&#229;&#245;A&#195;V&#172;&#376;&#205;pP &#174;
+i[S&#143;
+&#8225;r]&#214;^or&#229;&gt;&#175;&#250;&#191;&#231;&#170;Q&#232;&#338;&#213;&#200;&#195;Q&#229;&#402;
+&#233;&#352;&#196;h:P&#141;od$G&#253;&#192;&#218;N&#402;F+&#171;&#223;&#172;&#211;R&#187;&#352;&#8218;&#237;Fn&#214;&#194;&#188;&#189;&#8230;S&#251;=l&#170;&#237;&#204;&#240;10~V &#236;e9J
+&#8225;&#8221;G&#243;&#164;&#191; &#8211;t&#157;c&#8364;X&#8364;}E&lt;ST&#199;&#189;^$&#8364;&#236;&#143;&#8217;&#8220;&#200;&#212;k&#182;&#174;&#178;{&#212;~&#166;xK-&#189;c&#218;&#8240;&#141;Z&#229;Sn{&#179;&#215;&#182;O&#253;&#190;&#245;m&lt;&#202;&#223;|&#242;n,&#238;&#233;&#231;'S&#8225;&#254;jh&#200;[&#244;dXD&#381;&#191;
+&#197;&#215;&quot;&lt;q8hW&#8221;&#220;&#252;~.&#352;&#214;BL
+N{S&#381;x=&#216; ,O&#211;&#161;&#222;f&#191;qz3&#182;&#230;&#338;&#207;&#157;&#198;\z&#230;&#215;FRn&#143;(%&#209;&quot;=l/&#381;&#176;&#8211;&#8240;&#187;&#223;t&#182;&#382;&#8211;&#171;G
+&#226;&#178;&#8482;&#197;Z9C&#221;&#167;H&#8217;[s
+8&#211;.&#186;&#179;&#177;I&#144;&#203;#&#213;~8G&#188;&#221;&#710;&#239;D:&#8218;&#189;&#8218;&#249;K&#182;4&#210;&#246;&#8224;&#188;&#193;s&#214;hk@&#226;&#8249;$!q&amp;&#234;&#222;&#175;T&#382;&#250;&#710;&#223;&#243;^{&lt;&#212;&#248;&#182;
+&#8240;&#236;&#244;&#181;&#168;wB
+]&#162;&#208;&#188;@/&#210;(&#8211;5G%U&#143;p&#211;c0^&#143;D&#220;&#710;&#163;N&#251;&#236;+&#177;&#248;&#255;&#163;&#195;MQ&#207;&#228;&#168;&#246;&#169;l&#232;&lt;&#180;&#235;y&#171;&#241;&#8364;D}iP&#248;
+&#8240;&#208;8&#353;&amp;&#203;
+p&#225;&#252;&#197;K&#382;&#244;W&#161;&#183;f&#185;:&#176;B&#173;&#338;&#250;&#183;j'&#235;$&#213;&#240;&#232;&#8250;&#8216;&#8364;&#244;N&#173;h&#255;&#231;A&#219;pN&#214;&#8218;&#225;,pu&#129;&#231;D?lI&#382;&#255;&#181;&#8482;'&#8222;xT&#175;&#237;yg&#226;&#203;k/w&#198;:&#171;&#183;^&#222;&#254;&#161;&gt;&#219;&#173;&#8218;&#208;&#205;Y&#196;Q
+&#211;&#245;l&#223;8/&#238;&#215;&#244;&#191;&#242;b&#206;sp&#173;&#181;|&#182;2&#204;&#8482;&#376;&#216;&#197;&#220;0&#376;&#8482;&#8221;~iLP&#211;C&#248;&#352;&#339;&#199;
+&#226;(D&#162; C&#8216;c&#251;mKR&#161;U%%&#171;&#165;
+&quot;dC&#8212;tS&#8250;A&#181;;r+d&#8222;&#246;&#195;&#236;&#183;U5&#171;&#8249;9&#8230;{&#376;&#206;&#253;]`n/&#221;X&#247;~|&#238;h*bU&#201;&#189;&#172;rJ&#221;&#171;&lt;&#236;&#8225;X&#157;&#241;&#217;&#187;o|&#246;&#193;&#229;&#338;k&#246;&#194;_i&#217;&#197;p8&#216;&#174;1&#190;&#248;E&#237;&#8224;&#143;&#205;&#352;&#8226;t,v&#233;&#251;&#352;&#220;d&#182;&#181;&#250;&#180;&#219;9&#144;@&#353;&#209;&#255;&#188;&#8225;@F&#227;M)&#189;w&#180;&#8230;&#180;A&#8482;D&#234;avX&#191;&#207;SGZ9&#185;&#221;n&#179;&#245;&#8217;?&#172;&#8224;0G&#232;&#245;c{&#129;&#243;&#179;A&#246;[&#161;J&#252;&#209;&#246;&#732;&#8220;J&#8224;&#209;&#376;[
+C&#216;&#250;&amp;l&#190;&#175;w
+Q
+&#238;&#8220;&#184;9
+Z&#240;&#243;&#227;m&#179;-=&#251;,*&#8222;&#233;&#246;&#218;%&#8226;I$&#141;p&#228;`$&#175;)_&#241;&#174;&#732;
+.N&#353;&#165;&#193;&#213;p&#164;&#216;3e2u&#8220;&#144;&#162;e{MK&quot;x&#179;&#205;&#353;m&#202;W&#8220;~&#8249;&#218;&#8482;&#176;5&#216;&#212;&#185;?&#216;&#234;&#244;i\&#8240;I&#239;&#228;X&#8482;&#206;&#234;vu&#188;&#222;&#185;&#172;&#244;#&#238;&#239;&#204;\&#8225;&#157;&#176;=&#212;&#174;x[&#197;z/&#208;&#255;Z)&#244;&#187;rMh&#339;&#170;@&#8212;&#194;&#175;&#164;w?u&#216;
+Y&#710;&#238;lc&#8211;KCwt*&#8224;&#215;
+&#201;'8~&#8212;&#220;&#732;Ak&gt;6&#8224;aEdI~&#235;Ea:&#8224;?u_&#233;&#161;&#180;&#8250;]&#219;&#218;&#339;}&#179;&#174;&#242;&#254;&#218;&#219;&#207;Wi &#8217;z*-$x+&#190;K&#143;0&#241;G&#229;@&#176;&#242;&#212;&#186;&#171;&#252;&#249;&#209;dY&#8482;&#188;&#237;&#188;
+ ?&#143;&#201;&#236;&#213;&#188;&#205;S\&#8218;Hs&#211;VDq&#190;&#226;&#214;,&#8218;&#236;_&#252;@&#8240;h&#249;0&#195;&#8212;&#214;&#166;&#255; &#732;&#215;&#223;&#222;&#167;&#218;&#353;Zw 7&#179;&#376;&#172;&#250;Y&#247;
+&#129;&#8250;&#141;&#251;&#250;&#212;&#212;&#187;I&#172;O$|&quot;&#8482;Sw&#253;M&#8230;&#732;I}Q&#8221;&#218;&#246;f&#209;12.&#253;&#172;&#8221;&#8212;&#183;3&#214;R5&#218;I&#236;v&#219;&#217;-&#222;&#209;&#236;:&#245;&#247;&#204;t&#166;&#177;&#231;&#215;i&#213;Z&#204;4&#8249;)|&#170;&#213;&#181;&#8221;&#224;&#227;&gt;N&#199;Lm&#237;&#168;&#198;&#190;ps&#8216;&#224;'o&#194;1j&#8364;&lt;&#226;&#236;9&#195;cw&#245;&#237;&#141;&#8225;&#8225;&#157;hm&#202;&gt;&#8249;f&#253;&#143;&#202;&#402;&#222;&#8225;&#252;K&#254;&#8482;&#8217;]&#222;&#208;~&#173;&#8225;]Ti&#232;&#381;,i&#382;eV&#235; &#352;&#174;&#204;q&#243;&#129;M&#239;k&#240;$&#254;&#402;P&#166;&#205;&#8250;&#236;&#732;
+%&#157;&#184;[W:Q`&#216;I
+ Y^
+5.&#129;&#208;&#254;&#402;a&#164;&quot;wK\o&#162;HZq&#338;&#241;F&#225;
+BaJ&#246;&#214;E&#402;&#232;XQd&#211;&#8226;84&#382;&#234;)&#352;&#244;&#143;
+&#193;&#240;\&#8225;&#230;&#8249;$o/rb%&#169;&#218;&#234;&#239;&#178;m&#207;&#188;Y&gt;2&#239;
+&#169;9ev}6R&#215;S&#186;&#230;r&#219;q}&#8224;3&#240;&#8217;b&#8250;&#200;
+|&#239;y;n&quot;&#8482;&#8221;&#8211;l&gt;&#203;,&#207;&#352;&#193;&#167;hV&#191;Jm&#201;(t&#214;&#204;&#170;H&#8249;.&#169;&#382;&#402;&#247;&#8218;&quot;&#8249;&#143;&#214;&#181;g&#252;&#230;,&#211;Y83&#178;h&#732;&#211;&#209;=i&#8226;&#207;1&#232;Uh{:i&#8249;
+*1).&#8211;&#242;&#710;&#339;w^&#199;6&#8222;Y&#254;&#162;&gt;&gt;&#250;&#178;
+&#178;&#224;&#8220;2&#209;&#8482;bPS`TG&#215;D&#8482;&#206;DBQ/3&#381;&#200;&#173;#&#167;&#206;&#352;&#236;1&#243;Q/&#248;&#168; &#221;wI&#168;&#8225;n&#212;{&#253;&#252;U&#230;
+a&#8240;
+&#169;&#163;=&#234;E&#229;&#8221;&#237;&#216;&#209;&#8230;eI&#167;&#185;M%&#250;L&#8220;G&#732;&#217;&quot;J&#226;&#353;&#165;&#242;&#163;{S&#249;&#224;&#202;j&#240;^&#201;|}&#203;mG+N&#185;t&#8217;&#194;&#220;&#8216;&#228;&#223;+,&#187;&#229;
+q&#251;&#353;&#224;s&#189;O)&#175;y.V&#214;
+ &#207;&#157;Z&#251;&#8217;&#8240;&#212;&#206;O&#173;&#199;&#197;&#206; Z&#166;L&#185;&#215;E &#8218;E&#129;|&#213;7&#157;.&#8230;&#176; &#220;)&#710;&#206;Hop]b&#192;&#180;&#222;V3BM&#172;L] w
+&#208;&#218;&lt;hFc!$&#243;^&#167;7;7?C&#184;&#202;J?&#188;84&#252;&#253;:xQ
+_i&#205;a&#171;da&#190;{J&#192;&#8221;&#230;&#8250;&#199;&#170;&#237;&#209;)&#180;&#230;&#8226;&#187;3&#216;t&#353;I5&#218;&#244;&#170;&#161;&#231;&#222;H&#339;&#174;&#339;&#191;&#249;!0.LqF&#185;&#194;&#244;4&#212;&#8482;%&#189;&#8212;'}&#255;F&#710;&#184;&#209;;g&#381;&#215;&#221;&#8220;{&#205;Q&#200;&#183;&amp;&#236;&#228;'@I&#176;&#249;M&#253;C&#193;&#8226;&#182;&#193;R&#225;&#218;&#353;&#243;&#205;?Y(&#190;4L&#8250;)4%.&#197;n&#177;&#207;))&#242;V~&#200;|&#171;&#8250;w;&#166;@
+S&#402;&#162;i&#176;)l&#228;&#162;&#194;&#8226;&#246;0&#732;.&#222;&#144;&#193;7&#236;&#382;&#216;&#177;&#191;&#204;&#255;~&#192;&#181;
+&#197;1!&#402;E&#234;&#249;y&#229;3&#185;&#129;&#236;DN&#202;&#185;:e&#254;&#184;&#8225;5&#203;&#233;J![&#249;&#225;&#8211;Vwq&#8249;&#173;&#8249;&#143;&#204;Jv`&#171;&#246;&#189;&#226;&#8211;9L
+iw&#162;F:JH&gt;&#163;&#8222;&#228;&#222;&#254;&#732;&#175;&#204;&#169;&#165;SF&#243;&#220;&#201;&#225;}!}R&#214;
+&#253;&#237;D&#202;;o&#8482;&#143;&#168;JF&#179;&#228;&#162;&#234;&#172;hOH&#235;?&#165;]&#215;&#186;&#224;&#175;&#157;bR&#215;&#239;&#231;_H&#220;Rmg7&#352;&#216;[&#141;_&#195;&#8224;&#251;&#181;&#171;}g&#249;ie&#245;
+&#233;dy&#185;k&#210;&#232;&#223;&#338;&#250;&#402;k~_&#8220;&#212;&#353;l&#230;&#174;i&gt;3:&#352;&#252;c&lt;&#252;&#353;&#8221;(@dO
+a&#8250;&#163;&#215;lqb&#247;yy&#206;8&#217;H&#188;&#382;&#191;u:&#235;i&#382;
+&#8216;;&#216;,S&#186;s&#8230;&#228; '&#206;&#164;~N&#222;Zj&#167;IIE&#189;{A&#202;&#182;&#234;Y&#244; |&#732;&#164;b,8^It(Ou$?)}&#235;
+&#8221;D&#129;^&#162;*&#219;u%(&lt;6f&#382;W&#246;&quot;&#223;&#402;^&#240;&#168;&#382;&#253;&#209; &#228;~&#180;&#8220;&#161;&quot;qZ&#252;&#186;&#233;7&#254;&#249;&#162;x&#254;&#227;&#199;R%&#193;&#8230;h&#253;&#199;&#207;O&amp;&#8217;_fC&#200;&gt;
+&#8250;3&#8220;}T&#201;&#180;&#223;&#8211;??Y&#250;&#192;&#220;&#254;&#240;ep=&#206;I&#210;&#190;n&quot;xt&#183;&#220;&#191;4&#196;`&#8218;&#169;4&#198;&#169;OaJ&#227;rUP&#221;&#192;(V&#211;&#217;&#184;y&#244;&#201;th(&#226;&#188;&#338;&#227;]~&#353;V&#240;p f&#222;&#8220;&#181;w^&#188;&#184;&#193;gD&#167;&#170;%&#201;&#252;&#236;&#178;&#195;&#710;&#230;0}&#352;&#166;&#187;&#249;&#189;&#193;&#231;zv&#250;&#8482;&#225;b&#203;&#229;NW&#243;2&#206;&#8364;x&#190;*&#179;%&#211;&#245;2Q&#229;&#161;
+&#237;&#8218;x&#8230;&#8482;&#214;&#248;a &#168;&#232;&#219;&#208;&#8224;H&#339;&#227;%3A&#215;2j2&#227;A&#8250;W0?&#338;]&#240;p&#166;&#186;&#249;&#183;&#234;&#163;x
+@&#251;V&gt;&#251;&#178;&#8211;&#8240;&#203;]&#181;&#8222;&#8250;7t
+I&#238;&gt;T&quot;/&#165;&#179;Y&#233;&#8221;1
+&#172;_&#157;&#239;&#190;r1&#221;&#250;&#225;tY&#249;S&#195;&#129;&#196;&#732;&#376;&#161;&#248;&lt;_'&#204;cWS&#339;?y#&#244;Q&#191;O&#208;&#233;&#163;&#246;&#198;&#181;&quot;a&#710;&#192;/u
+&#226;C|&#166;&#176;&#129;p&#191;&#353;E&#239;&#233;&#8220;=/H+&#168;T&#205;.k&#165;&gt;&#165;P&#242;&#246;&#183;8&#161;&#8226;&#189;&#8212;l&#183;&#226;&#157;&#255;&#173;&#382;{&#8249;W)^&#168;&#235;&lt;&gt;IG &#225;6&#8240;&amp;&#164;|&#8222;&#195;&#181;&#216;&#203;
+`p2upv&#226;PjY&#8240;&#163;&#352;&#8250;&#167;-&#8220;&#8222;PVs3g&#173;&#242;\y&#205;&#203;&quot;&#8216;&#165;&#8249;&#710;&#177;&#209;&#161;B &#255;&#223;~4&#225;&#247;L&#205;&#218;6&#225;q&#173;&#225;kA
+&#172;Y&#165;N&#8364;iA_zO,&#192;&#8222;t&#192;0&#231;&#157;Jh&#245;y&#195;n&#8226;&#220;&#162;&#196;A&#8220;&#8220;k:F&#220;8&#710;&#196;*Dw4&#224;&#200;&#219;
+&#143;&#231;&#255;2&#185;&#252;&#194;c\&#211;&#8226;&#188;g&gt;&#184;&#244;&#177;&#194;&#205;&#8224;4&#192;&#170;&#710;x&#194;+
+&#197;&#206;&#244;e&#353;&#255;&#221;F&#204;^xP&#221;g&#381;&#191;&#170;&#8216;&#234;&#220;&#199;5&#211;&#197;&#254;Z&#8212;&#242;&#8222;&#191;&#203;
+u&#183;5&#184;Q&#176;&#172;_&#204;&#228;7&#710;&gt;,&#382;Y&#193;&#381;`&quot;&#224;&#177;&#195;C&#229;&#227;l&#8482;&#710;&#161;&#249;&#179;~|&#188;~ I&#172;&#237;]&#255;6&#8482;nA&#8218;O&#249;&#207;o&#144;1&#188;&#8240;q&#8240;{M&#225;.%\&#213;&#163;#&#353;&#196;&#237;&#8230;L.)8&#232;&gt;&#144;X&#8221;&#338;@&#8250;&#209;F&#187;
+&#213; b&#381;&#205;&lt;&#217;D&#195;5&#8222;n&#201;sL&#192;&#196;&#222;&#8240;&#247;&#224;&#182;&#175;&#8249;t&#217;&#182;}o&#187;&#8211;&#221;&#225;&#197;&#179;&#244;&#204;&#174;G&#162;D&#8240;&#215;&#179;0W&#225;GF&#8364;
+&#732;&#169;&#209;&#8216;&#240;&#166;-dC&#402;&#8211;&gt;Mf2nV&#241;m&#174;D&#205;&#173;&#166;&#8230;&#206;&#8212;vZ&#220;&#238;F&#8225;&#245;&#8212;&#207; &#8224;&#183;nD&#8224;#&#215;&#211;!&#171;[&#161;K
+La&#129;&#186;f1v&#192;&#204;&#168;&#8218;&#175;&#162;E
+&#209;&#381;1l&#168; &#169;&#190;&#8222;&#175;K&#252;@&#180;&#230;&#232;&#237;&#167;_:&#249;&#195;)&#185;8&#8222;&#223;&#232;&#8364;!*&#239;&#205;r&#251;[c&#8224;&#186;~P
+)&#213;_&#213;&#195;.+V&#8218;fW~{@&#255;&#353;&#171;&#195;&gt;&#214;s&#157;4&#175;Y_&#376;&#182;&#174;&#228;hDKd&#230;&#171;
+Q&amp;3&#162;FI&#228;&#235;&#202;GqWp?&#205;&#206;&#219;\ &#239;&#202;&#235;3&#215;Qg&#230;&#199;IZ}&#248;&#247;\S&#199;&#212;a&#129;&#228;&#161;&gt;&#245;&#242;&#8230;&#222;&#732;#J&#234;&#244;&#170;&#182;&#196;:-&#8250;&#144;;M&#173;&#732;x&#8212;&#238;K&#239;
+&#233;&#193;
+h
+&#200;/h&#175;&#162;&#229;&#188;j&#169;&#168;&#203;0&#8249;&#8249;&#201;*&#253;&#245;&#186;&#187;&#353;&#240;&#200;&#192;_xF&#163;m&quot;&#203;Q&#216;;&#129;O&#8364;&quot;=X&#8250;&#248; &#177;&#248;.&#237;[
+&#174;&#202;\y)iB&#167;,,J
+&#223;&#8222;:&#129;&#205;L&#188;&#251;&#246;!&#253;&#189;C&#208;&#141;&gt;9-7
+&#225;&#381;&#215;&#242;&#208;,d@*&#8221;a&#185;kz%W&#251;&#221;&#167;|-&#221;&#236;&#8240;&#255;&#213;&#232;&#246;[&#174;&#250;sFr&#234;&gt;&#202;*&#197;&#179;!&#198;&#192;7&#169;&#239;$&#8224;!e^&amp;h&#381;&#213;V}&#184;&#244;&#8230;h&#194;&#8222;&#376;&#382;C&#170;p4&#180;&#188;&#245;|r/&#174;c&#200;&#8224;T&#203;&#218;&#233;&lt;&#241;I}&#178;}t&#203;&#201;yJy&#164;&#141;&#129;&#8240;&#216;&#191;l&#182;]j&#187;oG
+9&#218;&#213;
+&#229;P$&#226;&#236;&#210;}&#164;`&#203;&gt;O&#162;&#242;&#242;O?Y&#224;F&#209;@l&#376;3&#8221;|0&#164;&#129;&#175;&#227;Q;!O&#193;&#220;h&#222;&#247;&#181;&#8364;oo&#214;&#198;q&#732;a&#176;&#199;L&#233;!%&#8364;&#239;&#210;5&#8364;&#223;/L&#253;zCd&#8240;'&#188;&#144;E&#163;
+&#189;
+4&#242;&#203;g&#170;&#228;&#381;Q&#8482;&#218;&#185;W%&#204;&#176;&#231;&#178;[
+jf&#188;&#178;A&#213;&#184;&#209;3&#166;&#8225;P&#8218;&#224;K&#174;x&#339;I&#225;&#167;
+&#237;&#253;&#381;&#224;&#237;&#181;k&#732;K&#8224;&#8482;&#224;c&amp;&#161;&#168;d5&#8230;8&#205;7&#732;_&#241;%&#172;bX&#197;&#195;&#710;x&#249;?&#402;Q&#8220;&#339;&#165;?&#381;&#196;&#221;&#239;&#219;J&#180;&#197;&#233;6&#382;&#218;gI/q&#8211;)&#237;?&#382;h&#222;&#208;&#168;;s&#235;&#172;&#232;y3&#8211;&#217;+&#240;B&#165;&#189;&gt;&#228;&#240;&#192;|&#201;&#212;&#8225;P|&#238;&#185;
+h&#227;&#193;@(,&#8212;5tSs&#8218;&#208;&#239;&#732;g&#169;i&#179;&#338;4&#232;&#8216;&#200;c&#210;:&#8221;x?&quot;Q&#253;}&#240;
+57
+$S&#161;yC&#8225;E&#226;b&#214;&#212;&#234;w&#209;'_&#226;&#237;&#179;&#210;&#8240;&#8220;&#238;{&#209;&#167;&#242;W&#382;&#184;&#339;o&#8211;&#182;T&#200;&#195;7&#157;&#234;&#188;&#163;2&#201;&#8221;&#235;&#248;&#169;Rj&#173;&#353;@&#216;&#217;&#8230;&#180;&#202;&#180;&#247;{pR&#8221;D\&#206;&#243;&#162;&#215;&#232;&gt;&#229;&#213;]
+&#224;SZ&#249;&#381;&#213;
+&#183;&#239;nU&#188;3
+&#339;X&#245;&#8226;&#220;2&#227;[M&#381;[&#144;&#163;&#8226;A&#166;&#188;&#222;T
+&#8220;WG&#162;&#255;P&#198;&#247;&#8240;&#177;&#232;7h8&#233;&#8216;&#224;&#218;&#194;&#251;A&#8218;&#175;N&#226;&#212;07M&#710;lc&#8216;&#186;gNv*&#176;&#186;&#225;&#168;&#223;]&#221;}&#225;&#193;v&#218;O#&#353;Q&#230;Ov&#248;z&#212;&#189;/&#205;&#338;
+&#228;&#213;&#228;N~f&#179;&#223;e
+&#238;&#183;&#8224;&#206;
+H&#241;&gt;X&#167;x&quot;&#233;)s!&#207;&#8482;&#208;H$&#381;&#177;wA&#8249;ue&#215;&#221;&#8240;fI`6&#246;&#207;{dl0
+q&#8211;&#8250;u&#255;&#216;&#242;LaQU(
+&#179;&#214;&#8226;&#167;&#179;&#203;&#182;&#173;Q&#246;&#179;&#183;q&#169;&#199;&#732;(&#227;&#181;&#176;&#224;&#172;}W}&#238;B&#164;A
+&#8226;&#246;&#8240;}G&#218;Y&#166;&#178;
+&#193;
+&#8230;&#710;]&#186;&#175;&gt;&#376;z?H&#180;&#8211;`&#227;&#245;&#230;0e')&#166;!=&#129;&#8211;&#8222;&#215;&#8222;L&#235;&#402;]&#179;bC&#192;1&#244;&#203;&#187;&amp;F&#221;&#182;i&#171;0.&quot;&#226;&#192;#`g&#176;&#235;4&#190;3&amp;&#240;&#189;F&#173;x
+(5V&#182;&#253;0&#220;G&#8212;?F&#223;g&#710;cem&#166;t&#218;
+U6`&#202;&#8217;*&quot;]&#205;&#8224;&#251;&#241;7 &#352;&#184;l &#143;&#8216;bte &#219;&#197;&#246;k&#732;z&#164;
+Z&#222;\-H&#201;&#243;&#382;*v&#249;&#175;&#211;&#195;&#211;&#175;&#226;)&#8226;&#157;&#144;Rl&#191;h&#166;&#239;&#202;(&#164;&#144;7&#8226;&#204;=&#8220;&#199;^&#169;&#8230;&#167;&#182;z&#212;5&#212;(W/c{iR&#211;&#8240;&#141;&#8217;%&#244;&#732;&#8220;W/U'=k&#244;2J]&#196;&#8250;cd&#168;&#157;&amp;&#225;&#376;bH&#247; C&#163;bM&#161;A&#203;&#172;u{uFR_i&#8222;_&#198;&#8226;
+
+&#205;&#236;`&#226;n&#222;G
+&#197;J&#188;&#229;&#198;@P+\[%H&#143;&#168;&#8218;&#217;8&#339;&#177;&#183;HI&#376;*&#170;&#213;,&#238;^&#192;R4cu &#245;k&#235;&#732;i&#165;&#8217;/&#192;[ &#249;w&#174;&#192;&#166;&#205;z&#176;&#338;&#192;&#170;&#216;a&#237;~&#219;~[
+&#203;&#240;&#203;q{&#226;&#200;~
+3P&#252;
+T&#172;&#255;&#175;&#182;p&#237;&#8221;&#8249;&#255;&#241;B&#226;&#8364;T~&#191;&#227; +E&#172;&#205;&#236;&#254;&#352;oJ&#199;|h&#170;&#8240;l6&#232;&#710;&#163;I&#213;&#166;#m&#169;&#8482;&#253;&#180;&#224;v[C,7&#173;B,wBZQ&#172;4&#381;&#402;
+&#8221;&#8364;03L&#239;&#237;&#208;&#214;k&#206;n&#192;&#245;z&#248;&lt;&#184;&#226;&#219;&#237;f&#8217;&#252;&#222;A_~&#182;&#251;&#196;&#217;&#8220;&#218;&#199; Iv^&#189;&#144;/&#204;_&#215;&#157;;&gt;&#165;&#251;&#167;
+&#184;&#253;&#234;d&#220;1&#8218;&#172;&#222;&#216;-&#180;&#183;&#219;0&#194;&#193;M[&#173;&#235;N&#177;&#143; h=&#197;&#251; &#218;&#223;5' /&#338;&#164;&#220;Tj tf&#211;V&#226;Q?7&#216;&#232;*
+&#215;&quot;&#205;&#247;[^:&#189;&#235; &#177;&#216;&#210;&#222;\&#245;&#183;j&#239;w&#8224;&#170;&#8217;$&#247;W&#215;&#193;&#8230;3&#8240;&#189;&#8240;&#174;
+&#217;[&#381;&#246;&#183;&#129;&#241;&#214;.k&#198;&#8222;~zw]/M'}&#190;eq&#189;E'i&#381;&gt;SC&#247;&gt;&#8216;&#205;&#218;I&#198;&#224;&#8225;&#141;X&#192;&#167;HV&#232;&#143;\&#185;Io&#240;oaZ&#221;&#241;
+&#191;&#255;&#164;.&#338;&#710;&#8230;&#213;&#218;&#225;d&#8216;V&#215;MEPs&#214;&#376;&#195;&#212;&#163;&#225;Q&#174;e1&#204;&#216;&#179;QAT&#219;&#8482;&#205;0~&#183;&#195;q&#236;&#144;&#353;&#161;
+&#189;N&#238;jw&#161;`&#231;rJ&#8211;gC&#193;&#162;
+&#8482;~&#8211;\&#193;&#170;{&#187;
+`&#182;9`&#246;A(&#199;&#254;#W&#176;d&#402;&#223;QR[R&#169;:yQ&#248;&#231;.#&#189;&#190;Bp&#192;&#220;&#171;?&#174;&#248;&#228;h&#8212;&#250;&#185;#o&#157;&#232;&#236;&#381;&#181;H&#168;&#8482;y
+&#203;C&#710;++N&#382;Z&#220;&#8218;&#169;&#206;af&#211;&#239;'&#233;+{N&#173;+&#8364;Ay*&#174;&#198;&#162;C*&#8217;#&#189;&#182;&#250;
+e
+&#338;&#238;#K&#8225;kI&#250;&#251;Y&#174;&#173;&amp;&#221;T&#249;&#231;&#352;h$%&#184;&quot;&#244;ER&#201;N&#228;rmS&#239;
+&#339;P&#230;&#339;&#168;&#246;Z &#197;&#178;&#215;:r)&#229;a&#8364;&#163;p&#339;h&#170;0wl&#179;
+&#157;x9&#242;&#193;&#352;&#214;&#710;
+&#206;&#237;'&#192;
+&#243;e&#402;
+m &#206;V&#188;Cf&#254;/&#236;q/l
+&#187;G&#161;&#254;$Z8u&#242;&#8222;N&#168;&#8211;3&#222;&#8222;&#224;&#173;1]&#235;JV&#8221;&#157;{,S&#208;&#194;&#8224;+&#8221;[&#241;(&#232;8&#250;&#252;&#208;&#170;&#191;
+&#183;W&#175;0&#252;&#176;&#162;&#251;&#247;Ml&#129;/&#179;O=N&#8240;L[&#212; 2&#229;&#251;h&#353;g1&#171;a-&#246;
+qvg&#165;,&#188;
+&amp;&#167;&#188;&#376;&#8226;^bZng&#8250;9&#254;&#227;&#246;
+D&#205;&#162;&#352;r&#198;\&#352;&#251;&#141;&#163;&#220;&#710;&#232;
+b&#175;p*&#207;&#217;&#8224;S&#141;0
+u&#243;&gt;N:&#184;&#254;:;&#195;&#249;&#8211;&#171;&#353;&#208;bf(C&#178;&#164;
+&#166;&#129;&#8230;T&#254;8&#167;&#8250;&#180;&#8212;6r&#352;
+&#353;}&#8226;&#245;&#230;&#225;[&#382;d&#199;&#162;&#230; 8%&#194;^d&#198;(*i '^&#245;`;*,&#197;&#181;z&#229;&#202;{&quot;&#180;I&#211;&#179;( &#255;&quot;1&#219;&#193;&#213; &#8230;.&#224;&#193;D&#382;$&#171;&#141;&#199;R
+W&#231;}Q&#240;+'&#195; 0Q&#196;x&#202;&quot;'l &#157;u&#246;&#231;y
+_Qf_M}&#183;rhB&#255;&#191; &#229;&#211;fg+&#199;&#230;&#239;&#8221;&#339;n&#225;&#232;&#225;&#206;&#191;A&#202;ZElD1CB&quot;&#197;x&#241;dq&#207;
+:<i>&#8211;k*aB&#254;&#178;&#157;&#172;,(&#211;&#339;&#195;&#254;&#8230;&#200;2&#233;hN&#8226;kT&#381;B&#217;PuB&#232;v&#216;&#8226;Ws&#232;&#226;&#161;&#8222;-&#230;+&#207;&#255;m&#8250;b&#250;&#202;&#8211;&#8225;8:Kj&#174;&#247;&#246;&gt;&#188;&#186;&#214;[&#8217;&#8221;&#219;+&#174;l&#238;:&#254;4&#8220;
+</I>&#215;&#209;K&#732;+
+&#144;&#243;@
+&#216;&#236;&#164;4&#129;&#381;ue&#233;` &#237;fK&#188; &#402;&#174;&#186;~&#249;T
+&#251;&#168;&#229;
+&#225;&#244;&#233;B&#196;&#175;&#229;#&#200;&#8211;h5&#188;&#225;G&#8221;0&#208;j&#175;&#213;&#191;C&#8220;&#8222;OMQ_&#167;&quot;&#250;4)mF&#216;i&#178;&#247;&#8224;&#182;&#241;&#203;&#226;,&#244;
+&#215;b&#231;'&#199;&#8224;&#166;Vn&#222;&#217;&#248;KF&#165;&#221;17g&#192;&#710;&#179;&#227;O&#241;&#238;1/&#8482;&#219;&#167;$Tg&#178;w&#144; &#219;MD&#8225;&#229;K[&#181;&#170;,A&#710;
+y$_&#8217;&#180;&#165;_&#195;3
+&#163;&#227;Z&#216;&#198;&amp;&#382;&#8212;&#219;&#253;
+&#8217;_&#198;4&#224;:&#8225;&#8230;&#227;&#187;NvI@&#254;w&#228;&#184;&#252;&#197;&#251;9D&#161;tY&#252;G&#163;&#184;$lxdxO&#199;9&#236;&#238;&#179;[_&gt;&#8250; o
+Wa8@&#226;}&#195;&#250;&#129;&#171;&#249;&#235;&#194;|&#8240;(&#8216;&#174;X&#710;ir}&#232;&#180;&#181;(F&#184;&#217;&#241;t&#144;&#229;&#211;4X4&#176;&#202;&#8226;&#213;U&#230;?(&#223;&#255;&#8222;j&#173;I&gt;&#8212;&#129;&lt;&#181;X&#180;&#8226;
+
+&#164;'&#201;&#230;:H&#180;
+&#8224;aO&#176;F&#8364;h&#254;&#376;|&#255;&#178;&#185;&#8364;&quot;-&#8212;&#173;nx&#188;&#209;&#229;&#174;&#8240;&#209;9u;&#163;UL&#190;&#177;&#230;mE&#167;&#245;&#173;e&#8249;i&#178;&#224;L&#208;&#8221;&#254;_&#197;&#221;&#179;Re&#169;:i&#244;o&#8249;&#218;S&#170;
+&#191;&#187;&#8216;&#8211;&#204;&#232;&#225;&#198;.&#8224;i&#236;Y&#221;:&#234;q#&#181;&#232;*&#201;&#214;&#175;&#8220;&#191;&#352;&#212;
+&#8222;i&#215;&#8226;&#180;$0&#8211;&#200;&#376;&#8482;/&#181;&lt;&#144;&#157;s&#189;'&#225;B&#339;F&#178;&#141;&#195;7&#8226;)&#163;&#169;&#8212;&#175;&#157;&#245;&#198;y&#196;&#144; ){&#233;z&#223;&#226;Q5R9&#214;bf
+&#223;Z&#182;&#223;&#165;&#235;&#171;&#169;H&#195;|&#162;Zk,F&#338;&#8230;&#226;&#209;?&#191;,&#381;&#244;K
+&#161;&#164;&#223;S+E&#203;!&#338;2
+X&#231;&#221;W|&#245;&#234;&#236;$&#233;&#381;&#188;&#8250;&#220;&#8221;]&#229;;&#8230;&#220;r&quot;v&#8212;&#164;&#179;&#175;b&#8250;u&#210;&#215;&#8222;:&#241;&#197;KFW&#228;&#255;&#241;a&#8216;&#178;(=lsYS&#177;&#338;&#144;y&#206;K&#194;
+R&#242;k-&#8482;T&#186;&#8211;&#8364;jy[S&amp;*
+&#208;&#223;&#222;T&#165;&#8250;&#710;&#8224;&#166;&#192;&#251;YNo8ed&#205;&#206;&#216;lVU&#225;&amp;&#172;X&#8218;,C&#179;xb&#8482;&#8211;&#237;w
+1&#8226;{&#200;^&#144;&#250;&#178;&#184;O
+&#217;\s&#223;@x&#8217;EZ&#191;&#224;n&#8224;7&#247;&#8211;&#218;p&#157;&amp;l
+&#8220;P&#240;v&#172;&#233;&#202;&#217;&#217;&#216;&#8482;ej&#202;e&#194;&#183;&#162;m?e-&#203;-&#338;g&#232;&#255;7|&#248;&#193;&#239;&#255;&#211;h&#249;[\&#192;&#8240;&#180;K&#144;&gt; &#189;&#170;q U&#188;[&#224;&#179;&#177;^6'&#8226;S&#251;&#224;&#233;&#254;WHQ&#732;@T
+Ryf&#200;e&#8220;&#144;&#382;&#710;rP&lt;yG&#8364;&#219;&#253;^u&#203;&#234;Fr&#141;&#8249;&#8364;&#141;&#212;
+ &#710;&#185;&#176;3||6&#255;&#143;&#203;&#198;&#376;!.72:c&#225;&#185;&#186;&#141;&#208;N&#216;&#188;&#203;s
+trZ&#157;&#210;j&#193;=jl&#181;r,G&#207;&#255;s&#172;&#220;&#248;
+G&#8226;&#165;tS&quot;ll&#229;&#195;=&#157;a&#194;@(
+&#220;&#8211;&#227;&#381;&#179;&#201;&#183;6&#206;&#710;mL&#8482;{&#193;&#172;n
+0&#214;&#162;&#206;&#180;D&#338;&#236;$&#339;&#246;Ug&#8225;&#162;t&#212;&#171;&#381;&#141;
+&#181;&#338;&#194;+](C&#172;kX&#143;&#8249;&#207;D&#171;&#8224;L&#203;7&#143;x&#8220;&#175;&#198;&#8224;&#8482;&#710;&#220;&#211;&#248;&#338;kM&#184;&lt;&lt;B&#224;&#247;
+t
+p&#193;&#225;
+-&#225;&#173;&#209;&#180; \&#165;/&#8240;&#210;&#167;l&#236;&#178;m0p&#207;_S5&#195;&#239;&#376;&#225; 'Xf&#218;&#205;&#167;&#211;&#178;&#233;q&#235;&#168;&#245; &#168;j&#191;
+&#225;&#187;&#8364;&#192;&#183;w&#217;&#207;YX&#248;Q&#215;&#176;&#8220;u
+%Y&#241;&#8216;_&#8216;+&#254;&#224;}
+&#209;
+&#178;\q;RT&#8364;*e&#206;F&#196;&#143;&#179;&#193;B^&#157;g&#214;l&#8211;&#229;k&#204;^T&#205;&#382;t&#339;o&#176;&#352;:&#219;}&#246;&#245;}vbY~0I&#208;&#174;
+6^&gt;:&#170;&#254;+Ji5zZ&#229;o&#174;$&#376;&#224;
+&#235;+&#199;8F&#8230;&#217;&#251;&#165;&#220;&#8211; hI&#241; &#255;&#227;&#249;&#8226;&#226;_
+&#248;|&#228;&#235;&#166;&#338;
+%&#195;y&#8221;&#181;&#8211;t&#177;%
+&#179;Wk&#219;&#129;&#208;l{K
+&#197;&#8222;&#227;&#209;m_~&#381;&#168;&#352;&#246;&#8211;&#191;&#236;&#8240;&#202;&#252;0&#233;&#338;lk&#162;&#214;&#172;&#244;&#172;&#238;u&#189;&#217;&#205;&#167;&#255;&#174;
+&#247;&#213;&#231;\&#249;&#8217;/S&#710;?&#179;y2E&#202;c
+&gt;<i>vKRl?ou&#245;O&#244;&#241;&#242;X&#8212;Z&#8220;&#238;^&#166;I}
+</I>^&#129;&#218;&#186;&gt;&#209;Q&#212;&#245;]&#184;&quot;&#8226;Q&gt;N&#216;`z&#8230;&quot;&#246;Il&#199;[&#164;&#199;pY&#218;&#169;C&#244;&#338;&#220;&#190;&#222;-Se&quot;p&#240;G:&#254;&#188;&#8240;&#8216;&#192;&#228;
+y&#165;&#224;KL+&#382;&#381;&#8240;`&#212;c&#177;*&#163;VIv&#215;&#195;Tnu &#190;
+&#240;y&#183;&#8250; &#8250;T&amp;&#8211;Ms&#161;*1&#175;&#168;&#143;&#231;_&#210;&gt;&#229;&#710;&#218;&#214;
+&#251;Z&#225;&#200; &#338;&#181; U*&#242;&#216;x&#252;1&#224;&#8217;&#216;
+ &#129;&#203;&#222;&#235;&#200;W[r&#241; t&#175;P&#710;L&#189;ic&#8249;&#381;R&#206;,'&#232;&#240;?&#191;&#176;&#174;?&#255;n3&#193;&quot;K&#224;[[&#247;mN&#219;o&#191;&#182;Q&#249;&#376;&gt;
+&#246;&#167;&#199;&#239;&#212;g&#8218;1&#178;&#8364;o&#338;MZ*&#8249;&#214;4u&#8216;&#184;)P4&#171;&#221;&#253;&#8220;E&#228;B5&#218;&#191;4&#231;:&#226;&#187;&#192;&#185;d=&#168;&#213;&#163;J&#169;H&#8224;&#168;&#235;5&#129;&#141;
+6~&#187;&#376;N&#179;2i3&#245;a&#402;&#187;r&#186;r&#168;&#176;&#8250;&#157;&#161;&#191;UP&#8240;zL&#188;
+z
+&#191;&#8482;p&#232;a&#180;&#192;
+&#233;&#243;&#201;&#250;&#170;
+&#202;&amp;&#183;]q&#171;&#230;&#179;&#218;&#243;&lt;t&#162;&#8226;K&#254;8^&#8221;J&#402;&#180;(&#225;8~{&#178;&#8221;}h&#254;&#254;K&#193;3&#220;&#8225;&#8482;h&#215;
+&#209;&#195;&#732;&amp;&#205;O&#195;&#194;g&#376;&#252;Ba&#252;x&#242;u&#196;&#8212;&#165;L&#212;&#203;z&#255;ca_&#249;&#215;&#218;^&#223;&#219;&#194;&#240;&#8230;&#162;&#227;t&#172;Z,&#181;&#185;n&#251;
+&#8230;&#208;&#253;&amp;3O&#255;
+&#247;)&#732;&#194;&#178;&#222;&#193;S&#250;&#245;t&#169;&#249;&#129;F &#162;
+&#234;z&#382;J]8&#245;N&#173;&#188;&#229;&#251;W&#180;u&#194;&#201;&#216;&#8364;&#8224;&#167;&#229;#%P&#175;w&#353;&#206;E&#220;iD&#188;8F%&#193;(&#255;$`&#236;&#141;&#8225;&#216;^(&#205;&#241;IA3M
+&#165;'&#193;&#179;Q&#162;*&#205;0E&#247;&#214;M&#8212;G
+&#186;&#178;&#172;&#172;p&#210;&#231;&#246;&#195;&#247;&#8220;N
+\&#236;9&#235;p@&#225;l&#710;
+&#381;f&#190;&#144;&#211;&#710;$&#232;&#144;&#165;&#243;&#8212;&#231;q&#178;&#338;G\&#211;&#240;&#234;&#8225;%&#183;&#199;PS&#188;&#229;d&#229;&#202;i&#239;i+&#233;
+8&#214;&#710;&#199;C6LY_&#179;&#170;&#192;&#402;&#352;0&#226;LE&#352;&#8230;l&#251;&#222;&#204;U]&#205;&#165;&#235;&#186;@&#168;d&#8221;K&#193;
+c=&#222;&#222;8&#204;?&#206;TG&#218;B&#196;VVwfK!&#201;
+&#157;&#192;&#214;&#252;m=&#237;&#188;Y&#8222;C&#197;d&#177;&#189;&#8364;&#237; &#178;3D&#177;ipik&#250;
+^&#8482;a|&#211;&#8250;&#376;qv&#241;j0r&#188;&#157;|
+&#174;&#236;&#166;&#222;&#197;&#181;M&#226;&#8482;1&#245;u0s%&#219;K&#8364;&#198;)&#224;s&#226;&#238;&#255;&#8220;lT&#214;&#247;+&#252;$&#8240;&#174;&#193;F7N&#191;
+&#8217;&#244;&#352;&#194;p9&#243;&#189;
+&#192;=hf&#214;D&#233;&#255;d&#240;&#212;&#8212;&#8222;&#172;P&#222;#&#187;&#8225;WP&#231;s,X;&#174;&#176;&#732;=\&#248;&#8211;&#168;u&#8212;K&quot;&#141;&#157;P&#231;h&#402;&#253;Sg&#157;&#174;
+&#8482;&#216;&#157;&#166;\&#144;~#&#254;&#172;e&#172;&#8224; &#192;W&#8364;0;&#182;I&#174;l+&#182;&#8226;&#198;8&#171;&#187;&#237;&#141;xm4DkO&#192;&#211;O&#168;P
+&#178;4G&#227;&#234;&#201;&#129;&#402;&#197;&#224;-&#402;&#8212;&#8225;&#210;0&#240;&#182;&#8216;&gt;&#201;-&#163;&#8240;&#212;&#402;&#8216;&#8249;&#8216;L&#338;
+&#161;&#174;&#196;m&lt;*&#402;&#164;&#402;&#222;&#244;&#144;&#163;&#173;&#227;&#208;,&#189;'&#253;
+&#228;&#169;&amp;&#245;&#166;&#8226;,&#175;
+=&#221;&#174;&#227;&#199;/4&#181;&#255;BKW&#247;&#215;&#180;
+&#200;&gt;_&lt;n&#230;,&#212;&#206;&#176;&#8224;*&#206;&#8224; &#402;Z
+P&#196;&#189;mFZo&#143;&#167;
+&#205;&#732;F&#187;&#202;&#169;&#184;&#231;&#202;&#228;\&#167;ox&#243;&#189;&#352;h&lt;=B&#8217;N&#216;Q&#162;&#186;&#207;&#181;x&#251;f&#198;&#141;v&#202;
+D&#231;&#179;&#174;&#190;%&#214;&#8224;!6&#209;&#224;&#253;&#250;&#211;'&#210;\&#202;&#187;&#244;:%yZIW[/&#144;&#217; b|&lt;&amp;
+&#144;z&#8216;]&#8250;&#402;&#218;&#170;v$Bt&#8364;
+%1&#233;&#220;&#168;&#339;9
+&#176;I&#8240;[X&#8212;~&#237;k&#231;+&#173;&#199;pE&#143;&#173;&#196;&quot;&#186;-\&#8224;=&#175;&#8222;&#157;&#242;&#8250;/&#201;&#8482;T&#171;&#204;&#215;&#237;&#187;&#339;Yo4Q|&#183;&#179;&#376;F;&#242;&#190;&#196;*&#168;&lt;&#8482;Za&#244;&#141;&#8220;&#229;4&#217;}~&#206;&#174;
+ &#143; $&#8482;&#382;E&#338;&#8221;&#207;1&#241;.&#198;&#164;y&#197;&#172;S&#8222;&#233;U&#8230;&#710;&#248;V&#732;LN&#236;&#187;&#191;&#235;R@ &#204;HF&#205;Fk8&#170;&#8221;&#206;x@=&#163;&#176;g&#205;&#226;&#204;H&#165;C&#212;{ZNu7
+ov&#194;
+g[R
+q &#239;^Mi&#211;
+&#164;&#141;G7&#204; &#245;Lo&#183;&#225;XP&#250;
+&#352;0&#141;&#201;oW&#235;'&#214;&#8217;{/P
+&#8218;S&#251;&#214;)&#233;&#8222; A&#174;o &#8211;&#8222;&#255;&#8211;H&#172;&#182;&#170;Fn&#8216;&#338;}&#175;k&#338;&#184;R&#382;&#185;Q[X &#226;4&#200;L*[X&#205;r&#144;
+a#_=&#8212;Au&#236;[&#338;&#219;&#195;B&#170;&#238;&#253;$&#8216;&#180;&#381;c&#164;S&#164; &#8218;&#168;&#175;,&#157;&#220;&#228;[&#235;]&#227;&#245;k&#732;&#143;&#216;
+&#180;&#211;&#195;d
+&#231;&#203;
+&#8221;&#178;&#206;d&#243;&#250;
+*a&#220;v&#200;&#254;7&#207;&#228;&#232;I&#196;]
+2wK&#240;&#223;&#8224;&#245;&#201;W&#252;:
+
+&#231;&#180;&#220;&#239;
+X&#183;&#210;&#199;&#252;1
+&#180;&#8230;&#732;@BEWN&#219;M&#376;/&#8249;]K8YE&#234;&#217;&#8230;&#8230;&#173;&#8225;L &#232;&#157;
+&#8216;1&#382;u&#201;u&#192;p&#167;&#381;&#732;T&#8482;&#196;&#710;&lt;@&#192;]&#246;&#338;6%\&#213;&#162;&#173;Qg~&#254;)c_k&#169;&#251;&gt;=1&#229;|t&#176;,&#177;&#165;^&#710;&#8230;&#172;&#710;&#198;]3GR\so&#207;&#173;O&#183;'&#211;9&#237;&#208;&#229;&#227;&#168;
+&#162;(&#175;i7]&#129;&#238;&#8217;&#248;&#245;&#250;x&#164;7G:)G&#245;&#215;&#226;C&#245;&#176;f&#197;&#252;~&#187;&#129;&#339;&#233;&#254;&#8230;&#208;&#173;|&#252;&#249;Z&#224;&#248;&#250;&#241;3&#193;&#169;~&#382;&#732;nS&#231;
+v&#234;&#177;&#230;[&#178;&#176;&#205;&#213;_&#228;Dm&#129;&#237;&gt;&#247;&#8249;KJ&#197;&#239;&#190;&#173;&#179;8&#168;&#207;&#177;`&#219;w&#245;&#253;&#191;&#177;/&#179;
+&#732;&#244;$&#178;&#247;h&#214;}&#177;ZW&#168;FU-
+)&#176;k&#239;&#169;&#210;e&#402;&#204;-&#8211;&#194;+*&#235;&#161;&#192;&lt;&#222; &#339;F?
+h&#8217;&#230;&#179;
+&#8364;t`k
+5k&#202;+&#229;&#209;&#228;&#170;&#353;&#200;&gt;&#207;&#197;&#8240;&#220;S59&#224;&#8217;;d&#226;
+&#8222;m&#8222;&#168;&#8249;D&#253;R&#245;&#171;&#157;&#249;&#195;&#234;&#248;c(\&#141;&#226;&#190;2&#233;&#190;&#8225;&#213;&#224;&#171;/*&#228;7&#210;$&#8226;&#170;PX&#237;&#171;2&#225;
+% &#248;&#178;&#197;
+e&#183;5&#242;&#223;q&#172;&#217;&#162;&#200;&#194;&#8250;X&#200; g
+&#191;;&#164;5K &#228;bZ&#206;b&#8222;&#8211;&#144;Ka&#236;@&#8212;&#254;w6
+\uo&#208;&#141; 4&#170;&#228;&#198;&#248;&#195;+}
+&amp;w&#178;&#231;&#250;&#8220;*&#196;&#212;&#172;5&#239;&#238;u&#232;|(VI
+&#8220;9&#129;&#8218;&#8250;T&#8224;/&#248; BG;!q
+f&#8217;&#220;&#174;NM{v
+!&#218;&#181;&#203;&#352;&#732;&#237;&#8364;&#163;Z&#230;&#202;?T&#240;&#170;J&#197;&quot;&#186;&#8211;&#183;&#255;&#8225;#&#252;uA0&#248;&#229;3&#732;&#190;%L0j;L&#376;&#129;v){&#207;&#228;&#382;&#198;&#204;&#8224;z&#8221;TR&#177; H&#219;&#238;&#225;&#166;&#229;];&#237;i&#402;&#170;&#218;&#184;&#226;&#169;&#218;&#249;&#141;&#221;lM&#234;
+w&#202;0&#247;&#192;j&#231;TO&#176;$&#8212;&#234;&#241;&amp;b&#339;&amp;&quot;&#176;g&#221;&#250;&#353;&#245;&#161;&#214;&#224;mtL&#221;&#143;]&#8221;&#179;Q&#188;E4&#8230;&#8222;p&#181;
+O&#244;&#219;&#8224;&#210;&#240;&#710;&#8230;&#214;&#217;&#179;&gt;m&#8225;M&#233;TH-
+%&#236;,Eu&#200;
+&#182;&#230;&#236;&#217;jJJD&#8226;&#252;&lt;61JX9&#230;f&#218;8&#8250;b&#242;&#236;l&#219;TZ&#8250;
+&#221;&#166;&#8224;/8aI&#8230;&#171;&#253;B&#201;&#353;&#247;*[&amp; &#233;&#227;&#8225;1$&#229;0&#8225;&#8225;{&#197;&#210;J&#8225;,&#205;Azq&#251;&#243;W&#245;&#180;&#199;&#203;SJ#$&#8220;'&#201;F3)&#237;B&#231;&#170;&#8220;%&#201;&#732;&#178;_]&#236;Wte&gt;&#8225;&#8230;`&#204;&#163;y&#215;
+3@&#236;&#8240;&#218;&#252;&#8222;&#248;&#8211;E5&#192;&#246;&quot;r&#8212;x&#402;&#210;G&#222;&#187;&#8222;&#243;&#172;&#168;C&#8250;,&#8211;&#255;&#8226;.&#184;&#199;&#190;&#239;&#221;&#236;&#183;&#207;'_*F&#229;&#190;2B&#239;&#219;gvi&#8222;|&#184;&#227;&#231;\\)&#143;&#163;&#221;&#222;y&#182;&#184;&#251;C&#169;j&#232;&#164;F&#8482;]&#198;85&#376;
+&#8225;&#247;&#242;&#353;|&#171;o+|&#193;&#129;&#232;&#167;&#199;&#176;&#184;yn&#207;&#166;3&#200;E&#8249;&#226;'1&#189;&#381;&#176;
+ 8&#174;&#174;|
+&#181;\j&#8218;&#253;.C&#201;H&#253;&#233;&#732;&#191;F'&#245;&#129;
+&#189;&#187;&#252;K8&#170;&#204;&#214;&#227;&#250;&#200;&#188;&#710;ERL&#193;&#245;e&#200;&#200;TE&#222;mMEu6&#8226;l&#248;&#188;
+&#182;&#248;
+Gw&#232;bo&#376;&#210;v[~;&#209;&#8224;&#157;&#210;{&#143;&#250;+:5V&#171;&#353;Th&#189;&#231;&#174;D&#8482;I&#193;
+O&#196;&#192;&#205;&#234;&#8217;-&#221;&#183;&#177;&#249;&gt;&#353;&#338;8&#200;K&#211;B&#210;&#244;&#192;1&#173;N&#8230;X&#223;g&#210;~&#8221;&#381;&#170;c&#157;&#141;s%A&#210;&#180;:&#185;&#203;&#8225;&#8224;^&#182; &#177;&#376;W&#253;&#254;&#249;he&#172;^wo&#381;&#212;6D^&#8249;&#171;'&#172;&#200;
+&#167;&#235;&#217;&#174;7&#165;&#8224;qo&#228;&#200;Ji9&amp;4QJ&#176;&#234;c\&#157;0&#176;^i&#144;&#181;&#221;&#196;&#195;&#251;-@&#8216;&#8216;&#193;u&#218;&amp;&#710;&#189;&#129;&#187;N(
+&#8217;A&#214;Q&#238;&#176;fn
+&#381;&#183;&#213;&#232;&#8364;&#166;&#8224;R&#229;L&#338;?&#183;JW&#185;n#jnT&#8364;L&#232;P&#732;&#8240;&#225;&#8221;&#8216;Ma&#201;&#382;{&#8216;&#143;&#254;&#143;8&#249;9&#352;&#710;&#205;&#141;&#252; -A3&quot;&#172;&#181;&#8212;&#180;@x~&#710;|&#204;&#8240;3i
+&amp;+CXdE&#172;%&#239;&#163;&#224;'&amp;?C&#352;&#206;V&#171;&#219;&#239;&#173;o&#206;P
+&#161;&#8225;&#8211;&#200;G&#249;&#209;%&#174;&#8230;&#243;&#244;?&#732;^&#251;M}&#220;S&#8212;&#231;&#381;&#171;`&#8230;&#221;;&#250;&#201;&#244;&#221;&#8211;(&#245;&quot;&#245;w&#182;&#220;&#164;H&#177;T&#255;&#235;&#185;m&#246;&#252;|#@4&#206;s&#189;&#8364;&#202;&#186;&#338; &#186;&#255;=&#196;z4&#8211;
+&#171;&#376;&#166;&#226;r&#8220;&#238;
+&quot;(&#191;&#194;
+&#239;&#8220;/&#8216;&#254;J3&#208;
+eC|L9&#217;$&quot;A?l&#202;&#381;&#241;&#376;R&#186;3&#174;*&#210;&#173;fL&#238;*&#213;T:&#243;
+&#165;&#196;&#222;}&#144;4&#202;&#710;\&#168;&#382;!&#8217;&#187;&#242;f&#224;Y&#224;&#402;&#174;&#244;&#203;&#230;&#242;&#240;&#221;&#195;&#217;o&#381;&#141;)&#8211;&#206;F&#141;&#196;}6{8[{:&#339;&#211;k&#224;Q&#376;&#191;nQ!g&#239;#
+&#167;/&#8216;
+
+m&lt;{&#239;&#249;&#225;&#194;&#165;4&#222;X&#176;X&#245;@*&#253;&#228;&#183;&#184;&#236;W
+ &#376;&#171;&#339;S+&#186;c&#194;&#175;
+-`&#169;!&#223;&#244;)M&#8364;,&#184;&#197;!5&#172;&#381;&#224;&#227;kqL&#8225;,Xw&#198;9&#203;&#225;.&#254;E&#206;B|h&#245;&#162;d s&#184;H&lt;&#162;}(&gt;&#8220;\&#181;&#178;&#169;8X&#141;-&#200;
+ ^&#209;&#235;M&#162;&#8220;&#205;l~&#241;&#8364;&#188;&#162;&#8220;|&#171;&#8250;8J!&#178;p&#222;&#247;&#206;{&#246;&#338;
+H&#205;&#251;W&#352;&#166;dh9&amp;a&#231;
+&#254;&#8222;
+O&#187;&#161;P&#171;r T&#233;&amp;&#8240;&#8240;&#244;%&#8222;M!&#164;O6p&#186;mBT&#221;K&#732;]#&#203;i9:-&gt;D&#224;5&lt;&#8482;~LR&#201;&#224;&#227;&#218;e&#227;&#254;&#255;W_S&#164;$&#237;`&#170;&#144;&#204;&#161;
+&#8230;8'x@&#175;&#172;&#184;v A&#217;&#174;&#205;o&#252;&#191;&#8221;L&#224;7&#167;&#8212;]9
+&#255;&#219;
+R&#212;h&#163;T&#8250;&#222;&#247;y&#194;P&#250;&#732;&#187;H&#223;&#227;
+I&#207;&#175;&#225;&#188;&#8212;&#173;:&#244;e&#226;K&#199;&#243;&#339;&#192;&#353;95&#157;f&#141;F0&#218;&#217;o&#191;M&#207;%&#246;&#200;=&#173;]&#202;Hj&#208;{E4wY&#244;&#219;&#144;&#240;N&#215;x&#381;q&#8217;p&#8211;&#188;&#176;E&#255;m&#8216;&#174;&#141;&#180;&#246;.cSCoM&#169;+Sc
+6&#141;2
+]X5e4&#166;&#251;&#210;2&#8221;&#339;aMs&#239;&#252;&#8216;W&#250;Bv&#231;&#234;&#218;@&#248;&#238;&#212;&#198;&#190;&#174;&#204;&#203;&#178;V&#247;&#242;&#8364;&#732;&#168;&#163;&#250;;h&#170;&#338;U&#339;&#238;&#189;K&#220;&#242;r}&#230;&#169;|&#161;J&#248;2+4&#179;/&#248;8m&#183;&#166;&#8482;3&#186;&#248;&#243;ws&#212;&#188;&#710;!&#236;&#339;&#251;&#172;&#181;&#227;g&#218;r&#163;&#182;&#172;&#206;&#129;&#225;&#237;5&#169;&#243;&#241;&#8216;&#227;d^&#8482;p$&#192;$D
+B&lt;L&#197;&#188;&#233;t&#8249;z&#221;&quot;0F&#237;&#250;&#214;&#169;&#220;\4&#157;&#8218;
+&#168;&#382;,P&#188;&#199;P@
+5CX f`&#8249;&#141;&#212;&#230;&#339;&#187;d&#219;&#8220; &#144;&#161;\&#239; &#338;\&#174;,n&#219;&#171;&#164;
+-&#8216;&#205;$3RT4&#191;&#181;&#255;&#166; &#196;&#249;&#180;&#129;&#240;!&#186;&#376;Nz5&#339;&#190;&#376;&#254;X&#201;&#226;
+G];&#184;(&#237;U
+&#8220;&#219;&#244;&#402;&#157;&#228;
+&#194;MS&#250;&#187;
+&#402;&#8226;l&#179;&#235;k&amp;n&#732;&#732;&#218;BCi&#161;YM&#223;&#211;&#240;&#233;&#211;S
+s&#8221;&#225;&#188;O&#179;d*&#245;&#8221;&#241;&#245;C&#197;@&#353;&#236;|LP4&#214;&#164;Dl|q&#214;a+3&#8364;RD&#8211;&#242;&#194;;&#402;8H
+ d&#211;&#237;
+3&#217;U&#243;&#352;0 F?W^qhQ &#376;&#241;8&#220;`&#199;&#197;^&#189;&#178;&#175;&#198;&#221;&#254;{&#205;&quot;=&#167;s&#8230;&#244;FV
+u
+&#204;3D[&#192;&#234;y&#381;9&#198;&#211;q&#163;q&#177;&#229;o&#255;&#244;&#209;ov&#183;k2&#195;&#168;&#225;&#254;1&#212;&#240;IQ&#186;{&#183;&#189;]&#248;&#8249;&#143;&#352;&#223;h&#249;nT&#8217;PPN&#169;J&#173;&#218;&#251;Z&#198;{2&#255;&#189;N&#177;&#216;r&#177;k~&#198;&#252;D&#183;&#215;&amp;uv&#8216;41b&#8217;&#174;&#233;P(n&#187;&#169;&#144;&#376;&#381;&#187;&#8364;5&#141;&#8222;&#226;&#214;&#8218;p
+&#176;V&#246;=!1,O&#196;&gt;H+&#162;&#218;$&#211;&#168;@PQE
+E&#163;&#210;&#192;&#181;V&#8250;1 U&#167;q&#8225;&#248;&#248;&#161;
+ZJ&#382;&#192;&#205;L%&#239;s&#219;;&#732;&#8220;&#165;&#214;&#181;&amp;:&#251;&#206;&#230;n GJ|i&#176;T&#8226;&#226;c&#211;t&#230;$&#710;v&#250;&#381;&#199;&#209;z &#198;aR&#166;H
+g&lt;&#226;&gt;&#243;$b&#234;&#206;C3&#233;&#194;Ad&#190;&#253;&#176;&#221;)&#215;u#&#353;
+&#219;
+&#175;&#197;&#8224;a]&#238;&#8230;V&#8220;&#161;&#246;&#249;&#178;&#247;&#186;s&#8212;&#195;&#208;g&#204;&#191;&#228;&#239;&#732;&#199;&#194;(&#230;O&#176;&#189;p &#169;&#197;\&#8221;
+/&#165;fu&#199;&#233;7T
+&#8364;&#249;&#204;&#220;ri&#339;&#224;&#8212;&#168;T1i&#171;&#161;&#8216;c:IU&#204;&#144;&#8364;6\d-&#162;)l&#143;#&#208;a&#245;&#170;D&#228;d
+`*&#201;&#179;&#169;V
+&#8230;u&#166;y&#168;)|&#211; ^&#247;&#212;&#212;&#222;&#225;\&#194;B&#209;4&#166;&#129;&#196;4m
+m&amp;&#173;
+Xy}B&#353;&#225;,&#353;&#352;4P
+M&#8249;#&#179;'&#232;&#129;jrA :J\J.)&#191;n&#252;&#205;&#8249;&#204;&#200;&#227;u*t&#8222;&#244;|&#190;w&#8250;nw&#218;&#240;i&#144;Ff&#180;&#192;&#8249;2&#219;&#249;l&#197;jTEH{&#8250;&#229;f'
+&#250;&#216;&#181;V&#175;I&#240;&#206;&#220;
+i&lt;F &quot;*O&#206;Ne&#248;&#8216;&#8211;?&#215;&#190;&#252;&#143;$&#217;C&#220;&#382;&#181;
+B&#376;&gt;&#188;&#248;{qo&#202;&#170;&#217;&#217;&#209;[A&lt;i&#8212;&#240;&#230;R&#8218;Xw?~Z&#184;&#210;&#143;&#208;*&#195;S&#212;0&#233;&#210;&#161;p Go&#226;W2&#8225;&#211;&lt;&#169;&#143;&#203;9&#199;&#143;&#179;o&#185;M
+&#376;&amp;&#179;&#8482;c&#207;'&#240;&#8220;qV&#157;&#201;:&#382;9X&#157;&#241;$&#192;&#710;&#245;&#178;&#210;&#353;&#231;&#165;&#352;&#144;&#247;&gt;R&gt;&#251;&#204;&#196;&#208;a&#220;&#202;&#179;yv[&#208;
+&#382;&#234;&#252;c&#198;hxT&#204;&#244;[&#339;&#171;H&amp;a&#237;3&#8250;&#8240;8&#233;&#8218;&#254;&#214;&#8364;&#179;
+
+&#8224;&#222;&#8364;&#250;&gt;&#8218;O&#183;&#230;M3&#255;&#205;&#207;&#172;&#246;&#163;&#187;C_&#182;&#382;2Cq&#245;1#&#8218;&#180;bw4aU&#196;&#192;&#249;&amp;&#8222;&#242;&#181;&#198;&#144;&quot;&#197;s(-&#192;E&#214;XJ&gt;&#226;&#170;&#217;&#233;&#174;X&#8217;&lt;&#141;z&#157;&#163;l
+&#8240;&#229;F
+&#732;&#144;(&#230;&#207;&#197;}&#214;&#231;Q&#8240;z&#8212;e&#8230;&#232;4g&#184;&#202;&#213;&amp;&#217;Oz&#170;Aj&#8224;nJ&#219;&#201;&#167;6&lt;
+Xe&#254;&#229;&#235;&#183;y4&#170;w&#237;@&#164;&lt;&#248;H%&#376;&#178;V&#247;&#195;i'&#174;&#192;
+&#228;X&#175;N&#183;E&#218;&#8218;Z&#225;e&#213;&#376;D&gt;&#168;&#202;]4m&#253;V
+&#185;%&#192;'&#732;&#186;&#353;c&#232;I&#164;p&#161;H{&#221;&#186;&#167;#4%
+&#8218;-n
+&#194;&#250;&#255;,M&#213;&#240;&#339;&#242;&#244;&#244;7`&#227;&#233;&#230;&#237;&#8218;&#203;q&#8217;A&#141;9&#199;&#190;&#210;&#228;&#245;e&#8212;!&#217;J&#249;&#180; &#732;j&#198;&#382;&#238;&#204;&#243;&#166;&#229;&#213;m&#176;&#232;&#185;&#194;&#194;&#192;_&#234;&#247;x&#193;S7Z&#169;h&#224;&#169;UZ&#244;&#198;&#208;M&#8220;4
+^&#251;:&#732;&#189;&#207;&#173;&#242;&#201;&#143;&#381;&#194;?
+&#8240;WF&#226;&#8218;&#167;&#255;&#230;&#221;&#352;
+Z&#212;&#8240;&#246;&#187;&#8250;&#144;
+f&#173; !&#205;4&#205;&#244;&#204;mp&#243;&#244;P&#157;&#8230;&#167;a&#171;i&#172;&#214;&#168;&#202;&#164;+&#192;Dh &#176;&#176; &#200;&#220;?&#141;5 &#163;ps[n&#239;L4&#8249;&#188;&#237;&#207;:&#235;{&#208;&#190;&#164;oi
+&#8364;&#183;&#207;&#212;&#223;&#8212;0&#190;/&#8216;d/a&#216;`&#8221;7 &#188;.&#215;3&#209;&#376;ot &#255;&#141;&#193;W{&#8250;&#190;&#236;X
+&#203;#g&#213;~&#183;&#164;&#206;
+&#250;n8&#169;R&#233;I&#193;&#243;|&#8220;*BC&#172;&#180;&#193;&#162;&#8222;d&amp;&#227;l&#221;0&#179;&#240;x&#249;0
+&#8217;&#217;&#157;Q&#218;J&#339;&#253;&#165;&#157;&#252;&#243;&#229;QB&#172;&#175;&#167;`&#193;&#165;&#249;C&#245;2Zt
+&#8226;&#8230;4&#236;&#8224;&#402;&#210;&#170;&#184;a&#212;&#254;~&#167;V&#246;&#247;&#250;&#376;Y&#196;&#206;&#164;&#202;w&#181;&#255;&#199;&#381;&#144;&#252;&#338;i&#212;xp3&#161;f&#382;&quot;&#204;[A &#216;66}8@&#242;[WFVk&#175; Mc&#225;&#732;&#234;&#198;&#210;&#168;&#174;&#168;&#219;&#163;+H&amp;&#235;&#165;&#240;1Y=&#402;C&#181;j&#228;&#242;&#143;D&#182;&#402;&#376;&#255;&#201;;&#200;&#215;&#8224;&#8230;&#187;&#248;}&#238;&#352;_
+
+K&#196;&#214;&#235;I&#163;&#710;&#8216;&#231;*&#255;&#186;&#211;&#8211;d`&#8211;&#192;&#252;(Y&#236;&#253;&#183;l&#215;7&#196;|&#8225;&#168;D&#8222;o&#8482;6&#8212;)&#170;&#8224;&#200;&#165;&#238;&#8220; 0$&#221;)/p`&#228;&#144;&#178;u&#163;&#8482;&#175;&#167;&#225;B_z.&#235;e&#710;&#202;N&#8226;K#b&#227;FT&#189;&#185;5q2|&#8217;&#204;
+x&#249;b`9&#8226;&amp;&#8225;@&#213;`,&#190;&#253;(&gt;&amp;&#223;&quot;&#249;&#8212;&#247;&#200;&#223;1&#8482;N&#179;&#188;&#222;&gt;&#210;&#244;$l*&#201;v=&#8225;&#8222;q&#144;5Y&#180;a&#228;&#162;
+&#339;&#193;= 1+&#338;&#8220;&#249;&#236;&#167;&#192;tQ&#174;&#171;
+&#402;&#245;^5&#215;&#198;v&#8212;&#338;n&lt;'&#224;&amp;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">h at b</A>
+Q&#8226;&#8211;&#8211;&#157;&#184;&#382;&#198;QF&#248; &#211;#&#182;.7&#246;&#174;&#182;&#220;&#8212;X&#234;&#179;&#167;&#177;4&#251;W&#8220;lC&#8249;;T&#167;&#189;&#8218;&#8220;
+6&#8217;n&#240;&#190;f&#192;&#251;&#177;&#8220;G&#251;&#204;V!a&#220;S@/&#183;M&#161;&#732;YFhS&gt;&#250;&#8224;*L&#195;'&#185;&#167;'&#183;&#195;!je&#166;&#196;U&#244;]U&#8221;&#178;&#250;&#180;F&#255;&#162;&#382;&#179;&#219;v&#8221;&#338;&#8224;]&#168;['&#162;&#402;&#203; &#254;M&#249;$v9W&#223;&#166;&#381;&#191;;&#247;
+&#193;*&#238;\&#233;&#241;&#204;&lt;&#248;&#245;&#8220;&#226;&#402;%&gt;&#216;+a&#143;&#8212;^&#8211;&#251;&#8364;&#172;&#8224;&#206;&#8217;Q&#192;@o3U&#244;&#8218;&#195;&#232;
+9&#183;&#8364;&#213;&#376;&#212;zZ~&#172;&#209;&#189;\{&#231;T&#201;&#163;&#172;T&#212;&#178;&#338;&#199;&#253;9&#199;&#193;&#240;'&#221;yOy3!DL&#8220;}t&#172;&#217;
+&#218;&#170;Z
+Mo&#382;A$&#226;J&#245;&#205;&#210;&#187;v&#222;N&#240;Z&#207;&#194;&#201;t&#180;&#181;m&#381;_&#8220;!&#173;B&#236;&#8226;
+&#8220;&#194;d&#170;c*&#187;2&#352;&#168;&#338;&#8221;&#382;&#226;&#203;&#8240;SB&#171;%x&#376;&#178;a&#199;&#199;&#203;&#213;&#162;&amp;&#192;@&#199;&#161;&#222;&#235;&#382; X5&#255;)&#246;&#8230;&#196;&#230;$&#162;&#245;&#175;&#205;V'$&#237;&#250;i&#8221;d
+j&#196;&#8364;i&#8364;&#178;6u&#235;&#144;&#246;&#8250;V&#8220; 6e+
+$\,&#185;y&#252;-_&#352;&#8249;{&#195;{&#201;&#8249;&#181;&#200;F&#163;&#157;#S&#200;&#169;&#244;&#216;v9Y^&#207;b&#224;&#232;3&#197;M?&#220;&#217;*r+&#239;
+&#182;3T&#8216;w&#710;&#220;(&#192;&#246;K1,&#241;h&#185;&#254;K&#8240;&#250;&#165;tw.&#8249;2H&#226;&#181;z&#171;C&#339;
+&#194;x&#181;~:&#8226;y[=&#8249;&#238;h&#235;&#182;&#170;&#202;#&#187;J/;*&#8218;&#251;YB&#252;'&#215;&#162;&#222;yq&#8240;&#8230;&#195;RUI gx1&#185;r&#216;&#8364;&#8221;&#190;&#249;N&gt;&#189;.'W&#196;O&#192;&#226;&#175;
+~&#198;} 2&#157;&#353;i&#216;&#247;&#230;
+&#210;&gt;C&#141;&#185;&#339;a&#8217;O)&#8225;i#
+&#215;W2%&#178;&#402;J?&#227;&#161;&#235;u&#141;&#178;r&#732;&#8211;&#173;&#205;&#242;&#165;\&#175;*&#8222;z&#248;&#182;&#216;t&#175;4&#8217;
+ujk|a
+K@Z&#236;LN&#186;&#208;&#8222;y&#191;w&#247;&#732;&#8482;&#185;&#239;&#232;&#166;/(&#8220;&#174;&#236;&#253;&#8220;&#197;&#381;p4&#165;&#143;&#166;&#242;0L&#238;&#8240;&#177;)v:]-&#181;c]&#218;&#8226;&#230;&#210;&#238;&#402;%6&#188;aS`&#190;&#227;&#165;&#8218;m&#197;&#241;&#157;=&#164;&#223;&#248;&#402;J&#255;&#8240;&#236;&#223;&#250;B&#238;3&#143;&#251;&#175;r&#185;&#353;&#225;&#8250;3\w&#219;&#208;&#167;&#8226;|e$&#207;&gt;-%+&#195;&#352;}&lt;&#8211;1&#251;&#249;&#173;&#253;&#219;&#183;&#169;(&#197;&#190;&#252;&#221;&#144;H&#224;&#230;%&#192;~&#8218;jPQ&#240;6&#248;&#209;&#174;&#352;&#381;&#8217;&#229;&#8230;k&gt;&#8224;&#129;G^q65&#732;&#221;F&#191;&#8218;2&#143;&#376;&#167;&#141;&#352;C&gt;&#243;:&#209;t\&#8222;@&#231;&#179;
+&#174;&#221;&#209;G.O-D&#8240;F&#233;EE&#241;jk$&#247;4&#186;&#209;&#187;T&#221;0&#8212;Kw&lt;&#402;&#215;&#189;~
+r&#200;[&#254;&#165;&#192;&#246;
+&#219;Z&#222;= &#212;&#248;&#178;&#353;&#228;&#164;&lt;&#8224;&#141;q&#8249;&#213;ED&#206;:&#339;&#170;T&#710;q&#225;y^
+&#170;&#240;h)&#226;&#211;5y9&#352;&#8240;&#8211;&#238;Y&#196;&#8226;&#144;&#191;&#8224;A&#234;&#167;&#199;&#353;
+&#208;U &lt;&#8212;3&#8364;x&#172;3&#210;MLN&#8218;\&#352;&#234;&#200;&#221;&#245;a&#248;&#174;&#161;&#221;
+&#228;e&#198;&#198;7
+&#178;&#187;&#243;;&#172;&#173;&#193;&#231;&#173;&#235;@&#196;&#192;-u&#177;&#169;&#222;v&#8211;z&#253;&#249;Fqj&#172;&#167;w&#181;&#8222;#&#247;&#170;&#184;&#209;&#194;E&#192;&#230;N
+&#8211;B UWQium&#201;X&#240;&#195;
+&#194;^&#222;
+_&#166;I&gt;&#178;
+
+&#236;E&#249;x&#8240;1&#242;sE
+&#382;M[&#8225;&lt;NlD&#8212;n&#228;&#170;&#224;&#243;K&#217;]G&#204;r&#255;&#237;&#8221;&#162;bl&#182;t|E&#249;&#381;w&#191;y&#170;&#191;T&#402;]&#204;=&#144;T&#222;&#201;A&#185;&#188;1&#176;~&#197;&#231;r&lt;&#8250;&#199;&#243;6
+&#204;&#165;&#212;x&#8221;&#8216;&#8218;&gt;)&#220;&#213;1|A&#163;&#212;
+&#248;Z
+&#187;&#207;&#236;.&#253;;&#207;&#8249;*&#235;&lt;&#193;GN&#8225;&#215;~0&#170;k&#250;&#174;
+ &#209;&#220;iX ~K&#228;&#8218;&#216;&#228;&#166;1T&#232;u#n&#252;o&#185;&#244;&#168;_7n&#190;&#8221;U&#232;
+&#231;.&#224;&#183;+s&#339;&#168;&#181;&#176;
+&#8240; &#243;&#234;&#238;&#180;&#244;&#141;&#376;+&#248;&#164;&#202;!
+!&#710;&#8249;\&#8230;Y^&amp;}&#157;&#238;&#188;:ww
+Sr&#224;t&#209;&#215;&#229;#&#245;&#167;;2F&#211;c&#232;&#204;7l&#237;&#8220;4&#382;&#205;+Y9m&#211;&#217;
+a&#239;&#157;&#183;/&#241;&#161;1'&#212;&#8224;u&#8218;:&#182;&#162;&#8216;g&#402;(&#247;&#248;Y&#230;&#223;&#197;&#8249;\&#224;Rc#&#8217;_7&#193;&#193;
+&#206;&#143;&#231;&#206;&#213;&#208;&#232;8&#166;]{U9&#164;AA&#227;&#189;{&#8212;fR_&#184;&#199;&#226;O&#208;
+&#251; &#217;9&#242;mB&#180;Z&#170;/e&#245;&#168;B&#224;e&#227;&#209;&#244;M. &#211;&#249;sD&#144;{&#213;&#171;&#228;&#255;W&#185;=&#254;&#182;&#207;E&#171;y&#239;&#381;&#163;Xt&#220;
+&#157;7&#244;k&lt;1&#188;&quot;G&#172;
+&#8212;&#220;&#232;B&#170;&#199;#
+N/e&#220;j&#200;s&#8216;OX;&#192;&#207;&#143;&#223;&#218;&#169;&#194;'&#226;&#219;&#236;K&#192;&#710;_&#8218;&#232;&#8250;&#141;&#239;&#208;&#185;&#177;H1&#229;}&#381;&#8224;&#144;&#244;0&#231;&#202;H&#8221;&#8218;&#250;
+
+&#249;-&#214;&#162;d\;&#228;&#8221;&#166;&#253;y c&#230;&#162;7KC5a&#732;&#8212;&#210;&#200;{:&#217;
+&#8364;&#252;u&#144;N&#193;Nu&#209;m&#217;&#164;&#339;94&#8211;&#208;=&#732;&#213;z&#8226;&#176;hA&#184;&#236;V&#249;&#176;5&#162;/&#402;&#169;&#249;;&#233;
+\/&#8364;%O&#199;&#243;:&#8212;K8&#8249;?&#246;&#172;&#218;&#187;&#186;&#173;&#191;{&#8230;&#129;E&#183;&#242;&#207;t&#226;&#236;&#243;c&#161;&#233;|#&#214;&#224;&#8230;u&#222;j&#129;uJ&#8225;&#241;A&#250;&#8217;
+X8;
+&#188;o^&#201;&#212; &#211;&#8221;&#197;&#8224;&#169;&#170;,&#167;&#204;&#402;&#215;&#208;?&#243;[&#254;%{*&#213;&#201;&#8212;d&#221;&#8240;&#203;'&#141;&#166;&#186;&#220;G&#163;&#182;&#196;&#8230;&#195;mg&#8220;@L&#204;@&#382;&#242;&#240;Ja&#8364;S&#182;&#245;&#223;&#214;&#204;&#181;&#217;h&#381;|&#246;
+1&#240;
+8&#188;&#236;'&#189;HE&#172;(MbU&#710;&#178;&#245;&#8222;&#210;&#8220;&#8211;&#8364;&#199;&#168;&#246;;
+&#199;
+&#8226;&#225;&#190;&#195;&lt;Zq&#239;;-Y&#254;U&#251;&#197;&#227;&#339;FG&#192;B&#178;&#237;aT&#8211;uC&#225;V&#235;
+&#205;\&#8221;=7S`&#212;&#8221;K!&#8250;&#236;S&#184;r&#238;&#223;&#182;&#182;&#163;&gt;)&#710;&#376;&#207;4&#189;
+&quot;3&#170;&#203;X&#238;x
+1&#8226;_%&#209;l&#732;&#402;&#179;&#255;&#180;&#177;&#170;&#229;'X&#226;#U9&gt;&#338;&#141;&#213;&#243;jRo&#194;&#338;&#179;&#376;&#240;M&#179;&#402;&#188;S&#222;O%&#170;{&#179;
+&#248;&#8216;&#254;&#8224;&#203; &#172;=/5$&#193;V5&#338;&#186;-&#339;)'&#8226;&#251;&#143;&#231;q&#231;&#216;8b&#176;&#233;&#236;&#249;&#199;
+&#8217;&#222;8&#8240;A&#225;&#200;&#201;&#8212;|Bs&#162;n&#198;X&#8250;]&#218;&#206;&#8482;:&#376;&#178;n&#194;b&#207;&#144;&#210;9\6&#8250;&#254;&#183;&#215;&#235;KD&#381;&#144;&#8250;&#204;;&#162; 4tdCQM&lt;RZ&#223;&#245;a,R&#232;&quot;&#208;&#8221;&#254;3
+&#225;Dg3&#182;&#353;&#174;&#242;&#225;
+5&#210;y5]&#213;&#177;E&#201;&#195;X&#221;&#210;$e&#244;&#250;U&#188;&#8250;&#8218;&#200;&#8482;C!&#212;#tu
+&#205;j&#182;&#203;+UZ&#172;&#193;&#201;o&#220;&#169;&#191;&#200;&quot;&#199;,&#178;&#213;&#249;X&amp;&#8222;#&#402;
+nI&#250;&#8249;Jx&#8226;&#201;&#210;&#144;
+|j&#238;&#224;M=9&#211;&#176;&#225;&#231;&#8220;N
+&#352;-z*&#242;&#251;/`'&#234;L&#169;&#163;B#&#212;&#208;5&#8224;i&#143;&#236;&#710;7&#8364;E&#8230;$y*A&#209;&#194;&#144;&#232;&#204;&#251;&#210;&#202;&quot;o*}'t0m\&#235;&#177;3&#242;&#170;&#190;eA&#250;MVRI&#205;-&#8224;x&#8221;2&#254;&#229;F3\k\&#243;`&#175;&#8218;&#221;&#244;a&gt;??N&#253;&#192;&#240;&#8482;&#732;~8&#172;&#234;
+\G&#201;&#240;Q&#710;}:\Rm&#157;&#8224;&#207;&#230;&#236;F&#176;&#402;Ha&quot;&#186;&#215;Y&#8218; 40&#141;t&#8222;&#246;&#254;&#248;;&#382;&#402;Kz&amp;&#165;&#238;&#215;L&#8218;&#8211;&#170;E&#157;Q;&#248;14ExE&#239;
+&#8230;&#8224;)&#8216;2&#216;&#196;oD&#8224;n&#191;&#183;7&#172;&#197;&#732;&#203;P1l&#200;&#178;&#176;A&#8225;&#171;S&#8482;&#253;S&#232;&#8216;!E&#246;&#217;&#352;,&lt;&#174;&#201;=&#229;ekv&#157;&#710;&#238;&#191;.&#8230;&#205;&#230;=&#195;&#339; &#211;&#211;.&#245;&#8212;&#189;&quot;a&#239;&#254;~
+&#222;&lt;[N,&#243;T;&#197;?&#208;S&#8220;&#710;6&#212;x:&#215;&#170;&#247;&#239;N&#226;&#338;&#243;&#255;&amp;&#8240;&#239;&#171;&#179;&#234;&#201;&#253;&#199;&#178;&quot;&#8482;&#732;&#205;&#202;3{W&#253;&#8230;R9&#339;O&#163;&#171;x&#248;&#339;&#172;a&#129;&#193;
+m&#245;&#198;&#178;&#222;;0&#234;4&#219;7 Hd&#226;?&#187;+&#197;&#8225;&#180;&#183;&#190;m&#173;1&#129;&#8222;A &#204;&#161;&#236;&#174;&#250;l&#226;M&#204;A
+&#184;&amp;&quot;&#193;k&#231;&#225;&#191;43&#168;&#186;&#173;&#162;&#710;m7N&#255;'&#175;&#184;&#226;Vh(b&#200;)_5&#195;&#232;Z&#732;F&#235;&#235;/}&gt;.&#191;&#710;&#221;)
+WE&#710;3&#224;X&#171;C0&#129;&#178;&#202;\|6Ow&#215;&#213;&#8240;z&#167;&#179;$Wa&#209;
+&#181;M&#8216;I&quot;&#215;&#206;&#247;&#215;8&#245;$p&#182;&#179;vj&#193;&#225;;3?jI&#210;w&#214;Q&#248;Y&#169;.eB&#180;\&#195;.T&#183;%&#157;&#168;UDVh&#210;&#228;
+&#174;&#230;&#238;A&#208;X&#212;W&#161;J&#181;&#8364;&#185;6r&#8211;{ &#177;i&#220;&#191;\ IhE-&#8211;&#174;&#177;&#8224;&lt;&#189;-
+ &#226; &#8222;|r&#203;Bat&#235;&#168;&#353;&#209;&#402;^&#234;&#233;&#248;&#230;&#211;T&#249;Y&#243;&#381;BZeOsD&#168; *N1&#250;&#216;~&#352;pe;e&amp;&#8222;&#174;
+2&#8212;\ &#8216;
+a&#188;v&#184;&#8212;&#8364;&#8218;_&#228;#&#245;&#193;&#234;v&#217;&#249;&#144;&#173;&#230;m&#232;&#194;&#231;&#183;&#239;ZJ&#157;9&#8222;1&#253;&#245; &#229;&#222;&#177;&#8364;&#168;&#8221;]&#8250;&#186;&#141;&#228;-&#8211;&#192;&#245;Q&#181;_[]&#171;B
+nD&#173;B*&#252;&#224;
+&#8230;&#186;&#218;INH&#176;&#216;u&#204;&#8230;d&#144;8&#236;QMP&#190;&#230;&#219;&#8221;`iW&#195;&#193;&#162;&#220;Fc&#129;?&#8212;r&#202;2{M&#353;&#251;&#171;&#8249;&#251;&#195;&#210;&#205;&#219;&#352;X.&#8221;&#353;&#8482;&#204;&#198;R&#8220;&#222;&#8225;&#166;&#206;&#226;&#195;&#213;&#170;&#157;&#8224;u&#129;(SUj&#8221;r&#8211;&#242;&#190;&#176;1&#233;}&#220;9&#237;&#249;&#8249;&#376;r9&#234;&#157;!&#8249;wl&#236;A&gt;&#352;&#234;m&#215;&#8221;&#188;O&#171; &#166;u&#179;&#129;&#207;sdk&#186;5)u&#191;&#180;=&#222;g&#8221;2
+&#251;WS&#251;=J&#193;&#161;&#221;&#169;&#8212;&#238;43X&#199;6&#8216;&#230;&#208;&lt;&#165;WI7+&#8216;&#402;`&#223;&#199;&#242;&#208;|9i&#203;&#179;?x]&#171;}&#235; v7&#8482;&amp;&#710;&#238;&#233;&#353;v:&#207;pV$TT&#352;&#8211;&#186;&#248;&#173;&#182;&#338;&#226;&#353;
+&#253;
+&#247;&#186;&#194;f&#186;&#221;&#239;&#213;C&#176;&#179;&#250;c&#240;7&#232;'t&#402;9&#169;*=&#245;&#8221;%&#166;;&#198;1&#204;78dmr&#8250;&#163;&#251;&#232;2&#221;&#236;X&#196;&#173;&#165;K&#193;&#381;G
+&#170;&#245;m2A&#255;&#254;&#732;qVu&#217;&#203;&#176;&#190;&#191;7&#165;&#376;#&#382;&#8211;&#185;? &#8218;&#206;8&#200;k&#255;&#243;8&#8240;
+&#186;DL&#8221;&#230;&#141;&#8212;~4w&#248;&#8221;&#209;1&#247;&#162;&#163;h&#184;&#8230;&#175;Y&#141;s$&#144;&#194;&#402;$A&#198;&#206;&#237;%
+qj4:&#230;N6&#179;
+ &#177;&#193;&quot;?&lt;&#253;&#255;W^&#254;&#220;&#208;&#8220;&#237;&#209;&#226;&#129;)}
+&#235;&#353;@&#218;Yy#2&#143;b&#242;&#225;&#198;&#162;&#233;&#221;&#245;7&#353;p&#402;C&#237;L
+3&#229;E&#215;W^&#220;6&#180;&#252;?rf
+d&#381;&#169;]&#222;pl&#209;&#245;:v&#251;&#223;&#253;&#243;d!(&#218;&#218;)&#8217;&#194;[&#252;&#172;+ &#236;\:&#8212;n.&#163;&#8218;&#228;&#216;&#194;&#205;f&#222;&#202;&#249;&#201;&#206;&#174;
+&#338;&#246;]&#252;=&#129;&#214;&#178;SEX&#167;0&#157;/R&#8222;}c&quot;&#179;p&#208;&#244;&#193;:&#235;&#143;&#204;&#220;&#219;J&lt;&#175;&#177;&#211;(&#191;tk.&#203;&#225;&#223;&#168;&#254;&#8216;L&#167;&#165;Y&#186;c&#240;&#182;&#8212;&#8217;&#8249;&#402;&#184;s;-}C8&#227;Jp&#8364;&#189;&#254;&#177;JK&#199;
+&#189;&#143;&#212;q9x&#243;&#181;W&#710; &#225;&gt;&#236;&#732;@ Sw&#248;5L &#225;&#8249;bZ&#236;&#382;
+&#200;&#163;_hr%)&#8218;ny&#129;wV&#196;C&#144;&#188;&#187;&#8364;&#205;&#241;&#200;(T&#206;&#168;&#189;&#189;&#195;&#203;&#195;&#188;n@'&#231;&#218;&quot;&#251;b&#202;&#214;nF&#228;&#229;&#352; &#164;&#164;Dj&#381;&#141;&#188;r&#236;&#192;&#8250;+&#381;
+q&#200;1&#224;&#219;$&#353;(&#216;&#188;&#173;&lt;F&#193;\&#223;w&#173;&#198;` &#198;&#186;-&#247;&#213;&#253;3?-MJ&#166;$&#254;&#157;&#218;*T&#180;&#8211;|@h
+N&#193;b&#201;p&#180;&#376;T&#173;X&#201;&#213;&#249;^)Q/0&#338;&gt;&#8220;&#250;%&#8217;.(&#402;&#254;&#251;
+)*GU&lt;$&#244;&#402;&#196;&#8222;&#216;C&#8250;}'&#200;n(&#241;&#203;&#8216;?&#228;&#193;&#231;&#223;D&#194;YN&#190;X&#216;&#8224;&#182;&#8216;
+r X&#213;&#402;e&#182;'&#253;&#201;&#247;&#165;&#182;&#240;&#178;HQ&#8249;&#250;
+. &#223;;|&#209;|sJ&#8250;,; &#187; &#252;&#8222;&#8220;&#250;&#244;&#253;&#199;&#191;}!V&quot;&#203;
+&#254;&#176;O\&#8221;W&#231;&#168;LB&#8249;E&#144;&#219;S9 3%W&#8364;&#234;&#353;0&#230;r}&#255;/&#247;HP&#203;&#201;&#181;T&#233;6s,hc9&#382;&#215; Y&#8220;&#8482;V-&#8249;
+1&#8216;-&#352;1&#233;&#170;evi=&#168;S&#223;fF&#224;&#248;&#178;i&gt;&#211;&#8230;&#173;&#195;0&#226;(&#203;J&#209;&#191;&#201;&#352;GA_&#180;&#8250;&#225;&#352;
+&#224;&#231;&#8230;&#8222;&#237;&#217;&#8212;&#144;&#248;x)&#231;k&#172;ypt&#246;1&#207;'&#212;&#196;QU&#184;G&#219;&#237;ZF&#211;}'
+
+ &#227;@&#253;&#207;s&#143;d&#201;K&#227;&#166;&#8482;y{&#172;W&#8230;f l9yht&#183;HKD&#191;&#8224;&#181;&#8216;'c&#251;K&#212;$m&#168;
+&#233;Fw&#246;&#241;H,CJ4TY&#233;df&#8240;}8*C&#181;ad&#187;&#201;&#8222;&#189;@&#169;&#185;j&#252;&#164;&#214;2&#129;
+6&#185;
+&#8482;,&quot;&#8218;&#197;&#174;&#221;&#732;&#251;&#241;&#8218;&#232;&#188;&#141;&#222;&#402;j&#239;&#174;&#229;&#196;&#196;&#183;&#252;M&#217;&#243;&#200;&#352;&#228;&#213;&#8226;&#241;?&#246;&#234;w&#339;u&#199;&#8216; &#193;Vw&#251;:&#222;&#169;q
+&#8230;&#187;&#224;p&#169;&#227;&#255;&#169;15&#245;::*=&#210;&#189;&#172;
+&#208;Z&#376;S.f&#254;&#8212;h&#212;1,&#241;&#8230;&#247;&#163;
+&#179;
+&#161;&#171; &#185;&#205;2&#8225;:L&#236;@b[&#193;&#163;X&#185;&#247;&#8225;&#233;;&#8212;3&#381;&#242;B&#246;'a3g
+P&#8250;I&lt;;&#8222;&#231;&#180;I.&#217;&#8225;&#226;M&#228;&#179;&#171;=&#250;BA-&#231;&#228;&#8218;&#212;&#218;&#172;6&#8482;&#242;&#249;
+&#220;-&quot;g&gt;&#183;f&#196;&#225;&#245;&#8249;z&#247;&#8240;O&#244;)F&#191;&#210;&#241;&#161;C&#8211;&#8240;&#200;&#217;&#236;qP&#353;t&#402;#)&#161;&#8218; &#339;&#339;f&#200;&#162;&#8217;Z&amp;&#376;{&#207;*&#352;W 3zk&#236;&#210;&#222;[&#240;&#236;&#218;&#234;
+&#8364;M&#198;&#8482;&#221;&#222;7&#213;4&#178;&#178;)&#227;O9|&#199;^&#231;EW#&#166;&#165;&#732;&#8211;&#243;M&#223;&#185;&#240;&#244;&#141;&#8230;[G@&#732;`&#163;2&#185;\&#245;
+
+&#242;N;&#8250;&#141;&#242;:2&#241;&#352;|&#8222;=M&#233;@&#233;&#208;5`0Ov&#192;&#8364;&#187;j&#170;O&#253;&#207;&#8217;p&#353;&#8221;&#193;&#208;&#198;&#8217;&#8221;3&#166;3?g&#206;x&#352;&#141;&gt;&#225;dn&#186;&#8221;&#169;&#203;&#8224;&#163;&#8216;&#246;&#235;)Di&#8482;}.&#129;&#247;;&#162;&#216;&#8482;
+`h&#184;&#8212;&#171;&#230;&amp;&#244;&#230;&#197;&#339;&#231;&#196;&#173;&#220;y&#210;&#184;&#218;&#219;&#235;w&#8240;xI&#206;&#182;z&#231;&#240;d g&#233;&#210;E&#8217;&#204;&#217;&#185;&#247;!&#188;c6&#202;
+1&#251;&#166;[&#242;`!&#215;5&#207;V&#231;]&#8250;5&#212;p&#230;;&#245;&#200;zh&#189;;&#228;&#163;w&#205;H&#229;$&#162;&#191;&#184;&#205;&#200;/&#249;p&#221;&#176;&#214;E1E&#191;&#182;wG&#8364;]#&#201;e
+3~:&#238;&#218;K&#339;&#353;&#240;&#244;&#157;&#177;&#183;&#242;&#244;&#250;&#339;^|&#216;&#188;&#214;
+V&#8240;&#163; 9$&#231;&#197;&#252;&#8222;&#245;L6W&#8222;q&#231;$|&#250;&#255;Uth&#143;&#246;u&#376;&#238;O&#255;&#169;&#246;f~J:&#732;&#235;=&#8216;*&#8224;&#166;
+&#196;&#175;&#221;.&#8218;&#199;&#252;;&#205;&#189;&#177;&#221;&#238;7|&#211;&#216;&#196;&#8218;&#203;y4_, &#163;
+&#197;G|7&#204;&quot;&#338;&#193;&#173;&#732;&#176;&#225;~&#217;&#194;&#209;i'&#167;&#201;&#231;v&#8240;G&#8222;&#250;&#219; &#162;&#224;op&#338;&#213;M&#174;U}~&#185;f&#192;&#242;|&#188;n&#230;&#8221;~&#179;/0&#252;S&#238;1&#195;=&#710;&#221;&#166;m&#233;[0&#169;1
+&#353;&#216;-&#157;&#182;UcTU$cF&#202;&#199;L}[&#166;z
+&gt;&#161;R|&#193;&#732;h&#245;QiY&#167;&#248;&quot;&#163;&#236;&#236;Fqj&#171;&#8221;K&#165;&#181;=*&#8224;
+ =&#144;E&#382;Qx&#197;5&#224;&#164; m&#195;&#180;&#230;&#164;h&#216;&#710;F&#168;&#210;(&#198;&#203;&#172;&#227;ZD`a&#212;Bh[&#8217;H&#225;&#235;&quot;&#195;
+7;&#165;&#196;!Yip}&#184;C&#189;&amp;&#212;&#353;1&#8224;&#162;&#202;&#8220;&#226;]&#245;JH9&#188;#&#191;}&#143;U&#189;0\&#143;&#144;&#188;&#231;#f&#217;G&#209;5S&#177;#&#225;&#249;xC&#8364;l&#178;&#191;o&#166;
+&#250;2&#170;&#8482;&#381;&#8221;&#227;
+&#376;^&#213;
+&#189;&#252;&#236;SQ&#176;9&#166;&#226;C&#225;s&#164;&#170;&#209;&#352;&#182;&#220;
+&#226; &#228;&#238;&#376;
+&#230;&#178;&#157;&#174;&#8212;&#8250;&#229;&#216;wh&#164;&#233;=&#182;l&#222;&#235;L*@&#247;8T&#204;`z 4u&#237;,n&#235;&#168;&#402;g&#188;&#205;&#236;~
+&#237;&#8212;&#230;&#161;Nf=&#232;&lt;&#236;m&#8220;&#211; &#219;&#180;&#8482;&#178;L&#8226;|5&#194;&#215;u&quot;&#184;&#237;&#184;b&#243;R&#199;-G5&#229;&#251;^py
+&#249;^&#244;{&#141;&#179;!&#171;T
+z&#163;&#226;&#352;&#236;&#8230;&#214;&#216;&#8225;X{,&#244;&#248;vC&#185;&#8221;&#169;&#205;g&#224;%&#233;&#191;&#382;&#238;&#8217;&#244;D&#8250;L+
+&#141;f&#193;&#210;&#143;&#175;&lt;~&#176;&#221;&#353;`@m&#8224;l.I&#215;&#193;D5&#186;&#223;&#8211;^ S&#239;L&#234;&#8364;&#168;&#230;Q4D&#205;
+&#235;&#171;&#195;0%&#710;&#247;+&#219;&#402;3T&#221;&#187;Y
+&#253;&#8482;Y&#254;.&#210;&#143;&#218;&#227;&#8249;&#170;&#710;K/`&quot;&#219;vZC)aAg&#177;(&#183;&#166;&#206;'&#171;h &#250;&#219;A&#251;&#8230;&#353;&#163;&#198;\&#176;5MC-&#8211;&#195;&#166;&#234;gA9R&#168;&#248;&#229;&#179;&gt;&#185;&#199;ge&#8250;&#8218;B%9i:6B &#231;~2&#206;&#141;x&#254;&#229;:&quot;&#8240;&#230;|&#208;&#206;&#381;J&#222;
+&#8216;&#168;&#240;&#157;&amp;&#217;&#213;u&#161;&#248;&#353;&amp;&#194;&#207;&#176;'E&#8218;&#163;&#176;dWx&#236;&#218;&#210;C5&#198;u6G&#232;&#8240;Y&#710;&#205;%&#221;^P&#223;u&#214;&#8482;&#8482;&#8220;&#381;
+&#163;&#8218;7&#183;&#253;d&#382;}&#167;&#8222;&#8218;F&#255;xe&#8221;&#255;:+f&#169;&#233;&#239;TT&#185;&#192;P&#216;&#179;O&#225;tId&#183;&#250;]*txD&#213;&#200;&#212;&#253;}_&#181;&#376;&#241;-&#157;&#161;AJ&#185;S&#221;P&#352;&#209;C&#230;e0*&#235;V&#8216;&#227;&#173;x&#172;|&#208;c&#245;&#227;~&#8226;&#218;&#228;&#251;s&#338;Uj&#216;&#376;&#220;&#197;G2e&#225;T&#129;&#129;(`&#255;&#214;&#8220;&#182;B&#234;1&#226;/&#143;&lt;&#202;HL&#178;e&#402;N&#8250;&#248;&#352;&#224;&#180;&#242;&#186;3&amp;&#8216;G&#216;&gt;&#173;~&#215;u&#710;Y&#143;V&#232;2&#236;Y$Q&amp;&#8249;&#233;&#8222;&#221;&#8224;&#189;-&#178;&#218;&#163;r=&#205;jV}&#8482;(&#242;&#339;)&gt;&#187;1
+&#180;lEG&#206;&quot;&#167;&#205;V&#8364;&#8217;&#170;D &#8211;$&#230;&#8230;[&#187;&#168;@&#178;&#176;`&#172;
+wQt&#176;&#212;K&#170;I&#241;&#231;&#196;&#163;$&#195;I&#209;&#210;&#353;&#230;&#206; |!nI&#199;&#169;&#206;SJ&#210;&#192;&#228;&#209;&#129;&#172;{$
+a3&#166;&#168;, KZ&#208;Q&#8225;2~&#237;&#238;-&#339;&#339;V
+&#239;&#197;J&#224;&#8225;&lt;&#246;&#338;&#227;&#226;,3hz3%&#164;&#210;&#8249;&#382;&#203;&#217;&#238;%&#8217;&#144;,b&#196;L&#8224;&#161;^yO&#165;&#171;&#8222;&#162;6&#227;&#8249;&#8230;&#353;U
+].&#235;f&#250;&#8220;
+I1&#237;&#234;&#171;&#169;Ub&#220;&#201;&#229;&#170;2&#250;&#339;#17&gt;%,&#164;&#248;!-&#199;&#8364;ZI&#179;&#221;&#181;&#197;&#8222;&#8212;oc&#175;&#236;&lt;&#183;Y&#188;&#214;&#240;&#8240;&#206;&#228;&#232;h&#178;T])&#157;
+r&#241;&#204;g1&#228;&#200;&#204;1&#246;`v2g&#8230;h&#198;&#8211;%.2&#376;*U&#161;&#402;f:&#192;\E&#8217;&#195;g&#245;&#175;&#143;*\q&#8222;t&#166;&#8211;&#228;&#215;&#222;Gd7c`%&#244;&#8226;&#190;e&#173;&gt;&#245;e,&lt;&#180;&#8364;&#8230;@=[g&#8218;&#242;&#169;&#182;&#215;/9&#210;&#222;k&#8211;I&#172;g&#255;e&#198;&#166;&#173;p&#181;&#203;&#168;&#231;
+&#247;t&#172;|&#196;&#165;&#211;:&quot;5
+&#218;&#8482;T&#226;u&#171;]&#179;&#179;&#170;&#353; &#231;&#186;&#171;&#230;!3H&#222;&#255;&#164;&quot;&#214;&#253;
+K&#238;~c&#338;%q&#210;&#8225;&#253;&#198;ZL&#255;&#227;&#8224;ZW3*;[&#198;J&#234;&#180;&#178;&#194;J&#8212;&#353;&#253;&#222;l&#8221;&#205;&#8216;&#376;&#338;p&#196;q N&#198;&#129;&#206;%&#8225;m^?&#8216;LW&#223;&#236;R&#239; 8&#143;}&#192;%&#167;n&#255;w
+ i&#8217;8&#382;&#208;&#253;&#8218;&#250;s
+l&#192; &#243;0fi&#226;(&#732;&lt;x&#190;&#172;&#179;&amp;&#8211;5&#193;-&#8482;&#215;UH\&#194;&#234;\Q&#8212;
+&#162;&#225;/&#8222;&#208;&#191;&#249;r=|&#168;1&#244;&#172;&#218;&#157;&#252;&#202;!&#193;J&#247;`2&#255;Ov1Q&#168;&#161;&#176;&#235;&#8249;J&#236;i&#183;T&#179;&#144;i&#240;&#215;z&#185;L&#239;/&#212;
+p`&#166;&#246;(&#198;
+&#8250;,x&#237;Z&#222;&#182;&#214;&#253;u&#8220;&#224;x&#162;&#209;}
+5&#177;
+&#165;&#8240;&#250;@o&#181;&#196;R&#8216;uV&#8482;r&#169;&#170;&#157;}&#254;&#376;(G&#241;&#381;&#8250;0o=&#732;Z0+zJ&#219;&#8222;&#215;)&#206;&#182;&#8250;_5&#190;@&#177;t&#352;T&#214;&gt;]2&#171;*$&#201;}&#255;t&#197;&#170;{&#248;kGi&#240;'J&#339;&#8250;&#141;&#353;Q&#206;&#188;&#352;N&#250;l&#229;&#214;&#163;G&#8240;&#8482;W&#141;&#186;&#164;
+ &#353;@d&#8364;&#8225;am&#8225;&#216;a&#234;'&#207;&#227;&#8217;&#171;&#239;&#169;&#194;&#250;&#194;X-&#382;5B&#192;&#216;&#8225;&#179;&#226;&#227;&#338;&#216;&#172;&#253;;q&#247;N&#339;&#381;&#250;&#173;3&#254;?&#249;U&#179;&#8216;8&#353;&#174;&#143;&#179; &#254;5&quot;&#244;&#8482;
+^-&#8250;@&#192;a&#402;u*!
+&#8250;&#8220;^&#8221;T5\&#190;&#212;V&#161;
+&#8230;&#219;&#252;d&#8222;&#8212;&#188;&#8220;&#174;&#161;&#163;&#8216;f&#8218;lb&#168;I&#255;&#223;y
+v&#231;&#199;&#237;&#177;&amp;&quot;&#166;&#221;Ts&#215;5&#8226;
+O&#234;&#219;&#227; &#219;&amp;
+n&#8364;&#234;&#185;9r&#228;
+&#244;Q&quot;Z&#353;&#352;&#175;N&#8250;&#209;&lt;R&#170;0&#206;7&#165;D]&#167;&#164;'f\r&amp;O&#205;?=&#129;M
+&#189;a)&#402;
+
+=&#129;&#251;Cl&#8220;&#252;&#225;&#198;&#252;v&#338;&#191;&#8249;E&#205;&#163;&#213;&#190;6R&#161;&#218;;s*k&#251;&#228;eF&#214;&#211;&#339;J.7&#732;&#177;&#224;
+*&#171;83&#8249;&#208;..&#8218;&#202;:&#201;|&#225;&#235;&#167;&#181;~&amp;&#163;&#255;&#223;&#209;&#211;&#208;&#239;(&#176;3&#175;(&#170;i`&#248;jR
+
+*c,&amp;&#229;;&#402;&#210;&#204;K&#222;&#207;&#193;&#230;&#338;&#252;&#171;z$&#180;1|-&#221;8tkX&#214;&#186;
+&#141;P&#243;7:privatei1eee
+
+--
+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="001243.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001244.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1308">[ date ]</a>
+ <a href="thread.html#1308">[ thread ]</a>
+ <a href="subject.html#1308">[ subject ]</a>
+ <a href="author.html#1308">[ 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-June/author.html b/zarb-ml/mageia-webteam/2011-June/author.html
new file mode 100644
index 000000000..d0d3e8156
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/author.html
@@ -0,0 +1,1197 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam June 2011 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>June 2011 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 Jun 1 00:00:03 CEST 2011</i><br>
+ <b>Ending:</b> <i>Thu Jun 30 23:16:52 CEST 2011</i><br>
+ <b>Messages:</b> 230<p>
+ <ul>
+
+<LI><A HREF="001187.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1187">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001188.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1188">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001189.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1189">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001191.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1191">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001026.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1026">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001036.html">[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1036">&nbsp;</A>
+<I>Gontran Baerts
+</I>
+
+<LI><A HREF="001040.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1040">&nbsp;</A>
+<I>Gontran Baerts
+</I>
+
+<LI><A HREF="001206.html">[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down
+</A><A NAME="1206">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<LI><A HREF="001207.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1207">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<LI><A HREF="001213.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1213">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<LI><A HREF="001023.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1023">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001042.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1042">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001066.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1066">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001133.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1133">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001135.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1135">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001145.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1145">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001147.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1147">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001150.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1150">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001183.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1183">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001185.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1185">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001190.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1190">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001209.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1209">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001215.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1215">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001218.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1218">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001220.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1220">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001223.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1223">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001233.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1233">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001252.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1252">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001254.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1254">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001080.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1080">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001172.html">[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1172">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001074.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1074">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001124.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1124">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001159.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1159">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001161.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1161">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001117.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1117">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="001137.html">[Mageia-webteam] Mageia article in Linux Journal
+</A><A NAME="1137">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="001208.html">[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1208">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001210.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1210">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001059.html">[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua
+</A><A NAME="1059">&nbsp;</A>
+<I>Eugeni Dodonov
+</I>
+
+<LI><A HREF="001182.html">[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars
+</A><A NAME="1182">&nbsp;</A>
+<I>Martin Foster
+</I>
+
+<LI><A HREF="001184.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1184">&nbsp;</A>
+<I>Martin Foster
+</I>
+
+<LI><A HREF="001120.html">[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1120">&nbsp;</A>
+<I>Radu Cristian Fotescu
+</I>
+
+<LI><A HREF="001092.html">[Mageia-webteam] Meeting this week, Thursday
+</A><A NAME="1092">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001077.html">[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1077">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<LI><A HREF="001033.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1033">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001058.html">[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page
+</A><A NAME="1058">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001094.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1094">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001153.html">[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results
+</A><A NAME="1153">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001239.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1239">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001240.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1240">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001242.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1242">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001246.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1246">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001106.html">[Mageia-webteam] [Bug 1717] [New] vote for a bug
+</A><A NAME="1106">&nbsp;</A>
+<I>Franz Holzinger
+</I>
+
+<LI><A HREF="001243.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1243">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001308.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1308">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001244.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1244">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001245.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1245">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001219.html">[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)
+</A><A NAME="1219">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001222.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1222">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001226.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1226">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001101.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1101">&nbsp;</A>
+<I>Derek Jennings
+</I>
+
+<LI><A HREF="001067.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1067">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001224.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1224">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001227.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1227">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001030.html">[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page
+</A><A NAME="1030">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001031.html">[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website
+</A><A NAME="1031">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001035.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1035">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001060.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1060">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001111.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1111">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001112.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1112">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001200.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1200">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001202.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1202">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001021.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1021">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001022.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1022">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001029.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1029">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001034.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1034">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001089.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1089">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001043.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1043">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001054.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1054">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001062.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1062">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001177.html">[Mageia-webteam] Volunteer
+</A><A NAME="1177">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001180.html">[Mageia-webteam] Volunteer
+</A><A NAME="1180">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="001225.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1225">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="001192.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1192">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001193.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1193">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001214.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1214">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="001217.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1217">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="001109.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A><A NAME="1109">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<LI><A HREF="001248.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1248">&nbsp;</A>
+<I>Florin Catalin RUSSEN
+</I>
+
+<LI><A HREF="001037.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1037">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
+</A><A NAME="1041">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001044.html">[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1044">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001045.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1045">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001057.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1057">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001063.html">[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page
+</A><A NAME="1063">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001070.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1070">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001071.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1071">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001073.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1073">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001079.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1079">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001138.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1138">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001143.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1143">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001148.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1148">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001156.html">[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1156">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001158.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1158">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001027.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1027">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001028.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1028">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001038.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1038">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001039.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1039">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001055.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1055">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001069.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1069">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001072.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1072">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001113.html">[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1113">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001129.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1129">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001136.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1136">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001140.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1140">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001144.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1144">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001146.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1146">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001149.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1149">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001151.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1151">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001157.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1157">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001160.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1160">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001162.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1162">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001163.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1163">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001175.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1175">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001194.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1194">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001195.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1195">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001197.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1197">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001196.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1196">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001204.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1204">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001212.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1212">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001231.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1231">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001122.html">[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link
+</A><A NAME="1122">&nbsp;</A>
+<I>Shawn Thompson
+</I>
+
+<LI><A HREF="001123.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1123">&nbsp;</A>
+<I>Shawn Thompson
+</I>
+
+<LI><A HREF="001119.html">[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1119">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<LI><A HREF="001127.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1127">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<LI><A HREF="001173.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1173">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<LI><A HREF="001141.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1141">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="001078.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1078">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001068.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1068">&nbsp;</A>
+<I>R&#233;mi Verschelde
+</I>
+
+<LI><A HREF="001216.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1216">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001235.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1235">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001236.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1236">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001238.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1238">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001024.html">[Mageia-webteam] [Bug 1512] [New] SSL for checksums
+</A><A NAME="1024">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001025.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1025">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001115.html">[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1115">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001107.html">[Mageia-webteam] [Bug 1717] vote for a bug
+</A><A NAME="1107">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<LI><A HREF="001108.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="1108">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<LI><A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1046">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001047.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1047">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001048.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1048">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001049.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A><A NAME="1049">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001050.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1050">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001051.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1051">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001052.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="1052">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001053.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="1053">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001056.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1056">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001064.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1064">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001065.html">[Mageia-webteam] [Bug 1528] Bad Policies link on about page
+</A><A NAME="1065">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001082.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1082">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001091.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1091">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001098.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1098">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001099.html">[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see
+</A><A NAME="1099">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001100.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001102.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1102">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001104.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1104">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001114.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A><A NAME="1114">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001125.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1125">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001126.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1126">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001130.html">[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other
+</A><A NAME="1130">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001131.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1131">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001132.html">[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1132">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001134.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001154.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1154">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001167.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1167">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001169.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1169">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001171.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1171">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001211.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1211">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001228.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1228">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001229.html">[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1229">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001230.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1230">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001232.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1232">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001234.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1234">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001237.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1237">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001247.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1247">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001249.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1249">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001250.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1250">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001251.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1251">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001253.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1253">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001166.html">[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1166">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001168.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1168">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001170.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1170">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001199.html">[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.
+</A><A NAME="1199">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001201.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1201">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001203.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1203">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001090.html">[Mageia-webteam] Error 403
+</A><A NAME="1090">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001095.html">[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1095">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001096.html">[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see
+</A><A NAME="1096">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001097.html">[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1097">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001020.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1020">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001032.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1032">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001061.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1061">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001075.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1075">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001076.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1076">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001081.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1081">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001093.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1093">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001103.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1103">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001105.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1105">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001110.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1110">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001116.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1116">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001118.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1118">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001121.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1121">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001128.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1128">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001139.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1139">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001142.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1142">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001152.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1152">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001155.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1155">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001164.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1164">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001165.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1165">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001174.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1174">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001176.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1176">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001178.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1178">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001179.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1179">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001181.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1181">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001186.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1186">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001198.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1198">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001205.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1205">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001221.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1221">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001241.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1241">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Jun 30 23:16:52 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Jul 27 20:33:13 CEST 2011</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/2011-June/date.html b/zarb-ml/mageia-webteam/2011-June/date.html
new file mode 100644
index 000000000..bb01d30e5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/date.html
@@ -0,0 +1,1197 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam June 2011 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>June 2011 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 Jun 1 00:00:03 CEST 2011</i><br>
+ <b>Ending:</b> <i>Thu Jun 30 23:16:52 CEST 2011</i><br>
+ <b>Messages:</b> 230<p>
+ <ul>
+
+<LI><A HREF="001020.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1020">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001021.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1021">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001022.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1022">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001023.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1023">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001024.html">[Mageia-webteam] [Bug 1512] [New] SSL for checksums
+</A><A NAME="1024">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001025.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1025">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001026.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1026">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001027.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1027">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001028.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1028">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001029.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1029">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001030.html">[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page
+</A><A NAME="1030">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001031.html">[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website
+</A><A NAME="1031">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001032.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1032">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001033.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1033">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001034.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1034">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001035.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1035">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001036.html">[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1036">&nbsp;</A>
+<I>Gontran Baerts
+</I>
+
+<LI><A HREF="001037.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1037">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001089.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1089">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001038.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1038">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001039.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1039">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001040.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1040">&nbsp;</A>
+<I>Gontran Baerts
+</I>
+
+<LI><A HREF="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
+</A><A NAME="1041">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001042.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1042">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001043.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1043">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001044.html">[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1044">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001045.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1045">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1046">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001047.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1047">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001048.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1048">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001049.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A><A NAME="1049">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001050.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1050">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001051.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1051">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001052.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="1052">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001053.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="1053">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001054.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1054">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001055.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1055">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001056.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1056">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001057.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1057">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001058.html">[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page
+</A><A NAME="1058">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001059.html">[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua
+</A><A NAME="1059">&nbsp;</A>
+<I>Eugeni Dodonov
+</I>
+
+<LI><A HREF="001090.html">[Mageia-webteam] Error 403
+</A><A NAME="1090">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001060.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1060">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001061.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1061">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001062.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1062">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001063.html">[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page
+</A><A NAME="1063">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001064.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1064">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001065.html">[Mageia-webteam] [Bug 1528] Bad Policies link on about page
+</A><A NAME="1065">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001066.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1066">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001067.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1067">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001068.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1068">&nbsp;</A>
+<I>R&#233;mi Verschelde
+</I>
+
+<LI><A HREF="001069.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1069">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001070.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1070">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001071.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1071">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001072.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1072">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001073.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1073">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001074.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1074">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001075.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1075">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001076.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1076">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001077.html">[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1077">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<LI><A HREF="001078.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1078">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001079.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1079">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001080.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1080">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001081.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1081">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001082.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1082">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001091.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1091">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001092.html">[Mageia-webteam] Meeting this week, Thursday
+</A><A NAME="1092">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001093.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1093">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001094.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1094">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001095.html">[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1095">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001096.html">[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see
+</A><A NAME="1096">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001097.html">[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1097">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001098.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1098">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001099.html">[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see
+</A><A NAME="1099">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001100.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001101.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1101">&nbsp;</A>
+<I>Derek Jennings
+</I>
+
+<LI><A HREF="001102.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1102">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001103.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1103">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001104.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1104">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001105.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1105">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001106.html">[Mageia-webteam] [Bug 1717] [New] vote for a bug
+</A><A NAME="1106">&nbsp;</A>
+<I>Franz Holzinger
+</I>
+
+<LI><A HREF="001107.html">[Mageia-webteam] [Bug 1717] vote for a bug
+</A><A NAME="1107">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<LI><A HREF="001108.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="1108">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<LI><A HREF="001109.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A><A NAME="1109">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<LI><A HREF="001110.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1110">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001111.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1111">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001112.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1112">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001113.html">[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1113">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001114.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A><A NAME="1114">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001115.html">[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1115">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001116.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1116">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001117.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1117">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="001118.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1118">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001119.html">[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1119">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<LI><A HREF="001120.html">[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1120">&nbsp;</A>
+<I>Radu Cristian Fotescu
+</I>
+
+<LI><A HREF="001121.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1121">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001122.html">[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link
+</A><A NAME="1122">&nbsp;</A>
+<I>Shawn Thompson
+</I>
+
+<LI><A HREF="001123.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1123">&nbsp;</A>
+<I>Shawn Thompson
+</I>
+
+<LI><A HREF="001124.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1124">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001125.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1125">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001126.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1126">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001127.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1127">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<LI><A HREF="001128.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1128">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001129.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1129">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001130.html">[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other
+</A><A NAME="1130">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001131.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1131">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001132.html">[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1132">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001133.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1133">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001134.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001135.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1135">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001136.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1136">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001137.html">[Mageia-webteam] Mageia article in Linux Journal
+</A><A NAME="1137">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="001138.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1138">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001139.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1139">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001140.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1140">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001141.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1141">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="001142.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1142">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001143.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1143">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001144.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1144">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001145.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1145">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001146.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1146">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001147.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1147">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001148.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1148">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001149.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1149">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001150.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1150">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001151.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1151">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001152.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1152">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001153.html">[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results
+</A><A NAME="1153">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001154.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1154">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001155.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1155">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001156.html">[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1156">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001157.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1157">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001158.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1158">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001159.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1159">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001160.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1160">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001161.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1161">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001162.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1162">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001163.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1163">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001164.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1164">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001165.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1165">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001166.html">[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1166">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001167.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1167">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001168.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1168">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001169.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1169">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001170.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1170">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001171.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1171">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001172.html">[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1172">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001173.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1173">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<LI><A HREF="001174.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1174">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001175.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1175">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001176.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1176">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001177.html">[Mageia-webteam] Volunteer
+</A><A NAME="1177">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001178.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1178">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001179.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1179">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001180.html">[Mageia-webteam] Volunteer
+</A><A NAME="1180">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="001181.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1181">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001182.html">[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars
+</A><A NAME="1182">&nbsp;</A>
+<I>Martin Foster
+</I>
+
+<LI><A HREF="001183.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1183">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001184.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1184">&nbsp;</A>
+<I>Martin Foster
+</I>
+
+<LI><A HREF="001185.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1185">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001186.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1186">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001187.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1187">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001188.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1188">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001189.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1189">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001190.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1190">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001191.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1191">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001192.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1192">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001193.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1193">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001194.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1194">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001195.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1195">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001197.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1197">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001196.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1196">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001198.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1198">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001199.html">[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.
+</A><A NAME="1199">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001200.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1200">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001201.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1201">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001202.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1202">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001203.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1203">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001204.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1204">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001205.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1205">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001206.html">[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down
+</A><A NAME="1206">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<LI><A HREF="001207.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1207">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<LI><A HREF="001208.html">[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1208">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001209.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1209">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001210.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1210">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001211.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1211">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001212.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1212">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001213.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1213">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<LI><A HREF="001214.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1214">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="001215.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1215">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001216.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1216">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001217.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1217">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="001218.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1218">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001219.html">[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)
+</A><A NAME="1219">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001220.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1220">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001221.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1221">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001222.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1222">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001223.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1223">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001225.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1225">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="001224.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1224">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001226.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1226">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001227.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1227">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001228.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1228">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001229.html">[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1229">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001230.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1230">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001231.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1231">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001232.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1232">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001233.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1233">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001234.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1234">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001235.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1235">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001236.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1236">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001237.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1237">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001238.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1238">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001239.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1239">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001240.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1240">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001241.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1241">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001242.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1242">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001243.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1243">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001308.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1308">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001244.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1244">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001245.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1245">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001246.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1246">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001247.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1247">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001248.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1248">&nbsp;</A>
+<I>Florin Catalin RUSSEN
+</I>
+
+<LI><A HREF="001249.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1249">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001250.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1250">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001251.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1251">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001252.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1252">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001253.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1253">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001254.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1254">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Jun 30 23:16:52 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Jul 27 20:33:13 CEST 2011</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/2011-June/index.html b/zarb-ml/mageia-webteam/2011-June/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-June/subject.html b/zarb-ml/mageia-webteam/2011-June/subject.html
new file mode 100644
index 000000000..01e8ac547
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/subject.html
@@ -0,0 +1,1197 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam June 2011 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>June 2011 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 Jun 1 00:00:03 CEST 2011</i><br>
+ <b>Ending:</b> <i>Thu Jun 30 23:16:52 CEST 2011</i><br>
+ <b>Messages:</b> 230<p>
+ <ul>
+
+<LI><A HREF="001091.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1091">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001104.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1104">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001117.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1117">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="001211.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1211">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001250.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1250">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001252.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1252">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001253.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1253">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001254.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1254">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001216.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1216">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001143.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1143">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001144.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1144">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001148.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1148">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001079.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1079">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001080.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1080">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
+</A><A NAME="1041">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001051.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1051">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001055.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1055">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001056.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1056">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001112.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1112">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001108.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="1108">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<LI><A HREF="001024.html">[Mageia-webteam] [Bug 1512] [New] SSL for checksums
+</A><A NAME="1024">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001025.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1025">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001026.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1026">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001027.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1027">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001028.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1028">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001030.html">[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page
+</A><A NAME="1030">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001038.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1038">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001050.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1050">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001060.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1060">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001031.html">[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website
+</A><A NAME="1031">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001033.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1033">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001035.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1035">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<LI><A HREF="001037.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1037">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001047.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1047">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001057.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1057">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001249.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1249">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001036.html">[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1036">&nbsp;</A>
+<I>Gontran Baerts
+</I>
+
+<LI><A HREF="001039.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1039">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001040.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1040">&nbsp;</A>
+<I>Gontran Baerts
+</I>
+
+<LI><A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1046">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001044.html">[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1044">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001045.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1045">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001048.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1048">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001058.html">[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page
+</A><A NAME="1058">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001065.html">[Mageia-webteam] [Bug 1528] Bad Policies link on about page
+</A><A NAME="1065">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001059.html">[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua
+</A><A NAME="1059">&nbsp;</A>
+<I>Eugeni Dodonov
+</I>
+
+<LI><A HREF="001063.html">[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page
+</A><A NAME="1063">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001064.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1064">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001066.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1066">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001067.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1067">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001069.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1069">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001070.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1070">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001071.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1071">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001072.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1072">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001073.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1073">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001094.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1094">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001101.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1101">&nbsp;</A>
+<I>Derek Jennings
+</I>
+
+<LI><A HREF="001102.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1102">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001077.html">[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1077">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<LI><A HREF="001095.html">[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1095">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001098.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1098">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001111.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1111">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001096.html">[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see
+</A><A NAME="1096">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001099.html">[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see
+</A><A NAME="1099">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001097.html">[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1097">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001100.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001189.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1189">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001193.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1193">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001197.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1197">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001106.html">[Mageia-webteam] [Bug 1717] [New] vote for a bug
+</A><A NAME="1106">&nbsp;</A>
+<I>Franz Holzinger
+</I>
+
+<LI><A HREF="001107.html">[Mageia-webteam] [Bug 1717] vote for a bug
+</A><A NAME="1107">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<LI><A HREF="001113.html">[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1113">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001115.html">[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1115">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001119.html">[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1119">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<LI><A HREF="001126.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1126">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001127.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1127">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<LI><A HREF="001129.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1129">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001134.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001136.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1136">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001138.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1138">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001173.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1173">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<LI><A HREF="001120.html">[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1120">&nbsp;</A>
+<I>Radu Cristian Fotescu
+</I>
+
+<LI><A HREF="001125.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1125">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001122.html">[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link
+</A><A NAME="1122">&nbsp;</A>
+<I>Shawn Thompson
+</I>
+
+<LI><A HREF="001123.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1123">&nbsp;</A>
+<I>Shawn Thompson
+</I>
+
+<LI><A HREF="001124.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1124">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001130.html">[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other
+</A><A NAME="1130">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001131.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1131">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001133.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1133">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001132.html">[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1132">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001135.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1135">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001153.html">[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results
+</A><A NAME="1153">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001157.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1157">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001158.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1158">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001159.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1159">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001160.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1160">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001161.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1161">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001162.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1162">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001156.html">[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1156">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001166.html">[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1166">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001167.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1167">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001168.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1168">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001169.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1169">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001170.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1170">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001171.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1171">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001172.html">[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1172">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001182.html">[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars
+</A><A NAME="1182">&nbsp;</A>
+<I>Martin Foster
+</I>
+
+<LI><A HREF="001183.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1183">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001184.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1184">&nbsp;</A>
+<I>Martin Foster
+</I>
+
+<LI><A HREF="001185.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1185">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001199.html">[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.
+</A><A NAME="1199">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001200.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1200">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001201.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1201">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001202.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1202">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001203.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1203">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<LI><A HREF="001204.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1204">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001206.html">[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down
+</A><A NAME="1206">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<LI><A HREF="001207.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1207">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<LI><A HREF="001212.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1212">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001213.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1213">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<LI><A HREF="001208.html">[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1208">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001209.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1209">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001210.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1210">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001219.html">[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)
+</A><A NAME="1219">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001220.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1220">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001222.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1222">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001223.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1223">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001224.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1224">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001226.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1226">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001227.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1227">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001228.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1228">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001229.html">[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1229">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001230.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1230">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001231.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1231">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001232.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1232">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001233.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1233">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001234.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1234">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001235.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1235">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001236.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1236">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001237.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1237">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001238.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1238">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001248.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1248">&nbsp;</A>
+<I>Florin Catalin RUSSEN
+</I>
+
+<LI><A HREF="001239.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1239">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001240.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1240">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001242.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1242">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001243.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1243">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001308.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1308">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001244.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1244">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001245.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1245">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<LI><A HREF="001246.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1246">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001247.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1247">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001188.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1188">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001195.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1195">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001196.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1196">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001191.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1191">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001192.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1192">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001194.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1194">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001049.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A><A NAME="1049">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001078.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1078">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001082.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1082">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001053.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="1053">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001052.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="1052">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001090.html">[Mageia-webteam] Error 403
+</A><A NAME="1090">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001114.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A><A NAME="1114">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001109.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A><A NAME="1109">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<LI><A HREF="001187.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1187">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001190.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1190">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001214.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1214">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="001215.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1215">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001217.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1217">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="001218.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1218">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001225.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1225">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="001137.html">[Mageia-webteam] Mageia article in Linux Journal
+</A><A NAME="1137">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="001140.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1140">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001141.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1141">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="001145.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1145">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001146.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1146">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001147.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1147">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001149.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1149">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001150.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1150">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001151.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1151">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001154.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1154">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001163.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1163">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001175.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1175">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001251.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1251">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001092.html">[Mageia-webteam] Meeting this week, Thursday
+</A><A NAME="1092">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001022.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1022">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001023.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1023">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001029.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1029">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001034.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1034">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001042.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1042">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001043.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1043">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001054.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1054">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001021.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1021">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001089.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1089">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001062.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1062">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001068.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1068">&nbsp;</A>
+<I>R&#233;mi Verschelde
+</I>
+
+<LI><A HREF="001074.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1074">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001177.html">[Mageia-webteam] Volunteer
+</A><A NAME="1177">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001180.html">[Mageia-webteam] Volunteer
+</A><A NAME="1180">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="001020.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1020">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001032.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1032">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001061.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1061">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001075.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1075">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001076.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1076">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001081.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1081">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001093.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1093">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001103.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1103">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001105.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1105">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001110.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1110">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001116.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1116">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001118.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1118">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001121.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1121">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001128.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1128">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001139.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1139">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001142.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1142">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001152.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1152">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001155.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1155">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001164.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1164">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001165.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1165">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001174.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1174">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001176.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1176">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001178.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1178">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001179.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1179">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001181.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1181">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001186.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1186">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001198.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1198">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001205.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1205">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001221.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1221">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001241.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1241">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Jun 30 23:16:52 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Jul 27 20:33:13 CEST 2011</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/2011-June/thread.html b/zarb-ml/mageia-webteam/2011-June/thread.html
new file mode 100644
index 000000000..b1945e7c5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-June/thread.html
@@ -0,0 +1,1515 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam June 2011 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>June 2011 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 Jun 1 00:00:03 CEST 2011</i><br>
+ <b>Ending:</b> <i>Thu Jun 30 23:16:52 CEST 2011</i><br>
+ <b>Messages:</b> 230<p>
+ <ul>
+
+<!--0 01306879203- -->
+<LI><A HREF="001020.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1020">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306895436- -->
+<LI><A HREF="001021.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1021">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<!--0 01306941423- -->
+<LI><A HREF="001022.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1022">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<UL>
+<!--1 01306941423-01306941909- -->
+<LI><A HREF="001023.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1023">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--2 01306941423-01306941909-01306964768- -->
+<LI><A HREF="001029.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1029">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<UL>
+<!--3 01306941423-01306941909-01306964768-01306966304- -->
+<LI><A HREF="001034.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1034">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<!--3 01306941423-01306941909-01306964768-01306966304-01306976248- -->
+<LI><A HREF="001042.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1042">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01306941423-01306941909-01306964768-01306966304-01306976248-01306978609- -->
+<LI><A HREF="001043.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1043">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<!--3 01306941423-01306941909-01306964768-01306966304-01306976248-01306978609-01307019946- -->
+<LI><A HREF="001054.html">[Mageia-webteam] Suggestion: poster/folder - quick guide install Mageia 1 LiveCD KDE
+</A><A NAME="1054">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01306960496- -->
+<LI><A HREF="001024.html">[Mageia-webteam] [Bug 1512] [New] SSL for checksums
+</A><A NAME="1024">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<UL>
+<!--1 01306960496-01306960585- -->
+<LI><A HREF="001025.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1025">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<!--1 01306960496-01306962735- -->
+<LI><A HREF="001026.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1026">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<!--1 01306960496-01306962967- -->
+<LI><A HREF="001027.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1027">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01306960496-01306963798- -->
+<LI><A HREF="001028.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1028">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01306964808- -->
+<LI><A HREF="001030.html">[Mageia-webteam] [Bug 1514] [New] Error in links to access packaging page
+</A><A NAME="1030">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<UL>
+<!--1 01306964808-01306969642- -->
+<LI><A HREF="001038.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1038">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01306964808-01307019215- -->
+<LI><A HREF="001050.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1050">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01306964808-01307049615- -->
+<LI><A HREF="001060.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1060">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+</UL>
+<!--0 01306965455- -->
+<LI><A HREF="001031.html">[Mageia-webteam] [Bug 1515] [New] Bad bugzilla link for website
+</A><A NAME="1031">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<UL>
+<!--1 01306965455-01306966040- -->
+<LI><A HREF="001033.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1033">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01306965455-01306966627- -->
+<LI><A HREF="001035.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1035">&nbsp;</A>
+<I>Christophe Lafaille
+</I>
+
+<!--1 01306965455-01306967364- -->
+<LI><A HREF="001037.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1037">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01306965455-01307005947- -->
+<LI><A HREF="001047.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1047">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01306965455-01307029142- -->
+<LI><A HREF="001057.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1057">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01306965455-01309443996- -->
+<LI><A HREF="001249.html">[Mageia-webteam] [Bug 1515] Bad bugzilla link for website
+</A><A NAME="1249">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01306965603- -->
+<LI><A HREF="001032.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1032">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306967343- -->
+<LI><A HREF="001036.html">[Mageia-webteam] [Bug 1516] [New] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1036">&nbsp;</A>
+<I>Gontran Baerts
+</I>
+
+<UL>
+<!--1 01306967343-01306969923- -->
+<LI><A HREF="001039.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1039">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01306967343-01306970573- -->
+<LI><A HREF="001040.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1040">&nbsp;</A>
+<I>Gontran Baerts
+</I>
+
+<!--1 01306967343-01307005854- -->
+<LI><A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
+</A><A NAME="1046">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01306969377- -->
+<LI><A HREF="001089.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1089">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<!--0 01306971075- -->
+<LI><A HREF="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
+</A><A NAME="1041">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01306990042- -->
+<LI><A HREF="001044.html">[Mageia-webteam] [Bug 1517] [New] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1044">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<UL>
+<!--1 01306990042-01306990078- -->
+<LI><A HREF="001045.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1045">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01306990042-01307005961- -->
+<LI><A HREF="001048.html">[Mageia-webteam] [Bug 1517] A patch for http://mageia.org/en/1/migrate/
+</A><A NAME="1048">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01307019162- -->
+<LI><A HREF="001049.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A><A NAME="1049">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01307019668- -->
+<LI><A HREF="001051.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1051">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01307019719- -->
+<LI><A HREF="001052.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A><A NAME="1052">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01307019749- -->
+<LI><A HREF="001053.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="1053">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01307020865- -->
+<LI><A HREF="001055.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1055">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01307021743- -->
+<LI><A HREF="001056.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1056">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01307032743- -->
+<LI><A HREF="001058.html">[Mageia-webteam] [Bug 1528] [New] Bad Policies link on about page
+</A><A NAME="1058">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01307032743-01307093162- -->
+<LI><A HREF="001065.html">[Mageia-webteam] [Bug 1528] Bad Policies link on about page
+</A><A NAME="1065">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01307039151- -->
+<LI><A HREF="001059.html">[Mageia-webteam] [Bug 1529] [New] bad encoding for ru and ua
+</A><A NAME="1059">&nbsp;</A>
+<I>Eugeni Dodonov
+</I>
+
+<!--0 01307046138- -->
+<LI><A HREF="001090.html">[Mageia-webteam] Error 403
+</A><A NAME="1090">&nbsp;</A>
+<I>isadora
+</I>
+
+<!--0 01307052002- -->
+<LI><A HREF="001061.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1061">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307063353- -->
+<LI><A HREF="001062.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1062">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<UL>
+<!--1 01307063353-01307121051- -->
+<LI><A HREF="001068.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1068">&nbsp;</A>
+<I>R&#233;mi Verschelde
+</I>
+
+<UL>
+<!--2 01307063353-01307121051-01307130524- -->
+<LI><A HREF="001074.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1074">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+</UL>
+<!--0 01307081340- -->
+<LI><A HREF="001063.html">[Mageia-webteam] [Bug 1541] [New] Sync the release notes with the release notes wiki page
+</A><A NAME="1063">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<UL>
+<!--1 01307081340-01307092938- -->
+<LI><A HREF="001064.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1064">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01307081340-01307093587- -->
+<LI><A HREF="001066.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1066">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01307081340-01307094931- -->
+<LI><A HREF="001067.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1067">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<!--1 01307081340-01307122331- -->
+<LI><A HREF="001069.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1069">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01307081340-01307123849- -->
+<LI><A HREF="001070.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1070">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01307081340-01307124548- -->
+<LI><A HREF="001071.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1071">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01307081340-01307126810- -->
+<LI><A HREF="001072.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1072">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01307081340-01307127391- -->
+<LI><A HREF="001073.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1073">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+</UL>
+<!--0 01307138403- -->
+<LI><A HREF="001075.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1075">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307224802- -->
+<LI><A HREF="001076.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1076">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307233100- -->
+<LI><A HREF="001077.html">[Mageia-webteam] [Bug 1589] [New] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1077">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<!--0 01307278064- -->
+<LI><A HREF="001078.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1078">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<!--0 01307301113- -->
+<LI><A HREF="001079.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1079">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01307301504- -->
+<LI><A HREF="001080.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1080">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01307311202- -->
+<LI><A HREF="001081.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1081">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307353951- -->
+<LI><A HREF="001082.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1082">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01307393218- -->
+<LI><A HREF="001091.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1091">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01307393218-01307553454- -->
+<LI><A HREF="001104.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1104">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01307393218-01307553454-01307799947- -->
+<LI><A HREF="001117.html">[Mageia-webteam] 2011, June, week 23 meeting
+</A><A NAME="1117">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+</UL>
+</UL>
+<!--0 01307395710- -->
+<LI><A HREF="001092.html">[Mageia-webteam] Meeting this week, Thursday
+</A><A NAME="1092">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<!--0 01307397602- -->
+<LI><A HREF="001093.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1093">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307443054- -->
+<LI><A HREF="001094.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1094">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01307451891- -->
+<LI><A HREF="001095.html">[Mageia-webteam] [Bug 1663] [New] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1095">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01307451891-01307460450- -->
+<LI><A HREF="001098.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1098">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01307451891-01307694133- -->
+<LI><A HREF="001111.html">[Mageia-webteam] [Bug 1663] The plugin with the link for facebook/twiter... doesn't use the selected language but it use the value of general.useragent.locale
+</A><A NAME="1111">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+</UL>
+<!--0 01307452150- -->
+<LI><A HREF="001096.html">[Mageia-webteam] [Bug 1664] [New] the html tag &lt;hr&gt; isn't well see
+</A><A NAME="1096">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01307452150-01307460759- -->
+<LI><A HREF="001099.html">[Mageia-webteam] [Bug 1664] the html tag &lt;hr&gt; isn't well see
+</A><A NAME="1099">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01307452281- -->
+<LI><A HREF="001097.html">[Mageia-webteam] [Bug 1665] [New] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1097">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01307452281-01307460833- -->
+<LI><A HREF="001100.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01307461205- -->
+<LI><A HREF="001101.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1101">&nbsp;</A>
+<I>Derek Jennings
+</I>
+
+<!--0 01307463103- -->
+<LI><A HREF="001102.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1102">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01307484002- -->
+<LI><A HREF="001103.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1103">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307570402- -->
+<LI><A HREF="001105.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1105">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307641993- -->
+<LI><A HREF="001106.html">[Mageia-webteam] [Bug 1717] [New] vote for a bug
+</A><A NAME="1106">&nbsp;</A>
+<I>Franz Holzinger
+</I>
+
+<UL>
+<!--1 01307641993-01307644295- -->
+<LI><A HREF="001107.html">[Mageia-webteam] [Bug 1717] vote for a bug
+</A><A NAME="1107">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+</UL>
+<!--0 01307644296- -->
+<LI><A HREF="001108.html">[Mageia-webteam] [Bug 149] Vote for bugs at bugzilla
+</A><A NAME="1108">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<!--0 01307656629- -->
+<LI><A HREF="001109.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A><A NAME="1109">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<UL>
+<!--1 01307656629-01307721933- -->
+<LI><A HREF="001114.html">[Mageia-webteam] Help with redirectin mageia.ro to mageia.org/ro/
+</A><A NAME="1114">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01307656804- -->
+<LI><A HREF="001110.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1110">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307694359- -->
+<LI><A HREF="001112.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="1112">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<!--0 01307718135- -->
+<LI><A HREF="001113.html">[Mageia-webteam] [Bug 1734] [New] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1113">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01307726229- -->
+<LI><A HREF="001115.html">[Mageia-webteam] [Bug 1737] [New] Wrong checksums of Dual-Arch-CD
+</A><A NAME="1115">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<!--0 01307743203- -->
+<LI><A HREF="001116.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1116">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307829603- -->
+<LI><A HREF="001118.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1118">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307880385- -->
+<LI><A HREF="001119.html">[Mageia-webteam] [Bug 1762] [New] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1119">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<UL>
+<!--1 01307880385-01307960276- -->
+<LI><A HREF="001126.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1126">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01307880385-01307972508- -->
+<LI><A HREF="001127.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1127">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+<!--1 01307880385-01308018132- -->
+<LI><A HREF="001129.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1129">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01307880385-01308055470- -->
+<LI><A HREF="001134.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01307880385-01308058956- -->
+<LI><A HREF="001136.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1136">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01307880385-01308069749- -->
+<LI><A HREF="001138.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1138">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01307880385-01308578442- -->
+<LI><A HREF="001173.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1173">&nbsp;</A>
+<I>Wendy Umarov
+</I>
+
+</UL>
+<!--0 01307909576- -->
+<LI><A HREF="001120.html">[Mageia-webteam] [Bug 1773] [New] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1120">&nbsp;</A>
+<I>Radu Cristian Fotescu
+</I>
+
+<UL>
+<!--1 01307909576-01307960016- -->
+<LI><A HREF="001125.html">[Mageia-webteam] [Bug 1773] Only mageia.org/fr/support includes a link to mageia.org/mailman/, all other languages lack it
+</A><A NAME="1125">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01307916002- -->
+<LI><A HREF="001121.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1121">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01307936826- -->
+<LI><A HREF="001122.html">[Mageia-webteam] [Bug 1779] [New] Forum does not provide registration link
+</A><A NAME="1122">&nbsp;</A>
+<I>Shawn Thompson
+</I>
+
+<UL>
+<!--1 01307936826-01307938376- -->
+<LI><A HREF="001123.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1123">&nbsp;</A>
+<I>Shawn Thompson
+</I>
+
+<!--1 01307936826-01307957034- -->
+<LI><A HREF="001124.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1124">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+<!--0 01308002403- -->
+<LI><A HREF="001128.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1128">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308054763- -->
+<LI><A HREF="001130.html">[Mageia-webteam] [Bug 1797] [New] All forums need to refer to each other
+</A><A NAME="1130">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01308054763-01308054834- -->
+<LI><A HREF="001131.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1131">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01308054763-01308055424- -->
+<LI><A HREF="001133.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1133">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--0 01308055117- -->
+<LI><A HREF="001132.html">[Mageia-webteam] [Bug 1798] [New] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1132">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01308055117-01308055671- -->
+<LI><A HREF="001135.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1135">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--0 01308059317- -->
+<LI><A HREF="001137.html">[Mageia-webteam] Mageia article in Linux Journal
+</A><A NAME="1137">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--0 01308088804- -->
+<LI><A HREF="001139.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1139">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308159740- -->
+<LI><A HREF="001140.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1140">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01308159740-01308164717- -->
+<LI><A HREF="001141.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1141">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--1 01308159740-01308181317- -->
+<LI><A HREF="001145.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1145">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--2 01308159740-01308181317-01308183323- -->
+<LI><A HREF="001146.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1146">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--3 01308159740-01308181317-01308183323-01308184560- -->
+<LI><A HREF="001147.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1147">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01308159740-01308181317-01308183323-01308184560-01308219894- -->
+<LI><A HREF="001149.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1149">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01308159740-01308181317-01308183323-01308184560-01308219894-01308222838- -->
+<LI><A HREF="001150.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1150">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01308159740-01308181317-01308183323-01308184560-01308219894-01308222838-01308224154- -->
+<LI><A HREF="001151.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1151">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+</UL>
+<!--1 01308159740-01308298980- -->
+<LI><A HREF="001154.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1154">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01308159740-01308298980-01308405596- -->
+<LI><A HREF="001163.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1163">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--3 01308159740-01308298980-01308405596-01308608039- -->
+<LI><A HREF="001175.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1175">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01308159740-01308298980-01308405596-01308608039-01309444553- -->
+<LI><A HREF="001251.html">[Mageia-webteam] Mediawiki installation
+</A><A NAME="1251">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01308175203- -->
+<LI><A HREF="001142.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1142">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308175788- -->
+<LI><A HREF="001143.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1143">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01308180393- -->
+<LI><A HREF="001144.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1144">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01308191441- -->
+<LI><A HREF="001148.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="1148">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01308261603- -->
+<LI><A HREF="001152.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1152">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308271155- -->
+<LI><A HREF="001153.html">[Mageia-webteam] [Bug 1830] [New] add a column keywords in the search results
+</A><A NAME="1153">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01308348004- -->
+<LI><A HREF="001155.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1155">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308352342- -->
+<LI><A HREF="001156.html">[Mageia-webteam] [Bug 1842] [New] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1156">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<UL>
+<!--1 01308352342-01308356040- -->
+<LI><A HREF="001157.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1157">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01308352342-01308375239- -->
+<LI><A HREF="001158.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1158">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01308352342-01308386845- -->
+<LI><A HREF="001159.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1159">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01308352342-01308395293- -->
+<LI><A HREF="001160.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1160">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01308352342-01308395985- -->
+<LI><A HREF="001161.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1161">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01308352342-01308404312- -->
+<LI><A HREF="001162.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1162">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01308434403- -->
+<LI><A HREF="001164.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1164">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308520802- -->
+<LI><A HREF="001165.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1165">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308557646- -->
+<LI><A HREF="001166.html">[Mageia-webteam] [Bug 1864] [New] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1166">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<UL>
+<!--1 01308557646-01308558775- -->
+<LI><A HREF="001167.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1167">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01308557646-01308559923- -->
+<LI><A HREF="001168.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1168">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<!--1 01308557646-01308560359- -->
+<LI><A HREF="001169.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1169">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01308557646-01308561748- -->
+<LI><A HREF="001170.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1170">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<!--1 01308557646-01308562960- -->
+<LI><A HREF="001171.html">[Mageia-webteam] [Bug 1864] Bugzilla is not accessible from the Mageia webpages.
+</A><A NAME="1171">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01308565354- -->
+<LI><A HREF="001172.html">[Mageia-webteam] [Bug 1868] [New] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1172">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01308607203- -->
+<LI><A HREF="001174.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1174">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308693603- -->
+<LI><A HREF="001176.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1176">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308697952- -->
+<LI><A HREF="001177.html">[Mageia-webteam] Volunteer
+</A><A NAME="1177">&nbsp;</A>
+<I>Matteo
+</I>
+
+<UL>
+<!--1 01308697952-01308937147- -->
+<LI><A HREF="001180.html">[Mageia-webteam] Volunteer
+</A><A NAME="1180">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+</UL>
+<!--0 01308780005- -->
+<LI><A HREF="001178.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1178">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308866404- -->
+<LI><A HREF="001179.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1179">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01308952804- -->
+<LI><A HREF="001181.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1181">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309001754- -->
+<LI><A HREF="001182.html">[Mageia-webteam] [Bug 1914] [New] Display of user details/avatars
+</A><A NAME="1182">&nbsp;</A>
+<I>Martin Foster
+</I>
+
+<UL>
+<!--1 01309001754-01309002260- -->
+<LI><A HREF="001183.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1183">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01309001754-01309002486- -->
+<LI><A HREF="001184.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1184">&nbsp;</A>
+<I>Martin Foster
+</I>
+
+<!--1 01309001754-01309002922- -->
+<LI><A HREF="001185.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1185">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--0 01309039204- -->
+<LI><A HREF="001186.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1186">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309098230- -->
+<LI><A HREF="001187.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1187">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<UL>
+<!--1 01309098230-01309099150- -->
+<LI><A HREF="001190.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1190">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--2 01309098230-01309099150-01309268046- -->
+<LI><A HREF="001214.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1214">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<UL>
+<!--3 01309098230-01309099150-01309268046-01309269478- -->
+<LI><A HREF="001215.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1215">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01309098230-01309099150-01309268046-01309269478-01309279734- -->
+<LI><A HREF="001217.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1217">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<!--3 01309098230-01309099150-01309268046-01309269478-01309279734-01309286869- -->
+<LI><A HREF="001218.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1218">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+</UL>
+<!--1 01309098230-01309330186- -->
+<LI><A HREF="001225.html">[Mageia-webteam] Insert mageiaitalia.org among community forums
+</A><A NAME="1225">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+</UL>
+<!--0 01309098796- -->
+<LI><A HREF="001188.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1188">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01309099105- -->
+<LI><A HREF="001189.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1189">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01309099171- -->
+<LI><A HREF="001191.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1191">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01309100014- -->
+<LI><A HREF="001192.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1192">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--0 01309100138- -->
+<LI><A HREF="001193.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1193">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--0 01309111888- -->
+<LI><A HREF="001194.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1194">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01309111889- -->
+<LI><A HREF="001195.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1195">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01309111903- -->
+<LI><A HREF="001197.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1197">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01309111904- -->
+<LI><A HREF="001196.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="1196">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01309125603- -->
+<LI><A HREF="001198.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1198">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309166726- -->
+<LI><A HREF="001199.html">[Mageia-webteam] [Bug 1932] [New] Your Bugzilla bug list needs attention.
+</A><A NAME="1199">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<UL>
+<!--1 01309166726-01309168158- -->
+<LI><A HREF="001200.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1200">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<!--1 01309166726-01309169500- -->
+<LI><A HREF="001201.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1201">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<!--1 01309166726-01309170056- -->
+<LI><A HREF="001202.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1202">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<!--1 01309166726-01309171338- -->
+<LI><A HREF="001203.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1203">&nbsp;</A>
+<I>Edward dAuvergne
+</I>
+
+<!--1 01309166726-01309173225- -->
+<LI><A HREF="001204.html">[Mageia-webteam] [Bug 1932] Your Bugzilla bug list needs attention.
+</A><A NAME="1204">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01309212003- -->
+<LI><A HREF="001205.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1205">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309238275- -->
+<LI><A HREF="001206.html">[Mageia-webteam] [Bug 1942] [New] Guatemala mirror down
+</A><A NAME="1206">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<UL>
+<!--1 01309238275-01309238819- -->
+<LI><A HREF="001207.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1207">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+<!--1 01309238275-01309263461- -->
+<LI><A HREF="001212.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1212">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01309238275-01309266222- -->
+<LI><A HREF="001213.html">[Mageia-webteam] [Bug 1942] Guatemala mirror down
+</A><A NAME="1213">&nbsp;</A>
+<I>Juan Baptiste
+</I>
+
+</UL>
+<!--0 01309251563- -->
+<LI><A HREF="001208.html">[Mageia-webteam] [Bug 1945] [New] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1208">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<UL>
+<!--1 01309251563-01309252249- -->
+<LI><A HREF="001209.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1209">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01309251563-01309252830- -->
+<LI><A HREF="001210.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1210">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+</UL>
+<!--0 01309252857- -->
+<LI><A HREF="001211.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1211">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01309252857-01309444335- -->
+<LI><A HREF="001250.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1250">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01309252857-01309444335-01309467654- -->
+<LI><A HREF="001252.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1252">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--3 01309252857-01309444335-01309467654-01309468064- -->
+<LI><A HREF="001253.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1253">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01309252857-01309444335-01309467654-01309468064-01309468612- -->
+<LI><A HREF="001254.html">[Mageia-webteam] 2011/week 26 meeting
+</A><A NAME="1254">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01309277524- -->
+<LI><A HREF="001216.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1216">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01309292381- -->
+<LI><A HREF="001219.html">[Mageia-webteam] [Bug 1956] [New] Can not edit posts in forum (after timeout)
+</A><A NAME="1219">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<UL>
+<!--1 01309292381-01309292976- -->
+<LI><A HREF="001220.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1220">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01309292381-01309299709- -->
+<LI><A HREF="001222.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1222">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01309292381-01309325858- -->
+<LI><A HREF="001223.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1223">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01309292381-01309331238- -->
+<LI><A HREF="001224.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1224">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<!--1 01309292381-01309347196- -->
+<LI><A HREF="001226.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1226">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01309292381-01309351542- -->
+<LI><A HREF="001227.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1227">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<!--1 01309292381-01309354447- -->
+<LI><A HREF="001228.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1228">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01309298403- -->
+<LI><A HREF="001221.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1221">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309355103- -->
+<LI><A HREF="001229.html">[Mageia-webteam] [Bug 1964] [New] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1229">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01309355103-01309355368- -->
+<LI><A HREF="001230.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1230">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01309355103-01309356239- -->
+<LI><A HREF="001231.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1231">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01309355103-01309356818- -->
+<LI><A HREF="001232.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1232">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01309355103-01309356889- -->
+<LI><A HREF="001233.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1233">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01309355103-01309357841- -->
+<LI><A HREF="001234.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1234">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01309355103-01309357943- -->
+<LI><A HREF="001235.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1235">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01309355103-01309358232- -->
+<LI><A HREF="001236.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1236">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01309355103-01309358405- -->
+<LI><A HREF="001237.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1237">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01309355103-01309358731- -->
+<LI><A HREF="001238.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1238">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01309355103-01309434593- -->
+<LI><A HREF="001248.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="1248">&nbsp;</A>
+<I>Florin Catalin RUSSEN
+</I>
+
+</UL>
+<!--0 01309360429- -->
+<LI><A HREF="001239.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1239">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01309360735- -->
+<LI><A HREF="001240.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1240">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01309384802- -->
+<LI><A HREF="001241.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1241">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01309398287- -->
+<LI><A HREF="001242.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1242">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--0 01309401395- -->
+<LI><A HREF="001243.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1243">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<!--0 01309401466- -->
+<LI><A HREF="001308.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1308">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<!--0 01309401655- -->
+<LI><A HREF="001244.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1244">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<!--0 01309401992- -->
+<LI><A HREF="001245.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1245">&nbsp;</A>
+<I>Garth Hoyman
+</I>
+
+<!--0 01309404250- -->
+<LI><A HREF="001246.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1246">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--0 01309421515- -->
+<LI><A HREF="001247.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1247">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Jun 30 23:16:52 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Jul 27 20:33:13 CEST 2011</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-March.txt.gz b/zarb-ml/mageia-webteam/2011-March.txt.gz
new file mode 100644
index 000000000..264679612
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-March/000387.html b/zarb-ml/mageia-webteam/2011-March/000387.html
new file mode 100644
index 000000000..e8f0d5e0a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000387.html
@@ -0,0 +1,88 @@
+<!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=%3C20110228230002.9FB9A42720%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="000388.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=%3C20110228230002.9FB9A42720%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 1 00:00:02 CET 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="000388.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#387">[ date ]</a>
+ <a href="thread.html#387">[ thread ]</a>
+ <a href="subject.html#387">[ subject ]</a>
+ <a href="author.html#387">[ 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>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="000388.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#387">[ date ]</a>
+ <a href="thread.html#387">[ thread ]</a>
+ <a href="subject.html#387">[ subject ]</a>
+ <a href="author.html#387">[ 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-March/000388.html b/zarb-ml/mageia-webteam/2011-March/000388.html
new file mode 100644
index 000000000..e5ddbc709
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000388.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTinMOT6QFZjAARaSHf1PSijZKYxfyFdqv%3DJqrHWt%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="000387.html">
+ <LINK REL="Next" HREF="000389.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTinMOT6QFZjAARaSHf1PSijZKYxfyFdqv%3DJqrHWt%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 1 13:00:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000387.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000389.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#388">[ date ]</a>
+ <a href="thread.html#388">[ thread ]</a>
+ <a href="subject.html#388">[ subject ]</a>
+ <a href="author.html#388">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+so, tomorrow, 14:00 UTC, #mageia-web as always.
+
+Two focuses for this week:
+ - maintainers db (kosmas, misc)
+ - wiki (obgr, misc)
+
+ (so prepare your data, progress info before the meeting and be ready
+to have at least me on your back - for help, of course - for the
+following few days :-p )
+
+We can discuss other topics as well, feel free to add them here and
+now, but know in advance what the focus is. And next week, we'll focus
+on something else.
+
+Cheers,
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000387.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000389.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#388">[ date ]</a>
+ <a href="thread.html#388">[ thread ]</a>
+ <a href="subject.html#388">[ subject ]</a>
+ <a href="author.html#388">[ 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-March/000389.html b/zarb-ml/mageia-webteam/2011-March/000389.html
new file mode 100644
index 000000000..7221dd88d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000389.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C1298981998.29682.6.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000388.html">
+ <LINK REL="Next" HREF="000390.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C1298981998.29682.6.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">misc at zarb.org
+ </A><BR>
+ <I>Tue Mar 1 13:19:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000388.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000390.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#389">[ date ]</a>
+ <a href="thread.html#389">[ thread ]</a>
+ <a href="subject.html#389">[ subject ]</a>
+ <a href="author.html#389">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 01 mars 2011 &#224; 13:00 +0100, Romain d'Alverny a &#233;crit :
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> so, tomorrow, 14:00 UTC, #mageia-web as always.
+</I>&gt;<i>
+</I>&gt;<i> Two focuses for this week:
+</I>&gt;<i> - maintainers db (kosmas, misc)
+</I>&gt;<i> - wiki (obgr, misc)
+</I>
+For wiki, thing didn't change since yesterday :
+<A HREF="http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-02-28-19.41.html">http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-02-28-19.41.html</A>
+
+For maintainer db, afaik, the status didn't changed since last week :
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-23-14.00.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-23-14.00.html</A>
+
+
+--
+Michael Scherer
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000388.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000390.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#389">[ date ]</a>
+ <a href="thread.html#389">[ thread ]</a>
+ <a href="subject.html#389">[ subject ]</a>
+ <a href="author.html#389">[ 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-March/000390.html b/zarb-ml/mageia-webteam/2011-March/000390.html
new file mode 100644
index 000000000..900e68e54
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000390.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTikjKVavm%2B7NDM8abro00MFXJnjWCRDzOkCeiciK%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="000389.html">
+ <LINK REL="Next" HREF="000391.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTikjKVavm%2B7NDM8abro00MFXJnjWCRDzOkCeiciK%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Mar 1 13:25:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000389.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000391.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#390">[ date ]</a>
+ <a href="thread.html#390">[ thread ]</a>
+ <a href="subject.html#390">[ subject ]</a>
+ <a href="author.html#390">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 1 March 2011 12:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+
+&gt;<i> Le mardi 01 mars 2011 &#224; 13:00 +0100, Romain d'Alverny a &#233;crit :
+</I>&gt;<i> &gt; Hi there,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; so, tomorrow, 14:00 UTC, #mageia-web as always.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Two focuses for this week:
+</I>&gt;<i> &gt; - maintainers db (kosmas, misc)
+</I>&gt;<i> &gt; - wiki (obgr, misc)
+</I>&gt;<i>
+</I>&gt;<i> For wiki, thing didn't change since yesterday :
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-02-28-19.41.html">http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-02-28-19.41.html</A>
+</I>&gt;<i>
+</I>&gt;<i> For maintainer db, afaik, the status didn't changed since last week :
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-23-14.00.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-23-14.00.html</A>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> Michael Scherer
+</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>
+Michael,
+
+You are right it hasn't changed, since I was a bit busy, but I think the
+main issue is what I should be using.
+
+Would rails 2.3.10 and postgresql for production, be ok?
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110301/110b0325/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000389.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000391.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#390">[ date ]</a>
+ <a href="thread.html#390">[ thread ]</a>
+ <a href="subject.html#390">[ subject ]</a>
+ <a href="author.html#390">[ 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-March/000391.html b/zarb-ml/mageia-webteam/2011-March/000391.html
new file mode 100644
index 000000000..cab83bdf5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000391.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C1298983562.29682.10.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000390.html">
+ <LINK REL="Next" HREF="000393.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C1298983562.29682.10.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">misc at zarb.org
+ </A><BR>
+ <I>Tue Mar 1 13:46:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000390.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000393.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#391">[ date ]</a>
+ <a href="thread.html#391">[ thread ]</a>
+ <a href="subject.html#391">[ subject ]</a>
+ <a href="author.html#391">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 01 mars 2011 &#224; 12:25 +0000, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> On 1 March 2011 12:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i>
+</I>&gt;<i> &gt; Le mardi 01 mars 2011 &#224; 13:00 +0100, Romain d'Alverny a &#233;crit :
+</I>&gt;<i> &gt; &gt; Hi there,
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; so, tomorrow, 14:00 UTC, #mageia-web as always.
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Two focuses for this week:
+</I>&gt;<i> &gt; &gt; - maintainers db (kosmas, misc)
+</I>&gt;<i> &gt; &gt; - wiki (obgr, misc)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; For wiki, thing didn't change since yesterday :
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; <A HREF="http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-02-28-19.41.html">http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-02-28-19.41.html</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; For maintainer db, afaik, the status didn't changed since last week :
+</I>&gt;<i> &gt; <A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-23-14.00.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-23-14.00.html</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; --
+</I>&gt;<i> &gt; Michael Scherer
+</I>&gt;<i> &gt;
+</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> &gt;
+</I>&gt;<i>
+</I>&gt;<i> Michael,
+</I>&gt;<i>
+</I>&gt;<i> You are right it hasn't changed, since I was a bit busy, but I think the
+</I>&gt;<i> main issue is what I should be using.
+</I>
+No problem, you have the right to be busy. For what should be used, I
+thought I was clear about that in
+<A HREF="https://www.mageia.org/pipermail/mageia-webteam/2011-January/000140.html">https://www.mageia.org/pipermail/mageia-webteam/2011-January/000140.html</A>
+
+&gt;<i> Would rails 2.3.10 and postgresql for production, be ok?
+</I>
+Yup.
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000390.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000393.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#391">[ date ]</a>
+ <a href="thread.html#391">[ thread ]</a>
+ <a href="subject.html#391">[ subject ]</a>
+ <a href="author.html#391">[ 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-March/000392.html b/zarb-ml/mageia-webteam/2011-March/000392.html
new file mode 100644
index 000000000..a990ff007
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000392.html
@@ -0,0 +1,101 @@
+<!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=%3C20110301230004.03DFE42710%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="000413.html">
+ <LINK REL="Next" HREF="000394.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=%3C20110301230004.03DFE42710%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 2 00:00:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000413.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000394.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#392">[ date ]</a>
+ <a href="thread.html#392">[ thread ]</a>
+ <a href="subject.html#392">[ subject ]</a>
+ <a href="author.html#392">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000413.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000394.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#392">[ date ]</a>
+ <a href="thread.html#392">[ thread ]</a>
+ <a href="subject.html#392">[ subject ]</a>
+ <a href="author.html#392">[ 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-March/000393.html b/zarb-ml/mageia-webteam/2011-March/000393.html
new file mode 100644
index 000000000..00cfe026c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000393.html
@@ -0,0 +1,138 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTimTbFRb-MUsSjacgiemb6WRNND-R66jYFOE2M3E%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="000391.html">
+ <LINK REL="Next" HREF="000395.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTimTbFRb-MUsSjacgiemb6WRNND-R66jYFOE2M3E%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Mar 2 00:50:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000391.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000395.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#393">[ date ]</a>
+ <a href="thread.html#393">[ thread ]</a>
+ <a href="subject.html#393">[ subject ]</a>
+ <a href="author.html#393">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 1 March 2011 12:46, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+
+&gt;<i> Le mardi 01 mars 2011 &#224; 12:25 +0000, Kosmas Chatzimichalis a &#233;crit :
+</I>&gt;<i> &gt; On 1 March 2011 12:19, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; &gt; Le mardi 01 mars 2011 &#224; 13:00 +0100, Romain d'Alverny a &#233;crit :
+</I>&gt;<i> &gt; &gt; &gt; Hi there,
+</I>&gt;<i> &gt; &gt; &gt;
+</I>&gt;<i> &gt; &gt; &gt; so, tomorrow, 14:00 UTC, #mageia-web as always.
+</I>&gt;<i> &gt; &gt; &gt;
+</I>&gt;<i> &gt; &gt; &gt; Two focuses for this week:
+</I>&gt;<i> &gt; &gt; &gt; - maintainers db (kosmas, misc)
+</I>&gt;<i> &gt; &gt; &gt; - wiki (obgr, misc)
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; For wiki, thing didn't change since yesterday :
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-02-28-19.41.html">http://meetbot.mageia.org/mageia-meeting/2011/mageia-meeting.2011-02-28-19.41.html</A>
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; For maintainer db, afaik, the status didn't changed since last week :
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-23-14.00.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-02-23-14.00.html</A>
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; --
+</I>&gt;<i> &gt; &gt; Michael Scherer
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; _______________________________________________
+</I>&gt;<i> &gt; &gt; Mageia-webteam mailing list
+</I>&gt;<i> &gt; &gt; <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> &gt; &gt; <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Michael,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; You are right it hasn't changed, since I was a bit busy, but I think the
+</I>&gt;<i> &gt; main issue is what I should be using.
+</I>&gt;<i>
+</I>&gt;<i> No problem, you have the right to be busy. For what should be used, I
+</I>&gt;<i> thought I was clear about that in
+</I>&gt;<i> <A HREF="https://www.mageia.org/pipermail/mageia-webteam/2011-January/000140.html">https://www.mageia.org/pipermail/mageia-webteam/2011-January/000140.html</A>
+</I>&gt;<i>
+</I>&gt;<i> &gt; Would rails 2.3.10 and postgresql for production, be ok?
+</I>&gt;<i>
+</I>&gt;<i> Yup.
+</I>&gt;<i> --
+</I>&gt;<i> Michael Scherer
+</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>
+
+OK.
+Got some time and restarted the application using rails 2.3.10.
+
+Created a new gitorious repository here:
+<A HREF="http://gitorious.org/mageia-maintainers-database-r2">http://gitorious.org/mageia-maintainers-database-r2</A>
+
+And a new staging deployment here:
+<A HREF="http://www.maintdb2.mageia.org.uk/maintainers">http://www.maintdb2.mageia.org.uk/maintainers</A>
+
+Most of the functionality is recreated and would aim to finish it off by the
+end of this week if possible.
+
+At some point when the functionality is complete we would need to add the
+details about the production postgresql server (user name, password, server,
+port), and then decide about how/who will do the deployment.
+
+Will be in the meeting tomorrow, but as I'll be in work for a contract,
+maybe won't be able to have any input or answer any questions.
+If there any questions/comments please reply here, and I''ll reply after
+work.
+
+Sorry for delay, and hopefully will be finishing it off shortly.
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110301/76386b5a/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000391.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000395.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#393">[ date ]</a>
+ <a href="thread.html#393">[ thread ]</a>
+ <a href="subject.html#393">[ subject ]</a>
+ <a href="author.html#393">[ 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-March/000394.html b/zarb-ml/mageia-webteam/2011-March/000394.html
new file mode 100644
index 000000000..2574bc661
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000394.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+ </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%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110302101050.278EC42704%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="000392.html">
+ <LINK REL="Next" HREF="000399.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2025%5D%20On%20the%20german%20registry%20at%20Mageia%20identica%0A%20there%20are%202%20fields%20for%20the%20name%2C%0A%20the%20first%20should%20mean%20%22Vorname%22%20and%20the%20second%20one%20%22Nachname%22%2C%0A%20in%20both%20fields%20stands%20%22Nachname%22&In-Reply-To=%3C20110302101050.278EC42704%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 2 11:10:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000392.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000399.html">[Mageia-webteam] [Bug 252] New: Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#394">[ date ]</a>
+ <a href="thread.html#394">[ thread ]</a>
+ <a href="subject.html#394">[ subject ]</a>
+ <a href="author.html#394">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=25">https://bugs.mageia.org/show_bug.cgi?id=25</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ Status|REOPENED |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 on the CC list for the bug.
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000392.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000399.html">[Mageia-webteam] [Bug 252] New: Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#394">[ date ]</a>
+ <a href="thread.html#394">[ thread ]</a>
+ <a href="subject.html#394">[ subject ]</a>
+ <a href="author.html#394">[ 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-March/000395.html b/zarb-ml/mageia-webteam/2011-March/000395.html
new file mode 100644
index 000000000..0686e8b37
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000395.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103021157.28168.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="000393.html">
+ <LINK REL="Next" HREF="000396.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103021157.28168.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">stormi at laposte.net
+ </A><BR>
+ <I>Wed Mar 2 11:57:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000393.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000396.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#395">[ date ]</a>
+ <a href="thread.html#395">[ thread ]</a>
+ <a href="subject.html#395">[ subject ]</a>
+ <a href="author.html#395">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+I wont be able to attend due to happy personal events :)
+
+Samuel
+
+Le mardi 1 mars 2011 13:00:03, Romain d'Alverny a &#233;crit :
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> so, tomorrow, 14:00 UTC, #mageia-web as always.
+</I>&gt;<i>
+</I>&gt;<i> Two focuses for this week:
+</I>&gt;<i> - maintainers db (kosmas, misc)
+</I>&gt;<i> - wiki (obgr, misc)
+</I>&gt;<i>
+</I>&gt;<i> (so prepare your data, progress info before the meeting and be ready
+</I>&gt;<i> to have at least me on your back - for help, of course - for the
+</I>&gt;<i> following few days :-p )
+</I>&gt;<i>
+</I>&gt;<i> We can discuss other topics as well, feel free to add them here and
+</I>&gt;<i> now, but know in advance what the focus is. And next week, we'll focus
+</I>&gt;<i> on something else.
+</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>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000393.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000396.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#395">[ date ]</a>
+ <a href="thread.html#395">[ thread ]</a>
+ <a href="subject.html#395">[ subject ]</a>
+ <a href="author.html#395">[ 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-March/000396.html b/zarb-ml/mageia-webteam/2011-March/000396.html
new file mode 100644
index 000000000..afeda472b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000396.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103021438.41903.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="000395.html">
+ <LINK REL="Next" HREF="000397.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103021438.41903.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed Mar 2 14:38:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000395.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000397.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#396">[ date ]</a>
+ <a href="thread.html#396">[ thread ]</a>
+ <a href="subject.html#396">[ subject ]</a>
+ <a href="author.html#396">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I'm sorry, but I won't be available today, too due to some last minute work
+assignment, which keeps me away.
+
+I notice, this is not good especially considering today's focus on the wiki.
+I have this morning prepared yet another mediawiki rpm and send the address,
+where to find it to sysadmin list.
+
+I hope it's adequate and ask you to mail me in case of questions/problems.
+
+Sorry about this!
+
+Oliver
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000395.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000397.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#396">[ date ]</a>
+ <a href="thread.html#396">[ thread ]</a>
+ <a href="subject.html#396">[ subject ]</a>
+ <a href="author.html#396">[ 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-March/000397.html b/zarb-ml/mageia-webteam/2011-March/000397.html
new file mode 100644
index 000000000..3b801fcb1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000397.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTik%2BeS-P-TT_qOHDfdD99he2TMTphssMTQD-8E_W%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="000396.html">
+ <LINK REL="Next" HREF="000398.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTik%2BeS-P-TT_qOHDfdD99he2TMTphssMTQD-8E_W%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Mar 2 15:38:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000396.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000398.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#397">[ date ]</a>
+ <a href="thread.html#397">[ thread ]</a>
+ <a href="subject.html#397">[ subject ]</a>
+ <a href="author.html#397">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Mar 2, 2011 at 14:38, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; wrote:
+&gt;<i> [...]
+</I>&gt;<i> I notice, this is not good especially considering today's focus on the wiki.
+</I>&gt;<i> I have this morning prepared yet another mediawiki rpm and send the address,
+</I>&gt;<i> where to find it to sysadmin list.
+</I>&gt;<i>
+</I>&gt;<i> I hope it's adequate and ask you to mail me in case of questions/problems.
+</I>&gt;<i>
+</I>&gt;<i> Sorry about this!
+</I>
+Don't be, that's ok.
+
+Meeting notes are here:
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-02-14.01.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-02-14.01.html</A>
+
+Let's try to have both wiki and maintdb progressed this week and close
+the install step by next meeting.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000396.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000398.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#397">[ date ]</a>
+ <a href="thread.html#397">[ thread ]</a>
+ <a href="subject.html#397">[ subject ]</a>
+ <a href="author.html#397">[ 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-March/000398.html b/zarb-ml/mageia-webteam/2011-March/000398.html
new file mode 100644
index 000000000..fa9a5bcbb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000398.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103021805.18032.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000397.html">
+ <LINK REL="Next" HREF="000402.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103021805.18032.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Wed Mar 2 18:05:18 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000397.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000402.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#398">[ date ]</a>
+ <a href="thread.html#398">[ thread ]</a>
+ <a href="subject.html#398">[ subject ]</a>
+ <a href="author.html#398">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op woensdag 02 maart 2011 11:57:28 schreef Samuel Verschelde:
+&gt;<i> I wont be able to attend due to happy personal events :)
+</I>&gt;<i>
+</I>&gt;<i> Samuel
+</I>&gt;<i>
+</I>
+congrats! is it a boy or girl?
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000397.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000402.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#398">[ date ]</a>
+ <a href="thread.html#398">[ thread ]</a>
+ <a href="subject.html#398">[ subject ]</a>
+ <a href="author.html#398">[ 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-March/000399.html b/zarb-ml/mageia-webteam/2011-March/000399.html
new file mode 100644
index 000000000..57405cc20
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000399.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 252] New: Authentication does not work with email address
+ </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%20252%5D%20New%3A%20Authentication%20does%20not%20work%20with%0A%09email%20address&In-Reply-To=%3Cbug-252-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="000394.html">
+ <LINK REL="Next" HREF="000401.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 252] New: Authentication does not work with email address</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20252%5D%20New%3A%20Authentication%20does%20not%20work%20with%0A%09email%20address&In-Reply-To=%3Cbug-252-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 252] New: Authentication does not work with email address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 2 19:21:39 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000394.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000401.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#399">[ date ]</a>
+ <a href="thread.html#399">[ thread ]</a>
+ <a href="subject.html#399">[ subject ]</a>
+ <a href="author.html#399">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+
+ Summary: Authentication does not work with email address
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">rdalverny at gmail.com</A>
+
+
+When a registered user enters her correct email+password, authentication fails.
+It does work when using login+password.
+
+Steps to Reproduce:
+1. Use your Mageia user account
+2. Try to authenticate on <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A> with your email and
+password
+
+Expected behaviour is: authenticate correctly with both email or login
+(consistently across all Mageia online apps).
+
+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="000394.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A></li>
+ <LI>Next message: <A HREF="000401.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#399">[ date ]</a>
+ <a href="thread.html#399">[ thread ]</a>
+ <a href="subject.html#399">[ subject ]</a>
+ <a href="author.html#399">[ 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-March/000400.html b/zarb-ml/mageia-webteam/2011-March/000400.html
new file mode 100644
index 000000000..49a2e63e8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000400.html
@@ -0,0 +1,97 @@
+<!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=%3C20110302230002.978814272C%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="000401.html">
+ <LINK REL="Next" HREF="000405.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=%3C20110302230002.978814272C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 3 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000401.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="000405.html">[Mageia-webteam] Etherpad for collaborative work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#400">[ date ]</a>
+ <a href="thread.html#400">[ thread ]</a>
+ <a href="subject.html#400">[ subject ]</a>
+ <a href="author.html#400">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000401.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="000405.html">[Mageia-webteam] Etherpad for collaborative work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#400">[ date ]</a>
+ <a href="thread.html#400">[ thread ]</a>
+ <a href="subject.html#400">[ subject ]</a>
+ <a href="author.html#400">[ 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-March/000401.html b/zarb-ml/mageia-webteam/2011-March/000401.html
new file mode 100644
index 000000000..ba83598ca
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000401.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 252] Authentication does not work with email address
+ </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%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20110303084804.DD27042732%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="000399.html">
+ <LINK REL="Next" HREF="000400.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 252] Authentication does not work with email address</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20110303084804.DD27042732%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 252] Authentication does not work with email address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 3 09:48:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000399.html">[Mageia-webteam] [Bug 252] New: Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="000400.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#401">[ date ]</a>
+ <a href="thread.html#401">[ thread ]</a>
+ <a href="subject.html#401">[ subject ]</a>
+ <a href="author.html#401">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+
+Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ 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-03-03 09:48:05 CET ---
+There is a bug in Catalyst::Authentication::Store::LDAP . The documentation
+(<A HREF="http://search.cpan.org/~bobtfish/Catalyst-Authentication-Store-LDAP-1.012/lib/Catalyst/Authentication/Store/LDAP.pm#user_field">http://search.cpan.org/~bobtfish/Catalyst-Authentication-Store-LDAP-1.012/lib/Catalyst/Authentication/Store/LDAP.pm#user_field</A>)
+claims:
+
+&quot;You can also set it to an array, to allow more than one login field. The first
+field will be returned as identifier for the user.&quot;
+
+However, when running in debug mode (./script/catdap_server.pl -d) setting (in
+catdap_local.yml):
+
+authentication:
+ realms:
+ ldap:
+ store:
+ user_filter: (&amp;(objectclass=inetOrgPerson)(|(uid=%s)(mail=%s)))
+ user_field:
+ - uid
+ - mail
+
+An exception is thrown with the message:
+&quot;LDAP claims 'ARRAY(0xXXXXX)' equals 'bgmilne' but results entry does not
+match.&quot;
+
+The CatDap side should really just be the configuration above, if
+Catalyst::Authentication::Store::LDAP works as documented.
+
+--
+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="000399.html">[Mageia-webteam] [Bug 252] New: Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="000400.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#401">[ date ]</a>
+ <a href="thread.html#401">[ thread ]</a>
+ <a href="subject.html#401">[ subject ]</a>
+ <a href="author.html#401">[ 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-March/000402.html b/zarb-ml/mageia-webteam/2011-March/000402.html
new file mode 100644
index 000000000..d683760c9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000402.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103031010.08588.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="000398.html">
+ <LINK REL="Next" HREF="000403.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103031010.08588.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">stormi at laposte.net
+ </A><BR>
+ <I>Thu Mar 3 10:10:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000398.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000403.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#402">[ date ]</a>
+ <a href="thread.html#402">[ thread ]</a>
+ <a href="subject.html#402">[ subject ]</a>
+ <a href="author.html#402">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+Le mercredi 2 mars 2011 18:05:18, Maarten Vanraes a &#233;crit :
+&gt;<i> Op woensdag 02 maart 2011 11:57:28 schreef Samuel Verschelde:
+</I>&gt;<i> &gt; I wont be able to attend due to happy personal events :)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Samuel
+</I>&gt;<i>
+</I>&gt;<i> congrats! is it a boy or girl?
+</I>&gt;<i>
+</I>
+A second boy :)
+
+Samuel
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000398.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000403.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#402">[ date ]</a>
+ <a href="thread.html#402">[ thread ]</a>
+ <a href="subject.html#402">[ subject ]</a>
+ <a href="author.html#402">[ 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-March/000403.html b/zarb-ml/mageia-webteam/2011-March/000403.html
new file mode 100644
index 000000000..55530abdf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000403.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTimTU0Zc%3DgmBc81tfEYAq68au3Av-BMqQSsbCLRe%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="000402.html">
+ <LINK REL="Next" HREF="000404.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3CAANLkTimTU0Zc%3DgmBc81tfEYAq68au3Av-BMqQSsbCLRe%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">Kosmas at mach7x.com
+ </A><BR>
+ <I>Thu Mar 3 10:14:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000402.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000404.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#403">[ date ]</a>
+ <a href="thread.html#403">[ thread ]</a>
+ <a href="subject.html#403">[ subject ]</a>
+ <a href="author.html#403">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 3 March 2011 09:10, 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> Le mercredi 2 mars 2011 18:05:18, Maarten Vanraes a &#233;crit :
+</I>&gt;<i> &gt; Op woensdag 02 maart 2011 11:57:28 schreef Samuel Verschelde:
+</I>&gt;<i> &gt; &gt; I wont be able to attend due to happy personal events :)
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Samuel
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; congrats! is it a boy or girl?
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> A second boy :)
+</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>
+Congratulations Samuel :-)
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110303/12fc5698/attachment-0001.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000402.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000404.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#403">[ date ]</a>
+ <a href="thread.html#403">[ thread ]</a>
+ <a href="subject.html#403">[ subject ]</a>
+ <a href="author.html#403">[ 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-March/000404.html b/zarb-ml/mageia-webteam/2011-March/000404.html
new file mode 100644
index 000000000..0e97ce7be
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000404.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103031032.45411.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="000403.html">
+ <LINK REL="Next" HREF="000407.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103031032.45411.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu Mar 3 10:32:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000403.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000407.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#404">[ date ]</a>
+ <a href="thread.html#404">[ thread ]</a>
+ <a href="subject.html#404">[ subject ]</a>
+ <a href="author.html#404">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; schrieb am 2011-03-03
+&gt;<i> Le mercredi 2 mars 2011 18:05:18, Maarten Vanraes a &#233;crit :
+</I>&gt;<i> &gt; Op woensdag 02 maart 2011 11:57:28 schreef Samuel Verschelde:
+</I>&gt;<i> &gt; &gt; I wont be able to attend due to happy personal events :)
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Samuel
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; congrats! is it a boy or girl?
+</I>&gt;<i>
+</I>&gt;<i> A second boy :)
+</I>&gt;<i>
+</I>Congrats from me, too!
+
+Oliver
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000403.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000407.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#404">[ date ]</a>
+ <a href="thread.html#404">[ thread ]</a>
+ <a href="subject.html#404">[ subject ]</a>
+ <a href="author.html#404">[ 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-March/000405.html b/zarb-ml/mageia-webteam/2011-March/000405.html
new file mode 100644
index 000000000..8337ae5db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000405.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Etherpad for collaborative work
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Etherpad%20for%20collaborative%20work&In-Reply-To=%3C201103031317.00806.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="000400.html">
+ <LINK REL="Next" HREF="000406.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Etherpad for collaborative work</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Etherpad%20for%20collaborative%20work&In-Reply-To=%3C201103031317.00806.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Etherpad for collaborative work">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu Mar 3 13:17:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000400.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000406.html">[Mageia-webteam] Etherpad for collaborative work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#405">[ date ]</a>
+ <a href="thread.html#405">[ thread ]</a>
+ <a href="subject.html#405">[ subject ]</a>
+ <a href="author.html#405">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+since I couldn't attend the meeting yesterday, I'm asking by mail.
+
+Last i18n-de meeting we were discussing the usage of etherpad for
+collaborative work. At the moment we are using
+<A HREF="http://piratepad.net/front-page/">http://piratepad.net/front-page/</A> for this.
+But one of my translators is asking if we couldn't install an etherpad
+on one of our own servers.
+
+My personal opinion (not as leader of the German translators but as a
+web team member) is, that it would be nice to have at some point in
+the distant future, when we don't have any other pressing things on
+our mind. But as long as there are other things to do, the question
+is: why?
+
+So, what do you think? So I can tell him next i18n-de meeting.
+
+Oliver
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000400.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000406.html">[Mageia-webteam] Etherpad for collaborative work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#405">[ date ]</a>
+ <a href="thread.html#405">[ thread ]</a>
+ <a href="subject.html#405">[ subject ]</a>
+ <a href="author.html#405">[ 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-March/000406.html b/zarb-ml/mageia-webteam/2011-March/000406.html
new file mode 100644
index 000000000..d71ea553a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000406.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Etherpad for collaborative work
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Etherpad%20for%20collaborative%20work&In-Reply-To=%3CAANLkTikAgjc-FWTnD_0eMkZXONnzxWQxCD9XBps%3Drw6K%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="000405.html">
+ <LINK REL="Next" HREF="000408.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Etherpad for collaborative work</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Etherpad%20for%20collaborative%20work&In-Reply-To=%3CAANLkTikAgjc-FWTnD_0eMkZXONnzxWQxCD9XBps%3Drw6K%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Etherpad for collaborative work">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Mar 3 15:36:59 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000405.html">[Mageia-webteam] Etherpad for collaborative work
+</A></li>
+ <LI>Next message: <A HREF="000408.html">[Mageia-webteam] [Bug 257] [New:] test bugreport
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#406">[ date ]</a>
+ <a href="thread.html#406">[ thread ]</a>
+ <a href="subject.html#406">[ subject ]</a>
+ <a href="author.html#406">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Mar 3, 2011 at 13:17, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; wrote:
+&gt;<i> My personal opinion (not as leader of the German translators but as a
+</I>&gt;<i> web team member) is, that it would be nice to have at some point in
+</I>&gt;<i> the distant future, when we don't have any other pressing things on
+</I>&gt;<i> our mind. But as long as there are other things to do, the question
+</I>&gt;<i> is: why?
+</I>&gt;<i>
+</I>&gt;<i> So, what do you think?
+</I>
+Same. Very nice to have, but far from the top of the list for now;
+unless, of course, someone steps in and can set it up properly
+*sysadmin-wink*:
+ - properly packaged,
+ - available server,
+ - known expected usage load (and management of it).
+
+
+Romain
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000405.html">[Mageia-webteam] Etherpad for collaborative work
+</A></li>
+ <LI>Next message: <A HREF="000408.html">[Mageia-webteam] [Bug 257] [New:] test bugreport
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#406">[ date ]</a>
+ <a href="thread.html#406">[ thread ]</a>
+ <a href="subject.html#406">[ subject ]</a>
+ <a href="author.html#406">[ 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-March/000407.html b/zarb-ml/mageia-webteam/2011-March/000407.html
new file mode 100644
index 000000000..4ed024796
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000407.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C4D6FA4D0.9030509%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000404.html">
+ <LINK REL="Next" HREF="000411.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C4D6FA4D0.9030509%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">maat-ml at vilarem.net
+ </A><BR>
+ <I>Thu Mar 3 15:25:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000404.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000411.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#407">[ date ]</a>
+ <a href="thread.html#407">[ thread ]</a>
+ <a href="subject.html#407">[ subject ]</a>
+ <a href="author.html#407">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 03/03/2011 10:10, Samuel Verschelde a &#233;crit :
+&gt;<i> Le mercredi 2 mars 2011 18:05:18, Maarten Vanraes a &#233;crit :
+</I>&gt;&gt;<i> Op woensdag 02 maart 2011 11:57:28 schreef Samuel Verschelde:
+</I>&gt;&gt;&gt;<i> I wont be able to attend due to happy personal events :)
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Samuel
+</I>&gt;&gt;<i> congrats! is it a boy or girl?
+</I>&gt;&gt;<i>
+</I>&gt;<i> A second boy :)
+</I>&gt;<i>
+</I>&gt;<i> Samuel
+</I>&gt;<i>
+</I>Congrats indeed :)
+
+Ma&#226;t
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000404.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000411.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#407">[ date ]</a>
+ <a href="thread.html#407">[ thread ]</a>
+ <a href="subject.html#407">[ subject ]</a>
+ <a href="author.html#407">[ 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-March/000408.html b/zarb-ml/mageia-webteam/2011-March/000408.html
new file mode 100644
index 000000000..b5577addd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000408.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 257] [New:] test bugreport
+ </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%20257%5D%20%5BNew%3A%5D%20test%20bugreport&In-Reply-To=%3Cbug-257-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="000406.html">
+ <LINK REL="Next" HREF="000409.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 257] [New:] test bugreport</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20257%5D%20%5BNew%3A%5D%20test%20bugreport&In-Reply-To=%3Cbug-257-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 257] [New:] test bugreport">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 3 18:13:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000406.html">[Mageia-webteam] Etherpad for collaborative work
+</A></li>
+ <LI>Next message: <A HREF="000409.html">[Mageia-webteam] [Bug 257] test bugreport
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#408">[ date ]</a>
+ <a href="thread.html#408">[ thread ]</a>
+ <a href="subject.html#408">[ subject ]</a>
+ <a href="author.html#408">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=257">https://bugs.mageia.org/show_bug.cgi?id=257</A>
+
+ Summary: test bugreport
+ 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">dmorganec at gmail.com</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+this is just a dunmmy bugreport
+
+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="000406.html">[Mageia-webteam] Etherpad for collaborative work
+</A></li>
+ <LI>Next message: <A HREF="000409.html">[Mageia-webteam] [Bug 257] test bugreport
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#408">[ date ]</a>
+ <a href="thread.html#408">[ thread ]</a>
+ <a href="subject.html#408">[ subject ]</a>
+ <a href="author.html#408">[ 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-March/000409.html b/zarb-ml/mageia-webteam/2011-March/000409.html
new file mode 100644
index 000000000..a8d4b67d0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000409.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 257] test bugreport
+ </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%20257%5D%20test%20bugreport&In-Reply-To=%3C20110303171854.BEFF642734%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="000408.html">
+ <LINK REL="Next" HREF="000410.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 257] test bugreport</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20257%5D%20test%20bugreport&In-Reply-To=%3C20110303171854.BEFF642734%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 257] test bugreport">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 3 18:18:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000408.html">[Mageia-webteam] [Bug 257] [New:] test bugreport
+</A></li>
+ <LI>Next message: <A HREF="000410.html">[Mageia-webteam] [Bug 257] test bugreport
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#409">[ date ]</a>
+ <a href="thread.html#409">[ thread ]</a>
+ <a href="subject.html#409">[ subject ]</a>
+ <a href="author.html#409">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=257">https://bugs.mageia.org/show_bug.cgi?id=257</A>
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-03-03 18:18:55 CET ---
+test
+
+--
+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="000408.html">[Mageia-webteam] [Bug 257] [New:] test bugreport
+</A></li>
+ <LI>Next message: <A HREF="000410.html">[Mageia-webteam] [Bug 257] test bugreport
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#409">[ date ]</a>
+ <a href="thread.html#409">[ thread ]</a>
+ <a href="subject.html#409">[ subject ]</a>
+ <a href="author.html#409">[ 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-March/000410.html b/zarb-ml/mageia-webteam/2011-March/000410.html
new file mode 100644
index 000000000..351d9cad8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000410.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 257] test bugreport
+ </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%20257%5D%20test%20bugreport&In-Reply-To=%3C20110303180203.1689D42746%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="000409.html">
+ <LINK REL="Next" HREF="000412.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 257] test bugreport</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20257%5D%20test%20bugreport&In-Reply-To=%3C20110303180203.1689D42746%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 257] test bugreport">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 3 19:02:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000409.html">[Mageia-webteam] [Bug 257] test bugreport
+</A></li>
+ <LI>Next message: <A HREF="000412.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#410">[ date ]</a>
+ <a href="thread.html#410">[ thread ]</a>
+ <a href="subject.html#410">[ subject ]</a>
+ <a href="author.html#410">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=257">https://bugs.mageia.org/show_bug.cgi?id=257</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|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 on the CC list for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000409.html">[Mageia-webteam] [Bug 257] test bugreport
+</A></li>
+ <LI>Next message: <A HREF="000412.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#410">[ date ]</a>
+ <a href="thread.html#410">[ thread ]</a>
+ <a href="subject.html#410">[ subject ]</a>
+ <a href="author.html#410">[ 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-March/000411.html b/zarb-ml/mageia-webteam/2011-March/000411.html
new file mode 100644
index 000000000..a671b58f1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000411.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103032116.03620.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000407.html">
+ <LINK REL="Next" HREF="000413.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103032116.03620.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Thu Mar 3 21:16:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000407.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000413.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#411">[ date ]</a>
+ <a href="thread.html#411">[ thread ]</a>
+ <a href="subject.html#411">[ subject ]</a>
+ <a href="author.html#411">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op donderdag 03 maart 2011 10:10:08 schreef Samuel Verschelde:
+&gt;<i> Le mercredi 2 mars 2011 18:05:18, Maarten Vanraes a &#233;crit :
+</I>&gt;<i> &gt; Op woensdag 02 maart 2011 11:57:28 schreef Samuel Verschelde:
+</I>&gt;<i> &gt; &gt; I wont be able to attend due to happy personal events :)
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Samuel
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; congrats! is it a boy or girl?
+</I>&gt;<i>
+</I>&gt;<i> A second boy :)
+</I>&gt;<i>
+</I>&gt;<i> Samuel
+</I>
+big congrats!
+
+any more specs?
+
+length/weight/name/healthy-ness state? :-D
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000407.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000413.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#411">[ date ]</a>
+ <a href="thread.html#411">[ thread ]</a>
+ <a href="subject.html#411">[ subject ]</a>
+ <a href="author.html#411">[ 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-March/000412.html b/zarb-ml/mageia-webteam/2011-March/000412.html
new file mode 100644
index 000000000..b2442aba0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000412.html
@@ -0,0 +1,91 @@
+<!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=%3C20110303230002.A670B42732%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="000410.html">
+ <LINK REL="Next" HREF="000414.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=%3C20110303230002.A670B42732%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 4 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000410.html">[Mageia-webteam] [Bug 257] test bugreport
+</A></li>
+ <LI>Next message: <A HREF="000414.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#412">[ date ]</a>
+ <a href="thread.html#412">[ thread ]</a>
+ <a href="subject.html#412">[ subject ]</a>
+ <a href="author.html#412">[ 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>
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000410.html">[Mageia-webteam] [Bug 257] test bugreport
+</A></li>
+ <LI>Next message: <A HREF="000414.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#412">[ date ]</a>
+ <a href="thread.html#412">[ thread ]</a>
+ <a href="subject.html#412">[ subject ]</a>
+ <a href="author.html#412">[ 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-March/000413.html b/zarb-ml/mageia-webteam/2011-March/000413.html
new file mode 100644
index 000000000..b2b613429
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000413.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011, week 9 review
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103040925.03347.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="000411.html">
+ <LINK REL="Next" HREF="000392.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011, week 9 review</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011%2C%20week%209%20review&In-Reply-To=%3C201103040925.03347.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] 2011, week 9 review">stormi at laposte.net
+ </A><BR>
+ <I>Fri Mar 4 09:25:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000411.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000392.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#413">[ date ]</a>
+ <a href="thread.html#413">[ thread ]</a>
+ <a href="subject.html#413">[ subject ]</a>
+ <a href="author.html#413">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+Le jeudi 3 mars 2011 21:16:03, Maarten Vanraes a &#233;crit :
+&gt;<i> Op donderdag 03 maart 2011 10:10:08 schreef Samuel Verschelde:
+</I>&gt;<i> &gt; Le mercredi 2 mars 2011 18:05:18, Maarten Vanraes a &#233;crit :
+</I>&gt;<i> &gt; &gt; Op woensdag 02 maart 2011 11:57:28 schreef Samuel Verschelde:
+</I>&gt;<i> &gt; &gt; &gt; I wont be able to attend due to happy personal events :)
+</I>&gt;<i> &gt; &gt; &gt;
+</I>&gt;<i> &gt; &gt; &gt; Samuel
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; congrats! is it a boy or girl?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; A second boy :)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Samuel
+</I>&gt;<i>
+</I>&gt;<i> big congrats!
+</I>&gt;<i>
+</I>&gt;<i> any more specs?
+</I>&gt;<i>
+</I>&gt;<i> length/weight/name/healthy-ness state? :-D
+</I>&gt;<i>
+</I>
+Of course, but not on public mailing lists :)
+
+Samuel
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000411.html">[Mageia-webteam] 2011, week 9 review
+</A></li>
+ <LI>Next message: <A HREF="000392.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#413">[ date ]</a>
+ <a href="thread.html#413">[ thread ]</a>
+ <a href="subject.html#413">[ subject ]</a>
+ <a href="author.html#413">[ 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-March/000414.html b/zarb-ml/mageia-webteam/2011-March/000414.html
new file mode 100644
index 000000000..a5c469e5c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000414.html
@@ -0,0 +1,90 @@
+<!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=%3C20110304230002.CFC2842764%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="000412.html">
+ <LINK REL="Next" HREF="000415.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=%3C20110304230002.CFC2842764%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 5 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000412.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000415.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#414">[ date ]</a>
+ <a href="thread.html#414">[ thread ]</a>
+ <a href="subject.html#414">[ subject ]</a>
+ <a href="author.html#414">[ 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>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000412.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000415.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#414">[ date ]</a>
+ <a href="thread.html#414">[ thread ]</a>
+ <a href="subject.html#414">[ subject ]</a>
+ <a href="author.html#414">[ 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-March/000415.html b/zarb-ml/mageia-webteam/2011-March/000415.html
new file mode 100644
index 000000000..42a4dc74b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000415.html
@@ -0,0 +1,90 @@
+<!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=%3C20110305230002.B4E744256A%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="000414.html">
+ <LINK REL="Next" HREF="000416.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=%3C20110305230002.B4E744256A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 6 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000414.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000416.html">[Mageia-webteam] Forums : nfrance machine
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#415">[ date ]</a>
+ <a href="thread.html#415">[ thread ]</a>
+ <a href="subject.html#415">[ subject ]</a>
+ <a href="author.html#415">[ 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>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000414.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000416.html">[Mageia-webteam] Forums : nfrance machine
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#415">[ date ]</a>
+ <a href="thread.html#415">[ thread ]</a>
+ <a href="subject.html#415">[ subject ]</a>
+ <a href="author.html#415">[ 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-March/000416.html b/zarb-ml/mageia-webteam/2011-March/000416.html
new file mode 100644
index 000000000..126006699
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000416.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forums : nfrance machine
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums%20%3A%20nfrance%20machine&In-Reply-To=%3C4D72C332.9030403%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000415.html">
+ <LINK REL="Next" HREF="000417.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forums : nfrance machine</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums%20%3A%20nfrance%20machine&In-Reply-To=%3C4D72C332.9030403%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forums : nfrance machine">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sun Mar 6 00:11:46 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000415.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000417.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#416">[ date ]</a>
+ <a href="thread.html#416">[ thread ]</a>
+ <a href="subject.html#416">[ subject ]</a>
+ <a href="author.html#416">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi all,
+
+I'm just dropping a quick message there to let you know that nfrance machine is ready to host mageia forums.
+
+Enzolyte gave me the fresh news at 21h14 (Paris time)...
+
+Stay tuned
+
+Ma&#226;t
+
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000415.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000417.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#416">[ date ]</a>
+ <a href="thread.html#416">[ thread ]</a>
+ <a href="subject.html#416">[ subject ]</a>
+ <a href="author.html#416">[ 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-March/000417.html b/zarb-ml/mageia-webteam/2011-March/000417.html
new file mode 100644
index 000000000..cbe240d13
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000417.html
@@ -0,0 +1,69 @@
+<!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=%3C20110306091108.02ECE4232A%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="000416.html">
+ <LINK REL="Next" HREF="000418.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110306091108.02ECE4232A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 6 10:11:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000416.html">[Mageia-webteam] Forums : nfrance machine
+</A></li>
+ <LI>Next message: <A HREF="000418.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#417">[ date ]</a>
+ <a href="thread.html#417">[ thread ]</a>
+ <a href="subject.html#417">[ subject ]</a>
+ <a href="author.html#417">[ 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>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="000416.html">[Mageia-webteam] Forums : nfrance machine
+</A></li>
+ <LI>Next message: <A HREF="000418.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#417">[ date ]</a>
+ <a href="thread.html#417">[ thread ]</a>
+ <a href="subject.html#417">[ subject ]</a>
+ <a href="author.html#417">[ 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-March/000418.html b/zarb-ml/mageia-webteam/2011-March/000418.html
new file mode 100644
index 000000000..f0db72681
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000418.html
@@ -0,0 +1,71 @@
+<!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=%3C20110306124129.1020E4273A%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="000417.html">
+ <LINK REL="Next" HREF="000419.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110306124129.1020E4273A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 6 13:41:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000417.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000419.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#418">[ date ]</a>
+ <a href="thread.html#418">[ thread ]</a>
+ <a href="subject.html#418">[ subject ]</a>
+ <a href="author.html#418">[ 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>
+
+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">boklm at mars-attacks.org</A>
+
+--- Comment #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-03-06 13:41:29 UTC ---
+Which page ?
+
+--
+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="000417.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000419.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#418">[ date ]</a>
+ <a href="thread.html#418">[ thread ]</a>
+ <a href="subject.html#418">[ subject ]</a>
+ <a href="author.html#418">[ 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-March/000419.html b/zarb-ml/mageia-webteam/2011-March/000419.html
new file mode 100644
index 000000000..938ac6da5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000419.html
@@ -0,0 +1,71 @@
+<!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=%3C20110306125239.3ACFC42720%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="000418.html">
+ <LINK REL="Next" HREF="000420.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110306125239.3ACFC42720%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 6 13:52:39 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000418.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000420.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#419">[ date ]</a>
+ <a href="thread.html#419">[ thread ]</a>
+ <a href="subject.html#419">[ subject ]</a>
+ <a href="author.html#419">[ 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>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-03-06 13:52:39 UTC ---
+Maybe /usr/share/doc/HTML/index.html the default home page (in the alpha)
+
+--
+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="000418.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000420.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#419">[ date ]</a>
+ <a href="thread.html#419">[ thread ]</a>
+ <a href="subject.html#419">[ subject ]</a>
+ <a href="author.html#419">[ 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-March/000420.html b/zarb-ml/mageia-webteam/2011-March/000420.html
new file mode 100644
index 000000000..0f8410a01
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000420.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTi%3D2NSW7DGRH8e422GWf3X0tX7Lr-Nr28i6Pp2OK%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="000419.html">
+ <LINK REL="Next" HREF="000423.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTi%3D2NSW7DGRH8e422GWf3X0tX7Lr-Nr28i6Pp2OK%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintdb">Kosmas at mach7x.com
+ </A><BR>
+ <I>Sun Mar 6 13:58:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000419.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000423.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#420">[ date ]</a>
+ <a href="thread.html#420">[ thread ]</a>
+ <a href="subject.html#420">[ subject ]</a>
+ <a href="author.html#420">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+Anyone wishing to try out the maintainers db, the staging server is here:
+
+<A HREF="http://www.maintdb2.mageia.org.uk/maintainers_spackages">http://www.maintdb2.mageia.org.uk/maintainers_spackages</A>
+
+Any comment, suggestions, breakages (I know about one ;-) ), welcome.
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110306/cef408fd/attachment.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000419.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000423.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#420">[ date ]</a>
+ <a href="thread.html#420">[ thread ]</a>
+ <a href="subject.html#420">[ subject ]</a>
+ <a href="author.html#420">[ 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-March/000421.html b/zarb-ml/mageia-webteam/2011-March/000421.html
new file mode 100644
index 000000000..f9dee4ccb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000421.html
@@ -0,0 +1,75 @@
+<!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=%3C20110306142519.5BF3C4272D%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="000487.html">
+ <LINK REL="Next" HREF="000422.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110306142519.5BF3C4272D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 6 15:25:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000487.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000422.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#421">[ date ]</a>
+ <a href="thread.html#421">[ thread ]</a>
+ <a href="subject.html#421">[ subject ]</a>
+ <a href="author.html#421">[ 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 #3 from Maarten Vanraes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-03-06 15:25:19 UTC ---
+default homepage from indexhtml package.
+
+--
+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="000487.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000422.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#421">[ date ]</a>
+ <a href="thread.html#421">[ thread ]</a>
+ <a href="subject.html#421">[ subject ]</a>
+ <a href="author.html#421">[ 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-March/000422.html b/zarb-ml/mageia-webteam/2011-March/000422.html
new file mode 100644
index 000000000..fda97357d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000422.html
@@ -0,0 +1,76 @@
+<!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=%3C20110306142644.12B2F42728%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="000421.html">
+ <LINK REL="Next" HREF="000427.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110306142644.12B2F42728%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 6 15:26:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000421.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000427.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#422">[ date ]</a>
+ <a href="thread.html#422">[ thread ]</a>
+ <a href="subject.html#422">[ subject ]</a>
+ <a href="author.html#422">[ 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 #4 from Maarten Vanraes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-03-06 15:26:44 UTC ---
+afaik the script.js still needs cleaning and isn't included? iirc rda was gonna
+fix it someday, so I filed this bug so it would be remembered.
+
+--
+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="000421.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000427.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#422">[ date ]</a>
+ <a href="thread.html#422">[ thread ]</a>
+ <a href="subject.html#422">[ subject ]</a>
+ <a href="author.html#422">[ 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-March/000423.html b/zarb-ml/mageia-webteam/2011-March/000423.html
new file mode 100644
index 000000000..dccd55d12
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000423.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3C20110306142928.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="000420.html">
+ <LINK REL="Next" HREF="000424.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3C20110306142928.GY21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Maintdb">boklm at mars-attacks.org
+ </A><BR>
+ <I>Sun Mar 6 15:29:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000420.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000424.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#423">[ date ]</a>
+ <a href="thread.html#423">[ thread ]</a>
+ <a href="subject.html#423">[ subject ]</a>
+ <a href="author.html#423">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Sun, 06 Mar 2011, Kosmas Chatzimichalis wrote:
+
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> Anyone wishing to try out the maintainers db, the staging server is here:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://www.maintdb2.mageia.org.uk/maintainers_spackages">http://www.maintdb2.mageia.org.uk/maintainers_spackages</A>
+</I>&gt;<i>
+</I>&gt;<i> Any comment, suggestions, breakages (I know about one ;-) ), welcome.
+</I>
+I think the first version should be made as simple as possible, with
+only the minimal features we need, to have something ready to use soon.
+So for now I think it should only have this :
+ - For the database, a table which includes a list of source package
+ names with corresponding maintainer login. And nothing else in the
+ database for the first version. I don't think a table for maintainers
+ is needed.
+ - a URL with authentication which will be accessed by the build system
+ to add automatically a new source package, with maintainer login
+ - a URL to print the maintainer login of all source packages in the
+ database (and a version without html, so it can be used by other tools)
+ - a URL to print the packages maintained by someone (using the login)
+ - a website using ldap for authentication, to allow maintainers to drop
+ maintainership of their package (which become unmaintained), and take
+ maintainership of unmaintained packages
+
+And it should not have :
+ - a table in the database including name and email of maintainers, as
+ this info is already stored in ldap.
+ - a page to create a new maintainer, as there is no maintainer table
+ needed, so no need to add them somewhere. Only the login name should
+ be used to identify maintainers.
+ - a page to create a new source package, as it should be done
+ automatically by the build system and not from the web site
+ - a page for compiled packages. For maintainership, we only care about
+ source packages.
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000420.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000424.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#423">[ date ]</a>
+ <a href="thread.html#423">[ thread ]</a>
+ <a href="subject.html#423">[ subject ]</a>
+ <a href="author.html#423">[ 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-March/000424.html b/zarb-ml/mageia-webteam/2011-March/000424.html
new file mode 100644
index 000000000..560ba6f85
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000424.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3C201103061542.16619.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000423.html">
+ <LINK REL="Next" HREF="000425.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3C201103061542.16619.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintdb">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Sun Mar 6 15:42:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000423.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000425.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#424">[ date ]</a>
+ <a href="thread.html#424">[ thread ]</a>
+ <a href="subject.html#424">[ subject ]</a>
+ <a href="author.html#424">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op zondag 06 maart 2011 13:58:15 schreef Kosmas Chatzimichalis:
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> Anyone wishing to try out the maintainers db, the staging server is here:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://www.maintdb2.mageia.org.uk/maintainers_spackages">http://www.maintdb2.mageia.org.uk/maintainers_spackages</A>
+</I>&gt;<i>
+</I>&gt;<i> Any comment, suggestions, breakages (I know about one ;-) ), welcome.
+</I>&gt;<i>
+</I>&gt;<i> Kosmas
+</I>
+I'm just saying how i see it, please don't take offense, i don't mean this in
+any personal way:
+
+ - login by binding from ldap (possibly some kind of SSO later)
+ - maintainers list should come from ldap (an ldap filter on the packager
+group)
+ - packages should come from hdlist or something
+ - list of packages without maintainer
+ - (possibly list of maintainer without packages)
+ - mageia has core/tainted/non-free (not main/contrib)
+ - don't know what compiled packages is doing there? afaik this is only
+usefull for source packages
+ - link to bugs for each package
+ - if logged in, possibility to grab/drop (co-)maintainership (possibly co-
+maintainership)
+ - possibility to drop all self owned packages, or some kind of checkbox
+operation
+ - possibility to drop all owned packages for a user, if you're a package team
+leader
+ - editing should then be irrelevant, (unless multiple maintainers)
+ - (maybe it would be a good idea to put maintainership in ldap? or not?)
+
+
+possibly not all features are required at the start, but imho there is still a
+huge amount of work to be done.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000423.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000425.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#424">[ date ]</a>
+ <a href="thread.html#424">[ thread ]</a>
+ <a href="subject.html#424">[ subject ]</a>
+ <a href="author.html#424">[ 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-March/000425.html b/zarb-ml/mageia-webteam/2011-March/000425.html
new file mode 100644
index 000000000..ae56304af
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000425.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3C20110306151855.GZ21938%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="000424.html">
+ <LINK REL="Next" HREF="000426.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3C20110306151855.GZ21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Maintdb">boklm at mars-attacks.org
+ </A><BR>
+ <I>Sun Mar 6 16:18:55 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000424.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000426.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#425">[ date ]</a>
+ <a href="thread.html#425">[ thread ]</a>
+ <a href="subject.html#425">[ subject ]</a>
+ <a href="author.html#425">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Sun, 06 Mar 2011, Maarten Vanraes wrote:
+
+&gt;<i> Op zondag 06 maart 2011 13:58:15 schreef Kosmas Chatzimichalis:
+</I>&gt;<i> &gt; Hi,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Anyone wishing to try out the maintainers db, the staging server is here:
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; <A HREF="http://www.maintdb2.mageia.org.uk/maintainers_spackages">http://www.maintdb2.mageia.org.uk/maintainers_spackages</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Any comment, suggestions, breakages (I know about one ;-) ), welcome.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Kosmas
+</I>&gt;<i>
+</I>&gt;<i> I'm just saying how i see it, please don't take offense, i don't mean this in
+</I>&gt;<i> any personal way:
+</I>&gt;<i>
+</I>&gt;<i> - login by binding from ldap (possibly some kind of SSO later)
+</I>&gt;<i> - maintainers list should come from ldap (an ldap filter on the packager
+</I>&gt;<i> group)
+</I>
+No need to use ldap for maintainers list. Using list of maintainers
+maintaining at least one package in the database is enough I think.
+
+&gt;<i> - packages should come from hdlist or something
+</I>
+No need to use hdlists if new package names are sent by the build system.
+
+&gt;<i> - list of packages without maintainer
+</I>&gt;<i> - (possibly list of maintainer without packages)
+</I>&gt;<i> - mageia has core/tainted/non-free (not main/contrib)
+</I>
+I don't think we care about media in maintainers db.
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000424.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000426.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#425">[ date ]</a>
+ <a href="thread.html#425">[ thread ]</a>
+ <a href="subject.html#425">[ subject ]</a>
+ <a href="author.html#425">[ 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-March/000426.html b/zarb-ml/mageia-webteam/2011-March/000426.html
new file mode 100644
index 000000000..b8cbdc957
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000426.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3C201103061816.31284.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000425.html">
+ <LINK REL="Next" HREF="000480.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>Maarten Vanraes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3C201103061816.31284.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintdb">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Sun Mar 6 18:16:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000425.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000480.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#426">[ date ]</a>
+ <a href="thread.html#426">[ thread ]</a>
+ <a href="subject.html#426">[ subject ]</a>
+ <a href="author.html#426">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op zondag 06 maart 2011 16:18:55 schreef nicolas vigier:
+&gt;<i> On Sun, 06 Mar 2011, Maarten Vanraes wrote:
+</I>&gt;<i> &gt; Op zondag 06 maart 2011 13:58:15 schreef Kosmas Chatzimichalis:
+</I>&gt;<i> &gt; &gt; Hi,
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Anyone wishing to try out the maintainers db, the staging server is
+</I>&gt;<i> &gt; &gt; here:
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; <A HREF="http://www.maintdb2.mageia.org.uk/maintainers_spackages">http://www.maintdb2.mageia.org.uk/maintainers_spackages</A>
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Any comment, suggestions, breakages (I know about one ;-) ), welcome.
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Kosmas
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I'm just saying how i see it, please don't take offense, i don't mean
+</I>&gt;<i> &gt; this in
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; any personal way:
+</I>&gt;<i> &gt; - login by binding from ldap (possibly some kind of SSO later)
+</I>&gt;<i> &gt; - maintainers list should come from ldap (an ldap filter on the packager
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; group)
+</I>&gt;<i>
+</I>&gt;<i> No need to use ldap for maintainers list. Using list of maintainers
+</I>&gt;<i> maintaining at least one package in the database is enough I think.
+</I>
+so, by grabbing a package, your ldap uid (or DN) gets stored in the database
+then?
+
+&gt;<i> &gt; - packages should come from hdlist or something
+</I>&gt;<i>
+</I>&gt;<i> No need to use hdlists if new package names are sent by the build system.
+</I>
+ok, and they are added to the db then?
+
+&gt;<i> &gt; - list of packages without maintainer
+</I>&gt;<i> &gt; - (possibly list of maintainer without packages)
+</I>&gt;<i> &gt; - mageia has core/tainted/non-free (not main/contrib)
+</I>&gt;<i>
+</I>&gt;<i> I don't think we care about media in maintainers db.
+</I>
+ok, i just saw main and contrib somwhere
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000425.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000480.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#426">[ date ]</a>
+ <a href="thread.html#426">[ thread ]</a>
+ <a href="subject.html#426">[ subject ]</a>
+ <a href="author.html#426">[ 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-March/000427.html b/zarb-ml/mageia-webteam/2011-March/000427.html
new file mode 100644
index 000000000..98324454b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000427.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=%3C20110306181225.E7DA44273A%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="000422.html">
+ <LINK REL="Next" HREF="000428.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110306181225.E7DA44273A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 6 19:12:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000422.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000428.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#427">[ date ]</a>
+ <a href="thread.html#427">[ thread ]</a>
+ <a href="subject.html#427">[ subject ]</a>
+ <a href="author.html#427">[ 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>
+
+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|NEW |ASSIGNED
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-03-06 19:12:25 UTC ---
+The script is ok (rewritten and locally tested) and included in the package.
+But the spec file don't move it to the right place (and it does not rewrite one
+meta header at least).
+
+--
+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="000422.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000428.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#427">[ date ]</a>
+ <a href="thread.html#427">[ thread ]</a>
+ <a href="subject.html#427">[ subject ]</a>
+ <a href="author.html#427">[ 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-March/000428.html b/zarb-ml/mageia-webteam/2011-March/000428.html
new file mode 100644
index 000000000..c4d8d130b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000428.html
@@ -0,0 +1,71 @@
+<!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=%3C20110306185144.3EC2342767%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="000427.html">
+ <LINK REL="Next" HREF="000429.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110306185144.3EC2342767%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 6 19:51:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000427.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000429.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#428">[ date ]</a>
+ <a href="thread.html#428">[ thread ]</a>
+ <a href="subject.html#428">[ subject ]</a>
+ <a href="author.html#428">[ 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 #6 from Maarten Vanraes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-03-06 19:51:44 CET ---
+i wanted to take a look at it, but i didn't see any commit yet.
+
+--
+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="000427.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000429.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#428">[ date ]</a>
+ <a href="thread.html#428">[ thread ]</a>
+ <a href="subject.html#428">[ subject ]</a>
+ <a href="author.html#428">[ 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-March/000429.html b/zarb-ml/mageia-webteam/2011-March/000429.html
new file mode 100644
index 000000000..acd94c27c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000429.html
@@ -0,0 +1,96 @@
+<!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=%3C20110306230002.9A39942767%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="000428.html">
+ <LINK REL="Next" HREF="000430.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=%3C20110306230002.9A39942767%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Mar 7 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000428.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000430.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#429">[ date ]</a>
+ <a href="thread.html#429">[ thread ]</a>
+ <a href="subject.html#429">[ subject ]</a>
+ <a href="author.html#429">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000428.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000430.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#429">[ date ]</a>
+ <a href="thread.html#429">[ thread ]</a>
+ <a href="subject.html#429">[ subject ]</a>
+ <a href="author.html#429">[ 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-March/000430.html b/zarb-ml/mageia-webteam/2011-March/000430.html
new file mode 100644
index 000000000..95551a0cf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000430.html
@@ -0,0 +1,96 @@
+<!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=%3C20110307230003.118EE427A5%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="000429.html">
+ <LINK REL="Next" HREF="000431.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=%3C20110307230003.118EE427A5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 8 00:00:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000429.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000431.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#430">[ date ]</a>
+ <a href="thread.html#430">[ thread ]</a>
+ <a href="subject.html#430">[ subject ]</a>
+ <a href="author.html#430">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000429.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000431.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#430">[ date ]</a>
+ <a href="thread.html#430">[ thread ]</a>
+ <a href="subject.html#430">[ subject ]</a>
+ <a href="author.html#430">[ 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-March/000431.html b/zarb-ml/mageia-webteam/2011-March/000431.html
new file mode 100644
index 000000000..87e809326
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000431.html
@@ -0,0 +1,211 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Proposal for maintainers database API
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3C20110308025311.GC21938%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="000430.html">
+ <LINK REL="Next" HREF="000432.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Proposal for maintainers database API</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3C20110308025311.GC21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Proposal for maintainers database API">boklm at mars-attacks.org
+ </A><BR>
+ <I>Tue Mar 8 03:53:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000430.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000432.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#431">[ date ]</a>
+ <a href="thread.html#431">[ thread ]</a>
+ <a href="subject.html#431">[ subject ]</a>
+ <a href="author.html#431">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+Here is a proposal for an API that can be used on the maintainers
+database, with the list of URLs and what they should do :
+
+***
+An html page with the list of all packages, and their maintainer :
+<A HREF="http://maintdb.mageia.org/packages.html">http://maintdb.mageia.org/packages.html</A>
+As we have many packages, the page will be long, so maybe we want to
+split the list by first letter of package name :
+<A HREF="http://maintdb.mageia.org/packages_a.html">http://maintdb.mageia.org/packages_a.html</A>
+<A HREF="http://maintdb.mageia.org/packages_b.html">http://maintdb.mageia.org/packages_b.html</A>
+<A HREF="http://maintdb.mageia.org/packages_c.html">http://maintdb.mageia.org/packages_c.html</A>
+...
+The list of all packages and their maintainers, in text format :
+<A HREF="http://maintdb.mageia.org/packages.txt">http://maintdb.mageia.org/packages.txt</A>
+With the output like this :
+package1:maintainerlogin1
+package2:maintainerlogin2
+package3:maintainerlogin3
+...
+
+***
+An html page to show the maintainer of one package (with
+[packagename] replaced with the name of a package) :
+<A HREF="http://maintdb.mageia.org/packages/[packagename">http://maintdb.mageia.org/packages/[packagename</A>].html
+The same in text format :
+<A HREF="http://maintdb.mageia.org/packages/[packagename">http://maintdb.mageia.org/packages/[packagename</A>].txt
+With output like this (only one line):
+packagename:maintainerlogin
+If the package is unmaintained, it appears like this :
+packagename:nobody
+If the package does not exist, an empty file is returned.
+
+***
+The list of maintainers (all maintainers who maintain at least one
+package) :
+<A HREF="http://maintdb.mageia.org/people.html">http://maintdb.mageia.org/people.html</A>
+
+***
+The list of packages maintained by someone (with [loginname] replaced by
+a login) :
+<A HREF="http://maintdb.mageia.org/people/[loginname">http://maintdb.mageia.org/people/[loginname</A>].html
+And the same in text format :
+<A HREF="http://maintdb.mageia.org/people/[loginname">http://maintdb.mageia.org/people/[loginname</A>].txt
+With the same format for output :
+package1:loginname
+package2:loginname
+package3:loginname
+...
+If the login does not exist, an empty file is returned.
+
+***
+The list of unmaintained packages :
+<A HREF="http://maintdb.mageia.org/people/nobody.html">http://maintdb.mageia.org/people/nobody.html</A>
+And the same in text format :
+<A HREF="http://maintdb.mageia.org/people/nobody.txt">http://maintdb.mageia.org/people/nobody.txt</A>
+With this output :
+package1:nobody
+package2:nobody
+package3:nobody
+...
+
+***
+The URL to add a package, used by the buildsystem when a package is
+uploaded on the repository :
+<A HREF="https://maintdb.mageia.org/admin/setnewpackage">https://maintdb.mageia.org/admin/setnewpackage</A>
+Protected with basic http authentication (with a login/password that was
+set in maintdb or apache configuration).
+Accessed with a POST request and the following two arguments :
+package: [packagename]
+maintainer: [maintainername]
+If the package already exists in the database, it is not updated.
+
+***
+The same as the previous URL, but the package maintainer is updated when
+the package already exists in the database :
+<A HREF="https://maintdb.mageia.org/admin/setpackage">https://maintdb.mageia.org/admin/setpackage</A>
+
+---------
+
+Maintainers also need to be able to drop maintainership of their
+packages, and take maintainership of unmaintained packages. For doing
+this, I think there is two solutions :
+
+1) On the html pages, maintainers are able to authenticate using
+ their login and ldap password. When authenticated, the packages
+ maintained by nobody have a link &quot;take maintainership&quot;. And the
+ packages maintained by the authenticated user have a link &quot;drop
+ maintainership&quot;.
+
+2) The website does not allow changing maintainership. Instead, we add a
+ command in mgarepo to do it. And to do it, mgarepo connects to valstar,
+ is authenticated by ssh, and run a script on valstar to request the
+ change. This script has access to the admin password and will connect
+ to the &quot;admin/setpackage&quot; URL to update the package maintainer.
+
+I think the 2nd solution is better, because it allows scripting, for
+example to drop/take maintainership of all packages using a regexp.
+You manage maintainership using the same tool used to submit packages.
+And I think it's maybe less work to implement it as it avoids adding ldap
+authentication in maintdb, and creating pages to do the updates. Maybe
+we also don't need html pages at all in that case.
+
+And I think that's all we need for the first version.
+
+If we compare with the maintainers db website used at mandriva, their
+version also has :
+ - media name for each package, with pages to list packages from only
+ one media
+ - a search box to search for a package
+ - links to bugzilla for each package
+But I don't think we should store the media name in maintdb. And to
+search for packages, see media names, find bugs, we should use sophie
+or mageia-app-db instead. Actually users who want to see the maintainers
+of packages should probably also use mageia-app-db or sophie.
+
+maintdb should mainly be used in the following cases :
+ - by sophie, mageia-app-db and other package databases which want to show
+ maintainers of packages. They download the full list of packages and
+ maintainers every day (or hours) from the text file, to synchronize
+ with their database.
+ - by bugzilla if we want to assign bugs automatically to maintainer
+ - by build system or svn, for example if we want to send emails to package
+ maintainers when someone else commits to their packages
+ - by other tools which may need it ...
+
+
+
+For version 2 or later, we can also have those features :
+ - a changelog page, to see who took/dropped maintainership of which
+ packages. Maybe with an rss too. And a text files containing the
+ changes from the last 2 days (to avoid downloading the full list, if
+ you only want to synchronise).
+ - an URL to remove package (with admin password):
+ <A HREF="https://maintdb.mageia.org/admin/removepackage">https://maintdb.mageia.org/admin/removepackage</A>
+ - maybe support for groups and/or multiple maintainers
+
+For groups, we'll first have to see where we want to store them. But
+for the maintdb text output, we could use something like this :
+package1:maintainer1,maintainer2,maintainer3
+package2:%group1
+package3:%group2,maintainer4
+...
+
+And with the following pages to list packages maintained by a group :
+<A HREF="http://maintdb.mageia.org/groups/groups/[groupname">http://maintdb.mageia.org/groups/groups/[groupname</A>].html
+<A HREF="http://maintdb.mageia.org/groups/groups/[groupname">http://maintdb.mageia.org/groups/groups/[groupname</A>].txt
+
+
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000430.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000432.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#431">[ date ]</a>
+ <a href="thread.html#431">[ thread ]</a>
+ <a href="subject.html#431">[ subject ]</a>
+ <a href="author.html#431">[ 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-March/000432.html b/zarb-ml/mageia-webteam/2011-March/000432.html
new file mode 100644
index 000000000..90e266a64
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000432.html
@@ -0,0 +1,189 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Proposal for maintainers database API
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3C1299574095.8638.6.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000431.html">
+ <LINK REL="Next" HREF="000433.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Proposal for maintainers database API</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3C1299574095.8638.6.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Proposal for maintainers database API">misc at zarb.org
+ </A><BR>
+ <I>Tue Mar 8 09:48:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000431.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000433.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#432">[ date ]</a>
+ <a href="thread.html#432">[ thread ]</a>
+ <a href="subject.html#432">[ subject ]</a>
+ <a href="author.html#432">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 08 mars 2011 &#224; 03:53 +0100, nicolas vigier a &#233;crit :
+&gt;<i> Here is a proposal for an API that can be used on the maintainers
+</I>&gt;<i> database, with the list of URLs and what they should do :
+</I>&gt;<i>
+</I>&gt;<i> ***
+</I>&gt;<i> An html page with the list of all packages, and their maintainer :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/packages.html">http://maintdb.mageia.org/packages.html</A>
+</I>&gt;<i> As we have many packages, the page will be long, so maybe we want to
+</I>&gt;<i> split the list by first letter of package name :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/packages_a.html">http://maintdb.mageia.org/packages_a.html</A>
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/packages_b.html">http://maintdb.mageia.org/packages_b.html</A>
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/packages_c.html">http://maintdb.mageia.org/packages_c.html</A>
+</I>
+Hi,
+
+Thee is other paging system in rails and similar framework, no need to
+specify this ( and I also think this is not part of a API ).
+
+&gt;<i> The list of all packages and their maintainers, in text format :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/packages.txt">http://maintdb.mageia.org/packages.txt</A>
+</I>&gt;<i> With the output like this :
+</I>&gt;<i> package1:maintainerlogin1
+</I>&gt;<i> package2:maintainerlogin2
+</I>&gt;<i> package3:maintainerlogin3
+</I>&gt;<i> ...
+</I>&gt;<i>
+</I>&gt;<i> ***
+</I>&gt;<i> An html page to show the maintainer of one package (with
+</I>&gt;<i> [packagename] replaced with the name of a package) :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/packages/[packagename">http://maintdb.mageia.org/packages/[packagename</A>].html
+</I>&gt;<i> The same in text format :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/packages/[packagename">http://maintdb.mageia.org/packages/[packagename</A>].txt
+</I>&gt;<i> With output like this (only one line):
+</I>&gt;<i> packagename:maintainerlogin
+</I>&gt;<i> If the package is unmaintained, it appears like this :
+</I>&gt;<i> packagename:nobody
+</I>&gt;<i> If the package does not exist, an empty file is returned.
+</I>
+I would rather say :
+packagename:
+
+Using a name with a special meaning is just a special case to be placed
+everywhere.
+
+&gt;<i> ***
+</I>&gt;<i> The list of maintainers (all maintainers who maintain at least one
+</I>&gt;<i> package) :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/people.html">http://maintdb.mageia.org/people.html</A>
+</I>&gt;<i>
+</I>&gt;<i> ***
+</I>&gt;<i> The list of packages maintained by someone (with [loginname] replaced by
+</I>&gt;<i> a login) :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/people/[loginname">http://maintdb.mageia.org/people/[loginname</A>].html
+</I>&gt;<i> And the same in text format :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/people/[loginname">http://maintdb.mageia.org/people/[loginname</A>].txt
+</I>&gt;<i> With the same format for output :
+</I>&gt;<i> package1:loginname
+</I>&gt;<i> package2:loginname
+</I>&gt;<i> package3:loginname
+</I>&gt;<i> ...
+</I>&gt;<i> If the login does not exist, an empty file is returned.
+</I>
+A REST API would give a 404, that's also something everybdy doing HTTP
+should grasp and understand.
+
+
+&gt;<i> ***
+</I>&gt;<i> The list of unmaintained packages :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/people/nobody.html">http://maintdb.mageia.org/people/nobody.html</A>
+</I>&gt;<i> And the same in text format :
+</I>&gt;<i> <A HREF="http://maintdb.mageia.org/people/nobody.txt">http://maintdb.mageia.org/people/nobody.txt</A>
+</I>&gt;<i> With this output :
+</I>&gt;<i> package1:nobody
+</I>&gt;<i> package2:nobody
+</I>&gt;<i> package3:nobody
+</I>&gt;<i> ...
+</I>
+I would use a different url for unmaintained packages rather than
+nobody. Adding special case is not very clean, as said before.
+
+&gt;<i> ***
+</I>&gt;<i> The URL to add a package, used by the buildsystem when a package is
+</I>&gt;<i> uploaded on the repository :
+</I>&gt;<i> <A HREF="https://maintdb.mageia.org/admin/setnewpackage">https://maintdb.mageia.org/admin/setnewpackage</A>
+</I>&gt;<i> Protected with basic http authentication (with a login/password that was
+</I>&gt;<i> set in maintdb or apache configuration).
+</I>&gt;<i> Accessed with a POST request and the following two arguments :
+</I>&gt;<i> package: [packagename]
+</I>&gt;<i> maintainer: [maintainername]
+</I>&gt;<i> If the package already exists in the database, it is not updated.
+</I>&gt;<i>
+</I>&gt;<i> ***
+</I>&gt;<i> The same as the previous URL, but the package maintainer is updated when
+</I>&gt;<i> the package already exists in the database :
+</I>&gt;<i> <A HREF="https://maintdb.mageia.org/admin/setpackage">https://maintdb.mageia.org/admin/setpackage</A>
+</I>
+IMHO, it would be easier to have just 1 url :
+
+/upload/$package/$login/ ( and either protect this at http level, or
+using a key somewhere in the url )
+
+
+&gt;<i> If we compare with the maintainers db website used at mandriva, their
+</I>&gt;<i> version also has :
+</I>&gt;<i> - media name for each package, with pages to list packages from only
+</I>&gt;<i> one media
+</I>&gt;<i> - a search box to search for a package
+</I>&gt;<i> - links to bugzilla for each package
+</I>&gt;<i> But I don't think we should store the media name in maintdb.
+</I>
+That's indeed inflexible, if we want to have a package in more than one
+media.
+
+&gt;<i> maintdb should mainly be used in the following cases :
+</I>&gt;<i> - by sophie, mageia-app-db and other package databases which want to show
+</I>&gt;<i> maintainers of packages. They download the full list of packages and
+</I>&gt;<i> maintainers every day (or hours) from the text file, to synchronize
+</I>&gt;<i> with their database.
+</I>
+So then we should ask them what they would prefer. I knw for usre that
+reusing the mandriva format, or the fedora format will ease the work on
+sophie side.
+
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000431.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000433.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#432">[ date ]</a>
+ <a href="thread.html#432">[ thread ]</a>
+ <a href="subject.html#432">[ subject ]</a>
+ <a href="author.html#432">[ 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-March/000433.html b/zarb-ml/mageia-webteam/2011-March/000433.html
new file mode 100644
index 000000000..fb90d1953
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000433.html
@@ -0,0 +1,251 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Proposal for maintainers database API
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTik7CWDvcRtXo1k%2BJwvULB5Mmbor8J-O58d3AMM8%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="000432.html">
+ <LINK REL="Next" HREF="000434.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Proposal for maintainers database API</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTik7CWDvcRtXo1k%2BJwvULB5Mmbor8J-O58d3AMM8%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Proposal for maintainers database API">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Mar 8 11:04:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000432.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000434.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#433">[ date ]</a>
+ <a href="thread.html#433">[ thread ]</a>
+ <a href="subject.html#433">[ subject ]</a>
+ <a href="author.html#433">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 8 March 2011 08:48, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; wrote:
+
+&gt;<i> Le mardi 08 mars 2011 &#224; 03:53 +0100, nicolas vigier a &#233;crit :
+</I>&gt;<i> &gt; Here is a proposal for an API that can be used on the maintainers
+</I>&gt;<i> &gt; database, with the list of URLs and what they should do :
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; An html page with the list of all packages, and their maintainer :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages.html">http://maintdb.mageia.org/packages.html</A>
+</I>&gt;<i> &gt; As we have many packages, the page will be long, so maybe we want to
+</I>&gt;<i> &gt; split the list by first letter of package name :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages_a.html">http://maintdb.mageia.org/packages_a.html</A>
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages_b.html">http://maintdb.mageia.org/packages_b.html</A>
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages_c.html">http://maintdb.mageia.org/packages_c.html</A>
+</I>&gt;<i>
+</I>&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> Thee is other paging system in rails and similar framework, no need to
+</I>&gt;<i> specify this ( and I also think this is not part of a API ).
+</I>&gt;<i>
+</I>
+
+ Indeed that is the case, so we can have a paging system, with no need for
+different pages.
+ If on the other hand we want to split them by the first letter, again that
+is possible.
+ So we could try with the simple paging system and if people find it more
+useful to have them split by name, we can do that later on.
+
+
+&gt;<i>
+</I>&gt;<i> &gt; The list of all packages and their maintainers, in text format :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages.txt">http://maintdb.mageia.org/packages.txt</A>
+</I>&gt;<i> &gt; With the output like this :
+</I>&gt;<i> &gt; package1:maintainerlogin1
+</I>&gt;<i> &gt; package2:maintainerlogin2
+</I>&gt;<i> &gt; package3:maintainerlogin3
+</I>&gt;<i> &gt; ...
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; An html page to show the maintainer of one package (with
+</I>&gt;<i> &gt; [packagename] replaced with the name of a package) :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages/[packagename">http://maintdb.mageia.org/packages/[packagename</A>].html
+</I>&gt;<i> &gt; The same in text format :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages/[packagename">http://maintdb.mageia.org/packages/[packagename</A>].txt
+</I>&gt;<i> &gt; With output like this (only one line):
+</I>&gt;<i> &gt; packagename:maintainerlogin
+</I>&gt;<i> &gt; If the package is unmaintained, it appears like this :
+</I>&gt;<i> &gt; packagename:nobody
+</I>&gt;<i> &gt; If the package does not exist, an empty file is returned.
+</I>&gt;<i>
+</I>&gt;<i> I would rather say :
+</I>&gt;<i> packagename:
+</I>&gt;<i>
+</I>&gt;<i> Using a name with a special meaning is just a special case to be placed
+</I>&gt;<i> everywhere.
+</I>&gt;<i>
+</I>&gt;<i>
+</I> It currently uses the package id for displaying information, but I could
+have a look to see if it's possible to have it using the package name, which
+I have the feeling that it is.
+At the moment you can find information about a package by using the All link
+at the top.
+There will also be a search box that gives the same information.
+For finding information about a specific package the format used is:
+url/spackage/id
+(spackage was named like that to dinstinguish it from the compiled packages
+- cpackage. If there is no need for compiled packages information as I've
+seen somewhere that can be removed)
+
+
+&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The list of maintainers (all maintainers who maintain at least one
+</I>&gt;<i> &gt; package) :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people.html">http://maintdb.mageia.org/people.html</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The list of packages maintained by someone (with [loginname] replaced by
+</I>&gt;<i> &gt; a login) :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people/[loginname">http://maintdb.mageia.org/people/[loginname</A>].html
+</I>&gt;<i> &gt; And the same in text format :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people/[loginname">http://maintdb.mageia.org/people/[loginname</A>].txt
+</I>&gt;<i> &gt; With the same format for output :
+</I>&gt;<i> &gt; package1:loginname
+</I>&gt;<i> &gt; package2:loginname
+</I>&gt;<i> &gt; package3:loginname
+</I>&gt;<i> &gt; ...
+</I>&gt;<i> &gt; If the login does not exist, an empty file is returned.
+</I>&gt;<i>
+</I>&gt;<i> A REST API would give a 404, that's also something everybdy doing HTTP
+</I>&gt;<i> should grasp and understand.
+</I>&gt;<i>
+</I>&gt;<i>
+</I> That's what is used at the moment (REST-404).
+ For the list of maintainers the url is:
+ <A HREF="http://maintdb.mageia.orgl/maintainers">http://maintdb.mageia.orgl/maintainers</A>
+The extra information in there about first name, surname can be removed.
+
+
+&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The list of unmaintained packages :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people/nobody.html">http://maintdb.mageia.org/people/nobody.html</A>
+</I>&gt;<i> &gt; And the same in text format :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people/nobody.txt">http://maintdb.mageia.org/people/nobody.txt</A>
+</I>&gt;<i> &gt; With this output :
+</I>&gt;<i> &gt; package1:nobody
+</I>&gt;<i> &gt; package2:nobody
+</I>&gt;<i> &gt; package3:nobody
+</I>&gt;<i> &gt; ...
+</I>&gt;<i>
+</I>&gt;<i> I would use a different url for unmaintained packages rather than
+</I>&gt;<i> nobody. Adding special case is not very clean, as said before.
+</I>&gt;<i>
+</I>
+ I agree with Michael, and say that probably a url like:
+ <A HREF="http://maintdb.mageia.org/umaintained">http://maintdb.mageia.org/umaintained</A>
+ would give the list of all umaintained packages
+
+
+&gt;<i>
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The URL to add a package, used by the buildsystem when a package is
+</I>&gt;<i> &gt; uploaded on the repository :
+</I>&gt;<i> &gt; <A HREF="https://maintdb.mageia.org/admin/setnewpackage">https://maintdb.mageia.org/admin/setnewpackage</A>
+</I>&gt;<i> &gt; Protected with basic http authentication (with a login/password that was
+</I>&gt;<i> &gt; set in maintdb or apache configuration).
+</I>&gt;<i> &gt; Accessed with a POST request and the following two arguments :
+</I>&gt;<i> &gt; package: [packagename]
+</I>&gt;<i> &gt; maintainer: [maintainername]
+</I>&gt;<i> &gt; If the package already exists in the database, it is not updated.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The same as the previous URL, but the package maintainer is updated when
+</I>&gt;<i> &gt; the package already exists in the database :
+</I>&gt;<i> &gt; <A HREF="https://maintdb.mageia.org/admin/setpackage">https://maintdb.mageia.org/admin/setpackage</A>
+</I>&gt;<i>
+</I>&gt;<i> IMHO, it would be easier to have just 1 url :
+</I>&gt;<i>
+</I>&gt;<i> /upload/$package/$login/ ( and either protect this at http level, or
+</I>&gt;<i> using a key somewhere in the url )
+</I>&gt;<i>
+</I>&gt;<i>
+</I> Agree. Either way is possible so if there a preferred way we can try that
+first.
+
+
+&gt;<i>
+</I>&gt;<i> &gt; If we compare with the maintainers db website used at mandriva, their
+</I>&gt;<i> &gt; version also has :
+</I>&gt;<i> &gt; - media name for each package, with pages to list packages from only
+</I>&gt;<i> &gt; one media
+</I>&gt;<i> &gt; - a search box to search for a package
+</I>&gt;<i> &gt; - links to bugzilla for each package
+</I>&gt;<i> &gt; But I don't think we should store the media name in maintdb.
+</I>&gt;<i>
+</I>&gt;<i> That's indeed inflexible, if we want to have a package in more than one
+</I>&gt;<i> media.
+</I>&gt;<i>
+</I>
+ That shouldn't be any problem.
+ We would only need to change the relationship between media and packages,
+which is fine.
+ Again, if we don't want it to look like the mandriva, then we are flexible
+to decide how it would work and what we can display.
+ We had to base it on something to start, but that could change easily.
+
+
+&gt;<i>
+</I>&gt;<i> &gt; maintdb should mainly be used in the following cases :
+</I>&gt;<i> &gt; - by sophie, mageia-app-db and other package databases which want to
+</I>&gt;<i> show
+</I>&gt;<i> &gt; maintainers of packages. They download the full list of packages and
+</I>&gt;<i> &gt; maintainers every day (or hours) from the text file, to synchronize
+</I>&gt;<i> &gt; with their database.
+</I>&gt;<i>
+</I>&gt;<i> So then we should ask them what they would prefer. I knw for usre that
+</I>&gt;<i> reusing the mandriva format, or the fedora format will ease the work on
+</I>&gt;<i> sophie side.
+</I>&gt;<i>
+</I>&gt;<i>
+</I> Not sure which format was used before, but again I don't see any problem
+using whatever makes it easier for people that use it.
+ Let me know what you would like it to do and then I'll try and do it.
+
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110308/bec52acb/attachment-0001.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000432.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000434.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#433">[ date ]</a>
+ <a href="thread.html#433">[ thread ]</a>
+ <a href="subject.html#433">[ subject ]</a>
+ <a href="author.html#433">[ 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-March/000434.html b/zarb-ml/mageia-webteam/2011-March/000434.html
new file mode 100644
index 000000000..0537ce18a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000434.html
@@ -0,0 +1,236 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Proposal for maintainers database API
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3C20110308121350.GE21938%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="000433.html">
+ <LINK REL="Next" HREF="000438.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Proposal for maintainers database API</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3C20110308121350.GE21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Proposal for maintainers database API">boklm at mars-attacks.org
+ </A><BR>
+ <I>Tue Mar 8 13:13:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000433.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000438.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#434">[ date ]</a>
+ <a href="thread.html#434">[ thread ]</a>
+ <a href="subject.html#434">[ subject ]</a>
+ <a href="author.html#434">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, 08 Mar 2011, Michael Scherer wrote:
+
+&gt;<i> Le mardi 08 mars 2011 &#224; 03:53 +0100, nicolas vigier a &#233;crit :
+</I>&gt;<i> &gt; Here is a proposal for an API that can be used on the maintainers
+</I>&gt;<i> &gt; database, with the list of URLs and what they should do :
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; An html page with the list of all packages, and their maintainer :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages.html">http://maintdb.mageia.org/packages.html</A>
+</I>&gt;<i> &gt; As we have many packages, the page will be long, so maybe we want to
+</I>&gt;<i> &gt; split the list by first letter of package name :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages_a.html">http://maintdb.mageia.org/packages_a.html</A>
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages_b.html">http://maintdb.mageia.org/packages_b.html</A>
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages_c.html">http://maintdb.mageia.org/packages_c.html</A>
+</I>&gt;<i>
+</I>&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> Thee is other paging system in rails and similar framework, no need to
+</I>&gt;<i> specify this ( and I also think this is not part of a API ).
+</I>
+Yes, ok. Maybe I should not have mentioned html pages as they are probably
+not needed.
+
+&gt;<i>
+</I>&gt;<i> &gt; The list of all packages and their maintainers, in text format :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages.txt">http://maintdb.mageia.org/packages.txt</A>
+</I>&gt;<i> &gt; With the output like this :
+</I>&gt;<i> &gt; package1:maintainerlogin1
+</I>&gt;<i> &gt; package2:maintainerlogin2
+</I>&gt;<i> &gt; package3:maintainerlogin3
+</I>&gt;<i> &gt; ...
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; An html page to show the maintainer of one package (with
+</I>&gt;<i> &gt; [packagename] replaced with the name of a package) :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages/[packagename">http://maintdb.mageia.org/packages/[packagename</A>].html
+</I>&gt;<i> &gt; The same in text format :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/packages/[packagename">http://maintdb.mageia.org/packages/[packagename</A>].txt
+</I>&gt;<i> &gt; With output like this (only one line):
+</I>&gt;<i> &gt; packagename:maintainerlogin
+</I>&gt;<i> &gt; If the package is unmaintained, it appears like this :
+</I>&gt;<i> &gt; packagename:nobody
+</I>&gt;<i> &gt; If the package does not exist, an empty file is returned.
+</I>&gt;<i>
+</I>&gt;<i> I would rather say :
+</I>&gt;<i> packagename:
+</I>&gt;<i>
+</I>&gt;<i> Using a name with a special meaning is just a special case to be placed
+</I>&gt;<i> everywhere.
+</I>
+Using an empty string is as much a special case as using 'nobody'. But I
+would avoid using an empty string, as we cannot use empty string in URLs,
+so it require a special case for the URL to list unmaintained packages.
+It also require a special case for applications that display maintainer :
+ &quot;This package is maintained by nobody.&quot;
+ or
+ &quot;This package is maintained by .&quot;
+In the 2nd case, applications have to handle a special case for
+unmaintained packages. In the 1st case they can handle it too if they
+want, but they don't have to.
+
+&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The list of maintainers (all maintainers who maintain at least one
+</I>&gt;<i> &gt; package) :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people.html">http://maintdb.mageia.org/people.html</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The list of packages maintained by someone (with [loginname] replaced by
+</I>&gt;<i> &gt; a login) :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people/[loginname">http://maintdb.mageia.org/people/[loginname</A>].html
+</I>&gt;<i> &gt; And the same in text format :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people/[loginname">http://maintdb.mageia.org/people/[loginname</A>].txt
+</I>&gt;<i> &gt; With the same format for output :
+</I>&gt;<i> &gt; package1:loginname
+</I>&gt;<i> &gt; package2:loginname
+</I>&gt;<i> &gt; package3:loginname
+</I>&gt;<i> &gt; ...
+</I>&gt;<i> &gt; If the login does not exist, an empty file is returned.
+</I>&gt;<i>
+</I>&gt;<i> A REST API would give a 404, that's also something everybdy doing HTTP
+</I>&gt;<i> should grasp and understand.
+</I>
+I think returning an empty list makes more sense than an error. A user
+that does not exist in maintdb database doesn't mean that the user does
+not exist, it only means he maintains 0 packages.
+
+&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The list of unmaintained packages :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people/nobody.html">http://maintdb.mageia.org/people/nobody.html</A>
+</I>&gt;<i> &gt; And the same in text format :
+</I>&gt;<i> &gt; <A HREF="http://maintdb.mageia.org/people/nobody.txt">http://maintdb.mageia.org/people/nobody.txt</A>
+</I>&gt;<i> &gt; With this output :
+</I>&gt;<i> &gt; package1:nobody
+</I>&gt;<i> &gt; package2:nobody
+</I>&gt;<i> &gt; package3:nobody
+</I>&gt;<i> &gt; ...
+</I>&gt;<i>
+</I>&gt;<i> I would use a different url for unmaintained packages rather than
+</I>&gt;<i> nobody. Adding special case is not very clean, as said before.
+</I>
+I think the special case would be to use a different URL for unmaintained
+and maintained packages.
+
+&gt;<i>
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The URL to add a package, used by the buildsystem when a package is
+</I>&gt;<i> &gt; uploaded on the repository :
+</I>&gt;<i> &gt; <A HREF="https://maintdb.mageia.org/admin/setnewpackage">https://maintdb.mageia.org/admin/setnewpackage</A>
+</I>&gt;<i> &gt; Protected with basic http authentication (with a login/password that was
+</I>&gt;<i> &gt; set in maintdb or apache configuration).
+</I>&gt;<i> &gt; Accessed with a POST request and the following two arguments :
+</I>&gt;<i> &gt; package: [packagename]
+</I>&gt;<i> &gt; maintainer: [maintainername]
+</I>&gt;<i> &gt; If the package already exists in the database, it is not updated.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; ***
+</I>&gt;<i> &gt; The same as the previous URL, but the package maintainer is updated when
+</I>&gt;<i> &gt; the package already exists in the database :
+</I>&gt;<i> &gt; <A HREF="https://maintdb.mageia.org/admin/setpackage">https://maintdb.mageia.org/admin/setpackage</A>
+</I>&gt;<i>
+</I>&gt;<i> IMHO, it would be easier to have just 1 url :
+</I>&gt;<i>
+</I>&gt;<i> /upload/$package/$login/ ( and either protect this at http level, or
+</I>&gt;<i> using a key somewhere in the url )
+</I>
+According to this wikipedia page :
+<A HREF="http://en.wikipedia.org/wiki/POST_%28HTTP%29#Affecting_server_state">http://en.wikipedia.org/wiki/POST_%28HTTP%29#Affecting_server_state</A>
+&quot;Per RFC 2616, the POST method should be used for any context in which a
+request is non-idempotent: that is, it causes a change in server state
+each time it is performed, such as submitting a comment to a blog post
+or voting in an online poll.&quot;
+
+So I think it's better to use a POST request in our case.
+
+&gt;<i> &gt; If we compare with the maintainers db website used at mandriva, their
+</I>&gt;<i> &gt; version also has :
+</I>&gt;<i> &gt; - media name for each package, with pages to list packages from only
+</I>&gt;<i> &gt; one media
+</I>&gt;<i> &gt; - a search box to search for a package
+</I>&gt;<i> &gt; - links to bugzilla for each package
+</I>&gt;<i> &gt; But I don't think we should store the media name in maintdb.
+</I>&gt;<i>
+</I>&gt;<i> That's indeed inflexible, if we want to have a package in more than one
+</I>&gt;<i> media.
+</I>&gt;<i>
+</I>&gt;<i> &gt; maintdb should mainly be used in the following cases :
+</I>&gt;<i> &gt; - by sophie, mageia-app-db and other package databases which want to show
+</I>&gt;<i> &gt; maintainers of packages. They download the full list of packages and
+</I>&gt;<i> &gt; maintainers every day (or hours) from the text file, to synchronize
+</I>&gt;<i> &gt; with their database.
+</I>&gt;<i>
+</I>&gt;<i> So then we should ask them what they would prefer. I knw for usre that
+</I>&gt;<i> reusing the mandriva format, or the fedora format will ease the work on
+</I>&gt;<i> sophie side.
+</I>
+The mandriva format :
+<A HREF="http://maint.mandriva.com/lookup.php">http://maint.mandriva.com/lookup.php</A>
+
+It's :
+packagename <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">email at domain</A>
+
+I think using ':' instead ' ' to separate package and maintainer is
+not difficult to change in sophie. And I think ':' looks nicer, but it's
+not very important so I don't really care which one we use.
+However I don't think we should use email address to identify
+maintainers. We are already using login name on svn and pkgsubmit, so we
+should do the same in maintdb. And if applications need an email, they
+can use &quot;$<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">login at mageia.org</A>&quot;.
+
+
+No comment about using the website to take/drop maintainership, or using
+a command line tool ?
+
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000433.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000438.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#434">[ date ]</a>
+ <a href="thread.html#434">[ thread ]</a>
+ <a href="subject.html#434">[ subject ]</a>
+ <a href="author.html#434">[ 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-March/000435.html b/zarb-ml/mageia-webteam/2011-March/000435.html
new file mode 100644
index 000000000..f3e22dbcc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000435.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia Calendar
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Calendar&In-Reply-To=%3CAANLkTi%3D%3D3EE_q%3D4ivLji2DwSm9RVhOeLou5qMD82U0Uj%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="000443.html">
+ <LINK REL="Next" HREF="000436.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia Calendar</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Calendar&In-Reply-To=%3CAANLkTi%3D%3D3EE_q%3D4ivLji2DwSm9RVhOeLou5qMD82U0Uj%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia Calendar">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue Mar 8 13:22:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000443.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000436.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#435">[ date ]</a>
+ <a href="thread.html#435">[ thread ]</a>
+ <a href="subject.html#435">[ subject ]</a>
+ <a href="author.html#435">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I just noticed there is a difference between the calendar display on
+the Mageia page <A HREF="http://mageia.org/en/calendar/">http://mageia.org/en/calendar/</A> and the Google display
+(when you click on the small button &quot;Google calendar&quot; in the lower
+right border of the calendar:
+
+On the Google display it shows the entry for i18n meeting on Thursday,
+March 10, 17:30 UTC - in the display of the calendar on the Mageia
+page this entry does not show (while all other meeting schedules show.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000443.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000436.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#435">[ date ]</a>
+ <a href="thread.html#435">[ thread ]</a>
+ <a href="subject.html#435">[ subject ]</a>
+ <a href="author.html#435">[ 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-March/000436.html b/zarb-ml/mageia-webteam/2011-March/000436.html
new file mode 100644
index 000000000..a75bed820
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000436.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia Calendar
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Calendar&In-Reply-To=%3CAANLkTimC42qJ_z3OhR0k%2B6WTh7Fux876UYcuYPYDGu%3Do%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="000435.html">
+ <LINK REL="Next" HREF="000437.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia Calendar</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Calendar&In-Reply-To=%3CAANLkTimC42qJ_z3OhR0k%2B6WTh7Fux876UYcuYPYDGu%3Do%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia Calendar">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 8 14:17:33 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000435.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI>Next message: <A HREF="000437.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#436">[ date ]</a>
+ <a href="thread.html#436">[ thread ]</a>
+ <a href="subject.html#436">[ subject ]</a>
+ <a href="author.html#436">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 8, 2011 at 13:22, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> On the Google display it shows the entry for i18n meeting on Thursday,
+</I>&gt;<i> March 10, 17:30 UTC - in the display of the calendar on the Mageia
+</I>&gt;<i> page this entry does not show (while all other meeting schedules show.
+</I>
+Starting this week, I don't see it on either my google calendar or the
+mageia calendar page.
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000435.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI>Next message: <A HREF="000437.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#436">[ date ]</a>
+ <a href="thread.html#436">[ thread ]</a>
+ <a href="subject.html#436">[ subject ]</a>
+ <a href="author.html#436">[ 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-March/000437.html b/zarb-ml/mageia-webteam/2011-March/000437.html
new file mode 100644
index 000000000..a51e8a094
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000437.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia Calendar
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Calendar&In-Reply-To=%3CAANLkTimqFP69cOAsM6q0QkHURCP0GHYCwvbzOx5B-6iy%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="000436.html">
+ <LINK REL="Next" HREF="000439.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia Calendar</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Calendar&In-Reply-To=%3CAANLkTimqFP69cOAsM6q0QkHURCP0GHYCwvbzOx5B-6iy%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia Calendar">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue Mar 8 14:25:10 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000436.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI>Next message: <A HREF="000439.html">[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#437">[ date ]</a>
+ <a href="thread.html#437">[ thread ]</a>
+ <a href="subject.html#437">[ subject ]</a>
+ <a href="author.html#437">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/8 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+&gt;<i> On Tue, Mar 8, 2011 at 13:22, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> On the Google display it shows the entry for i18n meeting on Thursday,
+</I>&gt;&gt;<i> March 10, 17:30 UTC - in the display of the calendar on the Mageia
+</I>&gt;&gt;<i> page this entry does not show (while all other meeting schedules show.
+</I>&gt;<i>
+</I>&gt;<i> Starting this week, I don't see it on either my google calendar or the
+</I>&gt;<i> mageia calendar page.
+</I>
+You can't! :)
+Because I stepped into the trap of different calendars. I entered the
+meeting as an event in MY calendar, not the Mageia meeting calendar!
+:<i>( Corrected, shows now in Mageia calendar.
+</I>
+Sorry for the alert!
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000436.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI>Next message: <A HREF="000439.html">[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#437">[ date ]</a>
+ <a href="thread.html#437">[ thread ]</a>
+ <a href="subject.html#437">[ subject ]</a>
+ <a href="author.html#437">[ 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-March/000438.html b/zarb-ml/mageia-webteam/2011-March/000438.html
new file mode 100644
index 000000000..abfe1235e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000438.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Proposal for maintainers database API
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTi%3DyDYnZszzvwtaSUw9%3DVJNS4mYS6S9RBi%2BmBLBM%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="000434.html">
+ <LINK REL="Next" HREF="000440.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Proposal for maintainers database API</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTi%3DyDYnZszzvwtaSUw9%3DVJNS4mYS6S9RBi%2BmBLBM%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Proposal for maintainers database API">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 8 15:55:37 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000434.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000440.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#438">[ date ]</a>
+ <a href="thread.html#438">[ thread ]</a>
+ <a href="subject.html#438">[ subject ]</a>
+ <a href="author.html#438">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 8, 2011 at 13:13, nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; wrote:
+&gt;<i> No comment about using the website to take/drop maintainership, or using
+</I>&gt;<i> a command line tool ?
+</I>
+Both in the end. But I am not sure how to manage the authorization (or
+the drop) in both cases:
+ * through web UI, that's easy: the user that drops has to be the very
+maintainer or an admin;
+ * through the CLI, would it auth against the maintdb app or through
+the buildsystem that, in turn, would notify the maintdb?
+
+(but that may be just over specification to this point)
+
+Aside, I've written down this
+<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb#specs_actions">http://mageia.org/wiki/doku.php?id=web:maintdb#specs_actions</A> after
+having re-read this whole thread; it is likely incomplete but that's a
+possible outcome of the discussion: setting down what minimal
+behaviour is expected from the maintdb for it to be used.
+
+So that's not exclusive from what has been done by Kosmas until now,
+but it makes the app to need a few tweaks I believe.
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000434.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000440.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#438">[ date ]</a>
+ <a href="thread.html#438">[ thread ]</a>
+ <a href="subject.html#438">[ subject ]</a>
+ <a href="author.html#438">[ 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-March/000439.html b/zarb-ml/mageia-webteam/2011-March/000439.html
new file mode 100644
index 000000000..af7804d3d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000439.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list
+ </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%20308%5D%20%5BNew%5D%20There%27s%20no%20OLD%20in%20the%20Resolved%0A%09statuses%20list&In-Reply-To=%3Cbug-308-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="000437.html">
+ <LINK REL="Next" HREF="000445.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20308%5D%20%5BNew%5D%20There%27s%20no%20OLD%20in%20the%20Resolved%0A%09statuses%20list&In-Reply-To=%3Cbug-308-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 8 16:25:26 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000437.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI>Next message: <A HREF="000445.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#439">[ date ]</a>
+ <a href="thread.html#439">[ thread ]</a>
+ <a href="subject.html#439">[ subject ]</a>
+ <a href="author.html#439">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=308">https://bugs.mageia.org/show_bug.cgi?id=308</A>
+
+ Summary: There's no OLD in the Resolved statuses list
+ 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">dmorganec at gmail.com</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>
+
+
+All in the subject, when selecting Resolved there's no 'OLD' option, this is
+useful to close bug reports where the reporter has gone MIA...
+
+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="000437.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI>Next message: <A HREF="000445.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#439">[ date ]</a>
+ <a href="thread.html#439">[ thread ]</a>
+ <a href="subject.html#439">[ subject ]</a>
+ <a href="author.html#439">[ 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-March/000440.html b/zarb-ml/mageia-webteam/2011-March/000440.html
new file mode 100644
index 000000000..3d87ebae0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000440.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Proposal for maintainers database API
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3C20110308155405.GG21938%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="000438.html">
+ <LINK REL="Next" HREF="000441.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Proposal for maintainers database API</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3C20110308155405.GG21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Proposal for maintainers database API">boklm at mars-attacks.org
+ </A><BR>
+ <I>Tue Mar 8 16:54:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000438.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000441.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#440">[ date ]</a>
+ <a href="thread.html#440">[ thread ]</a>
+ <a href="subject.html#440">[ subject ]</a>
+ <a href="author.html#440">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, 08 Mar 2011, Romain d'Alverny wrote:
+
+&gt;<i> On Tue, Mar 8, 2011 at 13:13, nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; wrote:
+</I>&gt;<i> &gt; No comment about using the website to take/drop maintainership, or using
+</I>&gt;<i> &gt; a command line tool ?
+</I>&gt;<i>
+</I>&gt;<i> Both in the end. But I am not sure how to manage the authorization (or
+</I>&gt;<i> the drop) in both cases:
+</I>&gt;<i> * through web UI, that's easy: the user that drops has to be the very
+</I>&gt;<i> maintainer or an admin;
+</I>
+Yes. And for taking maintainership, the package should not be currently
+maintained by someone (other than 'nobody').
+
+&gt;<i> * through the CLI, would it auth against the maintdb app or through
+</I>&gt;<i> the buildsystem that, in turn, would notify the maintdb?
+</I>
+It would auth through the buildsystem, the buildsystem checks that the
+user is either admin, maintainer of the package, or that the package is
+unmaintained (using maintdb public method), then forward the request to
+maintdb using the private method.
+
+Or the buildsystem can do the auth, and forward the request to maintdb
+private method without doing any check, but including in the request
+the login name of the user requesting the change so that maintdb can
+check the permission. This one is probably better if we want to allow
+changes using both website and CLI as it avoids doing the same checks
+in two different places.
+
+&gt;<i>
+</I>&gt;<i> (but that may be just over specification to this point)
+</I>&gt;<i>
+</I>&gt;<i> Aside, I've written down this
+</I>&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb#specs_actions">http://mageia.org/wiki/doku.php?id=web:maintdb#specs_actions</A> after
+</I>&gt;<i> having re-read this whole thread; it is likely incomplete but that's a
+</I>&gt;<i> possible outcome of the discussion: setting down what minimal
+</I>&gt;<i> behaviour is expected from the maintdb for it to be used.
+</I>
+It looks good.
+
+But I would change this :
+
+* POST <A HREF="https://maintdb/packages">https://maintdb/packages</A>
+ user - string - optional - login of the user pushing the package
+
+ The user string should not be optional but mandatory.
+
+
+* GET <A HREF="https://maintdb/packages">https://maintdb/packages</A>
+ Returns a list such as:
+ packagename / maintainers login / last commit date / url to bugs report / url to package repo
+
+ I don't think we should return url to bugs report and url to package
+ repo here. For the &quot;last commit date&quot;, we don't have this info. The
+ info we can have is &quot;last sucessful submit date&quot; (the last time the
+ private method was called on that package).
+
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000438.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000441.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#440">[ date ]</a>
+ <a href="thread.html#440">[ thread ]</a>
+ <a href="subject.html#440">[ subject ]</a>
+ <a href="author.html#440">[ 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-March/000441.html b/zarb-ml/mageia-webteam/2011-March/000441.html
new file mode 100644
index 000000000..15976b660
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000441.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Proposal for maintainers database API
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTimBK_DEn8a%3Dree8oxVNBfGGCmt3X_dtJzvQqip8%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="000440.html">
+ <LINK REL="Next" HREF="000442.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Proposal for maintainers database API</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTimBK_DEn8a%3Dree8oxVNBfGGCmt3X_dtJzvQqip8%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Proposal for maintainers database API">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 8 17:07:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000440.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000442.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#441">[ date ]</a>
+ <a href="thread.html#441">[ thread ]</a>
+ <a href="subject.html#441">[ subject ]</a>
+ <a href="author.html#441">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 8, 2011 at 16:54, nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; wrote:
+&gt;<i> On Tue, 08 Mar 2011, Romain d'Alverny wrote:
+</I>&gt;&gt;<i> &#160;* through the CLI, would it auth against the maintdb app or through
+</I>&gt;&gt;<i> the buildsystem that, in turn, would notify the maintdb?
+</I>&gt;<i> [...]
+</I>&gt;<i> Or the buildsystem can do the auth, and forward the request to maintdb
+</I>&gt;<i> private method without doing any check, but including in the request
+</I>&gt;<i> the login name of the user requesting the change so that maintdb can
+</I>&gt;<i> check the permission. This one is probably better if we want to allow
+</I>&gt;<i> changes using both website and CLI as it avoids doing the same checks
+</I>&gt;<i> in two different places.
+</I>
+Looks better that way, yes.
+
+So maintdb will need to know who is admin (can be checked later with a
+flag). Not sure, can be updated later:
+<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb#break_a_maintainer_package_association">http://mageia.org/wiki/doku.php?id=web:maintdb#break_a_maintainer_package_association</A>
+
+&gt;&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb#specs_actions">http://mageia.org/wiki/doku.php?id=web:maintdb#specs_actions</A> [...]
+</I>&gt;<i>
+</I>&gt;<i> But I would change this :
+</I>&gt;<i>
+</I>&gt;<i> * POST <A HREF="https://maintdb/packages">https://maintdb/packages</A>
+</I>&gt;<i> &#160;user - string - optional - login of the user pushing the package
+</I>&gt;<i>
+</I>&gt;<i> &#160;The user string should not be optional but mandatory.
+</I>
+Right. Fixed.
+
+&gt;<i> * GET <A HREF="https://maintdb/packages">https://maintdb/packages</A>
+</I>&gt;<i> &#160;Returns a list such as:
+</I>&gt;<i> &#160;packagename / maintainers login / last commit date / url to bugs report / url to package repo
+</I>&gt;<i>
+</I>&gt;<i> &#160;I don't think we should return url to bugs report and url to package
+</I>&gt;<i> &#160;repo here.
+</I>
+Ok. Then we must have clearly spec'd URLs for both so we can use them for sure.
+
+&gt;<i> For the &quot;last commit date&quot;, we don't have this info. The
+</I>&gt;<i> info we can have is &quot;last sucessful submit date&quot; (the last time the
+</I>&gt;<i> private method was called on that package).
+</I>
+Right, updated as well.
+
+
+Kosmas, would you have time this week to work on maintdb to port these
+interfaces to it or do you need help too?
+
+I can devote some time on it this week, but I'll have to figure out
+how to... well, I've got a conflict (RubyGem version error: rack(1.2.1
+not ~&gt; 1.1.0)) to make it run.
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000440.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000442.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#441">[ date ]</a>
+ <a href="thread.html#441">[ thread ]</a>
+ <a href="subject.html#441">[ subject ]</a>
+ <a href="author.html#441">[ 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-March/000442.html b/zarb-ml/mageia-webteam/2011-March/000442.html
new file mode 100644
index 000000000..345419679
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000442.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Proposal for maintainers database API
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTinsNs9q5RizXqaNA3fi88Z7eADfAEc98Eox3hOo%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="000441.html">
+ <LINK REL="Next" HREF="000443.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Proposal for maintainers database API</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTinsNs9q5RizXqaNA3fi88Z7eADfAEc98Eox3hOo%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Proposal for maintainers database API">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Mar 8 17:13:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000441.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000443.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#442">[ date ]</a>
+ <a href="thread.html#442">[ thread ]</a>
+ <a href="subject.html#442">[ subject ]</a>
+ <a href="author.html#442">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 8 March 2011 16:07, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+
+&gt;<i> On Tue, Mar 8, 2011 at 16:54, nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt;
+</I>&gt;<i> wrote:
+</I>&gt;<i> &gt; On Tue, 08 Mar 2011, Romain d'Alverny wrote:
+</I>&gt;<i> &gt;&gt; * through the CLI, would it auth against the maintdb app or through
+</I>&gt;<i> &gt;&gt; the buildsystem that, in turn, would notify the maintdb?
+</I>&gt;<i> &gt; [...]
+</I>&gt;<i> &gt; Or the buildsystem can do the auth, and forward the request to maintdb
+</I>&gt;<i> &gt; private method without doing any check, but including in the request
+</I>&gt;<i> &gt; the login name of the user requesting the change so that maintdb can
+</I>&gt;<i> &gt; check the permission. This one is probably better if we want to allow
+</I>&gt;<i> &gt; changes using both website and CLI as it avoids doing the same checks
+</I>&gt;<i> &gt; in two different places.
+</I>&gt;<i>
+</I>&gt;<i> Looks better that way, yes.
+</I>&gt;<i>
+</I>&gt;<i> So maintdb will need to know who is admin (can be checked later with a
+</I>&gt;<i> flag). Not sure, can be updated later:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb#break_a_maintainer_package_association">http://mageia.org/wiki/doku.php?id=web:maintdb#break_a_maintainer_package_association</A>
+</I>&gt;<i>
+</I>&gt;<i> &gt;&gt; <A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb#specs_actions">http://mageia.org/wiki/doku.php?id=web:maintdb#specs_actions</A> [...]
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; But I would change this :
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; * POST <A HREF="https://maintdb/packages">https://maintdb/packages</A>
+</I>&gt;<i> &gt; user - string - optional - login of the user pushing the package
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; The user string should not be optional but mandatory.
+</I>&gt;<i>
+</I>&gt;<i> Right. Fixed.
+</I>&gt;<i>
+</I>&gt;<i> &gt; * GET <A HREF="https://maintdb/packages">https://maintdb/packages</A>
+</I>&gt;<i> &gt; Returns a list such as:
+</I>&gt;<i> &gt; packagename / maintainers login / last commit date / url to bugs report
+</I>&gt;<i> / url to package repo
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I don't think we should return url to bugs report and url to package
+</I>&gt;<i> &gt; repo here.
+</I>&gt;<i>
+</I>&gt;<i> Ok. Then we must have clearly spec'd URLs for both so we can use them for
+</I>&gt;<i> sure.
+</I>&gt;<i>
+</I>&gt;<i> &gt; For the &quot;last commit date&quot;, we don't have this info. The
+</I>&gt;<i> &gt; info we can have is &quot;last sucessful submit date&quot; (the last time the
+</I>&gt;<i> &gt; private method was called on that package).
+</I>&gt;<i>
+</I>&gt;<i> Right, updated as well.
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Kosmas, would you have time this week to work on maintdb to port these
+</I>&gt;<i> interfaces to it or do you need help too?
+</I>&gt;<i>
+</I>&gt;<i> I can devote some time on it this week, but I'll have to figure out
+</I>&gt;<i> how to... well, I've got a conflict (RubyGem version error: rack(1.2.1
+</I>&gt;<i> not ~&gt; 1.1.0)) to make it run.
+</I>&gt;<i>
+</I>
+ Romain,
+
+ Yes it seems very likely that I would get some time this week, as I'm
+finishing a project that I had to do today.
+ By all means to help if you want to :-)
+ I'll be available tomorrow if you would like to have a look at the conflict
+that you have.
+
+ I will also go through the proposed changes and the spec that you have put
+in the wiki, and ask if I have any questions.
+
+ Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110308/fd14a85b/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000441.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000443.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#442">[ date ]</a>
+ <a href="thread.html#442">[ thread ]</a>
+ <a href="subject.html#442">[ subject ]</a>
+ <a href="author.html#442">[ 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-March/000443.html b/zarb-ml/mageia-webteam/2011-March/000443.html
new file mode 100644
index 000000000..168ba15ab
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000443.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Proposal for maintainers database API
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTik5eg7gD-HUrR02yNREDn-5C_fbTYRJpoLfGbcf%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="000442.html">
+ <LINK REL="Next" HREF="000435.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Proposal for maintainers database API</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Proposal%20for%20maintainers%20database%20API&In-Reply-To=%3CAANLkTik5eg7gD-HUrR02yNREDn-5C_fbTYRJpoLfGbcf%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Proposal for maintainers database API">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 8 17:19:48 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000442.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000435.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#443">[ date ]</a>
+ <a href="thread.html#443">[ thread ]</a>
+ <a href="subject.html#443">[ subject ]</a>
+ <a href="author.html#443">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 8, 2011 at 17:13, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> &#160;Yes it seems very likely that I would get some time this week, as I'm
+</I>&gt;<i> finishing a project that I had to do today.
+</I>&gt;<i> &#160;By all means to help if you want to :-)
+</I>&gt;<i> &#160;I'll be available tomorrow if you would like to have a look at the conflict
+</I>&gt;<i> that you have.
+</I>&gt;<i>
+</I>&gt;<i> &#160;I will also go through the proposed changes and the spec that you have put
+</I>&gt;<i> in the wiki, and ask if I have any questions.
+</I>
+Cool. :-) Please do!
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000442.html">[Mageia-webteam] Proposal for maintainers database API
+</A></li>
+ <LI>Next message: <A HREF="000435.html">[Mageia-webteam] Mageia Calendar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#443">[ date ]</a>
+ <a href="thread.html#443">[ thread ]</a>
+ <a href="subject.html#443">[ subject ]</a>
+ <a href="author.html#443">[ 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-March/000444.html b/zarb-ml/mageia-webteam/2011-March/000444.html
new file mode 100644
index 000000000..cc863c7f3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000444.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 10 review
+ </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%2010%20review&In-Reply-To=%3CAANLkTimsaGfJ17VXk7OXGTSh6Qgr%2BN34Bn63Q7xkgSCq%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="000446.html">
+ <LINK REL="Next" HREF="000448.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 10 review</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2010%20review&In-Reply-To=%3CAANLkTimsaGfJ17VXk7OXGTSh6Qgr%2BN34Bn63Q7xkgSCq%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 10 review">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 8 17:46:26 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000446.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI>Next message: <A HREF="000448.html">[Mageia-webteam] 2011/week 10 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#444">[ date ]</a>
+ <a href="thread.html#444">[ thread ]</a>
+ <a href="subject.html#444">[ subject ]</a>
+ <a href="author.html#444">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+as usual, #mageia-web at 14:00 UTC.
+
+Topics:
+ * wiki and maintdb if progress up to then;
+ * website download page and home page for alpha2: ideas, sketches,
+hands welcome (we have a short time frame, alpha2 is out coming
+Tuesday)
+ * future of the website (to be rolled out progressively after alpha2,
+up to finale): info architecture, global nav, structure, contents;
+here again, ideas, sketches, designs welcome (nothing to decide yet,
+but that's a call for ideas)
+ * status of: bugzilla (dmorgan), forum (expected to be rolled for
+alpha2; maat), mageia-app-db (stormi), blogs &amp; planets (dams),
+donation page (dams), calendar.
+ * other?
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000446.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI>Next message: <A HREF="000448.html">[Mageia-webteam] 2011/week 10 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#444">[ date ]</a>
+ <a href="thread.html#444">[ thread ]</a>
+ <a href="subject.html#444">[ subject ]</a>
+ <a href="author.html#444">[ 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-March/000445.html b/zarb-ml/mageia-webteam/2011-March/000445.html
new file mode 100644
index 000000000..d4665c9cf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000445.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+ </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%20308%5D%20There%27s%20no%20OLD%20in%20the%20Resolved%20statuses%0A%09list&In-Reply-To=%3C20110308204450.A6C6C4272A%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="000439.html">
+ <LINK REL="Next" HREF="000446.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20308%5D%20There%27s%20no%20OLD%20in%20the%20Resolved%20statuses%0A%09list&In-Reply-To=%3C20110308204450.A6C6C4272A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 8 21:44:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000439.html">[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI>Next message: <A HREF="000446.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#445">[ date ]</a>
+ <a href="thread.html#445">[ thread ]</a>
+ <a href="subject.html#445">[ subject ]</a>
+ <a href="author.html#445">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=308">https://bugs.mageia.org/show_bug.cgi?id=308</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| |OLD
+ Status|NEW |RESOLVED
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-03-08 21:44:50 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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000439.html">[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI>Next message: <A HREF="000446.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#445">[ date ]</a>
+ <a href="thread.html#445">[ thread ]</a>
+ <a href="subject.html#445">[ subject ]</a>
+ <a href="author.html#445">[ 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-March/000446.html b/zarb-ml/mageia-webteam/2011-March/000446.html
new file mode 100644
index 000000000..7ff063206
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000446.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+ </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%20308%5D%20There%27s%20no%20OLD%20in%20the%20Resolved%20statuses%0A%09list&In-Reply-To=%3C20110308205540.66FAC427A0%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="000445.html">
+ <LINK REL="Next" HREF="000444.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20308%5D%20There%27s%20no%20OLD%20in%20the%20Resolved%20statuses%0A%09list&In-Reply-To=%3C20110308205540.66FAC427A0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 8 21:55:40 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000445.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI>Next message: <A HREF="000444.html">[Mageia-webteam] 2011/week 10 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#446">[ date ]</a>
+ <a href="thread.html#446">[ thread ]</a>
+ <a href="subject.html#446">[ subject ]</a>
+ <a href="author.html#446">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=308">https://bugs.mageia.org/show_bug.cgi?id=308</A>
+
+--- Comment #2 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-08 21:55:40 UTC ---
+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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000445.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A></li>
+ <LI>Next message: <A HREF="000444.html">[Mageia-webteam] 2011/week 10 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#446">[ date ]</a>
+ <a href="thread.html#446">[ thread ]</a>
+ <a href="subject.html#446">[ subject ]</a>
+ <a href="author.html#446">[ 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-March/000447.html b/zarb-ml/mageia-webteam/2011-March/000447.html
new file mode 100644
index 000000000..819742486
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000447.html
@@ -0,0 +1,97 @@
+<!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=%3C20110308230002.A137F427A0%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="000448.html">
+ <LINK REL="Next" HREF="000449.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=%3C20110308230002.A137F427A0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 9 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000448.html">[Mageia-webteam] 2011/week 10 review
+</A></li>
+ <LI>Next message: <A HREF="000449.html">[Mageia-webteam] You're invited to Dropbox!
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#447">[ date ]</a>
+ <a href="thread.html#447">[ thread ]</a>
+ <a href="subject.html#447">[ subject ]</a>
+ <a href="author.html#447">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000448.html">[Mageia-webteam] 2011/week 10 review
+</A></li>
+ <LI>Next message: <A HREF="000449.html">[Mageia-webteam] You're invited to Dropbox!
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#447">[ date ]</a>
+ <a href="thread.html#447">[ thread ]</a>
+ <a href="subject.html#447">[ subject ]</a>
+ <a href="author.html#447">[ 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-March/000448.html b/zarb-ml/mageia-webteam/2011-March/000448.html
new file mode 100644
index 000000000..ed6ccec0c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000448.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 10 review
+ </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%2010%20review&In-Reply-To=%3CAANLkTimf6iiXEy%3D_Td9kjn1GotUhUZ0ZjCWNQbC345xf%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="000444.html">
+ <LINK REL="Next" HREF="000447.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 10 review</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2010%20review&In-Reply-To=%3CAANLkTimf6iiXEy%3D_Td9kjn1GotUhUZ0ZjCWNQbC345xf%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 10 review">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Mar 9 15:58:57 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000444.html">[Mageia-webteam] 2011/week 10 review
+</A></li>
+ <LI>Next message: <A HREF="000447.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#448">[ date ]</a>
+ <a href="thread.html#448">[ thread ]</a>
+ <a href="subject.html#448">[ subject ]</a>
+ <a href="author.html#448">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 8, 2011 at 17:46, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> Topics: [...]
+</I>
+Here are the notes/logs:
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-09-14.09.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-09-14.09.html</A>
+
+This coming week focus is getting things ready for alpha2 release!
+
+Following has not been discussed (noted for next week among other things):
+&gt;<i> &#160;* future of the website (to be rolled out progressively after alpha2,
+</I>&gt;<i> up to finale): info architecture, global nav, structure, contents;
+</I>&gt;<i> here again, ideas, sketches, designs welcome (nothing to decide yet,
+</I>&gt;<i> but that's a call for ideas)
+</I>&gt;<i> &#160;* status of: mageia-app-db (stormi), donation page (dams), calendar.
+</I>
+Thanks!
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000444.html">[Mageia-webteam] 2011/week 10 review
+</A></li>
+ <LI>Next message: <A HREF="000447.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#448">[ date ]</a>
+ <a href="thread.html#448">[ thread ]</a>
+ <a href="subject.html#448">[ subject ]</a>
+ <a href="author.html#448">[ 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-March/000449.html b/zarb-ml/mageia-webteam/2011-March/000449.html
new file mode 100644
index 000000000..4599007f0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000449.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] You're invited to Dropbox!
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20You%27re%20invited%20to%20Dropbox%21&In-Reply-To=%3C20110309193204.9267A47B853%40mailman-2.dropboxmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000447.html">
+ <LINK REL="Next" HREF="000450.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] You're invited to Dropbox!</H1>
+ <B>Dropbox</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20You%27re%20invited%20to%20Dropbox%21&In-Reply-To=%3C20110309193204.9267A47B853%40mailman-2.dropboxmail.com%3E"
+ TITLE="[Mageia-webteam] You're invited to Dropbox!">no-reply at dropboxmail.com
+ </A><BR>
+ <I>Wed Mar 9 20:32:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000447.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000450.html">[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#449">[ date ]</a>
+ <a href="thread.html#449">[ thread ]</a>
+ <a href="subject.html#449">[ subject ]</a>
+ <a href="author.html#449">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Toni Korpela wants you to use Dropbox to sync and share files online and across computers.
+
+Get started here: <A HREF="http://www.dropbox.com/link/20.H7g-Gq37p-/Njc0NjE1NDI4Nw?src=referrals_bulk9">http://www.dropbox.com/link/20.H7g-Gq37p-/Njc0NjE1NDI4Nw?src=referrals_bulk9</A>
+
+- The Dropbox Team
+
+____________________________________________________
+To stop receiving invites from Dropbox, please go to <A HREF="http://www.dropbox.com/bl/bba043ff4df8/mageia-webteam%40mageia.org">http://www.dropbox.com/bl/bba043ff4df8/mageia-webteam%40mageia.org</A>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110309/ec36eb04/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000447.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000450.html">[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#449">[ date ]</a>
+ <a href="thread.html#449">[ thread ]</a>
+ <a href="subject.html#449">[ subject ]</a>
+ <a href="author.html#449">[ 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-March/000450.html b/zarb-ml/mageia-webteam/2011-March/000450.html
new file mode 100644
index 000000000..6fdf51c3c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000450.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components
+ </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%20319%5D%20%5BNew%5D%20Wrong%20url%20for%20forums%20in%20the%0A%09Components&In-Reply-To=%3Cbug-319-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="000449.html">
+ <LINK REL="Next" HREF="000452.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20319%5D%20%5BNew%5D%20Wrong%20url%20for%20forums%20in%20the%0A%09Components&In-Reply-To=%3Cbug-319-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 9 20:45:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000449.html">[Mageia-webteam] You're invited to Dropbox!
+</A></li>
+ <LI>Next message: <A HREF="000452.html">[Mageia-webteam] [Bug 319] Wrong url for forums in the Components
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#450">[ date ]</a>
+ <a href="thread.html#450">[ thread ]</a>
+ <a href="subject.html#450">[ subject ]</a>
+ <a href="author.html#450">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=319">https://bugs.mageia.org/show_bug.cgi?id=319</A>
+
+ Summary: Wrong url for forums in the Components
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</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 show forum.mageia.org, while it should be forums.mageia.org
+
+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="000449.html">[Mageia-webteam] You're invited to Dropbox!
+</A></li>
+ <LI>Next message: <A HREF="000452.html">[Mageia-webteam] [Bug 319] Wrong url for forums in the Components
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#450">[ date ]</a>
+ <a href="thread.html#450">[ thread ]</a>
+ <a href="subject.html#450">[ subject ]</a>
+ <a href="author.html#450">[ 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-March/000451.html b/zarb-ml/mageia-webteam/2011-March/000451.html
new file mode 100644
index 000000000..b94ad0d54
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000451.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 320] [New] 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%20%5BNew%5D%20Missing%20component%20for%0A%09infrastructure&In-Reply-To=%3Cbug-320-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="000452.html">
+ <LINK REL="Next" HREF="000453.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20320%5D%20%5BNew%5D%20Missing%20component%20for%0A%09infrastructure&In-Reply-To=%3Cbug-320-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 9 20:51:27 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000452.html">[Mageia-webteam] [Bug 319] Wrong url for forums in the Components
+</A></li>
+ <LI>Next message: <A HREF="000453.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#451">[ date ]</a>
+ <a href="thread.html#451">[ thread ]</a>
+ <a href="subject.html#451">[ subject ]</a>
+ <a href="author.html#451">[ 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>
+
+ Summary: Missing component for infrastructure
+ 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">dmorganec at gmail.com</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>
+
+
+There is lots of component that are not present, here is a proposal, if
+possible, do not create them right now, as we may wish to discuss a little.
+
+- mailling lists, for everything related to sympa
+- epoll, for epoll
+- mirror , for mirror stuff, mga::mirror and stuff related to mirror
+- transifex
+- ldap, for stuff related to ldap
+- servers, for hardware or general issue
+
+What about :
+- mail, for everything related to mail ( ie, postfix level ? )
+- meetbot, for supybot and the website
+- svn/git ?
+
+Feel free to post other idea
+
+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="000452.html">[Mageia-webteam] [Bug 319] Wrong url for forums in the Components
+</A></li>
+ <LI>Next message: <A HREF="000453.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#451">[ date ]</a>
+ <a href="thread.html#451">[ thread ]</a>
+ <a href="subject.html#451">[ subject ]</a>
+ <a href="author.html#451">[ 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-March/000452.html b/zarb-ml/mageia-webteam/2011-March/000452.html
new file mode 100644
index 000000000..e029648a9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000452.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 319] Wrong url for forums in the Components
+ </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%20319%5D%20Wrong%20url%20for%20forums%20in%20the%20Components&In-Reply-To=%3C20110309210206.1DCA942724%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="000450.html">
+ <LINK REL="Next" HREF="000451.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 319] Wrong url for forums in the Components</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20319%5D%20Wrong%20url%20for%20forums%20in%20the%20Components&In-Reply-To=%3C20110309210206.1DCA942724%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 319] Wrong url for forums in the Components">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 9 22:02:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000450.html">[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components
+</A></li>
+ <LI>Next message: <A HREF="000451.html">[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#452">[ date ]</a>
+ <a href="thread.html#452">[ thread ]</a>
+ <a href="subject.html#452">[ subject ]</a>
+ <a href="author.html#452">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=319">https://bugs.mageia.org/show_bug.cgi?id=319</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|NEW |RESOLVED
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-03-09 22:02:06 UTC ---
+tks this is fixed now.
+
+--
+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="000450.html">[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components
+</A></li>
+ <LI>Next message: <A HREF="000451.html">[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#452">[ date ]</a>
+ <a href="thread.html#452">[ thread ]</a>
+ <a href="subject.html#452">[ subject ]</a>
+ <a href="author.html#452">[ 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-March/000453.html b/zarb-ml/mageia-webteam/2011-March/000453.html
new file mode 100644
index 000000000..528d034d3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000453.html
@@ -0,0 +1,87 @@
+<!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=%3C20110309214313.5AC174272B%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="000451.html">
+ <LINK REL="Next" HREF="000454.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110309214313.5AC174272B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 9 22:43:13 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000451.html">[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000454.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#453">[ date ]</a>
+ <a href="thread.html#453">[ thread ]</a>
+ <a href="subject.html#453">[ subject ]</a>
+ <a href="author.html#453">[ 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>
+
+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">boklm at mars-attacks.org</A>
+
+--- Comment #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-03-09 22:43:13 UTC ---
+I am not sure it is useful to create as many different components.
+
+We can keep the list of components short, with something like this :
+ - Account requests
+ - Buildsystem
+ - Other infrastructure (mail, ldap, epoll, mailing lists, etc ...)
+
+Or we can add many components, one for each service. However I don't know if
+that's really useful. Many components makes it more difficult to select the
+right one. For example if you have a problem receiving email from epoll after
+changing something in your ldap account, you can add it to epoll, mail or ldap.
+
+--
+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="000451.html">[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000454.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#453">[ date ]</a>
+ <a href="thread.html#453">[ thread ]</a>
+ <a href="subject.html#453">[ subject ]</a>
+ <a href="author.html#453">[ 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-March/000454.html b/zarb-ml/mageia-webteam/2011-March/000454.html
new file mode 100644
index 000000000..aa23e268c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000454.html
@@ -0,0 +1,75 @@
+<!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=%3C20110309215211.8B96942701%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="000453.html">
+ <LINK REL="Next" HREF="000456.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110309215211.8B96942701%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 9 22:52:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000453.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000456.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#454">[ date ]</a>
+ <a href="thread.html#454">[ thread ]</a>
+ <a href="subject.html#454">[ subject ]</a>
+ <a href="author.html#454">[ 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 #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-03-09 22:52:11 UTC ---
+Well, we can use this to have specific people in CC, for bug triage. This would
+also be used for stats.
+
+And why then would we have BuildSystem being separate for the rest ?
+
+--
+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="000453.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000456.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#454">[ date ]</a>
+ <a href="thread.html#454">[ thread ]</a>
+ <a href="subject.html#454">[ subject ]</a>
+ <a href="author.html#454">[ 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-March/000455.html b/zarb-ml/mageia-webteam/2011-March/000455.html
new file mode 100644
index 000000000..86469a010
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000455.html
@@ -0,0 +1,100 @@
+<!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=%3C20110309230002.44CCB427BE%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="000459.html">
+ <LINK REL="Next" HREF="000460.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=%3C20110309230002.44CCB427BE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000459.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000460.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#455">[ date ]</a>
+ <a href="thread.html#455">[ thread ]</a>
+ <a href="subject.html#455">[ subject ]</a>
+ <a href="author.html#455">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000459.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000460.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#455">[ date ]</a>
+ <a href="thread.html#455">[ thread ]</a>
+ <a href="subject.html#455">[ subject ]</a>
+ <a href="author.html#455">[ 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-March/000456.html b/zarb-ml/mageia-webteam/2011-March/000456.html
new file mode 100644
index 000000000..78773cc40
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000456.html
@@ -0,0 +1,71 @@
+<!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=%3C20110309230325.1FC44427A0%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="000454.html">
+ <LINK REL="Next" HREF="000457.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110309230325.1FC44427A0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 00:03:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000454.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000457.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#456">[ date ]</a>
+ <a href="thread.html#456">[ thread ]</a>
+ <a href="subject.html#456">[ subject ]</a>
+ <a href="author.html#456">[ 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 #3 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-03-10 00:03:25 UTC ---
+Ok, so maybe I was wrong when thinking it was not useful.
+
+--
+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="000454.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000457.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#456">[ date ]</a>
+ <a href="thread.html#456">[ thread ]</a>
+ <a href="subject.html#456">[ subject ]</a>
+ <a href="author.html#456">[ 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-March/000457.html b/zarb-ml/mageia-webteam/2011-March/000457.html
new file mode 100644
index 000000000..0f7fdce69
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000457.html
@@ -0,0 +1,71 @@
+<!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=%3C20110309231743.23C5042701%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="000456.html">
+ <LINK REL="Next" HREF="000458.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110309231743.23C5042701%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 00:17:43 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000456.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000458.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#457">[ date ]</a>
+ <a href="thread.html#457">[ thread ]</a>
+ <a href="subject.html#457">[ subject ]</a>
+ <a href="author.html#457">[ 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 #4 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-03-10 00:17:43 UTC ---
+Well, maybe I am too eager to put stuff in small box too :)
+
+--
+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="000456.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000458.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#457">[ date ]</a>
+ <a href="thread.html#457">[ thread ]</a>
+ <a href="subject.html#457">[ subject ]</a>
+ <a href="author.html#457">[ 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-March/000458.html b/zarb-ml/mageia-webteam/2011-March/000458.html
new file mode 100644
index 000000000..8c59d915f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000458.html
@@ -0,0 +1,87 @@
+<!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=%3C20110310085128.B5C9B426F6%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="000457.html">
+ <LINK REL="Next" HREF="000459.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110310085128.B5C9B426F6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 09:51:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000457.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000459.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#458">[ date ]</a>
+ <a href="thread.html#458">[ thread ]</a>
+ <a href="subject.html#458">[ subject ]</a>
+ <a href="author.html#458">[ 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>
+
+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 #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-03-10 09:51:28 UTC ---
+It makes sense to compartiment a bit. Maybe we should use &quot;role&quot; components and
+let details (particular platform, domain name) to be filled or extracted from
+this:
+ - mailing-lists
+ - voting (=&gt; epoll)
+ - mirrors
+ - translation (=&gt; transifex)
+ - user directory (=&gt; ldap)
+ - etc.
+
+Or is that too generic?
+
+--
+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="000457.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000459.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#458">[ date ]</a>
+ <a href="thread.html#458">[ thread ]</a>
+ <a href="subject.html#458">[ subject ]</a>
+ <a href="author.html#458">[ 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-March/000459.html b/zarb-ml/mageia-webteam/2011-March/000459.html
new file mode 100644
index 000000000..cf42d8257
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000459.html
@@ -0,0 +1,70 @@
+<!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=%3C20110310093236.4B83B42726%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="000458.html">
+ <LINK REL="Next" HREF="000455.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>bugzilla-daemon at mageia.org</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=%3C20110310093236.4B83B42726%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 10:32:36 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000458.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000455.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#459">[ date ]</a>
+ <a href="thread.html#459">[ thread ]</a>
+ <a href="subject.html#459">[ subject ]</a>
+ <a href="author.html#459">[ 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 #6 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-03-10 10:32:36 UTC ---
+Yes, I think using &quot;role&quot; components without too much details is better.
+
+--
+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="000458.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000455.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#459">[ date ]</a>
+ <a href="thread.html#459">[ thread ]</a>
+ <a href="subject.html#459">[ subject ]</a>
+ <a href="author.html#459">[ 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-March/000460.html b/zarb-ml/mageia-webteam/2011-March/000460.html
new file mode 100644
index 000000000..834eb9448
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000460.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+ </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%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110310153651.009FF42582%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="000455.html">
+ <LINK REL="Next" HREF="000461.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110310153651.009FF42582%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 16:36:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000455.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000461.html">[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#460">[ date ]</a>
+ <a href="thread.html#460">[ thread ]</a>
+ <a href="subject.html#460">[ subject ]</a>
+ <a href="author.html#460">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=92">https://bugs.mageia.org/show_bug.cgi?id=92</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|ASSIGNED |RESOLVED
+
+--- Comment #5 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-03-10 16:36:51 UTC ---
+fixed, i let you appreciate the favicon ;)
+
+--
+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="000455.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000461.html">[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#460">[ date ]</a>
+ <a href="thread.html#460">[ thread ]</a>
+ <a href="subject.html#460">[ subject ]</a>
+ <a href="author.html#460">[ 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-March/000461.html b/zarb-ml/mageia-webteam/2011-March/000461.html
new file mode 100644
index 000000000..3c8b4b4b9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000461.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search
+ </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%20329%5D%20%5BNew%5D%20Proposal%3A%20show%20resolved%20bugs%20in%0A%09the%20search&In-Reply-To=%3Cbug-329-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="000460.html">
+ <LINK REL="Next" HREF="000462.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20329%5D%20%5BNew%5D%20Proposal%3A%20show%20resolved%20bugs%20in%0A%09the%20search&In-Reply-To=%3Cbug-329-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 18:03:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000460.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000462.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#461">[ date ]</a>
+ <a href="thread.html#461">[ thread ]</a>
+ <a href="subject.html#461">[ subject ]</a>
+ <a href="author.html#461">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=329">https://bugs.mageia.org/show_bug.cgi?id=329</A>
+
+ Summary: Proposal: show resolved bugs in the search
+ 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">filip.saraiva at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+This is not a bug, but a proposal. Show bugs that have been resolved in the
+search decreases the number of duplicate bugs. At least, for requests for new
+packages.
+
+Evaluate this.
+
+Thank's.
+
+--
+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="000460.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000462.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#461">[ date ]</a>
+ <a href="thread.html#461">[ thread ]</a>
+ <a href="subject.html#461">[ subject ]</a>
+ <a href="author.html#461">[ 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-March/000462.html b/zarb-ml/mageia-webteam/2011-March/000462.html
new file mode 100644
index 000000000..7004d873c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000462.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+ </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%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310170641.D20A842689%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="000461.html">
+ <LINK REL="Next" HREF="000463.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310170641.D20A842689%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 18:06:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000461.html">[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000463.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#462">[ date ]</a>
+ <a href="thread.html#462">[ thread ]</a>
+ <a href="subject.html#462">[ subject ]</a>
+ <a href="author.html#462">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=329">https://bugs.mageia.org/show_bug.cgi?id=329</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">boklm at mars-attacks.org</A>
+
+--- Comment #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-03-10 18:06:42 UTC ---
+On the search page, it's already possible to search for open and closed bugs :
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</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="000461.html">[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000463.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#462">[ date ]</a>
+ <a href="thread.html#462">[ thread ]</a>
+ <a href="subject.html#462">[ subject ]</a>
+ <a href="author.html#462">[ 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-March/000463.html b/zarb-ml/mageia-webteam/2011-March/000463.html
new file mode 100644
index 000000000..221edf16a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000463.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+ </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%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310171503.2438F425B1%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="000462.html">
+ <LINK REL="Next" HREF="000465.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310171503.2438F425B1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 18:15:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000462.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000465.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#463">[ date ]</a>
+ <a href="thread.html#463">[ thread ]</a>
+ <a href="subject.html#463">[ subject ]</a>
+ <a href="author.html#463">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=329">https://bugs.mageia.org/show_bug.cgi?id=329</A>
+
+--- Comment #2 from Filipe Saraiva &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">filip.saraiva at gmail.com</A>&gt; 2011-03-10 18:15:03 UTC ---
+I did not think the search link was different of the search field.
+
+Maybe a different name for the link? 'Search Options', maybe?
+
+--
+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="000462.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000465.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#463">[ date ]</a>
+ <a href="thread.html#463">[ thread ]</a>
+ <a href="subject.html#463">[ subject ]</a>
+ <a href="author.html#463">[ 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-March/000464.html b/zarb-ml/mageia-webteam/2011-March/000464.html
new file mode 100644
index 000000000..bb21a0c6d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000464.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+ </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%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110310191352.48877426DD%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="000470.html">
+ <LINK REL="Next" HREF="000468.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2092%5D%20Add%20your%20own%20favicon%20to%20bugs.mageia.org&In-Reply-To=%3C20110310191352.48877426DD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 20:13:52 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000470.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000468.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#464">[ date ]</a>
+ <a href="thread.html#464">[ thread ]</a>
+ <a href="subject.html#464">[ subject ]</a>
+ <a href="author.html#464">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=92">https://bugs.mageia.org/show_bug.cgi?id=92</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-03-10 20:13:52 UTC ---
+Beautiful! :)
+
+--
+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="000470.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000468.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#464">[ date ]</a>
+ <a href="thread.html#464">[ thread ]</a>
+ <a href="subject.html#464">[ subject ]</a>
+ <a href="author.html#464">[ 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-March/000465.html b/zarb-ml/mageia-webteam/2011-March/000465.html
new file mode 100644
index 000000000..8c0b7d95a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000465.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+ </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%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310223930.3834042730%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="000463.html">
+ <LINK REL="Next" HREF="000466.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310223930.3834042730%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 23:39:30 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000463.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000466.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#465">[ date ]</a>
+ <a href="thread.html#465">[ thread ]</a>
+ <a href="subject.html#465">[ subject ]</a>
+ <a href="author.html#465">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=329">https://bugs.mageia.org/show_bug.cgi?id=329</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|NEW |RESOLVED
+
+--- Comment #3 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-10 23:39:30 UTC ---
+There two search methods in bugzilla, a &quot;simple&quot; search and an &quot;advanced&quot;
+search, when you click the &quot;Search&quot; link in bugzilla it takes you to the
+&quot;simple&quot; search form by default, click &quot;Advanced Search&quot; to get the more
+detailed search method (your preference is remembered by your browser).
+
+--
+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="000463.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000466.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#465">[ date ]</a>
+ <a href="thread.html#465">[ thread ]</a>
+ <a href="subject.html#465">[ subject ]</a>
+ <a href="author.html#465">[ 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-March/000466.html b/zarb-ml/mageia-webteam/2011-March/000466.html
new file mode 100644
index 000000000..64200b6a3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000466.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+ </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%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310224008.D405F4273D%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="000465.html">
+ <LINK REL="Next" HREF="000467.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310224008.D405F4273D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 23:40:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000465.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000467.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#466">[ date ]</a>
+ <a href="thread.html#466">[ thread ]</a>
+ <a href="subject.html#466">[ subject ]</a>
+ <a href="author.html#466">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=329">https://bugs.mageia.org/show_bug.cgi?id=329</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 |WORKSFORME
+
+--- Comment #4 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-10 23:40:08 UTC ---
+Closing as worksforme (reopen if you don't agree).
+
+--
+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="000465.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000467.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#466">[ date ]</a>
+ <a href="thread.html#466">[ thread ]</a>
+ <a href="subject.html#466">[ subject ]</a>
+ <a href="author.html#466">[ 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-March/000467.html b/zarb-ml/mageia-webteam/2011-March/000467.html
new file mode 100644
index 000000000..9eeb046ec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000467.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+ </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%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310225804.5D3C742573%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="000466.html">
+ <LINK REL="Next" HREF="000469.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310225804.5D3C742573%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 10 23:58:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000466.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000469.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#467">[ date ]</a>
+ <a href="thread.html#467">[ thread ]</a>
+ <a href="subject.html#467">[ subject ]</a>
+ <a href="author.html#467">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=329">https://bugs.mageia.org/show_bug.cgi?id=329</A>
+
+Filipe Saraiva &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">filip.saraiva at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Resolution|WORKSFORME |
+ Status|RESOLVED |REOPENED
+
+--- Comment #5 from Filipe Saraiva &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">filip.saraiva at gmail.com</A>&gt; 2011-03-10 23:58:04 UTC ---
+Ahmad Samir, it is a matter of usability. The button and the link has both the
+same name (&quot;Search&quot;), but different functionality.
+
+My proposal is change the link name &quot;Search&quot; to &quot;Search Options&quot;. I think it
+would be best felt that the link leads to a result different from the button.
+
+What do you think?
+
+Thank's.
+
+--
+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="000466.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000469.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#467">[ date ]</a>
+ <a href="thread.html#467">[ thread ]</a>
+ <a href="subject.html#467">[ subject ]</a>
+ <a href="author.html#467">[ 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-March/000468.html b/zarb-ml/mageia-webteam/2011-March/000468.html
new file mode 100644
index 000000000..e5a8977c8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000468.html
@@ -0,0 +1,100 @@
+<!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=%3C20110310230002.97D0242573%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="000464.html">
+ <LINK REL="Next" HREF="000471.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=%3C20110310230002.97D0242573%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 11 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000464.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000471.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#468">[ date ]</a>
+ <a href="thread.html#468">[ thread ]</a>
+ <a href="subject.html#468">[ subject ]</a>
+ <a href="author.html#468">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000464.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="000471.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#468">[ date ]</a>
+ <a href="thread.html#468">[ thread ]</a>
+ <a href="subject.html#468">[ subject ]</a>
+ <a href="author.html#468">[ 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-March/000469.html b/zarb-ml/mageia-webteam/2011-March/000469.html
new file mode 100644
index 000000000..367a8eec6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000469.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+ </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%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310231825.72A3042704%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="000467.html">
+ <LINK REL="Next" HREF="000470.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110310231825.72A3042704%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 11 00:18:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000467.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000470.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#469">[ date ]</a>
+ <a href="thread.html#469">[ thread ]</a>
+ <a href="subject.html#469">[ subject ]</a>
+ <a href="author.html#469">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=329">https://bugs.mageia.org/show_bug.cgi?id=329</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</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 Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-11 00:18:25 UTC ---
+The &quot;Search&quot; link takes you to the search page, both simple and advanced links
+are available there; it's not &quot;search options&quot;.
+
+File a bug report upstream if you think this functionality should be changed.
+
+Adding Fr&#233;d&#233;ric Buclin to CC.
+
+--
+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="000467.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000470.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#469">[ date ]</a>
+ <a href="thread.html#469">[ thread ]</a>
+ <a href="subject.html#469">[ subject ]</a>
+ <a href="author.html#469">[ 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-March/000470.html b/zarb-ml/mageia-webteam/2011-March/000470.html
new file mode 100644
index 000000000..ff1f58339
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000470.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+ </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%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110311200536.9EEEF4232A%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="000469.html">
+ <LINK REL="Next" HREF="000464.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20329%5D%20Proposal%3A%20show%20resolved%20bugs%20in%20the%0A%09search&In-Reply-To=%3C20110311200536.9EEEF4232A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 11 21:05:36 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000469.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000464.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#470">[ date ]</a>
+ <a href="thread.html#470">[ thread ]</a>
+ <a href="subject.html#470">[ subject ]</a>
+ <a href="author.html#470">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=329">https://bugs.mageia.org/show_bug.cgi?id=329</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
+----------------------------------------------------------------------------
+ Resolution| |WORKSFORME
+ Status|REOPENED |RESOLVED
+
+--- Comment #7 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-03-11 21:05:36 UTC ---
+&quot;Search Options&quot; is definitely wrong, and we won't take this change upstream.
+The Search link brings you to the Search page, as expected. The Search button
+is about the Search field you have in the header and footer of the page (also
+known as the QuickSearch field).
+
+--
+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="000469.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A></li>
+ <LI>Next message: <A HREF="000464.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#470">[ date ]</a>
+ <a href="thread.html#470">[ thread ]</a>
+ <a href="subject.html#470">[ subject ]</a>
+ <a href="author.html#470">[ 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-March/000471.html b/zarb-ml/mageia-webteam/2011-March/000471.html
new file mode 100644
index 000000000..d6ca51b07
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000471.html
@@ -0,0 +1,98 @@
+<!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=%3C20110311230002.42DD4423A5%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="000468.html">
+ <LINK REL="Next" HREF="000472.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=%3C20110311230002.42DD4423A5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 12 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000468.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000472.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#471">[ date ]</a>
+ <a href="thread.html#471">[ thread ]</a>
+ <a href="subject.html#471">[ subject ]</a>
+ <a href="author.html#471">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000468.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000472.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#471">[ date ]</a>
+ <a href="thread.html#471">[ thread ]</a>
+ <a href="subject.html#471">[ subject ]</a>
+ <a href="author.html#471">[ 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-March/000472.html b/zarb-ml/mageia-webteam/2011-March/000472.html
new file mode 100644
index 000000000..271efb3cd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000472.html
@@ -0,0 +1,99 @@
+<!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=%3C20110312230002.2765E425B6%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="000471.html">
+ <LINK REL="Next" HREF="000475.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=%3C20110312230002.2765E425B6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 13 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000471.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000475.html">[Mageia-webteam] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#472">[ date ]</a>
+ <a href="thread.html#472">[ thread ]</a>
+ <a href="subject.html#472">[ subject ]</a>
+ <a href="author.html#472">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000471.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000475.html">[Mageia-webteam] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#472">[ date ]</a>
+ <a href="thread.html#472">[ thread ]</a>
+ <a href="subject.html#472">[ subject ]</a>
+ <a href="author.html#472">[ 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-March/000473.html b/zarb-ml/mageia-webteam/2011-March/000473.html
new file mode 100644
index 000000000..2a15c70e9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000473.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+ </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-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7CFD63.20307%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000475.html">
+ <LINK REL="Next" HREF="000474.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7CFD63.20307%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sun Mar 13 18:22:43 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000475.html">[Mageia-webteam] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000474.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#473">[ date ]</a>
+ <a href="thread.html#473">[ thread ]</a>
+ <a href="subject.html#473">[ subject ]</a>
+ <a href="author.html#473">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Second
+
+-------- Message original --------
+Sujet: Re: Question de licence
+Date : Thu, 24 Feb 2011 18:23:33 +0100
+De : dcz &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dcz at phpbb-seo.com</A>&gt;
+Pour : Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat at vilarem.net</A>&gt;
+
+
+
+Bonjour,
+
+&gt;<i> Je suis all&#233; interroger les d&#233;veloppeurs phpbb dans leur caverne ( le channel irc #phpbb-coding sur le r&#233;seau freenode)
+</I>&gt;<i>
+</I>&gt;<i> =&gt; Je suis bon pour un gros mal de t&#234;te juridique :-/
+</I>&gt;<i>
+</I>&gt;<i> Et comme je suis pour le partage des maux de t&#234;te... voil&#224; de quoi vous en donner un identique :)
+</I>&gt;<i>
+</I>&gt;<i> Le code de phpbb est distribu&#233; sous GPLv2: <A HREF="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html">http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</A>
+</I>&gt;<i>
+</I>&gt;<i> Et cette licence est &quot;virale&quot; dans le sens o&#249; toute version modifi&#233;e du programme ou tout composant &quot;d&#233;pendant&quot; de ce programme (c'est le cas du module phpbb-seo qui nous int&#233;resse aujourd'hui) doit obligatoirement &#234;tre publi&#233; sous la m&#234;me licence (ou &#224; d&#233;faut une licence compatible).
+</I>&gt;<i>
+</I>&gt;<i> Or la RPL n'est pas compatible avec la GPLv2 : <A HREF="http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense">http://www.gnu.org/licenses/license-list.html#NonFreeSoftwareLicense</A>
+</I>&gt;<i>
+</I>
+Plus je me plonge dans cette histoire de licence, plus j'ai des doutes.
+Pour commencer par un point de d&#233;tail purement intellectuel, je me
+demande vraiment comment la GPL peut &#224; la fois &#234;tre virale et compatible
+avec d'autre licences...
+
+Ensuite, j'ai bien la page <A HREF="http://www.gnu.org/licenses/license-list.html">http://www.gnu.org/licenses/license-list.html</A>
+sous les yeux, et il n'est pas explicitement question de la rpl1.5
+(encore une fois reconnue par l'osi)
+
+M'enfin, le but n'&#233;tant pas de finir juriste, essayons de poser le
+probl&#232;me simplement.
+
+Pour commencer, je me demande si la classe phpbb_seo (et setup_phpbb_seo
+du coup) ne tombe pas sous le coup du &quot;fair use&quot;, dans la mesure ou
+elle ne fait que lire des valeurs de variables et de constantes de
+phpBB. Nos mods sont des ajouts facultatif, il ne se substituent pas &#224;
+phpBB et notre premod n'est pas un fork vu qu'on ne fait que
+pr&#233;-installer nos mods en nous conformant aux &#233;volutions de phpBB.
+
+D'autre part, la gpl ni le phpBB group n'ont emp&#234;ch&#233; &#231;a :
+<A HREF="http://www.inveostore.com/magic-seo-urls-for-phpbb-1">http://www.inveostore.com/magic-seo-urls-for-phpbb-1</A> (pas open source du
+tout).
+
+Pass&#233; ces questions m&#233;taphysiques, et pour en revenir &#224; de l'humainement
+compr&#233;ensible, le point le plus important pour nous est d'encourager le
+maintient d'une certaine dose de r&#233;ciprocit&#233;, concr&#233;tis&#233; surtout par le
+respect de la r&#232;gle du lien en retour (sans quoi, nous n'existerions
+pas) et qui n'est absolument pas pris en compte par la gpl.
+
+Du coup, en interne on se demande si
+<A HREF="http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt">http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt</A> n'est pas
+la solution. Elle est list&#233; comme compatible et inclus une obligation de
+pr&#233;server les copyrights sans pr&#233;ciser leur forme (en g&#233;n&#233;ral, il est
+dit de conserver les en-t&#234;tes de source uniquement).
+
+Pour nous ce pourrait &#234;tre une garantie suffisante, car c'est pas un
+souci de se faire forker si on respecte notre copyright (en fait, c'est
+d&#233;j&#224; le cas dans ces conditions).
+
+Sur ce, il faut encore que je consulte des membres de notre &#233;quipe, je
+ne suis pas formellement oppos&#233; &#224; la GPL, bien au contraire, mais je ne
+voudrait pas non plus mettre le projet en p&#233;ril. On est vraiment tout
+petit et donc assez fragile (les &quot;revenus&quot; du site couvrent tout juste
+son h&#233;bergement).
+
+Bref, je consulte et je te dis. Pendant ce temps, dis moi ce que vous
+pensez de la licence Eiffel.
+
+
+Fabrice de Stefanis - aka dcz
+
+
+
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000475.html">[Mageia-webteam] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000474.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#473">[ date ]</a>
+ <a href="thread.html#473">[ thread ]</a>
+ <a href="subject.html#473">[ subject ]</a>
+ <a href="author.html#473">[ 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-March/000474.html b/zarb-ml/mageia-webteam/2011-March/000474.html
new file mode 100644
index 000000000..a7f856928
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000474.html
@@ -0,0 +1,128 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+ </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-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7CFFF5.7060308%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000473.html">
+ <LINK REL="Next" HREF="000476.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7CFFF5.7060308%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sun Mar 13 18:33:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000473.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000476.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#474">[ date ]</a>
+ <a href="thread.html#474">[ thread ]</a>
+ <a href="subject.html#474">[ subject ]</a>
+ <a href="author.html#474">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Third
+
+-------- Message original --------
+Sujet: Re: Question de licence
+Date : Thu, 10 Mar 2011 16:02:30 +0100
+De : dcz &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dcz at phpbb-seo.com</A>&gt;
+Pour : Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat at vilarem.net</A>&gt;
+
+
+
+Hello,
+
+Et tout d'abord d&#233;sol&#233; pour le d&#233;lais, mais il n'est jamais simple de
+prendre des d&#233;cisions coll&#233;giales (tu dois connaitre un peu le truc).
+
+Et donc, apr&#232;s pas mal de r&#233;flexions, nous en somme arriv&#233; &#224; la d&#233;cision
+... de ne rien changer.
+La r&#233;flexion sur nos licences n'est pas finie, mais l'argument principal
+qui est revenu et qui &#224; finit par obtenir la majorit&#233;, est que le seul
+moyen que nous avons de continuer &#224; exister est d'obtenir ce fameux lien
+en retour, et que seule la RPL, &#224; notre connaissance, permet de le
+demander explicitement.
+
+Je suis conscient du fait que la RPL n'est a priori pas compatible avec
+la GPL, mais comme notre but n'est en aucun cas de forker, de nuire,
+d'entrer en comp&#233;tition avec ou de vendre phpBB, que par ailleurs nous
+appr&#233;cions particuli&#232;rement, notre position en cas de litige sera
+simplement d'accepter sans discussions la pr&#233;valence de la licence GPL
+sur la notre (ce qui pourrait en fait &#234;tre d&#233;j&#224; le cas de facto).
+
+C'est une position b&#226;tarde, je te l'accorde, mais elle a le m&#233;rite de
+formaliser notre demande et ne met, &#224; nos yeux, pas nos utilisateurs en
+p&#233;ril dans la mesure ou la licence GPL ne pose de restrictions de cet
+ordre que sur la distribution et pas sur l'utilisation.
+
+
+&gt;&gt;<i> D'autre part, la gpl ni le phpBB group n'ont emp&#234;ch&#233; &#231;a : <A HREF="http://www.inveostore.com/magic-seo-urls-for-phpbb-1">http://www.inveostore.com/magic-seo-urls-for-phpbb-1</A> (pas open source du tout).
+</I>&gt;&gt;<i>
+</I>&gt;<i> &#199;a par contre je suis pr&#234;t &#224; parier que c'est totalement ill&#233;gal :-/
+</I>&gt;<i>
+</I>&gt;<i> (Et d'ailleurs &#224; titre personnel &#231;a me choque beaucoup de voir &#231;a)
+</I>&gt;<i>
+</I>
+L&#224; c'est clair, et ils ne se sont pas g&#234;n&#233;s pour diffamer notre projet :
+<A HREF="http://www.phpbb-seo.com/en/phpbb-mod-rewrite/magic-seo-url-t1811.html">http://www.phpbb-seo.com/en/phpbb-mod-rewrite/magic-seo-url-t1811.html</A>
+
+
+Personnellement, je reste honor&#233; de l'attention que vous nous avez
+port&#233;, et je trouve tr&#232;s dommage que cela ne puisse se concr&#233;tiser
+celons vos conditions, c'est a dire en distribuant publiquement le code
+de votre forum.
+
+Je vous souhaites donc un franc succ&#232;s dans votre nouvelle aventure.
+
+N'h&#233;sites pas &#224; me contacter pour tout besoin d'informations et / ou de
+conseils (technique donc, pas juridique :D ) concernant phpBB et/ou
+phpBB SEO.
+
+Cordialement,
+
+Fabrice de Stefanis - aka dcz
+
+
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000473.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000476.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#474">[ date ]</a>
+ <a href="thread.html#474">[ thread ]</a>
+ <a href="subject.html#474">[ subject ]</a>
+ <a href="author.html#474">[ 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-March/000475.html b/zarb-ml/mageia-webteam/2011-March/000475.html
new file mode 100644
index 000000000..3e35e10ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000475.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Fwd: Re: Question de licence
+ </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%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7CF892.5070008%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000472.html">
+ <LINK REL="Next" HREF="000473.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Fwd: Re: Question de licence</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7CF892.5070008%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Fwd: Re: Question de licence">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sun Mar 13 18:02:10 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000472.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000473.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#475">[ date ]</a>
+ <a href="thread.html#475">[ thread ]</a>
+ <a href="subject.html#475">[ subject ]</a>
+ <a href="author.html#475">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there...
+
+Some of you are aware of the &quot;philosophical phpbb-seo question&quot;...
+
+In short : the mod is under RPL while phpbb forum is under GPLv2
+
+And we are searching a legal way of using it cleanly...
+
+(Note : we are going to lauch the forum without SEO mod and if we can later we'll start usnig it)
+
+Here under (and later the following mails of the discussion with dcz)
+
+Let's go : First
+
+-------- Message original --------
+Sujet: Re: Question de licence
+Date : Wed, 23 Feb 2011 19:50:56 +0100
+De : dcz &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dcz at phpbb-seo.com</A>&gt;
+Pour : Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat at vilarem.net</A>&gt;
+
+
+
+Bonsoir,
+&gt;<i> Avant de pr&#233;senter ma requ&#234;te il va falloir que je pr&#233;sente un peu le contexte.
+</I>&gt;<i>
+</I>&gt;<i> Je suis aujourd'hui charg&#233; de la mise en place du forum de la distribution linux naissante Mageia.
+</I>&gt;<i>
+</I>&gt;<i> Le site web : <A HREF="http://mageia.org/fr/">http://mageia.org/fr/</A>
+</I>
+Int&#233;ressant comme tout &#231;a.
+
+
+&gt;<i> Comme toute communaut&#233; nous aurons besoin d'un forum, et comme toute communaut&#233; orient&#233;e vers les logiciels libres ce forum sera forc&#233;ment libre aussi... question de principe :)
+</I>&gt;<i>
+</I>&gt;<i> Nous avons donc retenu phpbb dans sa branche 3.X &#224; la fois pour sa licence GPL (version 2?) approuv&#233;e par la Free software fondation et pour les fonctionnalit&#233;s offertes.
+</I>&gt;<i>
+</I>&gt;<i> J'ai propos&#233; d'adopter en compl&#233;ment phpbb-seo afin de proposer aux utilisateurs et aux contributeurs des urls lisibles et indexables... du point de vue technique l'id&#233;e a plu &#224; l'&#233;quipe mais l'un de nos contributeurs a relev&#233; que la licence de ce module (RPL si j'ai compris ce qu'on m'a expliqu&#233;) n'&#233;tait pas tout &#224; fait compatible avec la GPL
+</I>
+En fait, dans mon souvenir (hum) j'ai mis &#224; jour &#224; la RPL 1.5 parce que j'avais lu qu'elle &#233;tait devenu plus compatible. Sauf que je ne retrouve plus la source ... et pire je ne trouve rien qui ne dise autre chose que wikip&#233;dia (<A HREF="http://en.wikipedia.org/wiki/Reciprocal_Public_License">http://en.wikipedia.org/wiki/Reciprocal_Public_License</A>) :
+
+&quot;the RPL holds the unique distinction of being the only software license both approved by the Open Source Initiative &lt;<A HREF="http://en.wikipedia.org/wiki/Open_Source_Initiative">http://en.wikipedia.org/wiki/Open_Source_Initiative</A>&gt; and explicitly called out as non-free for matters of substance by the Free Software Foundation &lt;<A HREF="http://en.wikipedia.org/wiki/Free_Software_Foundation">http://en.wikipedia.org/wiki/Free_Software_Foundation</A>&gt;&quot;
+
+ce qui ne contredit pas tout &#224; fait mon souvenir dans la mesure ou il n'est pas explicitement question de la 1.5.
+
+&gt;<i> Du coup se pose &#224; nous la question de notre droit &#224; faire cohabiter phpbb et phpbb-seo, &#224; les utiliser conjointement et &#224; publier le code de notre forum dans une repository...
+</I>
+Dans tous les cas, la RPL n'interdit pas la cohabitation avec l'open source, ni la redistribution du code tel que mis &#224; disposition. D'apr&#232;s ce que j'en comprend, elle impose uniquement de soumettre les &#233;ventuelles am&#233;liorations apport&#233;s &#224; la communaut&#233; d'origine.
+En pratique, c'est juste pour ne pas se retrouver avec dix forks payants. C'est pas tant par parano ou par jalousie, tout ce qu'on produit n'utilise pas cette licence (GYM est par exemple en LGPL), mais bon, il y a malheureusement pas mal de sauvageons dans le monde phpBB, et comme il existe aussi une tendance &#224; faire payer tout ce qui touche au r&#233;f&#233;rencement, je ne voulais pas alimenter ce que nous proposions d'&#233;viter. L'experience &#224; montr&#233; que la pr&#233;caution n'&#233;tait pas inutile.
+La question d'un passage &#224; un LGPL a &#233;t&#233; &#233;voqu&#233; plusieurs fois en interne pour l'instant sans suites (ni refus, en fait, on sait pas), la RPL est moins n&#233;cessaire qu'au d&#233;but c'est s&#251;r.
+
+Donc, juridiquement je ne sais pas, mais c'est clair que votre but n'est pas de distribuer une version payante de notre code, et donc, pour le reste et bien, il n'y a aucun soucis, en ce qui me concerne vous pouvez faire ce que vous voulez.
+Ce qui est sur, c'est que l'id&#233;e, c'est pas de faire des proc&#232;s, on est pas du tout dans cet esprit et encore moins dans ces moyens.
+
+&gt;<i> J'avoue &#234;tre un peu d&#233;muni face &#224; ces questions...
+</I>
+Je ne te le fait pas dire, il faudrait un d&#233;partement juridique &#224; chaque projet open source ...
+
+&gt;<i> donc avant toute chose il me semble logique de vous demander votre sentiment &#224; ce sujet... dans un deuxi&#232;me temps je pense qu'il il me faudra aussi demander l'avis des d&#233;veloppeurs phpbb afin de pouvoir me positionner correctement vis a vis des demandes des deux communaut&#233;s phpbb et phpbb-seo
+</I>
+Question demande, je crois pouvoir dire qu'on en a pas, au contraire, on est toujours heureux de voir notre travail utilis&#233;. Il y a toujours la question du lien, mais si tu regardes bien, on n'en demande qu'un explicitement (pas forc&#233;ment un par page du forum), c'est qui n'est somme toute pas &#233;norme, et je ne crois pas que ce soit le souci.
+
+&gt;<i> Notre souci majeur &#233;tant que nous ne souhaitons pas nous mettre en porte-&#224;-faux vis &#224; vis d'une licence ou de l'autre.
+</I>
+Bah normalement, il n'y a pas de raisons. Si historiquement, le phpBB Group a royalement ignor&#233; les question de r&#233;f&#233;rencement, et que les appr&#233;hensions de certains &#224; ce sujet d&#233;bordent parfois sur nous; pour ma part, je n'ai que du respect pour leur travail. Je soumet tous les bug que je trouve et plusieurs de mes co&#233;quipiers ont &#233;t&#233; ou sont encore membre l'&#233;quipe phpBB.
+On ne se positionne pas en concurrent, la premod et les packs de mise &#224; jour, c'est juste vachement pratique pour nos utilisateurs.
+
+&gt;<i> Donc j'aimerais beaucoup avoir votre sentiment &#224; ce sujet.
+</I>
+Et bien, je suis honor&#233; ;-)
+
+&gt;<i> En pla&#231;ant beaucoup d'espoirs dans votre r&#233;ponse et en vous remerciant par avance,
+</I>
+De mon c&#244;t&#233;, j'esp&#232;re que vous vous prendrez pas trop la t&#234;te avec cette question de licence, notre souhait est bien de contribuer au pot commun, donc, si vous avez besoin d'un truc type engagement ou amendement de licence, n'h&#233;sitez pas, et si vous avez des questions par la suite pareil.
+
+N'h&#233;sites pas non plus &#224; m'envoyer un mail si vous vous lancez et que vous avez besoin de pr&#233;cisions (notre doc n'est pas une doc :-P ) ou de support. Je dis mail parce que je suis super occup&#233; en ce moment et je n'ai pas toujours le temps de fournir du support sur le forum (je me resserve pour la dev).
+
+Enfin voil&#224;.
+
+Et bonne chance pour votre nouvelle aventure.
+
+Fabrice de Stefanis aka dcz
+
+
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000472.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000473.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#475">[ date ]</a>
+ <a href="thread.html#475">[ thread ]</a>
+ <a href="subject.html#475">[ subject ]</a>
+ <a href="author.html#475">[ 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-March/000476.html b/zarb-ml/mageia-webteam/2011-March/000476.html
new file mode 100644
index 000000000..389bcb31e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000476.html
@@ -0,0 +1,173 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+ </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-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7D00CC.7030202%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000474.html">
+ <LINK REL="Next" HREF="000477.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7D00CC.7030202%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sun Mar 13 18:37:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000474.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000477.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#476">[ date ]</a>
+ <a href="thread.html#476">[ thread ]</a>
+ <a href="subject.html#476">[ subject ]</a>
+ <a href="author.html#476">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Fourth and last :)
+
+
+Now all ideas / comments are welcome ^^
+
+
+
+-------- Message original --------
+Sujet: Re: Question de licence
+Date : Sun, 13 Mar 2011 17:46:15 +0100
+De : dcz &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dcz at phpbb-seo.com</A>&gt;
+Pour : Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat at vilarem.net</A>&gt;
+
+
+
+Hello,
+
+&gt;<i> Ce qu'on pourrait &#233;ventuellement envisager c'est de mettre deux repositories git : une pour le forum et toutes nos modifs sous GPLv2 et une sp&#233;cifiquement pour le mod phpbb-seo sous RPL... charge &#224; nos sysadmins (ils vont vouloir ma peau) de &quot;mixer&quot; l'ensemble lors du d&#233;ploiement...
+</I>
+Question certainement un peu b&#234;te, mais pourquoi avez vous besoin d'un
+repos public pour le forum ? Je comprend que vous vouliez suivre son
+&#233;volution et ajouter vos modifs, au del&#224; de &#231;a ?
+C'est pour g&#233;rer des miroir c'est &#231;a (genre tout le monde peut cloner
+tout le site) ?
+
+En tout &#233;tat de cause, pour ce qui est de la s&#233;paration et en se
+r&#233;f&#233;rant uniquement aux header des fichiers php, on peut conclure que
+tous les fichiers de phpBB sont GPL, m&#234;me avec les modifs phpBB SEO, et
+du coup, les seuls fichiers &#224; s&#233;parer seraient les fichiers enti&#232;rement
+phpBB SEO (pas tant que &#231;a au final, d'autant plus que pas tous les mods
+sont RPL) et pour le coup, je pourrais simplifier un poil la vie de vos
+juriste et sysadmin en ne laissant le header RPL que sur les fichiers se
+trouvant dans phpbb_seo/ (on en a pas besoin pour les fichiers de
+langue, ou le fichier acp par exemple). Pour nous, &#231;a ne changerait
+absolument rien.
+
+Une autre solution peut &#234;tre : et si nous ouvrions un repos &quot;ma&#233;gia&quot; sur
+notre svn (<A HREF="http://phpbb-seo.coda-cola.net/">http://phpbb-seo.coda-cola.net/</A>) contenant uniquement les
+fichiers RPL (et donc apr&#232;s n'avoir conserv&#233; cette licence que sur les
+fichiers de phpbb_seo/) ?
+Comme &#231;a, vous pourriez avoir nos fichiers en external dans le votre (je
+ne suis pas un pro de git, mais j'imagine que &#231;a doit &#234;tre possible).
+Vous pourriez alors faire des commit et des update de fa&#231;on transparente
+sans qu'il ne soit plus question de ce soucis de distribution ni de
+prise de t&#234;te avec les &quot;retours de code&quot;. Stricto sensu, votre repos
+serait alors 100% GPL (avec une touche de LGPL pour GYM, mais l&#224;, c'est
+officiellement compatible).
+
+
+&gt;<i> Pour respecter la RPL je te notifierai officiellement de l'url de consultation de notre repository phpbb-seo et on laissera le lien (de toutes les fa&#231;ons on l'aurait laiss&#233; RPL ou pas RPL)
+</I>&gt;<i>
+</I>&gt;<i> Mais pour &#231;a il faut &#234;tre sur que la RPL ne nous obligera pas &#224; publier sous RPL nos modification qui touchent le reste du forum
+</I>&gt;<i>
+</I>&gt;<i> Qu'en penses tu ?
+</I>
+Je t'assure que dans l'esprit, il n'est absolument pas question de
+limiter quoi que ce soit en dehors de notre travail. Techniquement, la
+licence n'imposerait (c'est un grand mot) de soumettre les modifs
+uniquement sur le code concern&#233;, et certainement pas tout le forum. L&#224;,
+on serait vraiment en train de piller phpBB, et c'est vraiment pas notre
+but (et de toutes fa&#231;ons, c'est un non sens).
+
+En pratique, c'est pas la close la plus importante pour nous, loin de
+l&#224;, ce qui compte, c'est que personne ne s'approprie notre taf sans
+notre consentement, c'est &#224; dire qu'il se mette &#224; publier casi ou le
+m&#234;me code en se l'appropriant (m&#234;me en nous citant dans un historique).
+Et dans l'esprit, je pense que vous &#234;tes plus que dispos&#233;s &#224; nous faire
+part des id&#233;es g&#233;niales que vous auriez pu avoir pour ajouter un truc
+qui tue &#224; la r&#233;&#233;criture (m&#234;me si cela me parait assez &#233;loign&#233; de votre
+but de d&#233;part).
+
+De plus, &#224; mes yeux, il y a une tr&#232;s grande diff&#233;rence entre bosser sur
+un repos public (qui permet donc la r&#233;cup&#233;ration du code) et publier des
+packages sp&#233;cifiques (type le package de r&#233;&#233;criture tout seul dans un
+zip avec une belle page publique qui le pr&#233;sente tout seul en disant que
+c'est la meilleur version).
+
+Pour revenir &#224; la pratique, ce n'est pas non plus demain la veille qu'on
+fera un proc&#232;s &#224; qui que ce soit. Dans les pires cas qu'on a rencontr&#233;,
+type phpbb3seo.com qui au d&#233;part pr&#233;sentaient carr&#233;ment notre travail
+tel quel comme le leur, (et oui, phpBB un monde impitoyable :-) ), j'ai
+envoy&#233; un mail, et cela a suffit. De toute fa&#231;on, on aurait pas trop eu
+les moyens d'aller plus loin.
+Et comme tu peux le constater, phpbb3seo.com distribue aujourd'hui nos
+mods sans se les approprier et sans que cela nous pose de soucis.
+
+On a aussi rien trouv&#233; &#224; redire &#224; la demande d'un hollandais qui voulais
+d&#233;poser phpbb-seo.nl pour proposer une traduction (le projet n'as
+cependant pas abouti, mais pendant un temps, le domaine n'&#233;tait pas
+parqu&#233; et pr&#233;sentait bien notre travail en promettant une traduction).
+
+Mais bon, je crois pas avoir besoin de te convaincre sur notre &#233;tat
+d'esprit, j'ai bien conscience qu'il s'agit l&#224; de probl&#232;mes
+technico-juridiques.
+
+&gt;<i> En tout cas merci pour tes efforts... et d&#233;sol&#233; de vous avoir pos&#233; tous ces probl&#232;mes m&#233;taphysiques. :-/
+</I>
+T'inqui&#232;tes, c'est comment dire ... un sujet rafraichissant ;-)
+
+&gt;<i> PS : Pour pouvoir discuter plus avant de nos options en interne j'aurais besoin de forwarder nos &#233;changes sur la liste des administrateurs syst&#232;me Mageia... est-ce que j'ai ton autorisation pour le faire ?
+</I>
+Oui tu peux, aucun soucis (si ce n'est que je risque de perdre des voix
+pour l'&#233;lection de Mr orthographe 2011, ah m&#233;thode globale quand tu nous
+tiens ...).
+
+Amicalement,
+
+Fabrice de Stefanis - aka dcz
+
+
+
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000474.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000477.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#476">[ date ]</a>
+ <a href="thread.html#476">[ thread ]</a>
+ <a href="subject.html#476">[ subject ]</a>
+ <a href="author.html#476">[ 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-March/000477.html b/zarb-ml/mageia-webteam/2011-March/000477.html
new file mode 100644
index 000000000..386d4e4a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000477.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+ </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-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7D1FF1.7000501%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000476.html">
+ <LINK REL="Next" HREF="000478.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7D1FF1.7000501%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence">maat-ml at vilarem.net
+ </A><BR>
+ <I>Sun Mar 13 20:50:09 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000476.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000478.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#477">[ date ]</a>
+ <a href="thread.html#477">[ thread ]</a>
+ <a href="subject.html#477">[ subject ]</a>
+ <a href="author.html#477">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 13/03/2011 19:52, nicolas vigier a &#233;crit :
+&gt;<i> On Sun, 13 Mar 2011, Ma&#226;t wrote:
+</I>&gt;<i>
+</I>&gt;&gt;<i> En tout &#233;tat de cause, pour ce qui est de la s&#233;paration et en se
+</I>&gt;&gt;<i> r&#233;f&#233;rant uniquement aux header des fichiers php, on peut conclure que
+</I>&gt;&gt;<i> tous les fichiers de phpBB sont GPL, m&#234;me avec les modifs phpBB SEO, et
+</I>&gt;&gt;<i> du coup, les seuls fichiers &#224; s&#233;parer seraient les fichiers enti&#232;rement
+</I>&gt;&gt;<i> phpBB SEO (pas tant que &#231;a au final, d'autant plus que pas tous les mods
+</I>&gt;&gt;<i> sont RPL) et pour le coup, je pourrais simplifier un poil la vie de vos
+</I>&gt;&gt;<i> juriste et sysadmin en ne laissant le header RPL que sur les fichiers se
+</I>&gt;&gt;<i> trouvant dans phpbb_seo/ (on en a pas besoin pour les fichiers de
+</I>&gt;&gt;<i> langue, ou le fichier acp par exemple). Pour nous, &#231;a ne changerait
+</I>&gt;&gt;<i> absolument rien.
+</I>&gt;<i> GPL apply to &quot;derivated work&quot;, so not only modified file, but all files
+</I>&gt;<i> that are part of &quot;derivated work&quot;.
+</I>&gt;<i>
+</I>I'm not easy enough with english... sorry but i need to switch to french for that.
+
+dcz et les devs de phpbb-seo ont fait montre d'une vraie &#233;coute et d'une vraie bonne volont&#233; comme vous pourrez constater &#224; la lecture de nos &#233;changes.
+
+Pour &#234;tre exhaustif et pr&#233;cis (nota : suis pas avocat) : m&#234;me si leur travail pourrait &#234;tre consid&#233;r&#233; comme un d&#233;riv&#233; tombant sous le coup de la GPLv2 il pourrait aussi &#234;tre consid&#233;r&#233; comme un produit interfac&#233;... tombant sous le coup de l'exception &#224; la GPLv2 pour l'usage de librairies... donc potentiellement plus difficile de trancher qu'il n'y parait...
+
+Quelques pr&#233;cisions suppl&#233;mentaires : ces gens ne sont pas avocats, ce sont des devs ouverts d'esprit et de philosophie qui veulent juste &#233;viter que leur travail soit exploit&#233; de fa&#231;on ind&#233;licate et commerciale (&#231;a leur est arriv&#233; donc ils sont assez sensibles &#224; la question)
+
+Malgr&#233; cette pr&#233;occupation ils ont montr&#233; beaucoup de bonne volont&#233; et j'en connais pas mal d'autres qui auraient envoy&#233; pa&#238;tre un chieur venant parler de licences avec pertes et fracas.
+
+Je pense que &#231;a m&#233;rite qu'on essaye de se montrer fair-play nous aussi... apr&#232;s tout &#231;a fait partie des valeurs qui nous animent tous ici...
+
+Bref, r&#233;pondre &#224; la bonne volont&#233; et &#224; l'ouverture par la violence sur l'air du &quot;c'est la GPLv2 qui pr&#233;vaut donc on va faire comme &#231;a nous chante&quot; et tout publier en tas sous GPLv2 compte tenu du contexte ne me parait pas tr&#232;s fair-play (pour &#234;tre poli) m&#234;me si &#231;a passerait vu qu'ils n'ont pas les moyens d'engager une proc&#233;dure...
+
+Si j'ai demand&#233; &#224; dcz l'autorisation (et il me l'a donn&#233;e) de poster ici nos &#233;changes c'est dans l'espoir qu'on puisse trouver une solution &#233;l&#233;gante et fair play... justement pour &#233;viter les solutions &quot;brutes et bestiales&quot; consistant soit &#224; ne pas utiliser du tout soit &#224; passer en force en comptant sur le fait qu'ils n'ont pas les moyens de r&#233;agir.
+
+Je pr&#233;f&#232;rerais qu'on trouve une solution &#233;l&#233;gante et civilis&#233;e... et c'est pour &#231;a que je fais appel &#224; vous.
+
+Ma&#226;t
+
+
+
+
+
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000476.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000478.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#477">[ date ]</a>
+ <a href="thread.html#477">[ thread ]</a>
+ <a href="subject.html#477">[ subject ]</a>
+ <a href="author.html#477">[ 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-March/000478.html b/zarb-ml/mageia-webteam/2011-March/000478.html
new file mode 100644
index 000000000..a23372f38
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000478.html
@@ -0,0 +1,98 @@
+<!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=%3C20110313230003.18D4B4262D%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="000477.html">
+ <LINK REL="Next" HREF="000479.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=%3C20110313230003.18D4B4262D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Mar 14 00:00:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000477.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000479.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#478">[ date ]</a>
+ <a href="thread.html#478">[ thread ]</a>
+ <a href="subject.html#478">[ subject ]</a>
+ <a href="author.html#478">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000477.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000479.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#478">[ date ]</a>
+ <a href="thread.html#478">[ thread ]</a>
+ <a href="subject.html#478">[ subject ]</a>
+ <a href="author.html#478">[ 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-March/000479.html b/zarb-ml/mageia-webteam/2011-March/000479.html
new file mode 100644
index 000000000..57783a914
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000479.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+ </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-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7DEB32.6080900%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000478.html">
+ <LINK REL="Next" HREF="000482.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20Fwd%3A%20Re%3A%20Question%20de%20licence&In-Reply-To=%3C4D7DEB32.6080900%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence">maat-ml at vilarem.net
+ </A><BR>
+ <I>Mon Mar 14 11:17:22 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000478.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000482.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#479">[ date ]</a>
+ <a href="thread.html#479">[ thread ]</a>
+ <a href="subject.html#479">[ subject ]</a>
+ <a href="author.html#479">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 14/03/2011 02:26, nicolas vigier a &#233;crit :
+&gt;<i> On Sun, 13 Mar 2011, Ma&#226;t wrote:
+</I>&gt;<i>
+</I>&gt;&gt;<i> Le 13/03/2011 19:52, nicolas vigier a &#233;crit :
+</I>&gt;&gt;&gt;<i> On Sun, 13 Mar 2011, Ma&#226;t wrote:
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> En tout &#233;tat de cause, pour ce qui est de la s&#233;paration et en se
+</I>&gt;&gt;&gt;&gt;<i> r&#233;f&#233;rant uniquement aux header des fichiers php, on peut conclure que
+</I>&gt;&gt;&gt;&gt;<i> tous les fichiers de phpBB sont GPL, m&#234;me avec les modifs phpBB SEO, et
+</I>&gt;&gt;&gt;&gt;<i> du coup, les seuls fichiers &#224; s&#233;parer seraient les fichiers enti&#232;rement
+</I>&gt;&gt;&gt;&gt;<i> phpBB SEO (pas tant que &#231;a au final, d'autant plus que pas tous les mods
+</I>&gt;&gt;&gt;&gt;<i> sont RPL) et pour le coup, je pourrais simplifier un poil la vie de vos
+</I>&gt;&gt;&gt;&gt;<i> juriste et sysadmin en ne laissant le header RPL que sur les fichiers se
+</I>&gt;&gt;&gt;&gt;<i> trouvant dans phpbb_seo/ (on en a pas besoin pour les fichiers de
+</I>&gt;&gt;&gt;&gt;<i> langue, ou le fichier acp par exemple). Pour nous, &#231;a ne changerait
+</I>&gt;&gt;&gt;&gt;<i> absolument rien.
+</I>&gt;&gt;&gt;<i> GPL apply to &quot;derivated work&quot;, so not only modified file, but all files
+</I>&gt;&gt;&gt;<i> that are part of &quot;derivated work&quot;.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> I'm not easy enough with english... sorry but i need to switch to french for that.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> dcz et les devs de phpbb-seo ont fait montre d'une vraie &#233;coute et d'une vraie bonne volont&#233; comme vous pourrez constater &#224; la lecture de nos &#233;changes.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Pour &#234;tre exhaustif et pr&#233;cis (nota : suis pas avocat) : m&#234;me si leur travail pourrait &#234;tre consid&#233;r&#233; comme un d&#233;riv&#233; tombant sous le coup de la GPLv2 il pourrait aussi &#234;tre consid&#233;r&#233; comme un produit interfac&#233;... tombant sous le coup de l'exception &#224; la GPLv2 pour l'usage de librairies... donc potentiellement plus difficile de trancher qu'il n'y parait...
+</I>&gt;<i> Sachant qu'ils ont besoin de modifier certains fichiers de phpbb, que
+</I>&gt;<i> leur module est fait sp&#233;cialement pour phpbb et n'est pas utilisable
+</I>&gt;<i> avec autre chose que phpbb, ca me semble compliqu&#233; de ne pas considerer
+</I>&gt;<i> ca comme deriv&#233; de phpbb.
+</I>&gt;<i>
+</I>Pas faux :)
+
+&gt;&gt;<i> Quelques pr&#233;cisions suppl&#233;mentaires : ces gens ne sont pas avocats, ce sont des devs ouverts d'esprit et de philosophie qui veulent juste &#233;viter que leur travail soit exploit&#233; de fa&#231;on ind&#233;licate et commerciale (&#231;a leur est arriv&#233; donc ils sont assez sensibles &#224; la question)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Malgr&#233; cette pr&#233;occupation ils ont montr&#233; beaucoup de bonne volont&#233; et j'en connais pas mal d'autres qui auraient envoy&#233; pa&#238;tre un chieur venant parler de licences avec pertes et fracas.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Je pense que &#231;a m&#233;rite qu'on essaye de se montrer fair-play nous aussi... apr&#232;s tout &#231;a fait partie des valeurs qui nous animent tous ici...
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Bref, r&#233;pondre &#224; la bonne volont&#233; et &#224; l'ouverture par la violence sur l'air du &quot;c'est la GPLv2 qui pr&#233;vaut donc on va faire comme &#231;a nous chante&quot; et tout publier en tas sous GPLv2 compte tenu du contexte ne me parait pas tr&#232;s fair-play (pour &#234;tre poli) m&#234;me si &#231;a passerait vu qu'ils n'ont pas les moyens d'engager une proc&#233;dure...
+</I>&gt;<i> Moi j'ai jamais parl&#233; de &quot;tout publier en tas sous GPLv2&quot; et j'ai vu
+</I>&gt;<i> personne le faire, donc je vois pas pourquoi tu dis ca. De toute facon
+</I>&gt;<i> on ne peut pas le faire, il n'y a que les auteurs du code qui pourraient
+</I>&gt;<i> le publier en GPL puisque la license actuelle est incompatible.
+</I>&gt;<i>
+</I>Oul&#224; je me suis exprim&#233; comme un pied alors.
+
+J'ai juste exprim&#233; une crainte (anticipation) pas une accusation...
+
+D&#233;sol&#233; si mon message a &#233;t&#233; re&#231;u comme &#231;a.
+
+&gt;&gt;<i> Si j'ai demand&#233; &#224; dcz l'autorisation (et il me l'a donn&#233;e) de poster ici nos &#233;changes c'est dans l'espoir qu'on puisse trouver une solution &#233;l&#233;gante et fair play... justement pour &#233;viter les solutions &quot;brutes et bestiales&quot; consistant soit &#224; ne pas utiliser du tout soit &#224; passer en force en comptant sur le fait qu'ils n'ont pas les moyens de r&#233;agir.
+</I>&gt;<i> C'est quoi &quot;passer en force&quot; ?
+</I>&gt;<i>
+</I>C'est mettre tout dans notre repos sous GPLv2 d'autorit&#233; et faire comme si le mod SEO avait &#233;t&#233; &#233;crit sous GPLv2
+
+&gt;&gt;<i> Je pr&#233;f&#232;rerais qu'on trouve une solution &#233;l&#233;gante et civilis&#233;e... et c'est pour &#231;a que je fais appel &#224; vous.
+</I>&gt;<i> Oui. Mais &#224; part tenter de les convaincre d'utiliser une license qui
+</I>&gt;<i> respecte celle de phpbb, ou ne pas utiliser ce module, je sais pas ce
+</I>&gt;<i> qu'on pourrait faire d'autre ...
+</I>&gt;<i>
+</I>&gt;<i> On pourrait ignorer la license de phpbb, ou faire comme si on avait pas
+</I>&gt;<i> vu, mais je suis pas sur que ca soit une &quot;solution &#233;l&#233;gante et civilis&#233;e&quot;.
+</I>&gt;<i>
+</I>&gt;<i> Sinon il n'y a pas d'autre module seo qui existe pour phpbb ? Ou bien on
+</I>&gt;<i> ne pourrait pas en developper un en GPL et essaier de le faire integrer
+</I>&gt;<i> directement dans phpbb ?
+</I>&gt;<i>
+</I>
+Comme je ma&#238;trise moins les subtilit&#233;s des questions le licenses opensource que vous autres je me suis dit dans ma p'tite t&#234;te que si il y avait des options auxquelles je n'avais pas pens&#233; ben vous les trouveriez :o)
+
+Des mods SEO non libre oui y'en a... des sous GPL pas &#224; ma connaissance...
+
+(En effet on pourrait en coder un)
+
+
+
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000478.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000482.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#479">[ date ]</a>
+ <a href="thread.html#479">[ thread ]</a>
+ <a href="subject.html#479">[ subject ]</a>
+ <a href="author.html#479">[ 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-March/000480.html b/zarb-ml/mageia-webteam/2011-March/000480.html
new file mode 100644
index 000000000..9a0436488
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000480.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTima5SsT0888V1ARfM1NK-9LT-0wp953m%2B0qYJu_%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="000426.html">
+ <LINK REL="Next" HREF="000481.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTima5SsT0888V1ARfM1NK-9LT-0wp953m%2B0qYJu_%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintdb">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Mar 14 19:19:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000426.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000481.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#480">[ date ]</a>
+ <a href="thread.html#480">[ thread ]</a>
+ <a href="subject.html#480">[ subject ]</a>
+ <a href="author.html#480">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi Kosmas, all,
+
+I pushed a few little updates to maintdb code base and updated the
+wiki page as well:
+<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb#status">http://mageia.org/wiki/doku.php?id=web:maintdb#status</A>
+
+Kosmas, could you have a look at it and see if it looks correct. I'd
+need some ideas about implementing both POST and DELETE methods for
+creating/deleting relationships.
+
+Other important needed changes are the json output (not available at
+this time), updating db schema and related code (no email, but uid; no
+first/last name), removing unneeded parets (media, cpackages),
+renaming spackages to packages, making all create/update/delete
+methods in Web mode only available to a local admin (or removing
+them). And of course, styling this a bit. So if there are hands
+willing to take over some bits in this, feel free! (see the wiki page
+for the code repository access).
+
+Cheers,
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000426.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000481.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#480">[ date ]</a>
+ <a href="thread.html#480">[ thread ]</a>
+ <a href="subject.html#480">[ subject ]</a>
+ <a href="author.html#480">[ 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-March/000481.html b/zarb-ml/mageia-webteam/2011-March/000481.html
new file mode 100644
index 000000000..6fffc15cb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000481.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTimhuKkjVhhgtAT%2BDT6F0oNdhaLDxTZNTa0VxMSf%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="000480.html">
+ <LINK REL="Next" HREF="000484.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTimhuKkjVhhgtAT%2BDT6F0oNdhaLDxTZNTa0VxMSf%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintdb">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Mar 14 23:00:22 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000480.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000484.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#481">[ date ]</a>
+ <a href="thread.html#481">[ thread ]</a>
+ <a href="subject.html#481">[ subject ]</a>
+ <a href="author.html#481">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, Mar 14, 2011 at 19:19, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> I pushed a few little updates to maintdb code base and updated the
+</I>&gt;<i> wiki page as well:
+</I>&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb#status">http://mageia.org/wiki/doku.php?id=web:maintdb#status</A>
+</I>
+Kosmas, FYI, I added shikamaru as a project member on gitorious.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000480.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000484.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#481">[ date ]</a>
+ <a href="thread.html#481">[ thread ]</a>
+ <a href="subject.html#481">[ subject ]</a>
+ <a href="author.html#481">[ 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-March/000482.html b/zarb-ml/mageia-webteam/2011-March/000482.html
new file mode 100644
index 000000000..c7b78ec50
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000482.html
@@ -0,0 +1,96 @@
+<!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=%3C20110314230002.5AB05423DF%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="000479.html">
+ <LINK REL="Next" HREF="000483.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=%3C20110314230002.5AB05423DF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 15 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000479.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000483.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#482">[ date ]</a>
+ <a href="thread.html#482">[ thread ]</a>
+ <a href="subject.html#482">[ subject ]</a>
+ <a href="author.html#482">[ 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>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000479.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A></li>
+ <LI>Next message: <A HREF="000483.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#482">[ date ]</a>
+ <a href="thread.html#482">[ thread ]</a>
+ <a href="subject.html#482">[ subject ]</a>
+ <a href="author.html#482">[ 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-March/000483.html b/zarb-ml/mageia-webteam/2011-March/000483.html
new file mode 100644
index 000000000..51adf7b01
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000483.html
@@ -0,0 +1,73 @@
+<!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=%3C20110314230756.1476E42596%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="000482.html">
+ <LINK REL="Next" HREF="000488.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=%3C20110314230756.1476E42596%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 15 00:07:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000482.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000488.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#483">[ date ]</a>
+ <a href="thread.html#483">[ thread ]</a>
+ <a href="subject.html#483">[ subject ]</a>
+ <a href="author.html#483">[ 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>
+
+Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Target Milestone|--- |Mageia 1
+ Priority|Normal |High
+
+--
+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="000482.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000488.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#483">[ date ]</a>
+ <a href="thread.html#483">[ thread ]</a>
+ <a href="subject.html#483">[ subject ]</a>
+ <a href="author.html#483">[ 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-March/000484.html b/zarb-ml/mageia-webteam/2011-March/000484.html
new file mode 100644
index 000000000..820be5e89
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000484.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTik92Qm8wfbnh5mZBMgex2TNSGX6Wi2o_gAFLSsN%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="000481.html">
+ <LINK REL="Next" HREF="000485.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTik92Qm8wfbnh5mZBMgex2TNSGX6Wi2o_gAFLSsN%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintdb">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Mar 15 01:02:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000481.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000485.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#484">[ date ]</a>
+ <a href="thread.html#484">[ thread ]</a>
+ <a href="subject.html#484">[ subject ]</a>
+ <a href="author.html#484">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 14 March 2011 22:00, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+
+&gt;<i> On Mon, Mar 14, 2011 at 19:19, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;
+</I>&gt;<i> wrote:
+</I>&gt;<i> &gt; I pushed a few little updates to maintdb code base and updated the
+</I>&gt;<i> &gt; wiki page as well:
+</I>&gt;<i> &gt; <A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb#status">http://mageia.org/wiki/doku.php?id=web:maintdb#status</A>
+</I>&gt;<i>
+</I>&gt;<i> Kosmas, FYI, I added shikamaru as a project member on gitorious.
+</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 Romain,
+
+Just pulled your changes.
+Looks nice !
+
+Welll done.
+Just a small note.
+As it is the beginning of the app, wouldn't be better to recreate the tables
+with only the necessary fields, instead of adding migrations that only
+remove the fields?
+
+No problem about adding shikamaru :-)
+the more the merrier :-)
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110315/d6694ce7/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000481.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000485.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#484">[ date ]</a>
+ <a href="thread.html#484">[ thread ]</a>
+ <a href="subject.html#484">[ subject ]</a>
+ <a href="author.html#484">[ 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-March/000485.html b/zarb-ml/mageia-webteam/2011-March/000485.html
new file mode 100644
index 000000000..b5cdc63ad
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000485.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTikrM%2BJ%2BprcZYwd8hAQNRQ2coaSLjeZ_4Q-btt_P%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="000484.html">
+ <LINK REL="Next" HREF="000486.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTikrM%2BJ%2BprcZYwd8hAQNRQ2coaSLjeZ_4Q-btt_P%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintdb">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 15 10:14:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000484.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000486.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#485">[ date ]</a>
+ <a href="thread.html#485">[ thread ]</a>
+ <a href="subject.html#485">[ subject ]</a>
+ <a href="author.html#485">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+On Tue, Mar 15, 2011 at 01:02, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> Just pulled your changes.
+</I>&gt;<i> Looks nice !
+</I>
+Thanks.
+
+&gt;<i> As it is the beginning of the app, wouldn't be better to recreate the tables
+</I>&gt;<i> with only the necessary fields, instead of adding migrations that only
+</I>&gt;<i> remove the fields?
+</I>
+I wondered, yes, because that makes a lot of things to move around,
+although the end result would be about the same (hopefully, I managed
+the spackage=&gt;package renaming withouth breaking too much). Would you
+just recreate the tables or just remake the app from scratch, porting
+only the new portions of code needed?
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000484.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000486.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#485">[ date ]</a>
+ <a href="thread.html#485">[ thread ]</a>
+ <a href="subject.html#485">[ subject ]</a>
+ <a href="author.html#485">[ 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-March/000486.html b/zarb-ml/mageia-webteam/2011-March/000486.html
new file mode 100644
index 000000000..c06916e65
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000486.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTinDb7FmYeFy%2BytEJEStqM-wNd%2BUmja5yzXzWq5h%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="000485.html">
+ <LINK REL="Next" HREF="000487.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTinDb7FmYeFy%2BytEJEStqM-wNd%2BUmja5yzXzWq5h%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintdb">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Mar 15 10:25:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000485.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000487.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#486">[ date ]</a>
+ <a href="thread.html#486">[ thread ]</a>
+ <a href="subject.html#486">[ subject ]</a>
+ <a href="author.html#486">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 15 March 2011 09:14, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> On Tue, Mar 15, 2011 at 01:02, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt;
+</I>&gt;<i> wrote:
+</I>&gt;<i> &gt; Just pulled your changes.
+</I>&gt;<i> &gt; Looks nice !
+</I>&gt;<i>
+</I>&gt;<i> Thanks.
+</I>&gt;<i>
+</I>&gt;<i> &gt; As it is the beginning of the app, wouldn't be better to recreate the
+</I>&gt;<i> tables
+</I>&gt;<i> &gt; with only the necessary fields, instead of adding migrations that only
+</I>&gt;<i> &gt; remove the fields?
+</I>&gt;<i>
+</I>&gt;<i> I wondered, yes, because that makes a lot of things to move around,
+</I>&gt;<i> although the end result would be about the same (hopefully, I managed
+</I>&gt;<i> the spackage=&gt;package renaming withouth breaking too much). Would you
+</I>&gt;<i> just recreate the tables or just remake the app from scratch, porting
+</I>&gt;<i> only the new portions of code needed?
+</I>&gt;<i>
+</I>
+ We won't need to make any changes to the actual application.
+ We can put all the changes to the original migration, then remove all the
+tables (migrate down the database), and then run the migration again to
+create the new tables. So the whole of the application wouldn't need any
+change at all.
+If you agree I can do that, don't worry about it.
+
+For the spackage renaming, it was there to distinguish it from the compiled
+packages and to be one word that sometimes make it easier.
+Since we do not need the compiled packages any more, we can simply call that
+packages.
+So maybe we can also change it to be only packages.
+Not a big change again, but we will need to change model,views, controllers.
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110315/080538ae/attachment-0001.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000485.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000487.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#486">[ date ]</a>
+ <a href="thread.html#486">[ thread ]</a>
+ <a href="subject.html#486">[ subject ]</a>
+ <a href="author.html#486">[ 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-March/000487.html b/zarb-ml/mageia-webteam/2011-March/000487.html
new file mode 100644
index 000000000..dda9c02a2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000487.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Maintdb
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTinHzzgiJUOnDN9FynqaMCYFMqLtZa%3DPG38-AN1v%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="000486.html">
+ <LINK REL="Next" HREF="000421.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Maintdb</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Maintdb&In-Reply-To=%3CAANLkTinHzzgiJUOnDN9FynqaMCYFMqLtZa%3DPG38-AN1v%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Maintdb">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 15 10:29:53 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000486.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000421.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#487">[ date ]</a>
+ <a href="thread.html#487">[ thread ]</a>
+ <a href="subject.html#487">[ subject ]</a>
+ <a href="author.html#487">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 15, 2011 at 10:25, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> &#160;We won't need to make any changes to the actual application.
+</I>&gt;<i> &#160;We can put all the changes to the original migration, then remove all the
+</I>&gt;<i> tables (migrate down the database), and then run the migration again to
+</I>&gt;<i> create the new tables. So the whole of the application wouldn't need any
+</I>&gt;<i> change at all.
+</I>&gt;<i> If you agree I can do that, don't worry about it.
+</I>
+Oh, ok, perfect then.
+
+&gt;<i> For the spackage renaming, it was there to distinguish it from the compiled
+</I>&gt;<i> packages and to be one word that sometimes make it easier.
+</I>&gt;<i> Since we do not need the compiled packages any more, we can simply call that
+</I>&gt;<i> packages.
+</I>
+Yep.
+
+&gt;<i> So maybe we can also change it to be only packages.
+</I>&gt;<i> Not a big change again, but we will need to change model,views, controllers.
+</I>
+Actually, I pushed this change already :-p
+See <A HREF="http://gitorious.org/mageia-maintainers-database-r2/mageia-maintainers-database-r2/commit/76b40f3ff430e007713959c81d2e65844bc162cb">http://gitorious.org/mageia-maintainers-database-r2/mageia-maintainers-database-r2/commit/76b40f3ff430e007713959c81d2e65844bc162cb</A>
+(and things seemed to work fine).
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000486.html">[Mageia-webteam] Maintdb
+</A></li>
+ <LI>Next message: <A HREF="000421.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#487">[ date ]</a>
+ <a href="thread.html#487">[ thread ]</a>
+ <a href="subject.html#487">[ subject ]</a>
+ <a href="author.html#487">[ 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-March/000488.html b/zarb-ml/mageia-webteam/2011-March/000488.html
new file mode 100644
index 000000000..57cbbd706
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000488.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia Web site(s)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Web%20site%28s%29&In-Reply-To=%3CAANLkTi%3DcGkK-W8WkSN6eE22axzp5VdUNY8C_V7%2BxP7fZ%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="000483.html">
+ <LINK REL="Next" HREF="000575.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia Web site(s)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Web%20site%28s%29&In-Reply-To=%3CAANLkTi%3DcGkK-W8WkSN6eE22axzp5VdUNY8C_V7%2BxP7fZ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia Web site(s)">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 15 12:05:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000483.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000575.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#488">[ date ]</a>
+ <a href="thread.html#488">[ thread ]</a>
+ <a href="subject.html#488">[ subject ]</a>
+ <a href="author.html#488">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello there,
+
+alpha2 is out, our logo is set, let's push the bar further now.
+
+Here's a global direction document to help:
+<A HREF="http://mageia.org/wiki/doku.php?id=web:website">http://mageia.org/wiki/doku.php?id=web:website</A>
+
+This needs your input from each team (market/comm, web, artwork) and
+feel free to point others to it as well to gather feedback.
+
+Feel free to comment, add, update, but keeping it focused on not too
+specific details. The goal is to write down guidelines for the
+following milestones:
+ * general style of the website
+ * global navigation (role, contents, behaviour, design,
+implementation) to be rolled out on all mageia.org as much as possible
+ * main mageia.org theme
+ * particular pages design and implementation (order/priority to
+discuss later; however I expect us to have these ready for beta1 -
+April, 5th: global nav, basic global theme &amp; downloads page).
+
+Thank you a lot for your feedback or even mockups on either list (I'll
+try to summarize) or on the page. We will start actively working on
+this in week 12 (one week after alpha2 release).
+
+Cheers!
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000483.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000575.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#488">[ date ]</a>
+ <a href="thread.html#488">[ thread ]</a>
+ <a href="subject.html#488">[ subject ]</a>
+ <a href="author.html#488">[ 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-March/000489.html b/zarb-ml/mageia-webteam/2011-March/000489.html
new file mode 100644
index 000000000..19e2f96d5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000489.html
@@ -0,0 +1,94 @@
+<!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=%3C20110315230002.57FE342532%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="000576.html">
+ <LINK REL="Next" HREF="000490.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=%3C20110315230002.57FE342532%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 16 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000576.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI>Next message: <A HREF="000490.html">[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#489">[ date ]</a>
+ <a href="thread.html#489">[ thread ]</a>
+ <a href="subject.html#489">[ subject ]</a>
+ <a href="author.html#489">[ 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>
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000576.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI>Next message: <A HREF="000490.html">[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#489">[ date ]</a>
+ <a href="thread.html#489">[ thread ]</a>
+ <a href="subject.html#489">[ subject ]</a>
+ <a href="author.html#489">[ 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-March/000490.html b/zarb-ml/mageia-webteam/2011-March/000490.html
new file mode 100644
index 000000000..55bc0f7d1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000490.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage
+ </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%20386%5D%20%5BNew%5D%20Cannot%20reset%20password%20if%20the%20user%0A%20didn%27t%20set%20preferedLanguage&In-Reply-To=%3Cbug-386-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="000489.html">
+ <LINK REL="Next" HREF="000491.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20386%5D%20%5BNew%5D%20Cannot%20reset%20password%20if%20the%20user%0A%20didn%27t%20set%20preferedLanguage&In-Reply-To=%3Cbug-386-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 16 00:57:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000489.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000491.html">[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#490">[ date ]</a>
+ <a href="thread.html#490">[ thread ]</a>
+ <a href="subject.html#490">[ subject ]</a>
+ <a href="author.html#490">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+
+ Summary: Cannot reset password if the user didn't set
+ preferedLanguage
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">misc at zarb.org</A>
+
+
+A user asked me to reset his password, but following the link &quot;reset password&quot;
+on catdap caused this error :
+
+
+[Tue Mar 15 23:52:15 2011] [error] [client 82.238.220.82] FastCGI: server
+&quot;/var/www/identity/script/catdap_fastcgi.pl&quot; stderr:
+ [error] Caught exception in
+CatDap::Controller::admin-&gt;password &quot;Can't locate object method
+&quot;preferredLanguage&quot; via package
+&quot;Catalyst::Model::LDAP::Entry&quot; at
+/var/www/identity/script/../lib/CatDap/Controller/admin.pm line 536&quot;, referer:
+<A HREF="https://identity.mageia.org/admin/password/ashledombos">https://identity.mageia.org/admin/password/ashledombos</A>
+
+Indeed, the user do not have preferredLanguage set.
+
+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="000489.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000491.html">[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#490">[ date ]</a>
+ <a href="thread.html#490">[ thread ]</a>
+ <a href="subject.html#490">[ subject ]</a>
+ <a href="author.html#490">[ 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-March/000491.html b/zarb-ml/mageia-webteam/2011-March/000491.html
new file mode 100644
index 000000000..9dd615afa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000491.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk
+ </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%20387%5D%20%5BNew%5D%20Setting%20the%20preferedLanguage%20of%20a%0A%20user%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3Cbug-387-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="000490.html">
+ <LINK REL="Next" HREF="000492.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20387%5D%20%5BNew%5D%20Setting%20the%20preferedLanguage%20of%20a%0A%20user%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3Cbug-387-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 16 01:02:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000490.html">[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI>Next message: <A HREF="000492.html">[Mageia-webteam] 2011/week 11 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#491">[ date ]</a>
+ <a href="thread.html#491">[ thread ]</a>
+ <a href="subject.html#491">[ subject ]</a>
+ <a href="author.html#491">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+
+ Summary: Setting the preferedLanguage of a user cause a error
+ in the current trunk
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">misc at zarb.org</A>
+
+
+Following bug 386, I have added a prefered language to the user, using the
+admin/account_modify url.
+Then catalyst also showed a error message :
+
+[Tue Mar 15 23:55:30 2011] [error] [client 82.238.220.82] FastCGI: server
+&quot;/var/www/identity-trunk/script/catdap_fastcgi.pl&quot; stderr: [error] Caught
+exception in CatDap::Controller::admin-&gt;account_modify &quot;Can't locate object
+method &quot;reverse&quot; via package &quot;URI::https&quot; at
+/usr/lib/perl5/vendor_perl/5.10.1/Catalyst/DispatchType/Index.pm line 87.&quot;,
+referer: <A HREF="https://identity-trunk.mageia.org/admin/account_modify/ashledombos">https://identity-trunk.mageia.org/admin/account_modify/ashledombos</A>
+
+yet, the operation worked well, the account was modified.
+
+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="000490.html">[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI>Next message: <A HREF="000492.html">[Mageia-webteam] 2011/week 11 review
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#491">[ date ]</a>
+ <a href="thread.html#491">[ thread ]</a>
+ <a href="subject.html#491">[ subject ]</a>
+ <a href="author.html#491">[ 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-March/000492.html b/zarb-ml/mageia-webteam/2011-March/000492.html
new file mode 100644
index 000000000..afe4a3c0f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000492.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 11 review
+ </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%2011%20review&In-Reply-To=%3CAANLkTikvkiCJOCZZ_Mba%3DwszYAhp8OpVR5xVRGkFkt_g%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="000491.html">
+ <LINK REL="Next" HREF="000496.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 11 review</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2011%20review&In-Reply-To=%3CAANLkTikvkiCJOCZZ_Mba%3DwszYAhp8OpVR5xVRGkFkt_g%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 11 review">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Mar 16 16:29:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000491.html">[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="000496.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#492">[ date ]</a>
+ <a href="thread.html#492">[ thread ]</a>
+ <a href="subject.html#492">[ subject ]</a>
+ <a href="author.html#492">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+I didn't post to prepare for the meeting, it still happened as usual.
+You will find the notes and logs here:
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-16-14.20.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-16-14.20.html</A>
+
+Roughly, for next week, hottest tasks are:
+ * wiki packaging/setup/config
+ * maintdb progress
+ * forum release/process/docs to publish
+ * translations bit to discuss
+ * website(s) direction doc to push further
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000491.html">[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="000496.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#492">[ date ]</a>
+ <a href="thread.html#492">[ thread ]</a>
+ <a href="subject.html#492">[ subject ]</a>
+ <a href="author.html#492">[ 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-March/000493.html b/zarb-ml/mageia-webteam/2011-March/000493.html
new file mode 100644
index 000000000..df9673b56
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000493.html
@@ -0,0 +1,96 @@
+<!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=%3C20110316230002.D4D124271B%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="000498.html">
+ <LINK REL="Next" HREF="000494.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=%3C20110316230002.D4D124271B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 17 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000498.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A></li>
+ <LI>Next message: <A HREF="000494.html">[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#493">[ date ]</a>
+ <a href="thread.html#493">[ thread ]</a>
+ <a href="subject.html#493">[ subject ]</a>
+ <a href="author.html#493">[ 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>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000498.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A></li>
+ <LI>Next message: <A HREF="000494.html">[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#493">[ date ]</a>
+ <a href="thread.html#493">[ thread ]</a>
+ <a href="subject.html#493">[ subject ]</a>
+ <a href="author.html#493">[ 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-March/000494.html b/zarb-ml/mageia-webteam/2011-March/000494.html
new file mode 100644
index 000000000..4ae6649ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000494.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20%5BNew%5D%20Use%20common%20name%20%28cn%29%20instead%20of%0A%20login%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3Cbug-415-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="000493.html">
+ <LINK REL="Next" HREF="000495.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20%5BNew%5D%20Use%20common%20name%20%28cn%29%20instead%20of%0A%20login%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3Cbug-415-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 17 12:56:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000493.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000495.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#494">[ date ]</a>
+ <a href="thread.html#494">[ thread ]</a>
+ <a href="subject.html#494">[ subject ]</a>
+ <a href="author.html#494">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+ Summary: Use common name (cn) instead of login (uid) for user
+ public name
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://forums.mageia.org">http://forums.mageia.org</A>
+ 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>
+
+
+User name currently shown in Mageia forums is the login (LDAP uid).
+
+There is another LDAP attribute (cn, for common name) that is better suited to
+show the user name: every user puts the name of her own liking, be it an alias
+or a real name.
+
+--
+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="000493.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000495.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#494">[ date ]</a>
+ <a href="thread.html#494">[ thread ]</a>
+ <a href="subject.html#494">[ subject ]</a>
+ <a href="author.html#494">[ 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-March/000495.html b/zarb-ml/mageia-webteam/2011-March/000495.html
new file mode 100644
index 000000000..c5844352a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000495.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20110317115749.638B541DD5%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="000494.html">
+ <LINK REL="Next" HREF="000497.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20110317115749.638B541DD5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 17 12:57:49 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000494.html">[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="000497.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#495">[ date ]</a>
+ <a href="thread.html#495">[ thread ]</a>
+ <a href="subject.html#495">[ subject ]</a>
+ <a href="author.html#495">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</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-03-17 12:57:49 UTC ---
+It appears phpBB doesn't allow natively to have a distinct login and public
+name.
+
+There are alternatives: using a mod, or using a custom user field and patching
+a bit (see example 2 in <A HREF="http://wiki.phpbb.com/Function.user_add">http://wiki.phpbb.com/Function.user_add</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="000494.html">[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="000497.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#495">[ date ]</a>
+ <a href="thread.html#495">[ thread ]</a>
+ <a href="subject.html#495">[ subject ]</a>
+ <a href="author.html#495">[ 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-March/000496.html b/zarb-ml/mageia-webteam/2011-March/000496.html
new file mode 100644
index 000000000..ae1003c60
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000496.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] wrong adress for errata on mageia Alpha page
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20adress%20for%20errata%20on%20mageia%20Alpha%20page&In-Reply-To=%3C218a.4d80f961%40mageia.linuxtech.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000492.html">
+ <LINK REL="Next" HREF="000498.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] wrong adress for errata on mageia Alpha page</H1>
+ <B>Philippe DIDIER</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20adress%20for%20errata%20on%20mageia%20Alpha%20page&In-Reply-To=%3C218a.4d80f961%40mageia.linuxtech.net%3E"
+ TITLE="[Mageia-webteam] wrong adress for errata on mageia Alpha page">philippedidier at laposte.net
+ </A><BR>
+ <I>Wed Mar 16 18:54:42 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000492.html">[Mageia-webteam] 2011/week 11 review
+</A></li>
+ <LI>Next message: <A HREF="000498.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#496">[ date ]</a>
+ <a href="thread.html#496">[ thread ]</a>
+ <a href="subject.html#496">[ subject ]</a>
+ <a href="author.html#496">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+
+On alpha page (&quot;<A HREF="http://mageia.org/en/alpha/">http://mageia.org/en/alpha/</A>&quot;)
+The link to errata is wrong :
+
+&quot;<A HREF="http://mageia.org/wiki/doku.php?id=iso1:errata">http://mageia.org/wiki/doku.php?id=iso1:errata</A>&quot;
+
+It should be
+
+&quot;<A HREF="http://www.mageia.org/wiki/doku.php?id=mageia1:errata">http://www.mageia.org/wiki/doku.php?id=mageia1:errata</A>&quot;
+
+same as for blog page (&quot;<A HREF="http://blog.mageia.org/en/">http://blog.mageia.org/en/</A>&quot;)
+whose the link is OK
+
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000492.html">[Mageia-webteam] 2011/week 11 review
+</A></li>
+ <LI>Next message: <A HREF="000498.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#496">[ date ]</a>
+ <a href="thread.html#496">[ thread ]</a>
+ <a href="subject.html#496">[ subject ]</a>
+ <a href="author.html#496">[ 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-March/000497.html b/zarb-ml/mageia-webteam/2011-March/000497.html
new file mode 100644
index 000000000..1ffc66bb6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000497.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20address%20in%20the%20link%20to%20errata%20on%20Mageia%0A%09Alpha%20page&In-Reply-To=%3C4D81FAFA.6080507%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000495.html">
+ <LINK REL="Next" HREF="000580.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page</H1>
+ <B>Philippe DIDIER</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20address%20in%20the%20link%20to%20errata%20on%20Mageia%0A%09Alpha%20page&In-Reply-To=%3C4D81FAFA.6080507%40laposte.net%3E"
+ TITLE="[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page">philippedidier at laposte.net
+ </A><BR>
+ <I>Thu Mar 17 13:13:46 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000495.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="000580.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#497">[ date ]</a>
+ <a href="thread.html#497">[ thread ]</a>
+ <a href="subject.html#497">[ subject ]</a>
+ <a href="author.html#497">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On alpha page (&quot;<A HREF="http://mageia.org/en/alpha/">http://mageia.org/en/alpha/</A>&quot;)
+The link to errata is wrong :
+
+&quot;<A HREF="http://mageia.org/wiki/doku.php?id=iso1:errata">http://mageia.org/wiki/doku.php?id=iso1:errata</A>&quot;
+
+It should be
+
+&quot;<A HREF="http://www.mageia.org/wiki/doku.php?id=mageia1:errata">http://www.mageia.org/wiki/doku.php?id=mageia1:errata</A>&quot;
+
+same as blog page (&quot;<A HREF="http://blog.mageia.org/en/">http://blog.mageia.org/en/</A>&quot;)
+whose the link is OK in the news of march the 15th
+
+and same as wiki page
+&quot;<A HREF="http://mageia.org/wiki/doku.php?id=iso1:alpha2_release_notes">http://mageia.org/wiki/doku.php?id=iso1:alpha2_release_notes</A>&quot;
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000495.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="000580.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#497">[ date ]</a>
+ <a href="thread.html#497">[ thread ]</a>
+ <a href="subject.html#497">[ subject ]</a>
+ <a href="author.html#497">[ 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-March/000498.html b/zarb-ml/mageia-webteam/2011-March/000498.html
new file mode 100644
index 000000000..8b792348f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000498.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] wrong adress for errata on mageia Alpha page
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20adress%20for%20errata%20on%20mageia%20Alpha%20page&In-Reply-To=%3CAANLkTinqofFn_b557a36vnd72JO7-DpsVWhKFHBHQMix%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="000496.html">
+ <LINK REL="Next" HREF="000493.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] wrong adress for errata on mageia Alpha page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20adress%20for%20errata%20on%20mageia%20Alpha%20page&In-Reply-To=%3CAANLkTinqofFn_b557a36vnd72JO7-DpsVWhKFHBHQMix%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] wrong adress for errata on mageia Alpha page">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Mar 17 14:32:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000496.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A></li>
+ <LI>Next message: <A HREF="000493.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#498">[ date ]</a>
+ <a href="thread.html#498">[ thread ]</a>
+ <a href="subject.html#498">[ subject ]</a>
+ <a href="author.html#498">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Mar 16, 2011 at 18:54, Philippe DIDIER
+&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">philippedidier at laposte.net</A>&gt; wrote:
+&gt;<i> On alpha page (&quot;<A HREF="http://mageia.org/en/alpha/">http://mageia.org/en/alpha/</A>&quot;)
+</I>&gt;<i> The link to errata is wrong :
+</I>&gt;<i>
+</I>&gt;<i> &quot;<A HREF="http://mageia.org/wiki/doku.php?id=iso1:errata">http://mageia.org/wiki/doku.php?id=iso1:errata</A>&quot;
+</I>&gt;<i>
+</I>&gt;<i> It should be
+</I>&gt;<i>
+</I>&gt;<i> &quot;<A HREF="http://www.mageia.org/wiki/doku.php?id=mageia1:errata">http://www.mageia.org/wiki/doku.php?id=mageia1:errata</A>&quot;
+</I>&gt;<i>
+</I>&gt;<i> same as for blog page (&quot;<A HREF="http://blog.mageia.org/en/">http://blog.mageia.org/en/</A>&quot;)
+</I>&gt;<i> whose the link is OK
+</I>
+Fixed, thanks! (don't worry for the duplicate ;) ).
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000496.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A></li>
+ <LI>Next message: <A HREF="000493.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#498">[ date ]</a>
+ <a href="thread.html#498">[ thread ]</a>
+ <a href="subject.html#498">[ subject ]</a>
+ <a href="author.html#498">[ 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-March/000499.html b/zarb-ml/mageia-webteam/2011-March/000499.html
new file mode 100644
index 000000000..4350f5909
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000499.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc
+ </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%20419%5D%20%5BNew%5D%20Define%2C%0A%20discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3Cbug-419-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="000580.html">
+ <LINK REL="Next" HREF="000500.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20419%5D%20%5BNew%5D%20Define%2C%0A%20discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3Cbug-419-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 17 15:32:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000580.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A></li>
+ <LI>Next message: <A HREF="000500.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#499">[ date ]</a>
+ <a href="thread.html#499">[ thread ]</a>
+ <a href="subject.html#499">[ subject ]</a>
+ <a href="author.html#499">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+
+ Summary: Define, discuss and implement website(s) direction doc
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://mageia.org/wiki/doku.php?id=web:website">http://mageia.org/wiki/doku.php?id=web:website</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: All
+ 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 consistent, defined Web strategy is neeeded to support and advocate the
+project.
+
+<A HREF="http://mageia.org/wiki/doku.php?id=web:website">http://mageia.org/wiki/doku.php?id=web:website</A> is a first draft to lay down
+first ideas to discuss accross Marketing, Communication and Web teams at least.
+Goal is to have consistent, flexible guidelines to follow and implement through
+the whole Mageia Web.
+
+See above document for items to work on and ordering steps (this bug is open
+for other bugs to reference it - should be closed by Mageia 1 stable release,
+hopefully).
+
+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="000580.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A></li>
+ <LI>Next message: <A HREF="000500.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#499">[ date ]</a>
+ <a href="thread.html#499">[ thread ]</a>
+ <a href="subject.html#499">[ subject ]</a>
+ <a href="author.html#499">[ 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-March/000500.html b/zarb-ml/mageia-webteam/2011-March/000500.html
new file mode 100644
index 000000000..f874a98bf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000500.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+ </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%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20110317143417.A2ADF41FCE%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="000499.html">
+ <LINK REL="Next" HREF="000501.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20110317143417.A2ADF41FCE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 17 15:34:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000499.html">[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="000501.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#500">[ date ]</a>
+ <a href="thread.html#500">[ thread ]</a>
+ <a href="subject.html#500">[ subject ]</a>
+ <a href="author.html#500">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</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
+----------------------------------------------------------------------------
+ Target Milestone|--- |Mageia 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000499.html">[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="000501.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#500">[ date ]</a>
+ <a href="thread.html#500">[ thread ]</a>
+ <a href="subject.html#500">[ subject ]</a>
+ <a href="author.html#500">[ 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-March/000501.html b/zarb-ml/mageia-webteam/2011-March/000501.html
new file mode 100644
index 000000000..eae427f2b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000501.html
@@ -0,0 +1,95 @@
+<!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=%3C20110317230003.1C2F14274D%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="000500.html">
+ <LINK REL="Next" HREF="000502.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=%3C20110317230003.1C2F14274D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 18 00:00:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000500.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="000502.html">[Mageia-webteam] Forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#501">[ date ]</a>
+ <a href="thread.html#501">[ thread ]</a>
+ <a href="subject.html#501">[ subject ]</a>
+ <a href="author.html#501">[ 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>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000500.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="000502.html">[Mageia-webteam] Forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#501">[ date ]</a>
+ <a href="thread.html#501">[ thread ]</a>
+ <a href="subject.html#501">[ subject ]</a>
+ <a href="author.html#501">[ 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-March/000502.html b/zarb-ml/mageia-webteam/2011-March/000502.html
new file mode 100644
index 000000000..2cd9469d1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000502.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums&In-Reply-To=%3C201103180830.17306.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="000501.html">
+ <LINK REL="Next" HREF="000503.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forums</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums&In-Reply-To=%3C201103180830.17306.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Forums">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Fri Mar 18 08:30:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000501.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000503.html">[Mageia-webteam] Forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#502">[ date ]</a>
+ <a href="thread.html#502">[ thread ]</a>
+ <a href="subject.html#502">[ subject ]</a>
+ <a href="author.html#502">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Just a short question.
+
+If the forums are up - and they are, I've already been there - shouldn't we
+announce it somewhere and link them on the website?
+
+Oliver
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000501.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000503.html">[Mageia-webteam] Forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#502">[ date ]</a>
+ <a href="thread.html#502">[ thread ]</a>
+ <a href="subject.html#502">[ subject ]</a>
+ <a href="author.html#502">[ 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-March/000503.html b/zarb-ml/mageia-webteam/2011-March/000503.html
new file mode 100644
index 000000000..e0d68081c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000503.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums&In-Reply-To=%3CAANLkTi%3DJUX0uW96UkMyGTNtVEAs__5L5TCbxXZUdNb0Z%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="000502.html">
+ <LINK REL="Next" HREF="000504.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forums</H1>
+ <B>Anne nicolas</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums&In-Reply-To=%3CAANLkTi%3DJUX0uW96UkMyGTNtVEAs__5L5TCbxXZUdNb0Z%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Forums">ennael1 at gmail.com
+ </A><BR>
+ <I>Fri Mar 18 08:48:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000502.html">[Mageia-webteam] Forums
+</A></li>
+ <LI>Next message: <A HREF="000504.html">[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#503">[ date ]</a>
+ <a href="thread.html#503">[ thread ]</a>
+ <a href="subject.html#503">[ subject ]</a>
+ <a href="author.html#503">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 18 mars 2011 08:30, &quot;Oliver Burger&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; a &#233;crit :
+&gt;<i>
+</I>&gt;<i> Just a short question.
+</I>&gt;<i>
+</I>&gt;<i> If the forums are up - and they are, I've already been there - shouldn't
+</I>we
+&gt;<i> announce it somewhere and link them on the website?
+</I>
+tests still in progress should be announced this we
+
+&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>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110318/4826ed57/attachment-0001.html&gt;
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000502.html">[Mageia-webteam] Forums
+</A></li>
+ <LI>Next message: <A HREF="000504.html">[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#503">[ date ]</a>
+ <a href="thread.html#503">[ thread ]</a>
+ <a href="subject.html#503">[ subject ]</a>
+ <a href="author.html#503">[ 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-March/000504.html b/zarb-ml/mageia-webteam/2011-March/000504.html
new file mode 100644
index 000000000..5fd3e6b00
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000504.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin
+ </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%20434%5D%20%5BNew%5D%20Use%20email%20as%20a%20contact/id%20for%0A%09mirror%20admin&In-Reply-To=%3Cbug-434-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="000503.html">
+ <LINK REL="Next" HREF="000505.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20434%5D%20%5BNew%5D%20Use%20email%20as%20a%20contact/id%20for%0A%09mirror%20admin&In-Reply-To=%3Cbug-434-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 18 17:06:52 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000503.html">[Mageia-webteam] Forums
+</A></li>
+ <LI>Next message: <A HREF="000505.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#504">[ date ]</a>
+ <a href="thread.html#504">[ thread ]</a>
+ <a href="subject.html#504">[ subject ]</a>
+ <a href="author.html#504">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+
+ Summary: Use email as a contact/id for mirror admin
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://mirrors.mageia.org/new">http://mirrors.mageia.org/new</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ Priority: Normal
+ Component: mirrors.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>
+
+
+When registering a new mirror, a user (mirror admin in this case) should be
+able to provide a contact email.
+
+This email would be used to:
+ * notify the admin of important changes/events regarding Mageia mirrors and
+mirroring process;
+ * send a verification code to the user to allow her to open a session and make
+changes to her registered mirror(s).
+
+(reported on behalf of a recent mirror admin)
+
+--
+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="000503.html">[Mageia-webteam] Forums
+</A></li>
+ <LI>Next message: <A HREF="000505.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#504">[ date ]</a>
+ <a href="thread.html#504">[ thread ]</a>
+ <a href="subject.html#504">[ subject ]</a>
+ <a href="author.html#504">[ 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-March/000505.html b/zarb-ml/mageia-webteam/2011-March/000505.html
new file mode 100644
index 000000000..fe2535061
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000505.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+ </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%20434%5D%20Use%20email%20as%20a%20contact/id%20for%20mirror%0A%09admin&In-Reply-To=%3C20110318160718.59BB942722%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="000504.html">
+ <LINK REL="Next" HREF="000506.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20434%5D%20Use%20email%20as%20a%20contact/id%20for%20mirror%0A%09admin&In-Reply-To=%3C20110318160718.59BB942722%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 18 17:07:18 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000504.html">[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin
+</A></li>
+ <LI>Next message: <A HREF="000506.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#505">[ date ]</a>
+ <a href="thread.html#505">[ thread ]</a>
+ <a href="subject.html#505">[ subject ]</a>
+ <a href="author.html#505">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</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-03-18 17:07:18 UTC ---
+Should we consider plugging this in identity accounts db as well then?
+
+--
+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="000504.html">[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin
+</A></li>
+ <LI>Next message: <A HREF="000506.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#505">[ date ]</a>
+ <a href="thread.html#505">[ thread ]</a>
+ <a href="subject.html#505">[ subject ]</a>
+ <a href="author.html#505">[ 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-March/000506.html b/zarb-ml/mageia-webteam/2011-March/000506.html
new file mode 100644
index 000000000..3a4cca737
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000506.html
@@ -0,0 +1,73 @@
+<!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=%3C20110318192250.A682542744%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="000505.html">
+ <LINK REL="Next" HREF="000507.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Maarten Vanraes</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=%3C20110318192250.A682542744%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 Mar 18 20:22:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000505.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A></li>
+ <LI>Next message: <A HREF="000507.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#506">[ date ]</a>
+ <a href="thread.html#506">[ thread ]</a>
+ <a href="subject.html#506">[ subject ]</a>
+ <a href="author.html#506">[ 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 #7 from Maarten Vanraes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-03-18 20:22:50 UTC ---
+still not ok on mageia 1 alpha 2, i would like to help, but i still cannot see
+an update on svn...
+
+looking at the code, it seems that, we get directed to
+/usr/share/doc/HTML/index.html and not to /usr/share/mga/indexhtml/index.html
+(which does have images and script and everything)
+
+--
+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="000505.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A></li>
+ <LI>Next message: <A HREF="000507.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#506">[ date ]</a>
+ <a href="thread.html#506">[ thread ]</a>
+ <a href="subject.html#506">[ subject ]</a>
+ <a href="author.html#506">[ 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-March/000507.html b/zarb-ml/mageia-webteam/2011-March/000507.html
new file mode 100644
index 000000000..b20d881b0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000507.html
@@ -0,0 +1,71 @@
+<!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=%3C20110318192302.C7A3A42744%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="000506.html">
+ <LINK REL="Next" HREF="000508.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Maarten Vanraes</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=%3C20110318192302.C7A3A42744%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 Mar 18 20:23:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000506.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000508.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#507">[ date ]</a>
+ <a href="thread.html#507">[ thread ]</a>
+ <a href="subject.html#507">[ subject ]</a>
+ <a href="author.html#507">[ 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>
+
+Maarten Vanraes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |56
+
+--
+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="000506.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000508.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#507">[ date ]</a>
+ <a href="thread.html#507">[ thread ]</a>
+ <a href="subject.html#507">[ subject ]</a>
+ <a href="author.html#507">[ 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-March/000508.html b/zarb-ml/mageia-webteam/2011-March/000508.html
new file mode 100644
index 000000000..cbf1c980f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000508.html
@@ -0,0 +1,102 @@
+<!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=%3C20110318222848.2241A42761%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="000507.html">
+ <LINK REL="Next" HREF="000509.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=%3C20110318222848.2241A42761%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 Mar 18 23:28:48 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000507.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000509.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#508">[ date ]</a>
+ <a href="thread.html#508">[ thread ]</a>
+ <a href="subject.html#508">[ subject ]</a>
+ <a href="author.html#508">[ 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>
+
+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">ennael1 at gmail.com</A>
+
+--- Comment #8 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-03-18 23:28:46 UTC ---
+indexhtml specfile puts everything correct under mga/indexhtml while doc/HTML
+has only one single HTML file; and that's the place where the browser is
+expected to go.
+
+See
+<A HREF="http://svnweb.mageia.org/packages/cauldron/firefox/current/SPECS/firefox.spec">http://svnweb.mageia.org/packages/cauldron/firefox/current/SPECS/firefox.spec</A>
+lines 295 and 301 where browser.startup.homepage property is set twice
+(duplicate) to doc/HTML/index.html
+
+Btw, using distribution-specific tag &quot;mga&quot; in the path is not good.
+
+So it involves a few other packages that depend on indexhtml (namely:
+evolution, midori, links, firefox).
+
+To fix this, I suggest:
+ * update and cleanup indexhtml specfile so that:
+ - we don't create/populate /usr/share/doc/HTML anymore
+ - we move the home page in /usr/share/indexhtml/
+ - this is valid for welcome mail path too, we could move these in
+/usr/share/indexhtml/mail/ ? or /usr/share/welcomemail/ since we may move them
+into a separate package later?
+ * so we will need to check dependent packages so that they use the correct
+path (however, only firefox and links seems to explicitly use the path in the
+spec file, so it may have been hardcoded somewhere else in other packages).
+ * ensure it all works
+
+Cc'ing ennael for advice, who last committed on these packages (among others).
+I can do the indexhtml part and firefox/links specfile, but not sure about the
+rest (mail path, evolution, midori). What about Konqueror by the way?
+
+--
+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="000507.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000509.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#508">[ date ]</a>
+ <a href="thread.html#508">[ thread ]</a>
+ <a href="subject.html#508">[ subject ]</a>
+ <a href="author.html#508">[ 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-March/000509.html b/zarb-ml/mageia-webteam/2011-March/000509.html
new file mode 100644
index 000000000..ead98a1a5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000509.html
@@ -0,0 +1,74 @@
+<!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=%3C20110318222954.054F240DAD%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="000508.html">
+ <LINK REL="Next" HREF="000510.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=%3C20110318222954.054F240DAD%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 Mar 18 23:29:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000508.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000510.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#509">[ date ]</a>
+ <a href="thread.html#509">[ thread ]</a>
+ <a href="subject.html#509">[ subject ]</a>
+ <a href="author.html#509">[ 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
+----------------------------------------------------------------------------
+ Blocks|56 |
+
+--- Comment #9 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-18 23:29:53 UTC ---
+(Doesn't block 56 as it's not an upgrade-related bug).
+
+--
+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="000508.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000510.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#509">[ date ]</a>
+ <a href="thread.html#509">[ thread ]</a>
+ <a href="subject.html#509">[ subject ]</a>
+ <a href="author.html#509">[ 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-March/000510.html b/zarb-ml/mageia-webteam/2011-March/000510.html
new file mode 100644
index 000000000..7ee716b23
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000510.html
@@ -0,0 +1,95 @@
+<!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=%3C20110318230002.CDE6D42787%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="000509.html">
+ <LINK REL="Next" HREF="000511.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=%3C20110318230002.CDE6D42787%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 19 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000509.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000511.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#510">[ date ]</a>
+ <a href="thread.html#510">[ thread ]</a>
+ <a href="subject.html#510">[ subject ]</a>
+ <a href="author.html#510">[ 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>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000509.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000511.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#510">[ date ]</a>
+ <a href="thread.html#510">[ thread ]</a>
+ <a href="subject.html#510">[ subject ]</a>
+ <a href="author.html#510">[ 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-March/000511.html b/zarb-ml/mageia-webteam/2011-March/000511.html
new file mode 100644
index 000000000..a2f0f4bec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000511.html
@@ -0,0 +1,71 @@
+<!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=%3C20110318231221.67A6F42761%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="000510.html">
+ <LINK REL="Next" HREF="000512.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=%3C20110318231221.67A6F42761%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 19 00:12:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000510.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000512.html">[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#511">[ date ]</a>
+ <a href="thread.html#511">[ thread ]</a>
+ <a href="subject.html#511">[ subject ]</a>
+ <a href="author.html#511">[ 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 #10 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-03-19 00:12:21 UTC ---
+or...
+
+you could base64 the script and image file and put it directly inside that
+single html file as a data blob.
+
+--
+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="000510.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000512.html">[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#511">[ date ]</a>
+ <a href="thread.html#511">[ thread ]</a>
+ <a href="subject.html#511">[ subject ]</a>
+ <a href="author.html#511">[ 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-March/000512.html b/zarb-ml/mageia-webteam/2011-March/000512.html
new file mode 100644
index 000000000..c2bacb940
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000512.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 450] [New] No link to accounting report or status 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%20%5BBug%20450%5D%20%5BNew%5D%20No%20link%20to%20accounting%20report%20or%0A%20status%20on%20the%20website&In-Reply-To=%3Cbug-450-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="000511.html">
+ <LINK REL="Next" HREF="000516.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20450%5D%20%5BNew%5D%20No%20link%20to%20accounting%20report%20or%0A%20status%20on%20the%20website&In-Reply-To=%3Cbug-450-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 19 13:24:07 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000511.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000516.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#512">[ date ]</a>
+ <a href="thread.html#512">[ thread ]</a>
+ <a href="subject.html#512">[ subject ]</a>
+ <a href="author.html#512">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=450">https://bugs.mageia.org/show_bug.cgi?id=450</A>
+
+ Summary: No link to accounting report or status on the website
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">misc at zarb.org</A>
+
+
+Thee is no easy link to find the accounting report of the association on the
+front page, and the same goes for the status ( despites them being on the wiki
+).
+
+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="000511.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000516.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#512">[ date ]</a>
+ <a href="thread.html#512">[ thread ]</a>
+ <a href="subject.html#512">[ subject ]</a>
+ <a href="author.html#512">[ 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-March/000513.html b/zarb-ml/mageia-webteam/2011-March/000513.html
new file mode 100644
index 000000000..69bcdbc8f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000513.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 451] [New] FAQ should be refreshed
+ </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%20451%5D%20%5BNew%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3Cbug-451-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="000516.html">
+ <LINK REL="Next" HREF="000587.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20451%5D%20%5BNew%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3Cbug-451-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 19 13:27:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000516.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A></li>
+ <LI>Next message: <A HREF="000587.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#513">[ date ]</a>
+ <a href="thread.html#513">[ thread ]</a>
+ <a href="subject.html#513">[ subject ]</a>
+ <a href="author.html#513">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+
+ Summary: FAQ should be refreshed
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">misc at zarb.org</A>
+
+
+<A HREF="https://www.mageia.org/en/faq/">https://www.mageia.org/en/faq/</A> still mention :
+&quot;When the first release of Mageia will be available?
+We have date for the stable release, so the answer is now outdated ( and wrong
+).
+
+&quot;Where can I submit my logo ideas?&quot;
+We no longer accept logo ideas, afaik.
+
+
+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="000516.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A></li>
+ <LI>Next message: <A HREF="000587.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#513">[ date ]</a>
+ <a href="thread.html#513">[ thread ]</a>
+ <a href="subject.html#513">[ subject ]</a>
+ <a href="author.html#513">[ 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-March/000514.html b/zarb-ml/mageia-webteam/2011-March/000514.html
new file mode 100644
index 000000000..67a6126e5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000514.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft
+ </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%20452%5D%20%5BNew%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3Cbug-452-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="000587.html">
+ <LINK REL="Next" HREF="000515.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20452%5D%20%5BNew%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3Cbug-452-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 19 13:38:34 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000587.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="000515.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#514">[ date ]</a>
+ <a href="thread.html#514">[ thread ]</a>
+ <a href="subject.html#514">[ subject ]</a>
+ <a href="author.html#514">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+
+ Summary: Privacy policy is still a draft
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">misc at zarb.org</A>
+
+
+The privacy policy is still a draft
+(<A HREF="http://mageia.org/wiki/doku.php?id=privacy_policy">http://mageia.org/wiki/doku.php?id=privacy_policy</A> ). While we of course do not
+plan to do much with the data, we need to have one ( and I think a definite one
+) to comply with Google Analytics TOS :
+<A HREF="http://www.google.com/intl/en/analytics/privacyoverview.html">http://www.google.com/intl/en/analytics/privacyoverview.html</A>
+
+The privacy policy should also ( IMHO ) be easier to find on the front page.
+
+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="000587.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="000515.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#514">[ date ]</a>
+ <a href="thread.html#514">[ thread ]</a>
+ <a href="subject.html#514">[ subject ]</a>
+ <a href="author.html#514">[ 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-March/000515.html b/zarb-ml/mageia-webteam/2011-March/000515.html
new file mode 100644
index 000000000..7c5145566
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000515.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 452] Privacy policy is still a draft
+ </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%20452%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3C20110319131311.BDD4842582%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="000514.html">
+ <LINK REL="Next" HREF="000517.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 452] Privacy policy is still a draft</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20452%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3C20110319131311.BDD4842582%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 452] Privacy policy is still a draft">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 19 14:13:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000514.html">[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft
+</A></li>
+ <LI>Next message: <A HREF="000517.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#515">[ date ]</a>
+ <a href="thread.html#515">[ thread ]</a>
+ <a href="subject.html#515">[ subject ]</a>
+ <a href="author.html#515">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</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-03-19 14:13:12 UTC ---
+Yes and yes.
+
+I'm afraid we won't get to a definitive one easily/fast, so keeping it a draft,
+while still discussing/improving it is a good work plan - it doesn't make it
+less effective, especially if we keep on publishing transparently what is
+actually done.
+
+About the plan of what to do with the data, we ought to be clear about what we
+would like to do, and what we won't do. One of the goal of the project is
+&quot;improve our understanding of computers and electronics devices users&quot; that
+goes through proper usage metrics analytics (among other things).
+
+So making clear what is the goal, what is the data and how it is used is
+crucial here.
+
+How can we move forward here? open the topic on -discuss with a work plan and
+gather ideas first (with a deadline)?
+
+As for making it easier to find, we can put it in the global footer (not set
+yet). Both the About section and the general Website design (influencing global
+footer) are in the works (pending a direction doc sent earlier to web &amp; marcom
+teams) but didn't go far at this time. Milestone for this is beta1 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000514.html">[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft
+</A></li>
+ <LI>Next message: <A HREF="000517.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#515">[ date ]</a>
+ <a href="thread.html#515">[ thread ]</a>
+ <a href="subject.html#515">[ subject ]</a>
+ <a href="author.html#515">[ 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-March/000516.html b/zarb-ml/mageia-webteam/2011-March/000516.html
new file mode 100644
index 000000000..072b3392a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000516.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 450] No link to accounting report or status 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%20%5BBug%20450%5D%20No%20link%20to%20accounting%20report%20or%20status%0A%09on%20the%20website&In-Reply-To=%3C20110319132223.08D6D42771%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="000512.html">
+ <LINK REL="Next" HREF="000513.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 450] No link to accounting report or status on the website</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20450%5D%20No%20link%20to%20accounting%20report%20or%20status%0A%09on%20the%20website&In-Reply-To=%3C20110319132223.08D6D42771%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 450] No link to accounting report or status on the website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 19 14:22:23 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000512.html">[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website
+</A></li>
+ <LI>Next message: <A HREF="000513.html">[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#516">[ date ]</a>
+ <a href="thread.html#516">[ thread ]</a>
+ <a href="subject.html#516">[ subject ]</a>
+ <a href="author.html#516">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=450">https://bugs.mageia.org/show_bug.cgi?id=450</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>
+ Status|NEW |ASSIGNED
+
+--- Comment #1 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-03-19 14:22:23 UTC ---
+Yep. It has been freshly put and we need to write down the whole About section
+(we have a quick temporary list of links in <A HREF="http://mageia.org/en/about/">http://mageia.org/en/about/</A> ) and
+update the global nav accordingly. Relates to #419.
+
+--
+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="000512.html">[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website
+</A></li>
+ <LI>Next message: <A HREF="000513.html">[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#516">[ date ]</a>
+ <a href="thread.html#516">[ thread ]</a>
+ <a href="subject.html#516">[ subject ]</a>
+ <a href="author.html#516">[ 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-March/000517.html b/zarb-ml/mageia-webteam/2011-March/000517.html
new file mode 100644
index 000000000..1c066d527
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000517.html
@@ -0,0 +1,96 @@
+<!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=%3C20110319230002.BEE5842764%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="000515.html">
+ <LINK REL="Next" HREF="000518.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=%3C20110319230002.BEE5842764%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 20 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000515.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI>Next message: <A HREF="000518.html">[Mageia-webteam] [Bug 465] [New] captcha is annoying
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#517">[ date ]</a>
+ <a href="thread.html#517">[ thread ]</a>
+ <a href="subject.html#517">[ subject ]</a>
+ <a href="author.html#517">[ 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>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000515.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI>Next message: <A HREF="000518.html">[Mageia-webteam] [Bug 465] [New] captcha is annoying
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#517">[ date ]</a>
+ <a href="thread.html#517">[ thread ]</a>
+ <a href="subject.html#517">[ subject ]</a>
+ <a href="author.html#517">[ 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-March/000518.html b/zarb-ml/mageia-webteam/2011-March/000518.html
new file mode 100644
index 000000000..7bbc9cef7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000518.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 465] [New] captcha is annoying
+ </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%20465%5D%20%5BNew%5D%20captcha%20is%20annoying&In-Reply-To=%3Cbug-465-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="000517.html">
+ <LINK REL="Next" HREF="000519.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 465] [New] captcha is annoying</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20465%5D%20%5BNew%5D%20captcha%20is%20annoying&In-Reply-To=%3Cbug-465-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 465] [New] captcha is annoying">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 20 12:07:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000517.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000519.html">[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#518">[ date ]</a>
+ <a href="thread.html#518">[ thread ]</a>
+ <a href="subject.html#518">[ subject ]</a>
+ <a href="author.html#518">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+
+ Summary: captcha is annoying
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">misc at zarb.org</A>
+
+
+When a user is asked to subscribe to identity, he must pass a test based on a
+captcha. While the test is not as unreadable as some others, it can be quite
+hard to read for someone who has vision problems, and sometime ( for example,
+when a vertical bar happen to be at the right spot near a 3 or a 8 ) difficult
+to pass even for a normal sighted human.
+
+What about replacing this with a simple mathematic question, as seen on some
+blog ( statusnet one, for example ) ?
+
+( there is no plugin for this, unfortunately )
+
+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="000517.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000519.html">[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#518">[ date ]</a>
+ <a href="thread.html#518">[ thread ]</a>
+ <a href="subject.html#518">[ subject ]</a>
+ <a href="author.html#518">[ 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-March/000519.html b/zarb-ml/mageia-webteam/2011-March/000519.html
new file mode 100644
index 000000000..f7f5ee31d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000519.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 467] [New] Allow votes for 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%20467%5D%20%5BNew%5D%20Allow%20votes%20for%20bugzilla&In-Reply-To=%3Cbug-467-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="000518.html">
+ <LINK REL="Next" HREF="000520.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla</H1>
+ <B>Lucien XU</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20467%5D%20%5BNew%5D%20Allow%20votes%20for%20bugzilla&In-Reply-To=%3Cbug-467-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 20 13:01:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000518.html">[Mageia-webteam] [Bug 465] [New] captcha is annoying
+</A></li>
+ <LI>Next message: <A HREF="000520.html">[Mageia-webteam] [Bug 467] Allow votes for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#519">[ date ]</a>
+ <a href="thread.html#519">[ thread ]</a>
+ <a href="subject.html#519">[ subject ]</a>
+ <a href="author.html#519">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=467">https://bugs.mageia.org/show_bug.cgi?id=467</A>
+
+ Summary: Allow votes for bugzilla
+ 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">sfietkonstantin at free.fr</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem:
+Allows bugs for mageia bugzilla.
+Instead of posting &quot;confirmed here&quot;, people should vote, and that will show the
+importance of the bug.
+
+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="000518.html">[Mageia-webteam] [Bug 465] [New] captcha is annoying
+</A></li>
+ <LI>Next message: <A HREF="000520.html">[Mageia-webteam] [Bug 467] Allow votes for bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#519">[ date ]</a>
+ <a href="thread.html#519">[ thread ]</a>
+ <a href="subject.html#519">[ subject ]</a>
+ <a href="author.html#519">[ 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-March/000520.html b/zarb-ml/mageia-webteam/2011-March/000520.html
new file mode 100644
index 000000000..2a0a80733
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000520.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 467] Allow votes for 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%20467%5D%20Allow%20votes%20for%20bugzilla&In-Reply-To=%3C20110320120431.120304277C%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="000519.html">
+ <LINK REL="Next" HREF="000521.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 467] Allow votes for bugzilla</H1>
+ <B>D Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20467%5D%20Allow%20votes%20for%20bugzilla&In-Reply-To=%3C20110320120431.120304277C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 467] Allow votes for bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 20 13:04:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000519.html">[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000521.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#520">[ date ]</a>
+ <a href="thread.html#520">[ thread ]</a>
+ <a href="subject.html#520">[ subject ]</a>
+ <a href="author.html#520">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=467">https://bugs.mageia.org/show_bug.cgi?id=467</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+ Resolution| |WONTFIX
+ Status|NEW |RESOLVED
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-03-20 13:04:31 UTC ---
+we already spoke of this and for now we do not plan to enable votes.
+
+--
+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="000519.html">[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000521.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#520">[ date ]</a>
+ <a href="thread.html#520">[ thread ]</a>
+ <a href="subject.html#520">[ subject ]</a>
+ <a href="author.html#520">[ 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-March/000521.html b/zarb-ml/mageia-webteam/2011-March/000521.html
new file mode 100644
index 000000000..a1423b8e9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000521.html
@@ -0,0 +1,96 @@
+<!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=%3C20110320230002.6745842780%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="000520.html">
+ <LINK REL="Next" HREF="000522.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=%3C20110320230002.6745842780%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Mar 21 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000520.html">[Mageia-webteam] [Bug 467] Allow votes for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000522.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#521">[ date ]</a>
+ <a href="thread.html#521">[ thread ]</a>
+ <a href="subject.html#521">[ subject ]</a>
+ <a href="author.html#521">[ 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>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000520.html">[Mageia-webteam] [Bug 467] Allow votes for bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000522.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#521">[ date ]</a>
+ <a href="thread.html#521">[ thread ]</a>
+ <a href="subject.html#521">[ subject ]</a>
+ <a href="author.html#521">[ 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-March/000522.html b/zarb-ml/mageia-webteam/2011-March/000522.html
new file mode 100644
index 000000000..9c14f51d9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000522.html
@@ -0,0 +1,96 @@
+<!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=%3C20110321230002.BD4E7427A7%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="000521.html">
+ <LINK REL="Next" HREF="000523.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=%3C20110321230002.BD4E7427A7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 22 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000521.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000523.html">[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#522">[ date ]</a>
+ <a href="thread.html#522">[ thread ]</a>
+ <a href="subject.html#522">[ subject ]</a>
+ <a href="author.html#522">[ 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>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000521.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000523.html">[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#522">[ date ]</a>
+ <a href="thread.html#522">[ thread ]</a>
+ <a href="subject.html#522">[ subject ]</a>
+ <a href="author.html#522">[ 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-March/000523.html b/zarb-ml/mageia-webteam/2011-March/000523.html
new file mode 100644
index 000000000..afb04ab60
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000523.html
@@ -0,0 +1,107 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20%5BNew%5D%20Logging%20in%20to%20bugzilla%20isn%27t%0A%20possible%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3Cbug-492-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="000522.html">
+ <LINK REL="Next" HREF="000524.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>Palm Pre</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20%5BNew%5D%20Logging%20in%20to%20bugzilla%20isn%27t%0A%20possible%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3Cbug-492-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 22 04:51:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000522.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000524.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#523">[ date ]</a>
+ <a href="thread.html#523">[ thread ]</a>
+ <a href="subject.html#523">[ subject ]</a>
+ <a href="author.html#523">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</A>
+
+ Summary: Logging in to bugzilla isn't possible for existing or
+ just created account
+ 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">palm_pre_stl at yahoo.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem: I'm trying to log in from just installed 1 alpha2. No
+success. Forgot password &gt; change password &gt; Succsess &gt; &quot;user name or password
+incorrect&quot;
+
+Booting to 1 alpha1 instalation. I'm already on bugzilla. Logging out and can't
+log in. The same &quot;user name or password incorrect&quot;.
+
+Creating a new account. Log in with the same &quot;[...] incorrect&quot;.
+
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1.
+2.
+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="000522.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000524.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#523">[ date ]</a>
+ <a href="thread.html#523">[ thread ]</a>
+ <a href="subject.html#523">[ subject ]</a>
+ <a href="author.html#523">[ 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-March/000524.html b/zarb-ml/mageia-webteam/2011-March/000524.html
new file mode 100644
index 000000000..324f9209e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000524.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110322075351.A7E73427B8%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="000523.html">
+ <LINK REL="Next" HREF="000525.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>D Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110322075351.A7E73427B8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 22 08:53:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000523.html">[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000525.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#524">[ date ]</a>
+ <a href="thread.html#524">[ thread ]</a>
+ <a href="subject.html#524">[ subject ]</a>
+ <a href="author.html#524">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+
+--- Comment #1 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-03-22 08:53:51 UTC ---
+do you use your login or email to log into bugzilla ? because you need with
+your login
+
+--
+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="000523.html">[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000525.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#524">[ date ]</a>
+ <a href="thread.html#524">[ thread ]</a>
+ <a href="subject.html#524">[ subject ]</a>
+ <a href="author.html#524">[ 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-March/000525.html b/zarb-ml/mageia-webteam/2011-March/000525.html
new file mode 100644
index 000000000..b8b8490f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000525.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110322085331.B0256427B9%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="000524.html">
+ <LINK REL="Next" HREF="000543.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110322085331.B0256427B9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 22 09:53:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000524.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000543.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#525">[ date ]</a>
+ <a href="thread.html#525">[ thread ]</a>
+ <a href="subject.html#525">[ subject ]</a>
+ <a href="author.html#525">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</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 #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-03-22 09:53:31 CET ---
+How did you succeed to login to post this bug in the first place?
+
+--
+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="000524.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000543.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#525">[ date ]</a>
+ <a href="thread.html#525">[ thread ]</a>
+ <a href="subject.html#525">[ subject ]</a>
+ <a href="author.html#525">[ 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-March/000526.html b/zarb-ml/mageia-webteam/2011-March/000526.html
new file mode 100644
index 000000000..2cf2155e6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000526.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTi%3DZczN3BxP9dye3pzAP5iL2T_-jP6x4kSNbgNbK%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="000565.html">
+ <LINK REL="Next" HREF="000527.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTi%3DZczN3BxP9dye3pzAP5iL2T_-jP6x4kSNbgNbK%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue Mar 22 16:43:14 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000565.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000527.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#526">[ date ]</a>
+ <a href="thread.html#526">[ thread ]</a>
+ <a href="subject.html#526">[ subject ]</a>
+ <a href="author.html#526">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I checked the forum and here are a few questions:
+
+1. About existing forums (linked as subforums in &quot;Communities forums&quot;)
+
+The listed forums are forums about Mandriva Linux, aka &quot;Mandriva
+Communities forums&quot;. I don't know about the others but MandrivaUser.de
+will stay a community of Mandriva users, we decided to support both,
+users who will stay with Mandriva and users who will switch to Mageia,
+not mixing both.
+There is surely room for cooperation and in some cases the same people
+will be in both communities and links should point to existing
+documentation (wiki) of existing Mandriva forums. But in a Mageia
+forum a link called &quot;Communities forums&quot; should point at Mageia user
+communities.
+
+German community members decided to have a German Mageia forum inside
+the main Mageia forum, not outside.
+BTW: the name &quot;MandrivaUsers.de&quot; is wrong - no &quot;s&quot; at the end.
+
+2. I'd apply for a moderator job in some parts of the forum - how do I do that?
+3. I'd like to be part of a group (founders, translators) - how do I do that?
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000565.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000527.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#526">[ date ]</a>
+ <a href="thread.html#526">[ thread ]</a>
+ <a href="subject.html#526">[ subject ]</a>
+ <a href="author.html#526">[ 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-March/000527.html b/zarb-ml/mageia-webteam/2011-March/000527.html
new file mode 100644
index 000000000..3c6391d39
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000527.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTindG1Ki3GmoMtEaNhVLoesKsbTekcnYLEnz7dJe%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="000526.html">
+ <LINK REL="Next" HREF="000528.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTindG1Ki3GmoMtEaNhVLoesKsbTekcnYLEnz7dJe%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 22 16:57:53 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000526.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000528.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#527">[ date ]</a>
+ <a href="thread.html#527">[ thread ]</a>
+ <a href="subject.html#527">[ subject ]</a>
+ <a href="author.html#527">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+On Tue, Mar 22, 2011 at 16:43, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> I checked the forum and here are a few questions:
+</I>&gt;<i>
+</I>&gt;<i> 1. About existing forums (linked as subforums in &quot;Communities forums&quot;)
+</I>&gt;<i> [...]
+</I>&gt;<i> German community members decided to have a German Mageia forum inside
+</I>&gt;<i> the main Mageia forum, not outside.
+</I>
+Ok, so that makes for a <A HREF="https://forums.mageia.org/de/">https://forums.mageia.org/de/</A> fully hosted
+forum. M&#226;at, how can we set this up?
+
+&gt;<i> 2. I'd apply for a moderator job in some parts of the forum - how do I do that?
+</I>&gt;<i> 3. I'd like to be part of a group (founders, translators) - how do I do that?
+</I>
+M&#226;at?
+
+/me cleaning &amp; merging <A HREF="http://mageia.org/wiki/doku.php?id=forums">http://mageia.org/wiki/doku.php?id=forums</A> &amp;
+<A HREF="http://mageia.org/wiki/doku.php?id=web:forums">http://mageia.org/wiki/doku.php?id=web:forums</A>
+
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000526.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000528.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#527">[ date ]</a>
+ <a href="thread.html#527">[ thread ]</a>
+ <a href="subject.html#527">[ subject ]</a>
+ <a href="author.html#527">[ 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-March/000528.html b/zarb-ml/mageia-webteam/2011-March/000528.html
new file mode 100644
index 000000000..de8528d1e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000528.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTi%3DAxHrM-MgMFBsqB0qKLHFTNFoJyQjVO5sbwrrc%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="000527.html">
+ <LINK REL="Next" HREF="000534.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTi%3DAxHrM-MgMFBsqB0qKLHFTNFoJyQjVO5sbwrrc%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue Mar 22 17:07:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000527.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000534.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#528">[ date ]</a>
+ <a href="thread.html#528">[ thread ]</a>
+ <a href="subject.html#528">[ subject ]</a>
+ <a href="author.html#528">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/22 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> On Tue, Mar 22, 2011 at 16:43, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> I checked the forum and here are a few questions:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 1. About existing forums (linked as subforums in &quot;Communities forums&quot;)
+</I>&gt;&gt;<i> [...]
+</I>&gt;&gt;<i> German community members decided to have a German Mageia forum inside
+</I>&gt;&gt;<i> the main Mageia forum, not outside.
+</I>&gt;<i>
+</I>&gt;<i> Ok, so that makes for a <A HREF="https://forums.mageia.org/de/">https://forums.mageia.org/de/</A> fully hosted
+</I>&gt;<i> forum. M&#226;at, how can we set this up?
+</I>
+Yes, that's what I wrote from the beginning of discussions about the
+forum and also in last council meeting.
+
+&gt;&gt;<i> 2. I'd apply for a moderator job in some parts of the forum - how do I do that?
+</I>&gt;&gt;<i> 3. I'd like to be part of a group (founders, translators) - how do I do that?
+</I>&gt;<i>
+</I>&gt;<i> M&#226;at?
+</I>&gt;<i>
+</I>
+I thought this was going to be communicated to the people who belong
+to such groups anyway (founders, translators). There's also a number
+of people who registered their names in the wiki page as
+helpers/moderators in the community forum. Like &quot;Hey, we are ready to
+open the forum, we are needing moderators for the following
+sections:..... Pls answer if you want to help us.&quot;
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000527.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000534.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#528">[ date ]</a>
+ <a href="thread.html#528">[ thread ]</a>
+ <a href="subject.html#528">[ subject ]</a>
+ <a href="author.html#528">[ 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-March/000529.html b/zarb-ml/mageia-webteam/2011-March/000529.html
new file mode 100644
index 000000000..29c71cd6b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000529.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3C4D88CDDF.5020008%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000559.html">
+ <LINK REL="Next" HREF="000530.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3C4D88CDDF.5020008%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">maat-ml at vilarem.net
+ </A><BR>
+ <I>Tue Mar 22 17:27:11 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000559.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000530.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#529">[ date ]</a>
+ <a href="thread.html#529">[ thread ]</a>
+ <a href="subject.html#529">[ subject ]</a>
+ <a href="author.html#529">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 22/03/2011 16:57, Romain d'Alverny a &#233;crit :
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> On Tue, Mar 22, 2011 at 16:43, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> I checked the forum and here are a few questions:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 1. About existing forums (linked as subforums in &quot;Communities forums&quot;)
+</I>&gt;&gt;<i> [...]
+</I>&gt;&gt;<i> German community members decided to have a German Mageia forum inside
+</I>&gt;&gt;<i> the main Mageia forum, not outside.
+</I>&gt;<i> Ok, so that makes for a <A HREF="https://forums.mageia.org/de/">https://forums.mageia.org/de/</A> fully hosted
+</I>&gt;<i> forum. M&#226;at, how can we set this up?
+</I>&gt;<i>
+</I>
+Hi,
+
+We need to clone the /en/ forum in /de/ clone the database, link them, clean users and posts and play a little bit with parameters / forum structure
+
+&gt;&gt;<i> 2. I'd apply for a moderator job in some parts of the forum - how do I do that?
+</I>&gt;&gt;<i>
+</I>in /de/ or in /en/ ?
+
+Because in /de/ i would see you rather in Administrator position than Moderator
+
+&gt;&gt;<i> 3. I'd like to be part of a group (founders, translators) - how do I do that?
+</I>&gt;<i> M&#226;at?
+</I>&gt;<i>
+</I>
+Ask me or ash or more generally all people in Administrators group in phpBB
+
+(BTW you're now in founders - your default group - and translators too)
+
+&gt;<i> /me cleaning &amp; merging <A HREF="http://mageia.org/wiki/doku.php?id=forums">http://mageia.org/wiki/doku.php?id=forums</A> &amp;
+</I>&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=web:forums">http://mageia.org/wiki/doku.php?id=web:forums</A>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000559.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000530.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#529">[ date ]</a>
+ <a href="thread.html#529">[ thread ]</a>
+ <a href="subject.html#529">[ subject ]</a>
+ <a href="author.html#529">[ 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-March/000530.html b/zarb-ml/mageia-webteam/2011-March/000530.html
new file mode 100644
index 000000000..b9cb7d39c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000530.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTimJfqK666-tqZ1gvA-6MHbfZbeV2bK9AHTMwKPM%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="000529.html">
+ <LINK REL="Next" HREF="000531.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTimJfqK666-tqZ1gvA-6MHbfZbeV2bK9AHTMwKPM%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 22 17:31:07 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000529.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000531.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#530">[ date ]</a>
+ <a href="thread.html#530">[ thread ]</a>
+ <a href="subject.html#530">[ subject ]</a>
+ <a href="author.html#530">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 22, 2011 at 17:27, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+&gt;<i> We need to clone the /en/ forum in /de/ clone the database, link them, clean users and posts
+</I>&gt;<i> and play a little bit with parameters / forum structure
+</I>
+Cool.
+
+I thought it had been patched to use the same codebase for all
+locales, with only a single config file? was not the case?
+
+If there's something to be scriptable here, that's going to be useful
+for future uses (not that it will be very often that we open a new
+locale, but when it happens, it's better the process is ironed out
+already).
+
+Do you have an estimate on when this could happen?
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000529.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000531.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#530">[ date ]</a>
+ <a href="thread.html#530">[ thread ]</a>
+ <a href="subject.html#530">[ subject ]</a>
+ <a href="author.html#530">[ 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-March/000531.html b/zarb-ml/mageia-webteam/2011-March/000531.html
new file mode 100644
index 000000000..91c99e1cc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000531.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3C4D88D033.2030305%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000530.html">
+ <LINK REL="Next" HREF="000532.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3C4D88D033.2030305%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">maat-ml at vilarem.net
+ </A><BR>
+ <I>Tue Mar 22 17:37:07 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000530.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000532.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#531">[ date ]</a>
+ <a href="thread.html#531">[ thread ]</a>
+ <a href="subject.html#531">[ subject ]</a>
+ <a href="author.html#531">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 22/03/2011 17:31, Romain d'Alverny a &#233;crit :
+&gt;<i> On Tue, Mar 22, 2011 at 17:27, 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;<i> We need to clone the /en/ forum in /de/ clone the database, link them, clean users and posts
+</I>&gt;&gt;<i> and play a little bit with parameters / forum structure
+</I>&gt;<i> Cool.
+</I>&gt;<i>
+</I>&gt;<i> I thought it had been patched to use the same codebase for all
+</I>&gt;<i> locales, with only a single config file? was not the case?
+</I>&gt;<i>
+</I>Ha... nope we need to add .de lang :-/
+
+&gt;<i> If there's something to be scriptable here, that's going to be useful
+</I>&gt;<i> for future uses (not that it will be very often that we open a new
+</I>&gt;<i> locale, but when it happens, it's better the process is ironed out
+</I>&gt;<i> already).
+</I>&gt;<i>
+</I>Yup agreed... i'll check what can be done (then we'll need to &quot;puppet-ize&quot; the scripting)
+
+&gt;<i> Do you have an estimate on when this could happen?
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>Gimme a few days (and if my dear fellow sysadmin is can gimme a few minutes on irc that will help me go faster)
+
+Ma&#226;t
+
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000530.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000532.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#531">[ date ]</a>
+ <a href="thread.html#531">[ thread ]</a>
+ <a href="subject.html#531">[ subject ]</a>
+ <a href="author.html#531">[ 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-March/000532.html b/zarb-ml/mageia-webteam/2011-March/000532.html
new file mode 100644
index 000000000..02f0ae446
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000532.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTi%3DeyKBy5iMgeNxxrWCT1xBXT2_HWtACqcNgGnUH%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="000531.html">
+ <LINK REL="Next" HREF="000533.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTi%3DeyKBy5iMgeNxxrWCT1xBXT2_HWtACqcNgGnUH%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 22 18:08:22 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000531.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000533.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#532">[ date ]</a>
+ <a href="thread.html#532">[ thread ]</a>
+ <a href="subject.html#532">[ subject ]</a>
+ <a href="author.html#532">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 22, 2011 at 17:37, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+&gt;<i> Le 22/03/2011 17:31, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i> Do you have an estimate on when this could happen?
+</I>&gt;<i>
+</I>&gt;<i> Gimme a few days
+</I>
+Ok, cool. Thanks a lot! :-)
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000531.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000533.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#532">[ date ]</a>
+ <a href="thread.html#532">[ thread ]</a>
+ <a href="subject.html#532">[ subject ]</a>
+ <a href="author.html#532">[ 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-March/000533.html b/zarb-ml/mageia-webteam/2011-March/000533.html
new file mode 100644
index 000000000..69f685955
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000533.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTin6NYrVnR9K7ZwEaW3NYb69L7WRMe%3DpHQf%2BfCwt%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="000532.html">
+ <LINK REL="Next" HREF="000537.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTin6NYrVnR9K7ZwEaW3NYb69L7WRMe%3DpHQf%2BfCwt%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue Mar 22 18:28:48 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000532.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000537.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#533">[ date ]</a>
+ <a href="thread.html#533">[ thread ]</a>
+ <a href="subject.html#533">[ subject ]</a>
+ <a href="author.html#533">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/22 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i>
+</I>&gt;&gt;&gt;<i> 2. I'd apply for a moderator job in some parts of the forum - how do I do that?
+</I>&gt;&gt;&gt;<i>
+</I>&gt;<i> in /de/ or in /en/ ?
+</I>&gt;<i> Because in /de/ i would see you rather in Administrator position than Moderator
+</I>
+In EN, but that is already done by being in the translator and founders groups.
+In DE, I can be admin for the start.
+
+&gt;<i> (BTW you're now in founders - your default group - and translators too)
+</I>
+That's great, thx, no more needed.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000532.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000537.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#533">[ date ]</a>
+ <a href="thread.html#533">[ thread ]</a>
+ <a href="subject.html#533">[ subject ]</a>
+ <a href="author.html#533">[ 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-March/000534.html b/zarb-ml/mageia-webteam/2011-March/000534.html
new file mode 100644
index 000000000..157d84384
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000534.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTikXE9krqnTCp3JLuyGhxd%2B-QZiRafH9NKN5L5FJ%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="000528.html">
+ <LINK REL="Next" HREF="000535.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTikXE9krqnTCp3JLuyGhxd%2B-QZiRafH9NKN5L5FJ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 22 18:34:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000528.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000535.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#534">[ date ]</a>
+ <a href="thread.html#534">[ thread ]</a>
+ <a href="subject.html#534">[ subject ]</a>
+ <a href="author.html#534">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 22, 2011 at 17:07, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> I thought this was going to be communicated to the people who belong
+</I>&gt;<i> to such groups anyway (founders, translators). There's also a number
+</I>&gt;<i> of people who registered their names in the wiki page as
+</I>&gt;<i> helpers/moderators in the community forum. Like &quot;Hey, we are ready to
+</I>&gt;<i> open the forum, we are needing moderators for the following
+</I>&gt;<i> sections:..... Pls answer if you want to help us.&quot;
+</I>
+Right. But we didn't announce the forum yet (lack of time/focus on
+this so far). Shall we do it before the global announce? (I think so).
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000528.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000535.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#534">[ date ]</a>
+ <a href="thread.html#534">[ thread ]</a>
+ <a href="subject.html#534">[ subject ]</a>
+ <a href="author.html#534">[ 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-March/000535.html b/zarb-ml/mageia-webteam/2011-March/000535.html
new file mode 100644
index 000000000..8a9ab7090
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000535.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTikdv_6RtXocwLjdCun5jN8YQE%3D0acJqiNYDJpgR%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="000534.html">
+ <LINK REL="Next" HREF="000536.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTikdv_6RtXocwLjdCun5jN8YQE%3D0acJqiNYDJpgR%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue Mar 22 19:02:24 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000534.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000536.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#535">[ date ]</a>
+ <a href="thread.html#535">[ thread ]</a>
+ <a href="subject.html#535">[ subject ]</a>
+ <a href="author.html#535">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/22 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+&gt;<i> On Tue, Mar 22, 2011 at 17:07, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> I thought this was going to be communicated to the people who belong
+</I>&gt;&gt;<i> to such groups anyway (founders, translators). There's also a number
+</I>&gt;&gt;<i> of people who registered their names in the wiki page as
+</I>&gt;&gt;<i> helpers/moderators in the community forum. Like &quot;Hey, we are ready to
+</I>&gt;&gt;<i> open the forum, we are needing moderators for the following
+</I>&gt;&gt;<i> sections:..... Pls answer if you want to help us.&quot;
+</I>&gt;<i>
+</I>&gt;<i> Right. But we didn't announce the forum yet (lack of time/focus on
+</I>&gt;<i> this so far). Shall we do it before the global announce? (I think so).
+</I>
+1. Foreign language forums
+I guess there will be more requests for foreign language forums like
+the German to be included in the same way as it is with the french
+forum in Mandriva. That's what I asked in last council meeting when
+maat said, it's ok. :)
+
+We should also start a line of links to available Mageia forums in
+other languages, be they included in the main forum or external
+communities. To build our Mageia universe. I think this should be
+started from the very beginning so people can watch how this Mageia
+universe grows whenever a new link is added. We can do this by
+language name or flag, while IMHO language name is better because
+there languages spoken in more than one country (English, French,
+German, etc.).
+
+2. Communities forums
+I am not really happy with these links in &quot;Communities forums&quot;. As
+already said, they are leading to Mandriva forums anyway and we should
+first ask those people how they would like it to be:
+ - keep their existing forum for both groups, Mandriva and Mageia
+ - open up their own forum for Mageia (like mandrivausers.org/mageiausers.org)
+ - start a new forum for Mageia inside the main Mageia forum.
+Of course we can place links to existing Mandriva communities
+somewhere, in many cases these communities are the sources where our
+new Mageia community comes from. And they bear a whealth of
+information, documentation and other help which will benefit Mageia
+users for a long time from now.
+
+Then I think these links are misplaced anyway. They are hidden in the
+forum structure but they are not subforums as shown, they are links to
+external forums. IMHO a better place for such links to community
+forums would be the header section (as in Mandriva forum) or wherever,
+but not within the english forum structure. People looking for the
+spanish or german community forums will not scan the english forum
+structure to find such links.
+
+3. Moderators, announcements
+People have registered their name in the wiki, so IMHO we should
+acknowledge their commitment by asking them to fill vacancies (do we
+have any?) before we announce the forum.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000534.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000536.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#535">[ date ]</a>
+ <a href="thread.html#535">[ thread ]</a>
+ <a href="subject.html#535">[ subject ]</a>
+ <a href="author.html#535">[ 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-March/000536.html b/zarb-ml/mageia-webteam/2011-March/000536.html
new file mode 100644
index 000000000..7dcd28b96
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000536.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTikqDVxowQ_Vmy00tZVJ%3DWUd4Nh5HSA1dP52jwHM%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="000535.html">
+ <LINK REL="Next" HREF="000540.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTikqDVxowQ_Vmy00tZVJ%3DWUd4Nh5HSA1dP52jwHM%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Mar 22 19:12:26 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000535.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000540.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#536">[ date ]</a>
+ <a href="thread.html#536">[ thread ]</a>
+ <a href="subject.html#536">[ subject ]</a>
+ <a href="author.html#536">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Mar 22, 2011 at 19:02, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> 1. Foreign language forums
+</I>&gt;<i> We should also start a line of links to available Mageia forums in
+</I>&gt;<i> other languages, be they included in the main forum or external
+</I>&gt;<i> communities.
+</I>
+Current reference would be in
+<A HREF="http://mageia.org/wiki/doku.php?id=web:forums#status">http://mageia.org/wiki/doku.php?id=web:forums#status</A> .
+
+&gt;<i> To build our Mageia universe. I think this should be
+</I>&gt;<i> started from the very beginning so people can watch how this Mageia
+</I>&gt;<i> universe grows whenever a new link is added. We can do this by
+</I>&gt;<i> language name or flag, while IMHO language name is better because
+</I>&gt;<i> there languages spoken in more than one country (English, French,
+</I>&gt;<i> German, etc.).
+</I>
+Language names, definitely. Flags are not meant for that.
+
+&gt;<i> 2. Communities forums
+</I>&gt;<i> I am not really happy with these links in &quot;Communities forums&quot;. As
+</I>&gt;<i> already said, they are leading to Mandriva forums anyway and we should
+</I>&gt;<i> first ask those people how they would like it to be:
+</I>&gt;<i> &#160;- keep their existing forum for both groups, Mandriva and Mageia
+</I>&gt;<i> &#160;- open up their own forum for Mageia (like mandrivausers.org/mageiausers.org)
+</I>&gt;<i> &#160;- start a new forum for Mageia inside the main Mageia forum.
+</I>
+Yes, but so far, AFAIK (to be checked twice), MLO expressed their
+intent to move as a Mageia community. Blogdrake, not so sure about the
+double status.
+
+&gt;<i> a better place for such links to community forums would be the header section
+</I>
+Agree. Plus, it would help to have a generic
+<A HREF="http://forums.mageia.org/{locale">http://forums.mageia.org/{locale</A>}/ redirection when relevant so we
+have a consistent way to address forums.
+
+The global nav, once defined (contents, architecture and design) would
+probably embody this, but if a quicker, immediate solution can be
+found, go for it.
+
+&gt;<i> 3. Moderators, announcements
+</I>&gt;<i> People have registered their name in the wiki, so IMHO we should
+</I>&gt;<i> acknowledge their commitment by asking them to fill vacancies (do we
+</I>&gt;<i> have any?) before we announce the forum.
+</I>
+Right. I can ping all of them to notify of the availability of the
+English platform, the redirections available for locally managed
+forums and to ask for volunteers. But I'll need you M&#226;at to push the
+list of people (moderators, admins) in the wiki page too so everyone
+knows who is taking a role and who is coordinating this at the forums
+team level (see
+<A HREF="http://mageia.org/wiki/doku.php?id=web:forums#forums_team">http://mageia.org/wiki/doku.php?id=web:forums#forums_team</A> ) :-p
+
+Of course, if someone else wants to take the job...
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000535.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000540.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#536">[ date ]</a>
+ <a href="thread.html#536">[ thread ]</a>
+ <a href="subject.html#536">[ subject ]</a>
+ <a href="author.html#536">[ 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-March/000537.html b/zarb-ml/mageia-webteam/2011-March/000537.html
new file mode 100644
index 000000000..aa123b505
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000537.html
@@ -0,0 +1,114 @@
+<!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=%3C20110322230002.C58B5428EE%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="000533.html">
+ <LINK REL="Next" HREF="000538.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=%3C20110322230002.C58B5428EE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 23 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000533.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000538.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#537">[ date ]</a>
+ <a href="thread.html#537">[ thread ]</a>
+ <a href="subject.html#537">[ subject ]</a>
+ <a href="author.html#537">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000533.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000538.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#537">[ date ]</a>
+ <a href="thread.html#537">[ thread ]</a>
+ <a href="subject.html#537">[ subject ]</a>
+ <a href="author.html#537">[ 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-March/000538.html b/zarb-ml/mageia-webteam/2011-March/000538.html
new file mode 100644
index 000000000..cd725b7de
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000538.html
@@ -0,0 +1,100 @@
+<!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=%3C4D892FAF.5060703%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000537.html">
+ <LINK REL="Next" HREF="000541.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=%3C4D892FAF.5060703%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forums structure : support catregory">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 23 00:24:31 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000537.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000541.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#538">[ date ]</a>
+ <a href="thread.html#538">[ thread ]</a>
+ <a href="subject.html#538">[ subject ]</a>
+ <a href="author.html#538">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+ahmad(78) and i have had a talk on irc about this part of the forum.
+
+we agreed to disagree on the subject so this leaded us to search for more points of views / comments / suggestions about it.
+
+my first structure was just 2 forums :
+-- Basic support
+-- Advanced support
+
+He pushed 3 forums :
+-- Software
+-- Printers and printing
+-- Networking
+
+Then i tried to use sub-forums under &quot;Basic support&quot; :
+-- Networking
+-- Video
+-- Sound
+-- Printers and printing
+
+What do you think ?
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000537.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000541.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#538">[ date ]</a>
+ <a href="thread.html#538">[ thread ]</a>
+ <a href="subject.html#538">[ subject ]</a>
+ <a href="author.html#538">[ 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-March/000539.html b/zarb-ml/mageia-webteam/2011-March/000539.html
new file mode 100644
index 000000000..7b1e5d619
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000539.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3C4D8936DA.8050106%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000540.html">
+ <LINK REL="Next" HREF="000542.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3C4D8936DA.8050106%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 23 00:55:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000540.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000542.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#539">[ date ]</a>
+ <a href="thread.html#539">[ thread ]</a>
+ <a href="subject.html#539">[ subject ]</a>
+ <a href="author.html#539">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 22/03/2011 19:02, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/3/22 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;:
+</I>&gt;&gt;<i> On Tue, Mar 22, 2011 at 17:07, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;&gt;<i> I thought this was going to be communicated to the people who belong
+</I>&gt;&gt;&gt;<i> to such groups anyway (founders, translators). There's also a number
+</I>&gt;&gt;&gt;<i> of people who registered their names in the wiki page as
+</I>&gt;&gt;&gt;<i> helpers/moderators in the community forum. Like &quot;Hey, we are ready to
+</I>&gt;&gt;&gt;<i> open the forum, we are needing moderators for the following
+</I>&gt;&gt;&gt;<i> sections:..... Pls answer if you want to help us.&quot;
+</I>&gt;&gt;<i> Right. But we didn't announce the forum yet (lack of time/focus on
+</I>&gt;&gt;<i> this so far). Shall we do it before the global announce? (I think so).
+</I>&gt;<i> 1. Foreign language forums
+</I>&gt;<i> I guess there will be more requests for foreign language forums like
+</I>&gt;<i> the German to be included in the same way as it is with the french
+</I>&gt;<i> forum in Mandriva. That's what I asked in last council meeting when
+</I>&gt;<i> maat said, it's ok. :)
+</I>&gt;<i>
+</I>Yup the forum infra has been thought to host several $lang...
+
+as .de is a lang... ^^
+
+&gt;<i> We should also start a line of links to available Mageia forums in
+</I>&gt;<i> other languages, be they included in the main forum or external
+</I>&gt;<i> communities. To build our Mageia universe. I think this should be
+</I>&gt;<i> started from the very beginning so people can watch how this Mageia
+</I>&gt;<i> universe grows whenever a new link is added. We can do this by
+</I>&gt;<i> language name or flag, while IMHO language name is better because
+</I>&gt;<i> there languages spoken in more than one country (English, French,
+</I>&gt;<i> German, etc.).
+</I>&gt;<i>
+</I>Yup... with just one $lang this was not needed but with .de on its way we will have to fulfill this need
+
+&gt;<i> 2. Communities forums
+</I>&gt;<i> I am not really happy with these links in &quot;Communities forums&quot;. As
+</I>&gt;<i> already said, they are leading to Mandriva forums anyway and we should
+</I>&gt;<i> first ask those people how they would like it to be:
+</I>&gt;<i> - keep their existing forum for both groups, Mandriva and Mageia
+</I>&gt;<i> - open up their own forum for Mageia (like mandrivausers.org/mageiausers.org)
+</I>&gt;<i> - start a new forum for Mageia inside the main Mageia forum.
+</I>&gt;<i> Of course we can place links to existing Mandriva communities
+</I>&gt;<i> somewhere, in many cases these communities are the sources where our
+</I>&gt;<i> new Mageia community comes from. And they bear a whealth of
+</I>&gt;<i> information, documentation and other help which will benefit Mageia
+</I>&gt;<i> users for a long time from now.
+</I>&gt;<i>
+</I>&gt;<i> Then I think these links are misplaced anyway. They are hidden in the
+</I>&gt;<i> forum structure but they are not subforums as shown, they are links to
+</I>&gt;<i> external forums. IMHO a better place for such links to community
+</I>&gt;<i> forums would be the header section (as in Mandriva forum) or wherever,
+</I>&gt;<i> but not within the english forum structure. People looking for the
+</I>&gt;<i> spanish or german community forums will not scan the english forum
+</I>&gt;<i> structure to find such links.
+</I>&gt;<i>
+</I>I used the easiest way and quickest way to add links
+
+We need to create something like a dynamic common shared menu. This will come with graphical common design for mageia websites.
+
+=&gt; officiel $lang forums and communities will have their place in this (And before that we could try to pay badly with templates to add hard-coded links)
+
+But this will be time consuming and was not high in priorities :)
+
+&gt;<i> 3. Moderators, announcements
+</I>&gt;<i> People have registered their name in the wiki, so IMHO we should
+</I>&gt;<i> acknowledge their commitment by asking them to fill vacancies (do we
+</I>&gt;<i> have any?) before we announce the forum.
+</I>&gt;<i>
+</I>
+Up to now the best way that proved to be effective to find good moderators was to pick up people that did not ask to be that and choose them for the qualities of their posts and behavior on the forum... and recruit them only if unanimously accepted by all the active moderators.
+
+This is needed because moderators have to help each other to face trolls and flamewars so we need them to work as a cohesive team.
+
+As the forum did not exist i could not use this method... so i relied on Ash experience to choose a handful of moderators for a start.
+
+Next moderators will be recruited gradually with the increase of the forums's hearing... and i'd encourage the team to use the pick up method + unanimous approval.
+
+Other people will have extended rights (not yet completely defined) on parts of the forum depending on their activities. The goal being to enable them to rename topics, mark them [resolved], close them and edit posts but not to have them enforce the forum rules (which is the role assigned to moderators)
+
+But we have vacancies to fill : Support team is at this moment empty and we need someone to create it, recruit people and brief them...
+
+(Bug Hunters is also empty but i don't know if this is really needed to have a team for that...)
+
+Regards,
+
+Ma&#226;t
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000540.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000542.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#539">[ date ]</a>
+ <a href="thread.html#539">[ thread ]</a>
+ <a href="subject.html#539">[ subject ]</a>
+ <a href="author.html#539">[ 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-March/000540.html b/zarb-ml/mageia-webteam/2011-March/000540.html
new file mode 100644
index 000000000..26d066a39
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000540.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3C4D893F8C.3020603%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000536.html">
+ <LINK REL="Next" HREF="000539.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3C4D893F8C.3020603%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 23 01:32:12 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000536.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000539.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#540">[ date ]</a>
+ <a href="thread.html#540">[ thread ]</a>
+ <a href="subject.html#540">[ subject ]</a>
+ <a href="author.html#540">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 22/03/2011 19:12, Romain d'Alverny a &#233;crit :
+&gt;<i> Right. I can ping all of them to notify of the availability of the
+</I>&gt;<i> English platform, the redirections available for locally managed
+</I>&gt;<i> forums and to ask for volunteers. But I'll need you M&#226;at to push the
+</I>&gt;<i> list of people (moderators, admins) in the wiki page too so everyone
+</I>&gt;<i> knows who is taking a role and who is coordinating this at the forums
+</I>&gt;<i> team level (see
+</I>&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=web:forums#forums_team">http://mageia.org/wiki/doku.php?id=web:forums#forums_team</A> ) :-p
+</I>&gt;<i>
+</I>&gt;<i>
+</I>done
+
+&gt;<i> Of course, if someone else wants to take the job...
+</I>&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>Cheers
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000536.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000539.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#540">[ date ]</a>
+ <a href="thread.html#540">[ thread ]</a>
+ <a href="subject.html#540">[ subject ]</a>
+ <a href="author.html#540">[ 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-March/000541.html b/zarb-ml/mageia-webteam/2011-March/000541.html
new file mode 100644
index 000000000..bfe552009
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000541.html
@@ -0,0 +1,130 @@
+<!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=%3C1300846287.16169.9.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="000538.html">
+ <LINK REL="Next" HREF="000546.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forums structure : support catregory</H1>
+ <B>planas</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums%20structure%20%3A%20support%20catregory&In-Reply-To=%3C1300846287.16169.9.camel%40planas-pinguy%3E"
+ TITLE="[Mageia-webteam] Forums structure : support catregory">jslozier at gmail.com
+ </A><BR>
+ <I>Wed Mar 23 03:11:27 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000538.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000546.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#541">[ date ]</a>
+ <a href="thread.html#541">[ thread ]</a>
+ <a href="subject.html#541">[ subject ]</a>
+ <a href="author.html#541">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, 2011-03-23 at 00:24 +0100, Ma&#226;t wrote:
+
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> ahmad(78) and i have had a talk on irc about this part of the forum.
+</I>&gt;<i>
+</I>&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;<i>
+</I>&gt;<i> my first structure was just 2 forums :
+</I>&gt;<i> -- Basic support
+</I>&gt;<i> -- Advanced support
+</I>&gt;<i>
+</I>&gt;<i> He pushed 3 forums :
+</I>&gt;<i> -- Software
+</I>&gt;<i> -- Printers and printing
+</I>&gt;<i> -- Networking
+</I>&gt;<i>
+</I>&gt;<i> Then i tried to use sub-forums under &quot;Basic support&quot; :
+</I>&gt;<i> -- Networking
+</I>&gt;<i> -- Video
+</I>&gt;<i> -- Sound
+</I>&gt;<i> -- Printers and printing
+</I>&gt;<i>
+</I>&gt;<i> What do you think ?
+</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>
+
+I like the sub-forms you suggested.
+
+I think you could have
+
+ Basic Hardware Support
+ Networking
+ Video
+ Sound
+ Printers and printing
+
+ Advanced Hardware Support (for more troublesome problems)
+
+ General Software Support
+ Basic how to use supplied software
+ Basic how to install and maintain
+ How configure firewall/av
+ Any other basic tasks a user might find important
+
+--
+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/20110322/8e14231f/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000538.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000546.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#541">[ date ]</a>
+ <a href="thread.html#541">[ thread ]</a>
+ <a href="subject.html#541">[ subject ]</a>
+ <a href="author.html#541">[ 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-March/000542.html b/zarb-ml/mageia-webteam/2011-March/000542.html
new file mode 100644
index 000000000..f935d159a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000542.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTikdu3pvCr8Vcc2-Dc4WSFSKQpk7EGAMH5-eP%3DFi%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="000539.html">
+ <LINK REL="Next" HREF="000545.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTikdu3pvCr8Vcc2-Dc4WSFSKQpk7EGAMH5-eP%3DFi%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 23 03:32:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000539.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000545.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#542">[ date ]</a>
+ <a href="thread.html#542">[ thread ]</a>
+ <a href="subject.html#542">[ subject ]</a>
+ <a href="author.html#542">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/23 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i>
+</I>&gt;&gt;<i> 3. Moderators, announcements
+</I>&gt;&gt;<i> People have registered their name in the wiki, so IMHO we should
+</I>&gt;&gt;<i> acknowledge their commitment by asking them to fill vacancies (do we
+</I>&gt;&gt;<i> have any?) before we announce the forum.
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Up to now the best way that proved to be effective to find good moderators was to pick up people that did not ask to be that and choose them for the qualities of their posts and behavior on the forum... and recruit them only if unanimously accepted by all the active moderators.
+</I>
+Yes, of course. I would not have asked to be a moderator. But then I
+saw the groups and as I belong to those groups...
+
+&gt;<i> Other people will have extended rights (not yet completely defined) on parts of the forum depending on their activities. The goal being to enable them to rename topics, mark them [resolved], close them and edit posts but not to have them enforce the forum rules (which is the role assigned to moderators)
+</I>
+Hmm, all these rights are moderator rights (closing threads, edit
+other people's posts, rename topics, move threads to other locations,
+etc. What do you have in mind, &quot;sub-moderators&quot;?
+
+Another question is the structure of the forum, this is all but
+trivial - we spent quite some time on that in the German forum. And
+there will always come new suggestions about what &quot;should be changed&quot;
+there. :) I saw you already started a thread about this. :)
+
+Question: I assume each language forum can have their own structure,
+right? Because some may already be used to s certain structure of
+their previous Mandriva forum and would want to have the same here.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000539.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000545.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#542">[ date ]</a>
+ <a href="thread.html#542">[ thread ]</a>
+ <a href="subject.html#542">[ subject ]</a>
+ <a href="author.html#542">[ 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-March/000543.html b/zarb-ml/mageia-webteam/2011-March/000543.html
new file mode 100644
index 000000000..9e4a50b14
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000543.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110323035701.4A7FE44F9D%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="000525.html">
+ <LINK REL="Next" HREF="000544.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>Palm Pre</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110323035701.4A7FE44F9D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 23 04:57:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000525.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000544.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#543">[ date ]</a>
+ <a href="thread.html#543">[ thread ]</a>
+ <a href="subject.html#543">[ subject ]</a>
+ <a href="author.html#543">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>
+
+--- Comment #3 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-03-22 19:54:36 UTC ---
+lol
+
+--- Comment #4 from Palm Pre &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">palm_pre_stl at yahoo.com</A>&gt; 2011-03-23 04:57:01 UTC ---
+I use Mandriva installation where original account was created and I'm still
+lodgged on.
+
+Back to Morgan's question. I use my e-mail to log in. Bugzilla states my e-mail
+as logged in. What is my log in btw?
+
+--
+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="000525.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000544.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#543">[ date ]</a>
+ <a href="thread.html#543">[ thread ]</a>
+ <a href="subject.html#543">[ subject ]</a>
+ <a href="author.html#543">[ 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-March/000544.html b/zarb-ml/mageia-webteam/2011-March/000544.html
new file mode 100644
index 000000000..e558b94b1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000544.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110323041503.26A15454A1%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="000543.html">
+ <LINK REL="Next" HREF="000547.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>Er Palm</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110323041503.26A15454A1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 23 05:15:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000543.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000547.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#544">[ date ]</a>
+ <a href="thread.html#544">[ thread ]</a>
+ <a href="subject.html#544">[ subject ]</a>
+ <a href="author.html#544">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</A>
+
+Er Palm &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">linux_oid at yahoo.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">linux_oid at yahoo.com</A>
+
+--- Comment #5 from Er Palm &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">linux_oid at yahoo.com</A>&gt; 2011-03-23 05:15:03 UTC ---
+Fially, I managed to recall my another login. Wow! It may take forever to
+recall the one I started this bug.
+
+--
+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="000543.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000547.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#544">[ date ]</a>
+ <a href="thread.html#544">[ thread ]</a>
+ <a href="subject.html#544">[ subject ]</a>
+ <a href="author.html#544">[ 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-March/000545.html b/zarb-ml/mageia-webteam/2011-March/000545.html
new file mode 100644
index 000000000..b17adad87
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000545.html
@@ -0,0 +1,113 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3C4D899740.6020201%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000542.html">
+ <LINK REL="Next" HREF="000548.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3C4D899740.6020201%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 23 07:46:24 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000542.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000548.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#545">[ date ]</a>
+ <a href="thread.html#545">[ thread ]</a>
+ <a href="subject.html#545">[ subject ]</a>
+ <a href="author.html#545">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/03/2011 03:32, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/3/23 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> 3. Moderators, announcements
+</I>&gt;&gt;&gt;<i> People have registered their name in the wiki, so IMHO we should
+</I>&gt;&gt;&gt;<i> acknowledge their commitment by asking them to fill vacancies (do we
+</I>&gt;&gt;&gt;<i> have any?) before we announce the forum.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> Up to now the best way that proved to be effective to find good moderators was to pick up people that did not ask to be that and choose them for the qualities of their posts and behavior on the forum... and recruit them only if unanimously accepted by all the active moderators.
+</I>&gt;<i> Yes, of course. I would not have asked to be a moderator. But then I
+</I>&gt;<i> saw the groups and as I belong to those groups...
+</I>&gt;<i>
+</I>&gt;&gt;<i> Other people will have extended rights (not yet completely defined) on parts of the forum depending on their activities. The goal being to enable them to rename topics, mark them [resolved], close them and edit posts but not to have them enforce the forum rules (which is the role assigned to moderators)
+</I>&gt;<i> Hmm, all these rights are moderator rights (closing threads, edit
+</I>&gt;<i> other people's posts, rename topics, move threads to other locations,
+</I>&gt;<i> etc. What do you have in mind, &quot;sub-moderators&quot;?
+</I>&gt;<i>
+</I>Yup... something like that
+
+I want people to have a clear limit in mind between those who help and those who enforce rules
+
+phpbb3 allows such custom profiles definition in user rights and also in moderator rights
+
+&gt;<i> Another question is the structure of the forum, this is all but
+</I>&gt;<i> trivial - we spent quite some time on that in the German forum. And
+</I>&gt;<i> there will always come new suggestions about what &quot;should be changed&quot;
+</I>&gt;<i> there. :) I saw you already started a thread about this. :)
+</I>&gt;<i>
+</I>
+:<i>)
+</I>
+&gt;<i> Question: I assume each language forum can have their own structure,
+</I>&gt;<i> right? Because some may already be used to s certain structure of
+</I>&gt;<i> their previous Mandriva forum and would want to have the same here.
+</I>&gt;<i>
+</I>
+Of course :)
+
+On a personal point of view, i'd preach $lang forums teams to speak with each other to share good practices :)
+
+What will be unavoidable :
+-- Common LDAP link
+-- we'll have to share design (well to some extent)...
+
+What won't be required or enforced. Just nice-to-have things :
+-- That would be cool if we can manage to have similar structures (to some extent here also) so that multilang users feel at home everywhere.
+-- What would be (perhaps ?) interesting to share : for people jumping from a forum to another it would be (perhaps ?) cool to share data about ip banning for example. And more generally sharing data about users that bring discord or behave in a reprehensible way...
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000542.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000548.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#545">[ date ]</a>
+ <a href="thread.html#545">[ thread ]</a>
+ <a href="subject.html#545">[ subject ]</a>
+ <a href="author.html#545">[ 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-March/000546.html b/zarb-ml/mageia-webteam/2011-March/000546.html
new file mode 100644
index 000000000..51bf64bd3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000546.html
@@ -0,0 +1,105 @@
+<!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=%3C4D899A75.1000107%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000541.html">
+ <LINK REL="Next" HREF="000549.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=%3C4D899A75.1000107%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forums structure : support catregory">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 23 08:00:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000541.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000549.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#546">[ date ]</a>
+ <a href="thread.html#546">[ thread ]</a>
+ <a href="subject.html#546">[ subject ]</a>
+ <a href="author.html#546">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/03/2011 03:11, planas a &#233;crit :
+&gt;<i>
+</I>&gt;<i> I like the sub-forms you suggested.
+</I>&gt;<i>
+</I>&gt;<i> I think you could have
+</I>&gt;<i>
+</I>&gt;<i> Basic Hardware Support
+</I>&gt;<i> Networking
+</I>&gt;<i> Video
+</I>&gt;<i> Sound
+</I>&gt;<i> Printers and printing
+</I>&gt;<i>
+</I>&gt;<i> Advanced Hardware Support (for more troublesome problems)
+</I>&gt;<i>
+</I>&gt;<i> General Software Support
+</I>&gt;<i> Basic how to use supplied software
+</I>&gt;<i> Basic how to install and maintain
+</I>&gt;<i> How configure firewall/av
+</I>&gt;<i> Any other basic tasks a user might find important
+</I>&gt;<i>
+</I>Hi,
+
+Thanks for your answer... i'd rather avoid to split hardware and software aspect as for example people having to deal with xsane will have, on the same &quot;file&quot;, to solve a hardware problem with the scanner, then a software problem to master xsane.
+
+More generally this separation hard/soft will mean nothin' to really inexperienced guys...
+
+(So the risk is to have people posting in the wrong forums and moderators upset with the number of topics to move)
+
+=&gt; we need to be careful to this... the goal is to make users posting in the right place without needing to think about it :)
+
+(hence limiting the complexity of structure is really something we should try to do)
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000541.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000549.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#546">[ date ]</a>
+ <a href="thread.html#546">[ thread ]</a>
+ <a href="subject.html#546">[ subject ]</a>
+ <a href="author.html#546">[ 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-March/000547.html b/zarb-ml/mageia-webteam/2011-March/000547.html
new file mode 100644
index 000000000..350e025af
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000547.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110323075808.32D1F49FAE%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="000544.html">
+ <LINK REL="Next" HREF="000554.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>D Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110323075808.32D1F49FAE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 23 08:58:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000544.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000554.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#547">[ date ]</a>
+ <a href="thread.html#547">[ thread ]</a>
+ <a href="subject.html#547">[ subject ]</a>
+ <a href="author.html#547">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</A>
+
+--- Comment #6 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-03-23 08:58:08 UTC ---
+please try to log with : palm_er as login
+
+--
+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="000544.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000554.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#547">[ date ]</a>
+ <a href="thread.html#547">[ thread ]</a>
+ <a href="subject.html#547">[ subject ]</a>
+ <a href="author.html#547">[ 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-March/000548.html b/zarb-ml/mageia-webteam/2011-March/000548.html
new file mode 100644
index 000000000..50d4d9396
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000548.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTimJswAZuE_DVpvrh%2Bhdfvf2OCuw6fu%2BY-G-4Pkf%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="000545.html">
+ <LINK REL="Next" HREF="000553.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTimJswAZuE_DVpvrh%2Bhdfvf2OCuw6fu%2BY-G-4Pkf%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 23 09:31:37 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000545.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000553.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#548">[ date ]</a>
+ <a href="thread.html#548">[ thread ]</a>
+ <a href="subject.html#548">[ subject ]</a>
+ <a href="author.html#548">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/23 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i> Le 23/03/2011 03:32, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> Hmm, all these rights are moderator rights (closing threads, edit
+</I>&gt;&gt;<i> other people's posts, rename topics, move threads to other locations,
+</I>&gt;&gt;<i> etc. What do you have in mind, &quot;sub-moderators&quot;?
+</I>&gt;&gt;<i>
+</I>&gt;<i> Yup... something like that
+</I>&gt;<i> I want people to have a clear limit in mind between those who help and those who enforce rules
+</I>
+Well, there's a very clear distinction: helping is done by everyone.
+Everything beyond help is moderator's role: closing threads, edit
+other people's posts if necessary, rename topics, etc. - and in the
+few rare cases also enforcing rules.
+
+&gt;<i> phpbb3 allows such custom profiles definition in user rights and also in moderator rights
+</I>
+I know, I spent some time with the rights system of phpbb3. :(
+
+&gt;<i> On a personal point of view, i'd preach $lang forums teams to speak with each other to share good practices :)
+</I>&gt;<i> What won't be required or enforced. Just nice-to-have things :
+</I>&gt;<i> -- That would be cool if we can manage to have similar structures (to some extent here also) so that multilang users feel at home everywhere.
+</I>&gt;<i> -- What would be (perhaps ?) interesting to share : for people jumping from a forum to another it would be (perhaps ?) cool to share data about ip banning for example. And more generally sharing data about users that bring discord or behave in a reprehensible way...
+</I>
+Then create a forum for all moderators&amp;admins where they can share
+such information.
+At mandrivauser.de we have a hidden forum for the moderators where
+they can post such &quot;user cases&quot;, giving links to the posts in
+question, documenting what they have done (sent a pm to the user,
+etc.) and sharing discussions about what to do in this or that case.
+Hidden it is because it's not advisable to discuss a single user in
+the open.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000545.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000553.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#548">[ date ]</a>
+ <a href="thread.html#548">[ thread ]</a>
+ <a href="subject.html#548">[ subject ]</a>
+ <a href="author.html#548">[ 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-March/000549.html b/zarb-ml/mageia-webteam/2011-March/000549.html
new file mode 100644
index 000000000..1e47c935e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000549.html
@@ -0,0 +1,83 @@
+<!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=%3CAANLkTinkDG8i1544hthqWXRSVvc%2BfHm2JqP%2BaEJxHRK7%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="000546.html">
+ <LINK REL="Next" HREF="000552.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forums structure : support catregory</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums%20structure%20%3A%20support%20catregory&In-Reply-To=%3CAANLkTinkDG8i1544hthqWXRSVvc%2BfHm2JqP%2BaEJxHRK7%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Forums structure : support catregory">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 23 09:38:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000546.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000552.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#549">[ date ]</a>
+ <a href="thread.html#549">[ thread ]</a>
+ <a href="subject.html#549">[ subject ]</a>
+ <a href="author.html#549">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/23 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i>
+</I>&gt;<i> (hence limiting the complexity of structure is really something we should try to do)
+</I>
+The more you put into one forum the harder it is to find something
+matching your problem.
+In short: the less structured forums the more duplicate questions.
+
+We have to find a balance between both needs.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000546.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000552.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#549">[ date ]</a>
+ <a href="thread.html#549">[ thread ]</a>
+ <a href="subject.html#549">[ subject ]</a>
+ <a href="author.html#549">[ 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-March/000550.html b/zarb-ml/mageia-webteam/2011-March/000550.html
new file mode 100644
index 000000000..c686871cb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000550.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 12 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%2012%20meeting&In-Reply-To=%3CAANLkTins1cQVgT%2BMouufrLK-FXzcy_mfUo0z0biJaE2k%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="000621.html">
+ <LINK REL="Next" HREF="000551.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 12 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2012%20meeting&In-Reply-To=%3CAANLkTins1cQVgT%2BMouufrLK-FXzcy_mfUo0z0biJaE2k%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 12 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Mar 23 09:53:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000621.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000551.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#550">[ date ]</a>
+ <a href="thread.html#550">[ thread ]</a>
+ <a href="subject.html#550">[ subject ]</a>
+ <a href="author.html#550">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi guys,
+
+as usual, 14:00 UTC, #mageia-web for:
+
+ - Progress review:
+ * wiki (boklm, obgr)
+ * maintdb (kosmas)
+ * forums (maat)
+
+ - open discussion (feel free to add your points)
+
+Cheers!
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000621.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000551.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#550">[ date ]</a>
+ <a href="thread.html#550">[ thread ]</a>
+ <a href="subject.html#550">[ subject ]</a>
+ <a href="author.html#550">[ 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-March/000551.html b/zarb-ml/mageia-webteam/2011-March/000551.html
new file mode 100644
index 000000000..3c01bbf74
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000551.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 12 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%2012%20meeting&In-Reply-To=%3C201103230959.28773.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="000550.html">
+ <LINK REL="Next" HREF="000560.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 12 meeting</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2012%20meeting&In-Reply-To=%3C201103230959.28773.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 12 meeting">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed Mar 23 09:59:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000550.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI>Next message: <A HREF="000560.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#551">[ date ]</a>
+ <a href="thread.html#551">[ thread ]</a>
+ <a href="subject.html#551">[ subject ]</a>
+ <a href="author.html#551">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Am Mittwoch 23 M&#228;rz 2011, 09:53:56 schrieb Romain d'Alverny:
+&gt;<i> as usual, 14:00 UTC, #mageia-web for:
+</I>&gt;<i>
+</I>&gt;<i> - Progress review:
+</I>&gt;<i> * wiki (boklm, obgr)
+</I>&gt;<i> * maintdb (kosmas)
+</I>&gt;<i> * forums (maat)
+</I>Hi,
+
+I won't make it to todays meeting, have to attend something at work.
+
+Oliver
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000550.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI>Next message: <A HREF="000560.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#551">[ date ]</a>
+ <a href="thread.html#551">[ thread ]</a>
+ <a href="subject.html#551">[ subject ]</a>
+ <a href="author.html#551">[ 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-March/000552.html b/zarb-ml/mageia-webteam/2011-March/000552.html
new file mode 100644
index 000000000..18450db82
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000552.html
@@ -0,0 +1,79 @@
+<!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=%3C4D89BA69.4030004%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000549.html">
+ <LINK REL="Next" HREF="000568.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=%3C4D89BA69.4030004%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forums structure : support catregory">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 23 10:16:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000549.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000568.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#552">[ date ]</a>
+ <a href="thread.html#552">[ thread ]</a>
+ <a href="subject.html#552">[ subject ]</a>
+ <a href="author.html#552">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/03/2011 09:38, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/3/23 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> (hence limiting the complexity of structure is really something we should try to do)
+</I>&gt;<i> The more you put into one forum the harder it is to find something
+</I>&gt;<i> matching your problem.
+</I>&gt;<i> In short: the less structured forums the more duplicate questions.
+</I>&gt;<i>
+</I>&gt;<i> We have to find a balance between both needs.
+</I>Yup agreed :)
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000549.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000568.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#552">[ date ]</a>
+ <a href="thread.html#552">[ thread ]</a>
+ <a href="subject.html#552">[ subject ]</a>
+ <a href="author.html#552">[ 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-March/000553.html b/zarb-ml/mageia-webteam/2011-March/000553.html
new file mode 100644
index 000000000..9fa945aeb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000553.html
@@ -0,0 +1,107 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3C4D89BCA6.1040808%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000548.html">
+ <LINK REL="Next" HREF="000555.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3C4D89BCA6.1040808%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 23 10:25:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000548.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000555.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#553">[ date ]</a>
+ <a href="thread.html#553">[ thread ]</a>
+ <a href="subject.html#553">[ subject ]</a>
+ <a href="author.html#553">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/03/2011 09:31, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/3/23 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 23/03/2011 03:32, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;&gt;<i> Hmm, all these rights are moderator rights (closing threads, edit
+</I>&gt;&gt;&gt;<i> other people's posts, rename topics, move threads to other locations,
+</I>&gt;&gt;&gt;<i> etc. What do you have in mind, &quot;sub-moderators&quot;?
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> Yup... something like that
+</I>&gt;&gt;<i> I want people to have a clear limit in mind between those who help and those who enforce rules
+</I>&gt;<i> Well, there's a very clear distinction: helping is done by everyone.
+</I>&gt;<i> Everything beyond help is moderator's role: closing threads, edit
+</I>&gt;<i> other people's posts if necessary, rename topics, etc. - and in the
+</I>&gt;<i> few rare cases also enforcing rules.
+</I>&gt;<i>
+</I>Nope in my mind helping can be done by everyone but helping responsability should go to a dedicated team with partial moderation abilities to take care of forum cleanliness (topics titles, statuses...)
+
+But enforcing rules (banning, validating, warning) should not rely on their shoulders
+
+&gt;&gt;<i> phpbb3 allows such custom profiles definition in user rights and also in moderator rights
+</I>&gt;<i> I know, I spent some time with the rights system of phpbb3. :(
+</I>&gt;<i>
+</I>&gt;&gt;<i> On a personal point of view, i'd preach $lang forums teams to speak with each other to share good practices :)
+</I>&gt;&gt;<i> What won't be required or enforced. Just nice-to-have things :
+</I>&gt;&gt;<i> -- That would be cool if we can manage to have similar structures (to some extent here also) so that multilang users feel at home everywhere.
+</I>&gt;&gt;<i> -- What would be (perhaps ?) interesting to share : for people jumping from a forum to another it would be (perhaps ?) cool to share data about ip banning for example. And more generally sharing data about users that bring discord or behave in a reprehensible way...
+</I>&gt;<i> Then create a forum for all moderators&amp;admins where they can share
+</I>&gt;<i> such information.
+</I>&gt;<i>
+</I>
+Yup brilliant idea :)
+
+&gt;<i> At mandrivauser.de we have a hidden forum for the moderators where
+</I>&gt;<i> they can post such &quot;user cases&quot;, giving links to the posts in
+</I>&gt;<i> question, documenting what they have done (sent a pm to the user,
+</I>&gt;<i> etc.) and sharing discussions about what to do in this or that case.
+</I>&gt;<i> Hidden it is because it's not advisable to discuss a single user in
+</I>&gt;<i> the open.
+</I>&gt;<i>
+</I>
+yup... agreed (i set up this moderation dedicated forum on each board i manage ^^)
+
+
+cheers
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000548.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000555.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#553">[ date ]</a>
+ <a href="thread.html#553">[ thread ]</a>
+ <a href="subject.html#553">[ subject ]</a>
+ <a href="author.html#553">[ 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-March/000554.html b/zarb-ml/mageia-webteam/2011-March/000554.html
new file mode 100644
index 000000000..9df976ec0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000554.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110323095858.03AA94D778%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="000547.html">
+ <LINK REL="Next" HREF="000562.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110323095858.03AA94D778%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 23 10:58:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000547.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000562.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#554">[ date ]</a>
+ <a href="thread.html#554">[ thread ]</a>
+ <a href="subject.html#554">[ subject ]</a>
+ <a href="author.html#554">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</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 #7 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-03-23 10:58:57 UTC ---
+Your login is the one you decided to use on identity.mageia.org
+
+--
+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="000547.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000562.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#554">[ date ]</a>
+ <a href="thread.html#554">[ thread ]</a>
+ <a href="subject.html#554">[ subject ]</a>
+ <a href="author.html#554">[ 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-March/000555.html b/zarb-ml/mageia-webteam/2011-March/000555.html
new file mode 100644
index 000000000..4a32dfef4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000555.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTi%3D6QxsZRQZfQcwerk8dooGG5R4JVrWr111vrZg5%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="000553.html">
+ <LINK REL="Next" HREF="000556.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTi%3D6QxsZRQZfQcwerk8dooGG5R4JVrWr111vrZg5%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 23 11:33:57 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000553.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000556.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#555">[ date ]</a>
+ <a href="thread.html#555">[ thread ]</a>
+ <a href="subject.html#555">[ subject ]</a>
+ <a href="author.html#555">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/23 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;&gt;<i>
+</I>&gt;<i> Nope in my mind helping can be done by everyone but helping responsability should go to a dedicated team with partial moderation abilities to take care of forum cleanliness (topics titles, statuses...)
+</I>
+Ok, here we disagree. IMHO in a community forum there should not be
+anybody you can point to and say, &quot;why should I bother, it's his
+responibility&quot;. I saw this too often in forums with such &quot;appointed
+helpers&quot;. My idea of a community forum is that everything should be in
+the responsibility of the users of that forum, special rights only
+given to people who are necessary to keep order and enforce rules. In
+an ideal world everything is done by the users of the forum,
+moderators would not have anything to do at all but to be there in
+case of need.
+
+&gt;<i> But enforcing rules (banning, validating, warning) should not rely on their shoulders
+</I>
+Banning should be the very last action, so this should be done by the
+forum admin after discussion with the moderators.
+Same with erasing posts/threads. This should not be done at all[1].
+Erasing posts breaks transparency and continuity, makes it hard in
+case of discussions to evaluate opinions given after a post/thread was
+erased.
+
+[1] - exception for posts with spam and illegal contents (where
+illegal means illegal according to French law because the owner of the
+forum site is in France)
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000553.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000556.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#555">[ date ]</a>
+ <a href="thread.html#555">[ thread ]</a>
+ <a href="subject.html#555">[ subject ]</a>
+ <a href="author.html#555">[ 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-March/000556.html b/zarb-ml/mageia-webteam/2011-March/000556.html
new file mode 100644
index 000000000..db72a4d99
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000556.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3C4D89CFB3.9010902%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000555.html">
+ <LINK REL="Next" HREF="000557.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3C4D89CFB3.9010902%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 23 11:47:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000555.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000557.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#556">[ date ]</a>
+ <a href="thread.html#556">[ thread ]</a>
+ <a href="subject.html#556">[ subject ]</a>
+ <a href="author.html#556">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/03/2011 11:33, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/3/23 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> Nope in my mind helping can be done by everyone but helping responsability should go to a dedicated team with partial moderation abilities to take care of forum cleanliness (topics titles, statuses...)
+</I>&gt;<i> Ok, here we disagree. IMHO in a community forum there should not be
+</I>&gt;<i> anybody you can point to and say, &quot;why should I bother, it's his
+</I>&gt;<i> responibility&quot;. I saw this too often in forums with such &quot;appointed
+</I>&gt;<i> helpers&quot;. My idea of a community forum is that everything should be in
+</I>&gt;<i> the responsibility of the users of that forum, special rights only
+</I>&gt;<i> given to people who are necessary to keep order and enforce rules. In
+</I>&gt;<i> an ideal world everything is done by the users of the forum,
+</I>&gt;<i> moderators would not have anything to do at all but to be there in
+</I>&gt;<i> case of need.
+</I>&gt;<i>
+</I>I agree : we disagree :)
+
+&gt;&gt;<i> But enforcing rules (banning, validating, warning) should not rely on their shoulders
+</I>&gt;<i> Banning should be the very last action, so this should be done by the
+</I>&gt;<i> forum admin after discussion with the moderators.
+</I>&gt;<i>
+</I>
+Global Moderators can play this role... (IINM phpBB3 default roles are thought with that organization in mind)
+
+&gt;<i> Same with erasing posts/threads. This should not be done at all[1].
+</I>&gt;<i> Erasing posts breaks transparency and continuity, makes it hard in
+</I>&gt;<i> case of discussions to evaluate opinions given after a post/thread was
+</I>&gt;<i> erased.
+</I>&gt;<i>
+</I>
+Yup... that's why moderation forum is for : moving illegal topics out of the way without deleting them.
+
+For local posts deletion i think offering later a feature of post content hiding to moderators could be a good way
+
+&gt;<i> [1] - exception for posts with spam and illegal contents (where
+</I>&gt;<i> illegal means illegal according to French law because the owner of the
+</I>&gt;<i> forum site is in France
+</I>
+Yup the forums are under &quot;Mageia french association&quot; responsability hence we must respect french law indeed :)
+
+
+
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000555.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000557.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#556">[ date ]</a>
+ <a href="thread.html#556">[ thread ]</a>
+ <a href="subject.html#556">[ subject ]</a>
+ <a href="author.html#556">[ 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-March/000557.html b/zarb-ml/mageia-webteam/2011-March/000557.html
new file mode 100644
index 000000000..3fe048794
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000557.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTim5-tE6oGY9f-vAoNWhfGoq72c9r6vLhk6tjtnd%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="000556.html">
+ <LINK REL="Next" HREF="000558.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTim5-tE6oGY9f-vAoNWhfGoq72c9r6vLhk6tjtnd%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 23 11:52:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000556.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000558.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#557">[ date ]</a>
+ <a href="thread.html#557">[ thread ]</a>
+ <a href="subject.html#557">[ subject ]</a>
+ <a href="author.html#557">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/23 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i> Le 23/03/2011 11:33, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> 2011/3/23 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> Nope in my mind helping can be done by everyone but helping responsability should go to a dedicated team with partial moderation abilities to take care of forum cleanliness (topics titles, statuses...)
+</I>&gt;&gt;<i> Ok, here we disagree.
+</I>&gt;&gt;<i>
+</I>&gt;<i> I agree : we disagree :)
+</I>
+Ok, with this out of the way .... :)
+
+&gt;&gt;&gt;<i> But enforcing rules (banning, validating, warning) should not rely on their shoulders
+</I>&gt;&gt;<i> Banning should be the very last action, so this should be done by the
+</I>&gt;&gt;<i> forum admin after discussion with the moderators.
+</I>&gt;<i>
+</I>&gt;<i> Global Moderators can play this role... (IINM phpBB3 default roles are thought with that organization in mind)
+</I>
+Hmm, so what is the role of the forum admin then in your picture?
+Actually I do not see any task for him left, except to watch over the
+moderators :)
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000556.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000558.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#557">[ date ]</a>
+ <a href="thread.html#557">[ thread ]</a>
+ <a href="subject.html#557">[ subject ]</a>
+ <a href="author.html#557">[ 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-March/000558.html b/zarb-ml/mageia-webteam/2011-March/000558.html
new file mode 100644
index 000000000..ae40ad0b2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000558.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3C4D89D3A6.3000303%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000557.html">
+ <LINK REL="Next" HREF="000559.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3C4D89D3A6.3000303%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 23 12:04:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000557.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000559.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#558">[ date ]</a>
+ <a href="thread.html#558">[ thread ]</a>
+ <a href="subject.html#558">[ subject ]</a>
+ <a href="author.html#558">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 23/03/2011 11:52, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/3/23 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 23/03/2011 11:33, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;&gt;<i> 2011/3/23 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;&gt;<i> Nope in my mind helping can be done by everyone but helping responsability should go to a dedicated team with partial moderation abilities to take care of forum cleanliness (topics titles, statuses...)
+</I>&gt;&gt;&gt;<i> Ok, here we disagree.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> I agree : we disagree :)
+</I>&gt;<i> Ok, with this out of the way .... :)
+</I>&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> But enforcing rules (banning, validating, warning) should not rely on their shoulders
+</I>&gt;&gt;&gt;<i> Banning should be the very last action, so this should be done by the
+</I>&gt;&gt;&gt;<i> forum admin after discussion with the moderators.
+</I>&gt;&gt;<i> Global Moderators can play this role... (IINM phpBB3 default roles are thought with that organization in mind)
+</I>&gt;<i> Hmm, so what is the role of the forum admin then in your picture?
+</I>&gt;<i> Actually I do not see any task for him left, except to watch over the
+</I>&gt;<i> moderators :)
+</I>&gt;<i>
+</I>Manage forums structure, coordinate moderators, help them if needed, ensure security, manage groups... and act as a Global Moderator if needed
+
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000557.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000559.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#558">[ date ]</a>
+ <a href="thread.html#558">[ thread ]</a>
+ <a href="subject.html#558">[ subject ]</a>
+ <a href="author.html#558">[ 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-March/000559.html b/zarb-ml/mageia-webteam/2011-March/000559.html
new file mode 100644
index 000000000..dcacfe605
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000559.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum
+ </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&In-Reply-To=%3CAANLkTiko4b5X%3DZhbLXVACzVT9g%3D1TQY0Ky0779E3_68k%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="000558.html">
+ <LINK REL="Next" HREF="000529.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum&In-Reply-To=%3CAANLkTiko4b5X%3DZhbLXVACzVT9g%3D1TQY0Ky0779E3_68k%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 23 12:26:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000558.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000529.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#559">[ date ]</a>
+ <a href="thread.html#559">[ thread ]</a>
+ <a href="subject.html#559">[ subject ]</a>
+ <a href="author.html#559">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/23 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i> Le 23/03/2011 11:52, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> Hmm, so what is the role of the forum admin then in your picture?
+</I>&gt;&gt;<i> Actually I do not see any task for him left, except to watch over the
+</I>&gt;&gt;<i> moderators :)
+</I>&gt;&gt;<i>
+</I>&gt;<i> Manage forums structure, coordinate moderators, help them if needed, ensure security, manage groups... and act as a Global Moderator if needed
+</I>
+In my picture:
+
+Users:
+ - ask and answer questions,
+ - help other users
+ - discuss forum matters (either brought up by users or administration)
+
+Moderators:
+ - help users along if they have questions with the forum (structure,
+rules, etc.)
+ - monitor threads for illegal contents, emerging conflicts, etc.
+ - talk to users who are breaking rules or misbehave (being offensive, etc.)
+ - move misplaced threads/posts
+ - edit posts to erase illegal contents (such as links to illegal
+sites, howtos for illegal operations, etc.)
+
+Admin:
+ - changes structure if needed
+ - promotes somebody to be moderator or fires a moderator (after
+discussion and consensus with the other moderators, of course)
+ - bans users (also after discussion with moderators)
+ - reports information/questions/problems to council and back.
+
+Of course when not acting as admin and moderators such people usually
+have to behave as normal users and do what users do. :)
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000558.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI>Next message: <A HREF="000529.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#559">[ date ]</a>
+ <a href="thread.html#559">[ thread ]</a>
+ <a href="subject.html#559">[ subject ]</a>
+ <a href="author.html#559">[ 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-March/000560.html b/zarb-ml/mageia-webteam/2011-March/000560.html
new file mode 100644
index 000000000..416e3ed96
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000560.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 12 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%2012%20meeting&In-Reply-To=%3CAANLkTinXSrpdWEpz3NJpQHWamZ4QZEKsnGvtQL98VHji%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="000551.html">
+ <LINK REL="Next" HREF="000563.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 12 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2012%20meeting&In-Reply-To=%3CAANLkTinXSrpdWEpz3NJpQHWamZ4QZEKsnGvtQL98VHji%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 12 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Mar 23 19:07:24 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000551.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI>Next message: <A HREF="000563.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#560">[ date ]</a>
+ <a href="thread.html#560">[ thread ]</a>
+ <a href="subject.html#560">[ subject ]</a>
+ <a href="author.html#560">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Mar 23, 2011 at 09:59, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; wrote:
+&gt;<i> Am Mittwoch 23 M&#228;rz 2011, 09:53:56 schrieb Romain d'Alverny:
+</I>&gt;&gt;<i> as usual, 14:00 UTC, #mageia-web for:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> &#160;- Progress review:
+</I>&gt;&gt;<i> &#160; &#160;* wiki (boklm, obgr)
+</I>&gt;&gt;<i> &#160; &#160;* maintdb (kosmas)
+</I>&gt;&gt;<i> &#160; &#160;* forums (maat)
+</I>&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> I won't make it to todays meeting, have to attend something at work.
+</I>
+No pb.
+
+Here are the notes:
+<A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-23-14.08.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-23-14.08.html</A>
+
+Cheers!
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000551.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI>Next message: <A HREF="000563.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#560">[ date ]</a>
+ <a href="thread.html#560">[ thread ]</a>
+ <a href="subject.html#560">[ subject ]</a>
+ <a href="author.html#560">[ 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-March/000561.html b/zarb-ml/mageia-webteam/2011-March/000561.html
new file mode 100644
index 000000000..48e06d17a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000561.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=%3C20110323230003.A1B6D40BB6%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="000563.html">
+ <LINK REL="Next" HREF="000566.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=%3C20110323230003.A1B6D40BB6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 24 00:00:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000563.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI>Next message: <A HREF="000566.html">[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#561">[ date ]</a>
+ <a href="thread.html#561">[ thread ]</a>
+ <a href="subject.html#561">[ subject ]</a>
+ <a href="author.html#561">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000563.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI>Next message: <A HREF="000566.html">[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#561">[ date ]</a>
+ <a href="thread.html#561">[ thread ]</a>
+ <a href="subject.html#561">[ subject ]</a>
+ <a href="author.html#561">[ 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-March/000562.html b/zarb-ml/mageia-webteam/2011-March/000562.html
new file mode 100644
index 000000000..0074540e2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000562.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110324025053.9C23D429A4%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="000554.html">
+ <LINK REL="Next" HREF="000564.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>Palm Pre</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110324025053.9C23D429A4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 24 03:50:53 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000554.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000564.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#562">[ date ]</a>
+ <a href="thread.html#562">[ thread ]</a>
+ <a href="subject.html#562">[ subject ]</a>
+ <a href="author.html#562">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</A>
+
+--- Comment #8 from Palm Pre &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">palm_pre_stl at yahoo.com</A>&gt; 2011-03-24 03:50:53 UTC ---
+Of course, I created login without realizing (or remembering) it. And tried to
+log in with e-mail. And bugzilla doesn't help with recovering login.
+
+Thanks for help people.
+
+--
+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="000554.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000564.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#562">[ date ]</a>
+ <a href="thread.html#562">[ thread ]</a>
+ <a href="subject.html#562">[ subject ]</a>
+ <a href="author.html#562">[ 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-March/000563.html b/zarb-ml/mageia-webteam/2011-March/000563.html
new file mode 100644
index 000000000..7663cefa8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000563.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 12 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%2012%20meeting&In-Reply-To=%3C201103240725.43273.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="000560.html">
+ <LINK REL="Next" HREF="000561.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 12 meeting</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2012%20meeting&In-Reply-To=%3C201103240725.43273.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 12 meeting">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu Mar 24 07:25:42 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000560.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI>Next message: <A HREF="000561.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#563">[ date ]</a>
+ <a href="thread.html#563">[ thread ]</a>
+ <a href="subject.html#563">[ subject ]</a>
+ <a href="author.html#563">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Am Mittwoch 23 M&#228;rz 2011, 19:07:24 schrieb Romain d'Alverny:
+&gt;<i> On Wed, Mar 23, 2011 at 09:59, 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; I won't make it to todays meeting, have to attend something at work.
+</I>&gt;<i> No pb.
+</I>&gt;<i>
+</I>&gt;<i> Here are the notes:
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-23-14.08.html">http://meetbot.mageia.org/mageia-web/2011/mageia-web.2011-03-23-14.08.html</A>
+</I>Thanks, I am just reading them!
+
+Oliver
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000560.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI>Next message: <A HREF="000561.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#563">[ date ]</a>
+ <a href="thread.html#563">[ thread ]</a>
+ <a href="subject.html#563">[ subject ]</a>
+ <a href="author.html#563">[ 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-March/000564.html b/zarb-ml/mageia-webteam/2011-March/000564.html
new file mode 100644
index 000000000..1cfdfccd0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000564.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110324074013.9C81E42A04%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="000562.html">
+ <LINK REL="Next" HREF="000565.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>D Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110324074013.9C81E42A04%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 24 08:40:13 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000562.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000565.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#564">[ date ]</a>
+ <a href="thread.html#564">[ thread ]</a>
+ <a href="subject.html#564">[ subject ]</a>
+ <a href="author.html#564">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</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|NEW |RESOLVED
+
+--- Comment #9 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-03-24 08:40:13 UTC ---
+closing then.
+
+--
+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="000562.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000565.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#564">[ date ]</a>
+ <a href="thread.html#564">[ thread ]</a>
+ <a href="subject.html#564">[ subject ]</a>
+ <a href="author.html#564">[ 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-March/000565.html b/zarb-ml/mageia-webteam/2011-March/000565.html
new file mode 100644
index 000000000..a0e4f3645
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000565.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+ </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%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110324103148.F29C942A0D%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="000564.html">
+ <LINK REL="Next" HREF="000526.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account</H1>
+ <B>Frank Griffin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20492%5D%20Logging%20in%20to%20bugzilla%20isn%27t%20possible%0A%20for%20existing%20or%20just%20created%20account&In-Reply-To=%3C20110324103148.F29C942A0D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 24 11:31:48 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000564.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000526.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#565">[ date ]</a>
+ <a href="thread.html#565">[ thread ]</a>
+ <a href="subject.html#565">[ subject ]</a>
+ <a href="author.html#565">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=492">https://bugs.mageia.org/show_bug.cgi?id=492</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 #10 from Frank Griffin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ftg at roadrunner.com</A>&gt; 2011-03-24 11:31:49 UTC ---
+FYI, there is already a bug (somewhere) filed by Romain to have all mageia
+authentication accept either login ID or email address.
+
+--
+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="000564.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A></li>
+ <LI>Next message: <A HREF="000526.html">[Mageia-webteam] Questions about the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#565">[ date ]</a>
+ <a href="thread.html#565">[ thread ]</a>
+ <a href="subject.html#565">[ subject ]</a>
+ <a href="author.html#565">[ 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-March/000566.html b/zarb-ml/mageia-webteam/2011-March/000566.html
new file mode 100644
index 000000000..f61ac03a2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000566.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP
+ </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%20530%5D%20%5BNew%5D%20Restrict%20/packages%20POST%20to%0A%09buildsystem%20host%20IP&In-Reply-To=%3Cbug-530-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="000561.html">
+ <LINK REL="Next" HREF="000567.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20530%5D%20%5BNew%5D%20Restrict%20/packages%20POST%20to%0A%09buildsystem%20host%20IP&In-Reply-To=%3Cbug-530-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 24 17:56:52 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000561.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000567.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#566">[ date ]</a>
+ <a href="thread.html#566">[ thread ]</a>
+ <a href="subject.html#566">[ subject ]</a>
+ <a href="author.html#566">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+
+ Summary: Restrict /packages POST to buildsystem host IP
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: maintdb.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>
+
+
+The buildsystem posts to the maintainers db every package upload.
+
+This post is protected with a secret key in buildsystem config, but we should
+as well control from maintdb that the poster IP address matches the one from
+the buildsystem host. Here, that is valstar.
+
+$ host valstar.mageia.org
+valstar.mageia.org has address 212.85.158.147
+valstar.mageia.org has IPv6 address 2a02:2178:2:7::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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000561.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000567.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#566">[ date ]</a>
+ <a href="thread.html#566">[ thread ]</a>
+ <a href="subject.html#566">[ subject ]</a>
+ <a href="author.html#566">[ 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-March/000567.html b/zarb-ml/mageia-webteam/2011-March/000567.html
new file mode 100644
index 000000000..c70fec081
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000567.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=%3C20110324230002.DDB2D42B24%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="000566.html">
+ <LINK REL="Next" HREF="000569.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=%3C20110324230002.DDB2D42B24%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 25 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000566.html">[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI>Next message: <A HREF="000569.html">[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#567">[ date ]</a>
+ <a href="thread.html#567">[ thread ]</a>
+ <a href="subject.html#567">[ subject ]</a>
+ <a href="author.html#567">[ 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>
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000566.html">[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI>Next message: <A HREF="000569.html">[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#567">[ date ]</a>
+ <a href="thread.html#567">[ thread ]</a>
+ <a href="subject.html#567">[ subject ]</a>
+ <a href="author.html#567">[ 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-March/000568.html b/zarb-ml/mageia-webteam/2011-March/000568.html
new file mode 100644
index 000000000..6f622aa1c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000568.html
@@ -0,0 +1,132 @@
+<!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=%3CAANLkTikLY7o74NYd7uQqpRze%3DQ2NQDcQ4GsoRtLswpKc%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="000552.html">
+ <LINK REL="Next" HREF="000621.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forums structure : support catregory</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums%20structure%20%3A%20support%20catregory&In-Reply-To=%3CAANLkTikLY7o74NYd7uQqpRze%3DQ2NQDcQ4GsoRtLswpKc%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Forums structure : support catregory">ahmadsamir3891 at gmail.com
+ </A><BR>
+ <I>Fri Mar 25 05:16:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000552.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000621.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#568">[ date ]</a>
+ <a href="thread.html#568">[ thread ]</a>
+ <a href="subject.html#568">[ subject ]</a>
+ <a href="author.html#568">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>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:
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> ahmad(78) and i have had a talk on irc about this part of the forum.
+</I>&gt;<i>
+</I>&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;<i>
+</I>&gt;<i> my first structure was just 2 forums :
+</I>&gt;<i> -- Basic support
+</I>&gt;<i> -- Advanced support
+</I>&gt;<i>
+</I>&gt;<i> He pushed 3 forums :
+</I>&gt;<i> -- Software
+</I>&gt;<i> -- Printers and printing
+</I>&gt;<i> -- Networking
+</I>&gt;<i>
+</I>&gt;<i> Then i tried to use sub-forums under &quot;Basic support&quot; :
+</I>&gt;<i> -- Networking
+</I>&gt;<i> -- Video
+</I>&gt;<i> -- Sound
+</I>&gt;<i> -- Printers and printing
+</I>&gt;<i>
+</I>&gt;<i> What do you think ?
+</I>
+Here's my proposal (based on my usage of the mandriva forums previously, the
+English speaking section).
+
+I am not going to talk bout chat/lounge forums, only the support ones.
+
+IMHO, there should be:
+
+- Software
+ o includes questions on software packages included in the repos (e.g.
+ firefox-doesn't-work, kmail-takes-ages-to-get-my-mail, gnome-panel crashes
+ at login... etc).
+ o Installation problems
+ o that includes installer problems (&quot;I don't know how to partition my HD&quot;,
+ &quot;I don't know where to install the thing called &quot;bootloader&quot;&quot;... etc)
+ N.B. &quot;Installation&quot; could be a separate forum or a sub-forum of Software.
+
+- General Hardware
+ o Sound cards problems
+ o Graphics cards and display problems
+ o Hardware problems not covered by Networking and Printers forums
+ I'd rather if these ^ forums weren't sub-forums, the posts can be mixed
+ (judging by what I saw in the mdv forums, sound and graphics cards forums
+ had low-medium traffic)
+
+- Networking
+ o this is a forum where networking experts from the community can reside,
+ anything to do with networking problems goes here, NIC chipsets problems,
+ wifi problems (software and hardware), routers/switches. Given how much
+ networking problems Linux has, this warrants a separate forum. There's such
+ a forum in the mdv forums, and it was/is a great success since Germ created
+ it.
+
+- Printers &amp; Printing
+ o this is the forum where printing problems can posted; again given how much
+ printing issues exist, this warrants a separate forum
+
+- Cauldron development:
+ o this forum is dedicated to problems Cauldron users hit (ideally valid bugs
+ should be redirected to bugzilla by the more experienced users).
+
+
+
+Personally, I am not in favour of the &quot;Basic&quot; and &quot;Advanced&quot; support layout...
+in the end it's all support, there can be a topic that has both basic
+and advanced debugging side by side.
+
+--
+Ahmad Samir
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000552.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000621.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#568">[ date ]</a>
+ <a href="thread.html#568">[ thread ]</a>
+ <a href="subject.html#568">[ subject ]</a>
+ <a href="author.html#568">[ 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-March/000569.html b/zarb-ml/mageia-webteam/2011-March/000569.html
new file mode 100644
index 000000000..15a390666
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000569.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition 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%20543%5D%20%5BNew%5D%20Allow%20to%20promote%20a%20user%20directly%0A%20from%20the%20user%20edition%20page&In-Reply-To=%3Cbug-543-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="000567.html">
+ <LINK REL="Next" HREF="000570.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20543%5D%20%5BNew%5D%20Allow%20to%20promote%20a%20user%20directly%0A%20from%20the%20user%20edition%20page&In-Reply-To=%3Cbug-543-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 25 11:15:30 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000567.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000570.html">[Mageia-webteam] [Bug 544] [New] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#569">[ date ]</a>
+ <a href="thread.html#569">[ thread ]</a>
+ <a href="subject.html#569">[ subject ]</a>
+ <a href="author.html#569">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+
+ Summary: Allow to promote a user directly from the user edition
+ page
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">misc at zarb.org</A>
+
+
+Right now, to promote a user, you have to go to Account admin / promote and
+search the username, check it, go to the bottom of the page, choose the group
+and promote it.
+
+It would be easier to simply do it from the user edition page, as this doesn't
+requires to search on the page.
+
+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="000567.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000570.html">[Mageia-webteam] [Bug 544] [New] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#569">[ date ]</a>
+ <a href="thread.html#569">[ thread ]</a>
+ <a href="subject.html#569">[ subject ]</a>
+ <a href="author.html#569">[ 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-March/000570.html b/zarb-ml/mageia-webteam/2011-March/000570.html
new file mode 100644
index 000000000..570b064ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000570.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 544] [New] Cannot modify group
+ </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%20544%5D%20%5BNew%5D%20Cannot%20modify%20group&In-Reply-To=%3Cbug-544-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="000569.html">
+ <LINK REL="Next" HREF="000571.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 544] [New] Cannot modify group</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20544%5D%20%5BNew%5D%20Cannot%20modify%20group&In-Reply-To=%3Cbug-544-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 544] [New] Cannot modify group">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 25 11:19:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000569.html">[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI>Next message: <A HREF="000571.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#570">[ date ]</a>
+ <a href="thread.html#570">[ thread ]</a>
+ <a href="subject.html#570">[ subject ]</a>
+ <a href="author.html#570">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+
+ Summary: Cannot modify group
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">misc at zarb.org</A>
+
+
+When going to <A HREF="https://identity-trunk.mageia.org/admin/account_group/misc,">https://identity-trunk.mageia.org/admin/account_group/misc,</A>
+catalyst display a error :
+
+FastCGI: server &quot;/var/www/identity/script/catdap_fastcgi.pl&quot; stderr: [error]
+Couldn't render template &quot;file error - parse error - admin/account_group.tt
+line 1: unexpected token ('Add), referer:
+<A HREF="https://identity.mageia.org/admin/account_modify/misc">https://identity.mageia.org/admin/account_modify/misc</A>
+FastCGI: server &quot;/var/www/identity/script/catdap_fastcgi.pl&quot; stderr: [%
+l('Add user [_1] to a new group, uid) %]&quot;, referer:
+<A HREF="https://identity.mageia.org/admin/account_modify/misc">https://identity.mageia.org/admin/account_modify/misc</A>
+
+
+
+
+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="000569.html">[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI>Next message: <A HREF="000571.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#570">[ date ]</a>
+ <a href="thread.html#570">[ thread ]</a>
+ <a href="subject.html#570">[ subject ]</a>
+ <a href="author.html#570">[ 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-March/000571.html b/zarb-ml/mageia-webteam/2011-March/000571.html
new file mode 100644
index 000000000..b5e95c46e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000571.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 544] Cannot modify group
+ </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%20544%5D%20Cannot%20modify%20group&In-Reply-To=%3C20110325103117.1D82942B1E%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="000570.html">
+ <LINK REL="Next" HREF="000572.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 544] Cannot modify group</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20544%5D%20Cannot%20modify%20group&In-Reply-To=%3C20110325103117.1D82942B1E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 544] Cannot modify group">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 25 11:31:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000570.html">[Mageia-webteam] [Bug 544] [New] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="000572.html">[Mageia-webteam] [Bug 546] [New] Cannot log into the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#571">[ date ]</a>
+ <a href="thread.html#571">[ thread ]</a>
+ <a href="subject.html#571">[ subject ]</a>
+ <a href="author.html#571">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+
+--- Comment #1 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-03-25 11:31:17 UTC ---
+Fixed in rev 740 on trunk.
+
+--
+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="000570.html">[Mageia-webteam] [Bug 544] [New] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="000572.html">[Mageia-webteam] [Bug 546] [New] Cannot log into the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#571">[ date ]</a>
+ <a href="thread.html#571">[ thread ]</a>
+ <a href="subject.html#571">[ subject ]</a>
+ <a href="author.html#571">[ 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-March/000572.html b/zarb-ml/mageia-webteam/2011-March/000572.html
new file mode 100644
index 000000000..6224479d2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000572.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 546] [New] Cannot log into the 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%20546%5D%20%5BNew%5D%20Cannot%20log%20into%20the%20forum&In-Reply-To=%3Cbug-546-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="000571.html">
+ <LINK REL="Next" HREF="000573.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 546] [New] Cannot log into the forum</H1>
+ <B>isa dora</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20546%5D%20%5BNew%5D%20Cannot%20log%20into%20the%20forum&In-Reply-To=%3Cbug-546-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 546] [New] Cannot log into the forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 25 14:53:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000571.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="000573.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#572">[ date ]</a>
+ <a href="thread.html#572">[ thread ]</a>
+ <a href="subject.html#572">[ subject ]</a>
+ <a href="author.html#572">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=546">https://bugs.mageia.org/show_bug.cgi?id=546</A>
+
+ Summary: Cannot log into the forum
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="https://forums.mageia.org/en/">https://forums.mageia.org/en/</A>
+ 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">isis2000 at gmail.com</A>
+
+
+Tried to log into the forum with username/password i have for
+<A HREF="https://www.mageia.org,">https://www.mageia.org,</A> but it won't.
+Have also written a message to the forum-admin.
+
+
+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="000571.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="000573.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#572">[ date ]</a>
+ <a href="thread.html#572">[ thread ]</a>
+ <a href="subject.html#572">[ subject ]</a>
+ <a href="author.html#572">[ 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-March/000573.html b/zarb-ml/mageia-webteam/2011-March/000573.html
new file mode 100644
index 000000000..53a6fd598
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000573.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 546] Cannot log into the 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%20546%5D%20Cannot%20log%20into%20the%20forum&In-Reply-To=%3C20110325162128.3830142B65%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="000572.html">
+ <LINK REL="Next" HREF="000574.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 546] Cannot log into the forum</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20546%5D%20Cannot%20log%20into%20the%20forum&In-Reply-To=%3C20110325162128.3830142B65%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 546] Cannot log into the forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 25 17:21:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000572.html">[Mageia-webteam] [Bug 546] [New] Cannot log into the forum
+</A></li>
+ <LI>Next message: <A HREF="000574.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#573">[ date ]</a>
+ <a href="thread.html#573">[ thread ]</a>
+ <a href="subject.html#573">[ subject ]</a>
+ <a href="author.html#573">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=546">https://bugs.mageia.org/show_bug.cgi?id=546</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-03-25 17:21:28 UTC ---
+With the same of here <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</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="000572.html">[Mageia-webteam] [Bug 546] [New] Cannot log into the forum
+</A></li>
+ <LI>Next message: <A HREF="000574.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#573">[ date ]</a>
+ <a href="thread.html#573">[ thread ]</a>
+ <a href="subject.html#573">[ subject ]</a>
+ <a href="author.html#573">[ 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-March/000574.html b/zarb-ml/mageia-webteam/2011-March/000574.html
new file mode 100644
index 000000000..602aa3e90
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000574.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 546] Cannot log into the 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%20546%5D%20Cannot%20log%20into%20the%20forum&In-Reply-To=%3C20110325165804.0C52A42B60%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="000573.html">
+ <LINK REL="Next" HREF="000577.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 546] Cannot log into the forum</H1>
+ <B>isa dora</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20546%5D%20Cannot%20log%20into%20the%20forum&In-Reply-To=%3C20110325165804.0C52A42B60%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 546] Cannot log into the forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 25 17:58:04 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000573.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A></li>
+ <LI>Next message: <A HREF="000577.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#574">[ date ]</a>
+ <a href="thread.html#574">[ thread ]</a>
+ <a href="subject.html#574">[ subject ]</a>
+ <a href="author.html#574">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=546">https://bugs.mageia.org/show_bug.cgi?id=546</A>
+
+isa dora &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">isis2000 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ Status|NEW |RESOLVED
+
+--- Comment #2 from isa dora &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">isis2000 at gmail.com</A>&gt; 2011-03-25 17:58:04 UTC ---
+Problem solved using the right credentials.
+Have the forum-admin also being informed.
+
+--
+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="000573.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A></li>
+ <LI>Next message: <A HREF="000577.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#574">[ date ]</a>
+ <a href="thread.html#574">[ thread ]</a>
+ <a href="subject.html#574">[ subject ]</a>
+ <a href="author.html#574">[ 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-March/000575.html b/zarb-ml/mageia-webteam/2011-March/000575.html
new file mode 100644
index 000000000..53dd0214f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000575.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia Web site(s)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Web%20site%28s%29&In-Reply-To=%3C201103252227.49050.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="000488.html">
+ <LINK REL="Next" HREF="000576.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia Web site(s)</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Web%20site%28s%29&In-Reply-To=%3C201103252227.49050.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Mageia Web site(s)">stormi at laposte.net
+ </A><BR>
+ <I>Fri Mar 25 22:27:48 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000488.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI>Next message: <A HREF="000576.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#575">[ date ]</a>
+ <a href="thread.html#575">[ thread ]</a>
+ <a href="subject.html#575">[ subject ]</a>
+ <a href="author.html#575">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 15 mars 2011 12:05:21, Romain d'Alverny a &#233;crit :
+&gt;<i> Hello there,
+</I>&gt;<i>
+</I>&gt;<i> alpha2 is out, our logo is set, let's push the bar further now.
+</I>&gt;<i>
+</I>&gt;<i> Here's a global direction document to help:
+</I>&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=web:website">http://mageia.org/wiki/doku.php?id=web:website</A>
+</I>&gt;<i>
+</I>&gt;<i> This needs your input from each team (market/comm, web, artwork) and
+</I>&gt;<i> feel free to point others to it as well to gather feedback.
+</I>&gt;<i>
+</I>&gt;<i> Feel free to comment, add, update, but keeping it focused on not too
+</I>&gt;<i> specific details. The goal is to write down guidelines for the
+</I>&gt;<i> following milestones:
+</I>&gt;<i> * general style of the website
+</I>&gt;<i> * global navigation (role, contents, behaviour, design,
+</I>&gt;<i> implementation) to be rolled out on all mageia.org as much as possible
+</I>&gt;<i> * main mageia.org theme
+</I>&gt;<i> * particular pages design and implementation (order/priority to
+</I>&gt;<i> discuss later; however I expect us to have these ready for beta1 -
+</I>&gt;<i> April, 5th: global nav, basic global theme &amp; downloads page).
+</I>&gt;<i>
+</I>&gt;<i> Thank you a lot for your feedback or even mockups on either list (I'll
+</I>&gt;<i> try to summarize) or on the page. We will start actively working on
+</I>&gt;<i> this in week 12 (one week after alpha2 release).
+</I>&gt;<i>
+</I>&gt;<i> Cheers!
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>
+Hi,
+
+I found at last some time to read the wiki page. The document seems well done
+and I have nothing to add for now, but I must admit I only read it rapidly
+because I need to save time for mageia-app-db as much as I can :)
+
+One litlle detail catched my attention : &quot;aim for the edge, must work on
+Firefox &amp; Chrome, should degrade gracefully on IE &amp; Konqueror (if needed to
+degrade)&quot; =&gt; replace chrome with chromium, or better yet, &quot;webkit based
+browsers&quot; ?
+
+Regards
+
+Samuel
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000488.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI>Next message: <A HREF="000576.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#575">[ date ]</a>
+ <a href="thread.html#575">[ thread ]</a>
+ <a href="subject.html#575">[ subject ]</a>
+ <a href="author.html#575">[ 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-March/000576.html b/zarb-ml/mageia-webteam/2011-March/000576.html
new file mode 100644
index 000000000..96977fe78
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000576.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia Web site(s)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Web%20site%28s%29&In-Reply-To=%3CAANLkTi%3D-aA1M1vJszDh4L8Jce2VygftLZ6nPLqnmHFKR%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="000575.html">
+ <LINK REL="Next" HREF="000489.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia Web site(s)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Web%20site%28s%29&In-Reply-To=%3CAANLkTi%3D-aA1M1vJszDh4L8Jce2VygftLZ6nPLqnmHFKR%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia Web site(s)">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Mar 25 22:48:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000575.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI>Next message: <A HREF="000489.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#576">[ date ]</a>
+ <a href="thread.html#576">[ thread ]</a>
+ <a href="subject.html#576">[ subject ]</a>
+ <a href="author.html#576">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, Mar 25, 2011 at 22:27, Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; wrote:
+&gt;<i> Le mardi 15 mars 2011 12:05:21, Romain d'Alverny a &#233;crit :
+</I>&gt;<i> One litlle detail catched my attention : &quot;aim for the edge, must work on
+</I>&gt;<i> Firefox &amp; Chrome, should degrade gracefully on IE &amp; Konqueror (if needed to
+</I>&gt;<i> degrade)&quot; =&gt; replace chrome with chromium, or better yet, &quot;webkit based
+</I>&gt;<i> browsers&quot; ?
+</I>
+Yep, right. :-)
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000575.html">[Mageia-webteam] Mageia Web site(s)
+</A></li>
+ <LI>Next message: <A HREF="000489.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#576">[ date ]</a>
+ <a href="thread.html#576">[ thread ]</a>
+ <a href="subject.html#576">[ subject ]</a>
+ <a href="author.html#576">[ 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-March/000577.html b/zarb-ml/mageia-webteam/2011-March/000577.html
new file mode 100644
index 000000000..add6d4f76
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000577.html
@@ -0,0 +1,105 @@
+<!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=%3C20110325230002.877F442B7A%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="000574.html">
+ <LINK REL="Next" HREF="000578.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=%3C20110325230002.877F442B7A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 26 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000574.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A></li>
+ <LI>Next message: <A HREF="000578.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#577">[ date ]</a>
+ <a href="thread.html#577">[ thread ]</a>
+ <a href="subject.html#577">[ subject ]</a>
+ <a href="author.html#577">[ 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>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000574.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A></li>
+ <LI>Next message: <A HREF="000578.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#577">[ date ]</a>
+ <a href="thread.html#577">[ thread ]</a>
+ <a href="subject.html#577">[ subject ]</a>
+ <a href="author.html#577">[ 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-March/000578.html b/zarb-ml/mageia-webteam/2011-March/000578.html
new file mode 100644
index 000000000..0e01ce699
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000578.html
@@ -0,0 +1,109 @@
+<!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=%3C20110326230002.704E542BCC%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="000577.html">
+ <LINK REL="Next" HREF="000579.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=%3C20110326230002.704E542BCC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 27 00:00:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000577.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000579.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#578">[ date ]</a>
+ <a href="thread.html#578">[ thread ]</a>
+ <a href="subject.html#578">[ subject ]</a>
+ <a href="author.html#578">[ 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>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000577.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000579.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#578">[ date ]</a>
+ <a href="thread.html#578">[ thread ]</a>
+ <a href="subject.html#578">[ subject ]</a>
+ <a href="author.html#578">[ 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-March/000579.html b/zarb-ml/mageia-webteam/2011-March/000579.html
new file mode 100644
index 000000000..73ddfadae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000579.html
@@ -0,0 +1,111 @@
+<!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=%3C20110327220003.18FD342C0E%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="000578.html">
+ <LINK REL="Next" HREF="000581.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=%3C20110327220003.18FD342C0E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Mar 28 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000578.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000581.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#579">[ date ]</a>
+ <a href="thread.html#579">[ thread ]</a>
+ <a href="subject.html#579">[ subject ]</a>
+ <a href="author.html#579">[ 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>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000578.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000581.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#579">[ date ]</a>
+ <a href="thread.html#579">[ thread ]</a>
+ <a href="subject.html#579">[ subject ]</a>
+ <a href="author.html#579">[ 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-March/000580.html b/zarb-ml/mageia-webteam/2011-March/000580.html
new file mode 100644
index 000000000..7c53da801
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000580.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20address%20in%20the%20link%20to%20errata%20on%20Mageia%0A%09Alpha%20page&In-Reply-To=%3C21c4.4d820397%40mageia.linuxtech.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000497.html">
+ <LINK REL="Next" HREF="000499.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page</H1>
+ <B>Philippe DIDIER</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20address%20in%20the%20link%20to%20errata%20on%20Mageia%0A%09Alpha%20page&In-Reply-To=%3C21c4.4d820397%40mageia.linuxtech.net%3E"
+ TITLE="[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page">philippedidier at laposte.net
+ </A><BR>
+ <I>Thu Mar 17 13:50:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000497.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A></li>
+ <LI>Next message: <A HREF="000499.html">[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#580">[ date ]</a>
+ <a href="thread.html#580">[ thread ]</a>
+ <a href="subject.html#580">[ subject ]</a>
+ <a href="author.html#580">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+
+Sorry for this second post on this forum :
+The first one (written on the forum) was not forwarded to the webteam
+mailing list...
+so I sent this one to the mailing list from which it has been imported into
+the forum...
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000497.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A></li>
+ <LI>Next message: <A HREF="000499.html">[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#580">[ date ]</a>
+ <a href="thread.html#580">[ thread ]</a>
+ <a href="subject.html#580">[ subject ]</a>
+ <a href="author.html#580">[ 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-March/000581.html b/zarb-ml/mageia-webteam/2011-March/000581.html
new file mode 100644
index 000000000..dcf3c4dc9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000581.html
@@ -0,0 +1,110 @@
+<!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=%3C20110328220002.5A00D42CBA%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="000579.html">
+ <LINK REL="Next" HREF="000582.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=%3C20110328220002.5A00D42CBA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 29 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000579.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000582.html">[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#581">[ date ]</a>
+ <a href="thread.html#581">[ thread ]</a>
+ <a href="subject.html#581">[ subject ]</a>
+ <a href="author.html#581">[ 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>
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000579.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000582.html">[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#581">[ date ]</a>
+ <a href="thread.html#581">[ thread ]</a>
+ <a href="subject.html#581">[ subject ]</a>
+ <a href="author.html#581">[ 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-March/000582.html b/zarb-ml/mageia-webteam/2011-March/000582.html
new file mode 100644
index 000000000..a0b151e46
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000582.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from 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%20%5BNew%5D%20Remove%20the%20fields%20Reproducible%3A%20%26%0A%20Steps%20to%20Reproduce%3A%20from%20reported%20bugs&In-Reply-To=%3Cbug-586-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="000581.html">
+ <LINK REL="Next" HREF="000583.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20586%5D%20%5BNew%5D%20Remove%20the%20fields%20Reproducible%3A%20%26%0A%20Steps%20to%20Reproduce%3A%20from%20reported%20bugs&In-Reply-To=%3Cbug-586-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 29 11:47:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000581.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000583.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#582">[ date ]</a>
+ <a href="thread.html#582">[ thread ]</a>
+ <a href="subject.html#582">[ subject ]</a>
+ <a href="author.html#582">[ 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>
+
+ Summary: Remove the fields Reproducible: &amp; Steps to Reproduce:
+ from reported bugs
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">kristoffer.grundstrom1983 at gmail.com</A>
+ RPM Package: bugzilla-3.6.4
+
+
+Description of problem: It's quite irritating to have them at the bottom if
+you've just reported the bug.
+
+Version-Release number of selected component (if applicable): 3.6.4
+
+How reproducible:
+
+
+Steps to Reproduce:
+1. Create a test-bug.
+2. Report it.
+3. Look at the bottom of it.
+
+The fields
+
+Reproducible:
+
+Steps to Reproduce:
+
+are included.
+
+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="000581.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000583.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#582">[ date ]</a>
+ <a href="thread.html#582">[ thread ]</a>
+ <a href="subject.html#582">[ subject ]</a>
+ <a href="author.html#582">[ 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-March/000583.html b/zarb-ml/mageia-webteam/2011-March/000583.html
new file mode 100644
index 000000000..4a633278e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000583.html
@@ -0,0 +1,73 @@
+<!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=%3C20110329094822.1908642CF4%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="000582.html">
+ <LINK REL="Next" HREF="000584.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>Kristoffer Grundstr&#195;&#182;m</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=%3C20110329094822.1908642CF4%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>Tue Mar 29 11:48:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000582.html">[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs
+</A></li>
+ <LI>Next message: <A HREF="000584.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#583">[ date ]</a>
+ <a href="thread.html#583">[ thread ]</a>
+ <a href="subject.html#583">[ subject ]</a>
+ <a href="author.html#583">[ 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>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Remove the fields |Remove the fields
+ |Reproducible: &amp; Steps to |Reproducible: &amp; Steps to
+ |Reproduce: from reported |Reproduce: from the bottom
+ |bugs |of any reported 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 the assignee for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000582.html">[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs
+</A></li>
+ <LI>Next message: <A HREF="000584.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#583">[ date ]</a>
+ <a href="thread.html#583">[ thread ]</a>
+ <a href="subject.html#583">[ subject ]</a>
+ <a href="author.html#583">[ 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-March/000584.html b/zarb-ml/mageia-webteam/2011-March/000584.html
new file mode 100644
index 000000000..7caeaee74
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000584.html
@@ -0,0 +1,75 @@
+<!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=%3C20110329100831.7195442CC9%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="000583.html">
+ <LINK REL="Next" HREF="000585.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>Kristoffer Grundstr&#195;&#182;m</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=%3C20110329100831.7195442CC9%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>Tue Mar 29 12:08:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000583.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="000585.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#584">[ date ]</a>
+ <a href="thread.html#584">[ thread ]</a>
+ <a href="subject.html#584">[ subject ]</a>
+ <a href="author.html#584">[ 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>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ AssignedTo|<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>
+ Component|Other |Bugzilla
+ Version|trunk |unspecified
+ Product|Websites |Infrastructure
+
+--
+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.
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000583.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="000585.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#584">[ date ]</a>
+ <a href="thread.html#584">[ thread ]</a>
+ <a href="subject.html#584">[ subject ]</a>
+ <a href="author.html#584">[ 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-March/000585.html b/zarb-ml/mageia-webteam/2011-March/000585.html
new file mode 100644
index 000000000..5a8169924
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000585.html
@@ -0,0 +1,82 @@
+<!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=%3C20110329151104.0544742B09%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="000584.html">
+ <LINK REL="Next" HREF="000588.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>Ahmad Samir</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=%3C20110329151104.0544742B09%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>Tue Mar 29 17:11:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000584.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="000588.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#585">[ date ]</a>
+ <a href="thread.html#585">[ thread ]</a>
+ <a href="subject.html#585">[ subject ]</a>
+ <a href="author.html#585">[ 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>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Resolution| |INVALID
+ Status|NEW |RESOLVED
+
+--- Comment #1 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-29 17:11:04 UTC ---
+You can:
+1) delete them before posting a bug
+2) use the advanced form <A HREF="https://bugs.mageia.org/enter_bug.cgi?product=Mageia">https://bugs.mageia.org/enter_bug.cgi?product=Mageia</A>
+3) actually use those fields by trying to add concise and clear steps to
+reproduce the bug when needed.
+
+They shouldn't be removed as they're useful for new users trying to report a
+bug for the first 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="000584.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="000588.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#585">[ date ]</a>
+ <a href="thread.html#585">[ thread ]</a>
+ <a href="subject.html#585">[ subject ]</a>
+ <a href="author.html#585">[ 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-March/000586.html b/zarb-ml/mageia-webteam/2011-March/000586.html
new file mode 100644
index 000000000..bf22107cb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000586.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=%3C20110329160658.DB1A242CFA%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="000592.html">
+ <LINK REL="Next" HREF="000590.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=%3C20110329160658.DB1A242CFA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 29 18:06:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000592.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="000590.html">[Mageia-webteam] [Bug 591] [New] Test bug, please ignore
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#586">[ date ]</a>
+ <a href="thread.html#586">[ thread ]</a>
+ <a href="subject.html#586">[ subject ]</a>
+ <a href="author.html#586">[ 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 #11 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-03-29 18:06:58 UTC ---
+I pushed a few changes (after ahmad's review) in the previous days that should
+fix that:
+ * <A HREF="http://svnweb.mageia.org/soft?view=revision&amp;revision=711">http://svnweb.mageia.org/soft?view=revision&amp;revision=711</A> (indexhtml)
+ * <A HREF="http://svnweb.mageia.org/packages?view=revision&amp;revision=76932">http://svnweb.mageia.org/packages?view=revision&amp;revision=76932</A> (indexhtml)
+ * <A HREF="http://svnweb.mageia.org/packages?view=revision&amp;revision=76933">http://svnweb.mageia.org/packages?view=revision&amp;revision=76933</A> (firefox)
+ * <A HREF="http://svnweb.mageia.org/packages?view=revision&amp;revision=76936">http://svnweb.mageia.org/packages?view=revision&amp;revision=76936</A> (links)
+
+Not that indexhtml specfile is all clean now (there are hardcoded mga bits for
+the welcome mail), but it's another 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="000592.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="000590.html">[Mageia-webteam] [Bug 591] [New] Test bug, please ignore
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#586">[ date ]</a>
+ <a href="thread.html#586">[ thread ]</a>
+ <a href="subject.html#586">[ subject ]</a>
+ <a href="author.html#586">[ 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-March/000587.html b/zarb-ml/mageia-webteam/2011-March/000587.html
new file mode 100644
index 000000000..a201f0b08
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000587.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 451] FAQ should be refreshed
+ </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%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20110329160942.A61194279B%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="000513.html">
+ <LINK REL="Next" HREF="000514.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 451] FAQ should be refreshed</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20110329160942.A61194279B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 451] FAQ should be refreshed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 29 18:09:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000513.html">[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="000514.html">[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#587">[ date ]</a>
+ <a href="thread.html#587">[ thread ]</a>
+ <a href="subject.html#587">[ subject ]</a>
+ <a href="author.html#587">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</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-03-29 18:09:43 UTC ---
+I think we should move the FAQ to a dedicated tool: either some kind of Q&amp;A
+tool or a wiki (or its own wiki namespace).
+
+Potential tracks:
+ * <A HREF="http://www.phpmyfaq.de/">http://www.phpmyfaq.de/</A> (php-based)
+ * <A HREF="https://gitorious.org/shapado">https://gitorious.org/shapado</A> (rails-based)
+ * in the forum?
+
+--
+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="000513.html">[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="000514.html">[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#587">[ date ]</a>
+ <a href="thread.html#587">[ thread ]</a>
+ <a href="subject.html#587">[ subject ]</a>
+ <a href="author.html#587">[ 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-March/000588.html b/zarb-ml/mageia-webteam/2011-March/000588.html
new file mode 100644
index 000000000..0e6fef858
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000588.html
@@ -0,0 +1,83 @@
+<!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=%3C20110329172729.7DED742C47%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="000585.html">
+ <LINK REL="Next" HREF="000589.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>AL13N</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=%3C20110329172729.7DED742C47%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>Tue Mar 29 19:27:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000585.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="000589.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#588">[ date ]</a>
+ <a href="thread.html#588">[ thread ]</a>
+ <a href="subject.html#588">[ subject ]</a>
+ <a href="author.html#588">[ 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>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>
+
+--- Comment #2 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-03-29 19:27:29 UTC ---
+There is one thing though.
+
+It seems if i fill in the bug and remove the rest of it, that there's an extra
+empty Reproducable and Steps to reproduce added, which isn't usefull, because
+it's after post.
+
+to be clear, they weren't in the original comment, ie: i removed those.
+
+that's what i have seen...
+
+imo, after you post it, and you did remove it, perhaps it's not usefull to add
+them anyway, (as bugzilla 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="000585.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="000589.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#588">[ date ]</a>
+ <a href="thread.html#588">[ thread ]</a>
+ <a href="subject.html#588">[ subject ]</a>
+ <a href="author.html#588">[ 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-March/000589.html b/zarb-ml/mageia-webteam/2011-March/000589.html
new file mode 100644
index 000000000..e8c15b7b9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000589.html
@@ -0,0 +1,67 @@
+<!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=%3C20110329172826.89C0942C44%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="000588.html">
+ <LINK REL="Next" HREF="000591.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>AL13N</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=%3C20110329172826.89C0942C44%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>Tue Mar 29 19:28:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000588.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="000591.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#589">[ date ]</a>
+ <a href="thread.html#589">[ thread ]</a>
+ <a href="subject.html#589">[ subject ]</a>
+ <a href="author.html#589">[ 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>
+
+--- Comment #3 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-03-29 19:28:26 UTC ---
+also @ahmad, it seems your comment did something weird: &quot;bug \n 2&quot; seems to
+match the bug recognizer...
+
+--
+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="000588.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="000591.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#589">[ date ]</a>
+ <a href="thread.html#589">[ thread ]</a>
+ <a href="subject.html#589">[ subject ]</a>
+ <a href="author.html#589">[ 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-March/000590.html b/zarb-ml/mageia-webteam/2011-March/000590.html
new file mode 100644
index 000000000..ffde24a9f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000590.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 591] [New] 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%20%5BNew%5D%20Test%20bug%2C%20please%20ignore&In-Reply-To=%3Cbug-591-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="000586.html">
+ <LINK REL="Next" HREF="000593.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 591] [New] 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%20%5BNew%5D%20Test%20bug%2C%20please%20ignore&In-Reply-To=%3Cbug-591-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 591] [New] Test bug, please ignore">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 29 21:48:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000586.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000593.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#590">[ date ]</a>
+ <a href="thread.html#590">[ thread ]</a>
+ <a href="subject.html#590">[ subject ]</a>
+ <a href="author.html#590">[ 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>
+
+ Summary: Test bug, please ignore
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: ASSIGNED
+ Severity: normal
+ 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">ahmadsamir3891 at gmail.com</A>
+
+
+Description of problem:
+Testing if the guided form works as expected or not.
+
+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="000586.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000593.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#590">[ date ]</a>
+ <a href="thread.html#590">[ thread ]</a>
+ <a href="subject.html#590">[ subject ]</a>
+ <a href="author.html#590">[ 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-March/000591.html b/zarb-ml/mageia-webteam/2011-March/000591.html
new file mode 100644
index 000000000..83fe82b9f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000591.html
@@ -0,0 +1,78 @@
+<!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=%3C20110329195054.0225842CC7%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="000589.html">
+ <LINK REL="Next" HREF="000592.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>Ahmad Samir</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=%3C20110329195054.0225842CC7%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>Tue Mar 29 21:50:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000589.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="000592.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#591">[ date ]</a>
+ <a href="thread.html#591">[ thread ]</a>
+ <a href="subject.html#591">[ subject ]</a>
+ <a href="author.html#591">[ 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>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>
+ Resolution|INVALID |
+ Status|RESOLVED |REOPENED
+
+--- Comment #4 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-29 21:50:53 UTC ---
+@dmorgan, see bug 591, I removed all the extra text from the Details: box, but
+these still ended in the report Description:
+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="000589.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="000592.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#591">[ date ]</a>
+ <a href="thread.html#591">[ thread ]</a>
+ <a href="subject.html#591">[ subject ]</a>
+ <a href="author.html#591">[ 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-March/000592.html b/zarb-ml/mageia-webteam/2011-March/000592.html
new file mode 100644
index 000000000..166f2a4d8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000592.html
@@ -0,0 +1,67 @@
+<!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=%3C20110329201451.C728F42CB8%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="000591.html">
+ <LINK REL="Next" HREF="000586.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>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%20586%5D%20Remove%20the%20fields%20Reproducible%3A%20%26%20Steps%0A%20to%20Reproduce%3A%20from%20the%20bottom%20of%20any%20reported%20bugs&In-Reply-To=%3C20110329201451.C728F42CB8%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>Tue Mar 29 22:14:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000591.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="000586.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#592">[ date ]</a>
+ <a href="thread.html#592">[ thread ]</a>
+ <a href="subject.html#592">[ subject ]</a>
+ <a href="author.html#592">[ 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>
+
+--- Comment #5 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-03-29 22:14:51 UTC ---
+This is a problem specific to bugs.mageia.org. I cannot reproduce the problem
+upstream. The difference is that you merged all fields into a single &quot;Details&quot;
+field, which is then incorrectly parsed.
+
+--
+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="000591.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="000586.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#592">[ date ]</a>
+ <a href="thread.html#592">[ thread ]</a>
+ <a href="subject.html#592">[ subject ]</a>
+ <a href="author.html#592">[ 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-March/000593.html b/zarb-ml/mageia-webteam/2011-March/000593.html
new file mode 100644
index 000000000..3c70e337f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000593.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=%3C20110329205616.BBEE742CE4%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="000590.html">
+ <LINK REL="Next" HREF="000594.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=%3C20110329205616.BBEE742CE4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 29 22:56:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000590.html">[Mageia-webteam] [Bug 591] [New] Test bug, please ignore
+</A></li>
+ <LI>Next message: <A HREF="000594.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#593">[ date ]</a>
+ <a href="thread.html#593">[ thread ]</a>
+ <a href="subject.html#593">[ subject ]</a>
+ <a href="author.html#593">[ 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 #12 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-29 22:56:16 UTC ---
+(In reply to comment #11)
+&gt;<i> I pushed a few changes (after ahmad's review) in the previous days that should
+</I>&gt;<i> fix that:
+</I>&gt;<i> * <A HREF="http://svnweb.mageia.org/soft?view=revision&amp;revision=711">http://svnweb.mageia.org/soft?view=revision&amp;revision=711</A> (indexhtml)
+</I>&gt;<i> * <A HREF="http://svnweb.mageia.org/packages?view=revision&amp;revision=76932">http://svnweb.mageia.org/packages?view=revision&amp;revision=76932</A> (indexhtml)
+</I>&gt;<i> * <A HREF="http://svnweb.mageia.org/packages?view=revision&amp;revision=76933">http://svnweb.mageia.org/packages?view=revision&amp;revision=76933</A> (firefox)
+</I>&gt;<i> * <A HREF="http://svnweb.mageia.org/packages?view=revision&amp;revision=76936">http://svnweb.mageia.org/packages?view=revision&amp;revision=76936</A> (links)
+</I>&gt;<i>
+</I>&gt;<i> Not that indexhtml specfile is all clean now (there are hardcoded mga bits for
+</I>&gt;<i> the welcome mail), but it's another issue.
+</I>
+I missed one bit, sorry.
+
+IINM, the %post section is redundant, as in Mageia indexhtml doesn't put any
+files in /usr/share/doc/HTML, I've removed it, (but won't submit until you
+review, you being the web/html guy and all :)).
+
+--
+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="000590.html">[Mageia-webteam] [Bug 591] [New] Test bug, please ignore
+</A></li>
+ <LI>Next message: <A HREF="000594.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#593">[ date ]</a>
+ <a href="thread.html#593">[ thread ]</a>
+ <a href="subject.html#593">[ subject ]</a>
+ <a href="author.html#593">[ 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-March/000594.html b/zarb-ml/mageia-webteam/2011-March/000594.html
new file mode 100644
index 000000000..bb68dfd98
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000594.html
@@ -0,0 +1,107 @@
+<!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=%3C20110329220002.9B4F642D07%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="000593.html">
+ <LINK REL="Next" HREF="000595.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=%3C20110329220002.9B4F642D07%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 30 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000593.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000595.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#594">[ date ]</a>
+ <a href="thread.html#594">[ thread ]</a>
+ <a href="subject.html#594">[ subject ]</a>
+ <a href="author.html#594">[ 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>
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000593.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000595.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#594">[ date ]</a>
+ <a href="thread.html#594">[ thread ]</a>
+ <a href="subject.html#594">[ subject ]</a>
+ <a href="author.html#594">[ 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-March/000595.html b/zarb-ml/mageia-webteam/2011-March/000595.html
new file mode 100644
index 000000000..03b5dbd7f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000595.html
@@ -0,0 +1,72 @@
+<!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=%3C20110329222458.9E3E442D0A%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="000594.html">
+ <LINK REL="Next" HREF="000596.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=%3C20110329222458.9E3E442D0A%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 Mar 30 00:24:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000594.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000596.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#595">[ date ]</a>
+ <a href="thread.html#595">[ thread ]</a>
+ <a href="subject.html#595">[ subject ]</a>
+ <a href="author.html#595">[ 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 #13 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-03-30 00:24:58 UTC ---
+(In reply to comment #12)
+&gt;<i> IINM, the %post section is redundant, as in Mageia indexhtml doesn't put any
+</I>&gt;<i> files in /usr/share/doc/HTML, I've removed it, (but won't submit until you
+</I>&gt;<i> review, you being the web/html guy and all :)).
+</I>
+What's the diff exactly? :-p (index, /usr/share/doc/HTML is not here anymore,
+but there's a %post thing to do nonetheless).
+
+--
+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="000594.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000596.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#595">[ date ]</a>
+ <a href="thread.html#595">[ thread ]</a>
+ <a href="subject.html#595">[ subject ]</a>
+ <a href="author.html#595">[ 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-March/000596.html b/zarb-ml/mageia-webteam/2011-March/000596.html
new file mode 100644
index 000000000..26ed3d1d9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000596.html
@@ -0,0 +1,67 @@
+<!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=%3C20110329225026.66CC442D02%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="000595.html">
+ <LINK REL="Next" HREF="000597.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=%3C20110329225026.66CC442D02%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 Mar 30 00:50:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000595.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000597.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#596">[ date ]</a>
+ <a href="thread.html#596">[ thread ]</a>
+ <a href="subject.html#596">[ subject ]</a>
+ <a href="author.html#596">[ 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 #14 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-30 00:50:26 UTC ---
+Ah, yes, but then the comment is wrong. I'll add it back and remove the comment
+(and we'll have to use /tmp/tmpfile).
+
+--
+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="000595.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000597.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#596">[ date ]</a>
+ <a href="thread.html#596">[ thread ]</a>
+ <a href="subject.html#596">[ subject ]</a>
+ <a href="author.html#596">[ 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-March/000597.html b/zarb-ml/mageia-webteam/2011-March/000597.html
new file mode 100644
index 000000000..26f5c4c40
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000597.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=%3C20110329231637.01E1042CE4%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="000596.html">
+ <LINK REL="Next" HREF="000598.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=%3C20110329231637.01E1042CE4%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 Mar 30 01:16:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000596.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000598.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#597">[ date ]</a>
+ <a href="thread.html#597">[ thread ]</a>
+ <a href="subject.html#597">[ subject ]</a>
+ <a href="author.html#597">[ 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 #15 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-03-30 01:16:36 UTC ---
+The logic is wrong in the spec:
+# add a default
+cat %buildroot/%_datadir/indexhtml/index.html | \
+ sed &quot;s/#PRODUCT_ID//&quot; | \
+ sed &quot;s/#LANG/en/g&quot; \
+ &gt; tmpfile
+mv tmpfile %buildroot/%_datadir/indexhtml/index.html
+
+%post
+# done to prevent excludedocs to ignore the doc/HTML
+mkdir -p %_datadir/indexhtml
+sed -i &quot;s/#PRODUCT_ID/`cat /etc/product.id`/&quot; \
+ -i sed &quot;s/#PRODUCT_ID/`cat /etc/product.id`/&quot; \
+ -i sed sed &quot;s/#LANG/${LC_NAME/[-_]*}/g&quot; \
+%_datadir/indexhtml/index.html
+
+in %post, %_datadir/indexhtml/index.html doesn't have #PRODUCT_ID or #LANG,
+they were already replaced in &quot;add a default&quot; in that same file.
+
+--
+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="000596.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000598.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#597">[ date ]</a>
+ <a href="thread.html#597">[ thread ]</a>
+ <a href="subject.html#597">[ subject ]</a>
+ <a href="author.html#597">[ 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-March/000598.html b/zarb-ml/mageia-webteam/2011-March/000598.html
new file mode 100644
index 000000000..2d63023c3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000598.html
@@ -0,0 +1,69 @@
+<!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=%3C20110330092727.8B44842D1A%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="000597.html">
+ <LINK REL="Next" HREF="000599.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=%3C20110330092727.8B44842D1A%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 Mar 30 11:27:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000597.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000599.html">[Mageia-webteam] website design update &amp; a few comments/tracks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#598">[ date ]</a>
+ <a href="thread.html#598">[ thread ]</a>
+ <a href="subject.html#598">[ subject ]</a>
+ <a href="author.html#598">[ 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 #16 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-03-30 11:27:27 UTC ---
+Ah yes. So keeping only one is better.
+
+Can we keep only %post and remove the first one? or is there a case when %post
+may not be run on install?
+
+--
+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="000597.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000599.html">[Mageia-webteam] website design update &amp; a few comments/tracks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#598">[ date ]</a>
+ <a href="thread.html#598">[ thread ]</a>
+ <a href="subject.html#598">[ subject ]</a>
+ <a href="author.html#598">[ 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-March/000599.html b/zarb-ml/mageia-webteam/2011-March/000599.html
new file mode 100644
index 000000000..cf3423621
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000599.html
@@ -0,0 +1,139 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] website design update &amp; a few comments/tracks
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20website%20design%20update%20%26%20a%20few%20comments/tracks&In-Reply-To=%3CAANLkTik6dXLuSxgG9wvLbPUYcG%2BiRsJ3k9%3DE31XFFYKt%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="000598.html">
+ <LINK REL="Next" HREF="000600.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] website design update &amp; a few comments/tracks</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20website%20design%20update%20%26%20a%20few%20comments/tracks&In-Reply-To=%3CAANLkTik6dXLuSxgG9wvLbPUYcG%2BiRsJ3k9%3DE31XFFYKt%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] website design update &amp; a few comments/tracks">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Mar 30 12:10:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000598.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000600.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#599">[ date ]</a>
+ <a href="thread.html#599">[ thread ]</a>
+ <a href="subject.html#599">[ subject ]</a>
+ <a href="author.html#599">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>(note this is a cross-posted topic, on mageia-artwork first, on
+mageia-webteam second - btw, please remind today's meeting and note
+that times have changed, thanks to DST! webteam is at 13:00 UTC,
+artwork at 17:00 UTC, see <A HREF="http://mageia.org/en/calendar/">http://mageia.org/en/calendar/</A> ).
+
+Hi there,
+
+I just pushed a few CSS updates on www.mageia.org, after a quick
+review yesterday morning with a designer good friend (thanks H&#233;l&#232;ne!).
+
+These changes are here to finally publish the logo and make the
+website more colorful for beta1 release, using what we have. Note that
+I too slightly updated the nav bar contents and that we should review
+this for beta1.
+
+Further than helping on theming the website, she suggested two slight
+changes too:
+ * having a consistent favicon with the logo as it is used; that would
+have meant to have:
+ - either the top banner with a logo on a blue background to match
+the current favicon,
+ - either the favicon changed to the logo colours (white background,
+dark blue cauldron cut and light blue bubbles);
+ - yes, that sounds obvious, and we discussed shortly about this
+already to decide on the blue background favicon; so up to discussion
+again?
+ * carefullly adjusting the kerning (letter-spacing) in the logo text,
+between m, a and g - she retouched the logo as it is currently on the
+website in this regard; it's rather subtile but the change is
+noticeable. I'll try to post a side-by-side demonstration of this
+shortly.
+
+I hope/expect this will lead to further discussions about the website
+directions (see first notes there:
+<A HREF="http://mageia.org/wiki/doku.php?id=web:website">http://mageia.org/wiki/doku.php?id=web:website</A> ).
+
+Not to lose everyone into discussions, I suggest we just start with
+one thing: the global nav and general direction for mageia.org layout.
+
+Forgetting the current nav bar, here are some aims that would be good
+to reach I believe:
+ * same, consistent navigation bar _everywhere_ on mageia.org
+(requires it to be light and easily embedded; requires too that all
+mageia.org apps/sites share a minimum set of layout/design rules)
+ * as little first entry points as necessary (see
+<A HREF="http://mageia.org/wiki/doku.php?id=web:website#hubs_spaces">http://mageia.org/wiki/doku.php?id=web:website#hubs_spaces</A> but I'm not
+quite satisfied with it)
+ * mageia.org identity is clear and obvious
+ * local site/app identity is clear and obvious
+ * sub nav scheme is left to local site/app (but could follow a common
+set of guidelines as well if possible)
+
+Think of the following apps to take into account: www (as the main
+entry point), forum, bugzilla, maintdb, identity, wiki, blog, planet,
+etc. That's not an obvious thing to do, but it's worth it (users know
+where there are) and we can find a design that makes it not too
+complex to integrate.
+
+Or maybe such a scheme should be avoided? (why? and how to maintain a
+simple common guide through the whole sites then?)
+
+I have two rough ideas in queue:
+
+ a) leftaligned design, 100% width, horizontal nav bar, with only
+simple titles/links to apps/locations (list is flexible) + a search
+and user session handle on the right hand; the logo &amp; local app/site
+identity is right under this nav bar + its own actions/nav items; look
+at Google (Apps) nav for an idea - they don't use it through all of
+their websites/apps, but I think that's worth a try;
+
+ b) left-aligned or centered design, fixed width (about 960px),
+horizontal nav bar, with a fixed short set of items; global
+identity/logo is the left-most item; with or without session/search
+handles; look at Apple or Mozilla or Mandriva nav bars. Second-level
+nav can be layed-out as the local app prefers, or by a global design
+too, integrated into the nav bar.
+
+I'll post mockups (or please do) within next week about this.
+
+Thanks for your insights.
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000598.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000600.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#599">[ date ]</a>
+ <a href="thread.html#599">[ thread ]</a>
+ <a href="subject.html#599">[ subject ]</a>
+ <a href="author.html#599">[ 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-March/000600.html b/zarb-ml/mageia-webteam/2011-March/000600.html
new file mode 100644
index 000000000..59e391d52
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000600.html
@@ -0,0 +1,66 @@
+<!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=%3CAANLkTimGbVoXJSC9Gk4g6BVa4EZViOBKEqPaANHY3HVb%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="000599.html">
+ <LINK REL="Next" HREF="000601.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] meeting today</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20meeting%20today&In-Reply-To=%3CAANLkTimGbVoXJSC9Gk4g6BVa4EZViOBKEqPaANHY3HVb%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] meeting today">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Mar 30 12:30:45 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000599.html">[Mageia-webteam] website design update &amp; a few comments/tracks
+</A></li>
+ <LI>Next message: <A HREF="000601.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#600">[ date ]</a>
+ <a href="thread.html#600">[ thread ]</a>
+ <a href="subject.html#600">[ subject ]</a>
+ <a href="author.html#600">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Sorry cannot be at the meeting today..
+
+Unfortunately not a lot to report on maintdb as didn't have any time to go
+back to it.
+Only thing I've managed to have a look at was the ability to restrict the
+authenticity token in certain actions, instead of the whole application.
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110330/6085d527/attachment.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000599.html">[Mageia-webteam] website design update &amp; a few comments/tracks
+</A></li>
+ <LI>Next message: <A HREF="000601.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#600">[ date ]</a>
+ <a href="thread.html#600">[ thread ]</a>
+ <a href="subject.html#600">[ subject ]</a>
+ <a href="author.html#600">[ 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-March/000601.html b/zarb-ml/mageia-webteam/2011-March/000601.html
new file mode 100644
index 000000000..0957904b5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000601.html
@@ -0,0 +1,73 @@
+<!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=%3CAANLkTikMnCVcyWsdpr2FWSwRDerbmZpHjHMDZ6BN6VXU%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="000600.html">
+ <LINK REL="Next" HREF="000602.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=%3CAANLkTikMnCVcyWsdpr2FWSwRDerbmZpHjHMDZ6BN6VXU%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] meeting today">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Mar 30 12:37:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000600.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI>Next message: <A HREF="000602.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#601">[ date ]</a>
+ <a href="thread.html#601">[ thread ]</a>
+ <a href="subject.html#601">[ subject ]</a>
+ <a href="author.html#601">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Mar 30, 2011 at 12:30, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> Sorry cannot be at the meeting today..
+</I>&gt;<i>
+</I>&gt;<i> Unfortunately not a lot to report on maintdb as didn't have any time to go
+</I>&gt;<i> back to it.
+</I>&gt;<i> Only thing I've managed to have a look at was the ability to restrict the
+</I>&gt;<i> authenticity token in certain actions, instead of the whole application.
+</I>
+Ok. Didn't notify about it largely here, but we plugged the
+buildsystem into the staging app to see it in real use (see
+<A HREF="http://www.maintdb2.mageia.org.uk/">http://www.maintdb2.mageia.org.uk/</A> ). By the way, I notice a server
+error each time I go there; on reload it works nice but... there it
+is, so I'm not sure what causes it (and if some packages submissions
+go unnoticed that way).
+
+Romain
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000600.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI>Next message: <A HREF="000602.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#601">[ date ]</a>
+ <a href="thread.html#601">[ thread ]</a>
+ <a href="subject.html#601">[ subject ]</a>
+ <a href="author.html#601">[ 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-March/000602.html b/zarb-ml/mageia-webteam/2011-March/000602.html
new file mode 100644
index 000000000..893d37f97
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000602.html
@@ -0,0 +1,99 @@
+<!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=%3CAANLkTiky7WYuFnoZ893-SyiTV53NwHbip1DA4PrUqy_d%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="000601.html">
+ <LINK REL="Next" HREF="000603.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] meeting today</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20meeting%20today&In-Reply-To=%3CAANLkTiky7WYuFnoZ893-SyiTV53NwHbip1DA4PrUqy_d%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] meeting today">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Mar 30 12:46:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000601.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI>Next message: <A HREF="000603.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#602">[ date ]</a>
+ <a href="thread.html#602">[ thread ]</a>
+ <a href="subject.html#602">[ subject ]</a>
+ <a href="author.html#602">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>That's good Romain.
+
+The Error message gets displayed because the staging is hosted on a shared
+dreamhost account.
+If it gets over a certain memory limit it gets killed, that's why it
+displays ok when you refresh it.
+It's possible that submissions on the staging would go unnoticed, but I'm
+pretty sure that wont' be the case on the live server.
+Again, if there is another staging server that we could host it, it wouldn't
+be a problem to change the deployment to the new one.
+Maybe it would be a good idea to do it before the live server anyway.
+
+Kosmas
+
+On 30 March 2011 11:37, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+
+&gt;<i> On Wed, Mar 30, 2011 at 12:30, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt;
+</I>&gt;<i> wrote:
+</I>&gt;<i> &gt; Sorry cannot be at the meeting today..
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Unfortunately not a lot to report on maintdb as didn't have any time to
+</I>&gt;<i> go
+</I>&gt;<i> &gt; back to it.
+</I>&gt;<i> &gt; Only thing I've managed to have a look at was the ability to restrict the
+</I>&gt;<i> &gt; authenticity token in certain actions, instead of the whole application.
+</I>&gt;<i>
+</I>&gt;<i> Ok. Didn't notify about it largely here, but we plugged the
+</I>&gt;<i> buildsystem into the staging app to see it in real use (see
+</I>&gt;<i> <A HREF="http://www.maintdb2.mageia.org.uk/">http://www.maintdb2.mageia.org.uk/</A> ). By the way, I notice a server
+</I>&gt;<i> error each time I go there; on reload it works nice but... there it
+</I>&gt;<i> is, so I'm not sure what causes it (and if some packages submissions
+</I>&gt;<i> go unnoticed that way).
+</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/20110330/46120db2/attachment.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000601.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI>Next message: <A HREF="000603.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#602">[ date ]</a>
+ <a href="thread.html#602">[ thread ]</a>
+ <a href="subject.html#602">[ subject ]</a>
+ <a href="author.html#602">[ 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-March/000603.html b/zarb-ml/mageia-webteam/2011-March/000603.html
new file mode 100644
index 000000000..8b3254fd6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000603.html
@@ -0,0 +1,73 @@
+<!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=%3CAANLkTimLpDzm79MRt8ZTt1SW58NvLTf%3DbQd2cThS9G%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="000602.html">
+ <LINK REL="Next" HREF="000604.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=%3CAANLkTimLpDzm79MRt8ZTt1SW58NvLTf%3DbQd2cThS9G%2Ba%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 30 13:04:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000602.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI>Next message: <A HREF="000604.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#603">[ date ]</a>
+ <a href="thread.html#603">[ thread ]</a>
+ <a href="subject.html#603">[ subject ]</a>
+ <a href="author.html#603">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>To whom it concerns (I guess maat):
+
+After forum opening there are questions:
+
+1. How can I make a topic &quot;sticky&quot;? I want to write a general post
+about translator teams in the right section but can't find the usual
+list of things I can do with a post (make it sticky, make it an
+announcement, make it a global announcement, etc.). In the moderator
+panel the dropdown list of &quot;Select desired action&quot; is empty, I
+couldn't even close the topic.
+I guess you are still working on the permission system, right?
+
+2. How do I edit my own post or somebody else's (as moderator)?
+
+--
+wobo
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000602.html">[Mageia-webteam] meeting today
+</A></li>
+ <LI>Next message: <A HREF="000604.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#603">[ date ]</a>
+ <a href="thread.html#603">[ thread ]</a>
+ <a href="subject.html#603">[ subject ]</a>
+ <a href="author.html#603">[ 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-March/000604.html b/zarb-ml/mageia-webteam/2011-March/000604.html
new file mode 100644
index 000000000..2f0f4ce8b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000604.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=%3C4D9323EF.7060203%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000603.html">
+ <LINK REL="Next" HREF="000605.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=%3C4D9323EF.7060203%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 30 14:37:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000603.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000605.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#604">[ date ]</a>
+ <a href="thread.html#604">[ thread ]</a>
+ <a href="subject.html#604">[ subject ]</a>
+ <a href="author.html#604">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 30/03/2011 13:04, Wolfgang Bornath a &#233;crit :
+&gt;<i> To whom it concerns (I guess maat):
+</I>&gt;<i>
+</I>Yup :)
+
+(Or Ash)
+
+&gt;<i> After forum opening there are questions:
+</I>&gt;<i>
+</I>&gt;<i> 1. How can I make a topic &quot;sticky&quot;? I want to write a general post
+</I>&gt;<i> about translator teams in the right section but can't find the usual
+</I>&gt;<i> list of things I can do with a post (make it sticky, make it an
+</I>&gt;<i> announcement, make it a global announcement, etc.). In the moderator
+</I>&gt;<i> panel the dropdown list of &quot;Select desired action&quot; is empty, I
+</I>&gt;<i> couldn't even close the topic.
+</I>&gt;<i> I guess you are still working on the permission system, right?
+</I>&gt;<i>
+</I>
+Yup... added rights to lock topics and to make them sticky :)
+
+&gt;<i> 2. How do I edit my own post or somebody else's (as moderator)?
+</I>&gt;<i>
+</I>On the top right corner of the posts (near &quot;quote&quot; button you have an &quot;edit&quot; button visible if you have the right to edit posts)
+
+Please test and tell me :)
+
+Ma&#226;t
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000603.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000605.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#604">[ date ]</a>
+ <a href="thread.html#604">[ thread ]</a>
+ <a href="subject.html#604">[ subject ]</a>
+ <a href="author.html#604">[ 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-March/000605.html b/zarb-ml/mageia-webteam/2011-March/000605.html
new file mode 100644
index 000000000..aeb336fea
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000605.html
@@ -0,0 +1,99 @@
+<!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=%3CAANLkTinGkX4grgH9tH-x5CFC_KWsCHwj5JDXZhOP7cKD%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="000604.html">
+ <LINK REL="Next" HREF="000606.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=%3CAANLkTinGkX4grgH9tH-x5CFC_KWsCHwj5JDXZhOP7cKD%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">ashledombos at hodo.fr
+ </A><BR>
+ <I>Wed Mar 30 15:39:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000604.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000606.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#605">[ date ]</a>
+ <a href="thread.html#605">[ thread ]</a>
+ <a href="subject.html#605">[ subject ]</a>
+ <a href="author.html#605">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/30 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i> Le 30/03/2011 13:04, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> To whom it concerns (I guess maat):
+</I>&gt;&gt;<i>
+</I>&gt;<i> Yup :)
+</I>&gt;<i>
+</I>&gt;<i> (Or Ash)
+</I>&gt;<i>
+</I>&gt;&gt;<i> After forum opening there are questions:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> 1. How can I make a topic &quot;sticky&quot;? I want to write a general post
+</I>&gt;&gt;<i> about translator teams in the right section but can't find the usual
+</I>&gt;&gt;<i> list of things I can do with a post (make it sticky, make it an
+</I>&gt;&gt;<i> announcement, make it a global announcement, etc.). In the moderator
+</I>&gt;&gt;<i> panel the dropdown list of &quot;Select desired action&quot; is empty, I
+</I>&gt;&gt;<i> couldn't even close the topic.
+</I>&gt;&gt;<i> I guess you are still working on the permission system, right?
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Yup... added rights to lock topics and to make them sticky :)
+</I>&gt;<i>
+</I>&gt;&gt;<i> 2. How do I edit my own post or somebody else's (as moderator)?
+</I>&gt;&gt;<i>
+</I>&gt;<i> On the top right corner of the posts (near &quot;quote&quot; button you have an &quot;edit&quot; button visible if you have the right to edit posts)
+</I>&gt;<i>
+</I>&gt;<i> Please test and tell me :)
+</I>&gt;<i>
+</I>&gt;<i> Ma&#226;t
+</I>&gt;<i>
+</I>
+Could be a good idea to have a moderator meeting soon, by irc or
+something else (if well prepared, we can do it in ~ a hour, the last
+modo meeting we had in mandriva forum last 1h15 minutes with 6 or 7
+subjects)
+
+The problem is that even though many of us are in europe (CET or GMT),
+other (thinking about germ for example) have up to 6 or 7 hours
+difference.
+
+So wdyt ?
+
+Rapha&#235;l
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000604.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000606.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#605">[ date ]</a>
+ <a href="thread.html#605">[ thread ]</a>
+ <a href="subject.html#605">[ subject ]</a>
+ <a href="author.html#605">[ 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-March/000606.html b/zarb-ml/mageia-webteam/2011-March/000606.html
new file mode 100644
index 000000000..39ba19eb4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000606.html
@@ -0,0 +1,112 @@
+<!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=%3CAANLkTimPVyi2mRjyRDZB97Rj%2BvmmqMY7HZyjDaZfSGA4%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="000605.html">
+ <LINK REL="Next" HREF="000607.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=%3CAANLkTimPVyi2mRjyRDZB97Rj%2BvmmqMY7HZyjDaZfSGA4%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 30 16:34:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000605.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000607.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#606">[ date ]</a>
+ <a href="thread.html#606">[ thread ]</a>
+ <a href="subject.html#606">[ subject ]</a>
+ <a href="author.html#606">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/30 Rapha&#235;l Jadot &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ashledombos at hodo.fr</A>&gt;:
+&gt;<i> 2011/3/30 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 30/03/2011 13:04, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;&gt;<i> To whom it concerns (I guess maat):
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> Yup :)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> (Or Ash)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> After forum opening there are questions:
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> 1. How can I make a topic &quot;sticky&quot;? I want to write a general post
+</I>&gt;&gt;&gt;<i> about translator teams in the right section but can't find the usual
+</I>&gt;&gt;&gt;<i> list of things I can do with a post (make it sticky, make it an
+</I>&gt;&gt;&gt;<i> announcement, make it a global announcement, etc.). In the moderator
+</I>&gt;&gt;&gt;<i> panel the dropdown list of &quot;Select desired action&quot; is empty, I
+</I>&gt;&gt;&gt;<i> couldn't even close the topic.
+</I>&gt;&gt;&gt;<i> I guess you are still working on the permission system, right?
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Yup... added rights to lock topics and to make them sticky :)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> 2. How do I edit my own post or somebody else's (as moderator)?
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> On the top right corner of the posts (near &quot;quote&quot; button you have an &quot;edit&quot; button visible if you have the right to edit posts)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Please test and tell me :)
+</I>
+Yes, works, thx.
+
+&gt;<i> Could be a good idea to have a moderator meeting soon, by irc or
+</I>&gt;<i> something else (if well prepared, we can do it in ~ a hour, the last
+</I>&gt;<i> modo meeting we had in mandriva forum last 1h15 minutes with 6 or 7
+</I>&gt;<i> subjects)
+</I>&gt;<i>
+</I>&gt;<i> The problem is that even though many of us are in europe (CET or GMT),
+</I>&gt;<i> other (thinking about germ for example) have up to 6 or 7 hours
+</I>&gt;<i> difference.
+</I>&gt;<i>
+</I>&gt;<i> So wdyt ?
+</I>
+Yes, good idea.
+Could we wait for a couple of days with that? I think it would be good
+to get some experience with the forum, may be
+ - one or another question will be answered by then
+ - new questions may arise.
+
+I agree to the necessity of good communication between
+moderators/admins. I also suggested to have a hidden moderator/admin
+forum where all moderators and admins can share their experiences,
+discuss certain issues, and even exchange names of users who popped up
+in a positive or negative way.
+
+--
+wobo
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000605.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000607.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#606">[ date ]</a>
+ <a href="thread.html#606">[ thread ]</a>
+ <a href="subject.html#606">[ subject ]</a>
+ <a href="author.html#606">[ 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-March/000607.html b/zarb-ml/mageia-webteam/2011-March/000607.html
new file mode 100644
index 000000000..056daed23
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000607.html
@@ -0,0 +1,72 @@
+<!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=%3CAANLkTi%3D0piJVoH9yBPqNFLP9vsBY9wL-6yrd-%3DLnqS%2B1%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="000606.html">
+ <LINK REL="Next" HREF="000608.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=%3CAANLkTi%3D0piJVoH9yBPqNFLP9vsBY9wL-6yrd-%3DLnqS%2B1%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">ashledombos at hodo.fr
+ </A><BR>
+ <I>Wed Mar 30 17:12:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000606.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000608.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#607">[ date ]</a>
+ <a href="thread.html#607">[ thread ]</a>
+ <a href="subject.html#607">[ subject ]</a>
+ <a href="author.html#607">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/30 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;:
+&gt;<i> I agree to the necessity of good communication between
+</I>&gt;<i> moderators/admins. I also suggested to have a hidden moderator/admin
+</I>&gt;<i> forum where all moderators and admins can share their experiences,
+</I>&gt;<i> discuss certain issues, and even exchange names of users who popped up
+</I>&gt;<i> in a positive or negative way.
+</I>
+
+In fact it already exist (moderation under &quot;mageia forums&quot;), but if
+you ask for it, then you certainly don't see it.
+
+Mmm looking for it, maybe permissions are not correctly applied to this forum
+
+--
+RJ
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000606.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000608.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#607">[ date ]</a>
+ <a href="thread.html#607">[ thread ]</a>
+ <a href="subject.html#607">[ subject ]</a>
+ <a href="author.html#607">[ 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-March/000608.html b/zarb-ml/mageia-webteam/2011-March/000608.html
new file mode 100644
index 000000000..abbf2fd64
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000608.html
@@ -0,0 +1,73 @@
+<!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=%3CAANLkTimSpEGwTJuXcvSJ%3DLTzUCa44Agjaz%3DV8T_2Gz8R%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="000607.html">
+ <LINK REL="Next" HREF="000609.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=%3CAANLkTimSpEGwTJuXcvSJ%3DLTzUCa44Agjaz%3DV8T_2Gz8R%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 30 17:35:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000607.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000609.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#608">[ date ]</a>
+ <a href="thread.html#608">[ thread ]</a>
+ <a href="subject.html#608">[ subject ]</a>
+ <a href="author.html#608">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/30 Rapha&#235;l Jadot &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ashledombos at hodo.fr</A>&gt;:
+&gt;<i> 2011/3/30 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;:
+</I>&gt;&gt;<i> I agree to the necessity of good communication between
+</I>&gt;&gt;<i> moderators/admins. I also suggested to have a hidden moderator/admin
+</I>&gt;&gt;<i> forum where all moderators and admins can share their experiences,
+</I>&gt;&gt;<i> discuss certain issues, and even exchange names of users who popped up
+</I>&gt;&gt;<i> in a positive or negative way.
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> In fact it already exist (moderation under &quot;mageia forums&quot;), but if
+</I>&gt;<i> you ask for it, then you certainly don't see it.
+</I>
+Isn't this guy amazing! He gives me no chance to ask &quot;Where is it?&quot;
+
+--
+wobo
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000607.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000609.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#608">[ date ]</a>
+ <a href="thread.html#608">[ thread ]</a>
+ <a href="subject.html#608">[ subject ]</a>
+ <a href="author.html#608">[ 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-March/000609.html b/zarb-ml/mageia-webteam/2011-March/000609.html
new file mode 100644
index 000000000..03a64cb14
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000609.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=%3C4D935586.9050001%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000608.html">
+ <LINK REL="Next" HREF="000610.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=%3C4D935586.9050001%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Mar 30 18:08:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000608.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000610.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#609">[ date ]</a>
+ <a href="thread.html#609">[ thread ]</a>
+ <a href="subject.html#609">[ subject ]</a>
+ <a href="author.html#609">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 30/03/2011 17:12, Rapha&#235;l Jadot a &#233;crit :
+&gt;<i> 2011/3/30 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;:
+</I>&gt;&gt;<i> I agree to the necessity of good communication between
+</I>&gt;&gt;<i> moderators/admins. I also suggested to have a hidden moderator/admin
+</I>&gt;&gt;<i> forum where all moderators and admins can share their experiences,
+</I>&gt;&gt;<i> discuss certain issues, and even exchange names of users who popped up
+</I>&gt;&gt;<i> in a positive or negative way.
+</I>&gt;<i>
+</I>&gt;<i> In fact it already exist (moderation under &quot;mageia forums&quot;), but if
+</I>&gt;<i> you ask for it, then you certainly don't see it.
+</I>&gt;<i>
+</I>:<i>)
+</I>
+&gt;<i> Mmm looking for it, maybe permissions are not correctly applied to this forum
+</I>&gt;<i>
+</I>Nope fort this part ACL are correctly defined
+
+This forum is only designed to be used by &quot;global moderators&quot; the we usually call &quot;moderators&quot;
+
+(Other groups may have partial moderation rights enabled so that everybody's life is easier... for example translators on the forum dedicated to packaging and translating can edit posts or topic so that they have the right to mark a topic as [resolved]&quot; but this is not something that make them moderators)
+
+
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000608.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000610.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#609">[ date ]</a>
+ <a href="thread.html#609">[ thread ]</a>
+ <a href="subject.html#609">[ subject ]</a>
+ <a href="author.html#609">[ 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-March/000610.html b/zarb-ml/mageia-webteam/2011-March/000610.html
new file mode 100644
index 000000000..47f132285
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000610.html
@@ -0,0 +1,94 @@
+<!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=%3CAANLkTinL2fAZ88VWhQfXYLc6j%3DtzXiYhGh9JU3gK28nY%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="000609.html">
+ <LINK REL="Next" HREF="000619.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=%3CAANLkTinL2fAZ88VWhQfXYLc6j%3DtzXiYhGh9JU3gK28nY%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 30 19:19:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000609.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000619.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#610">[ date ]</a>
+ <a href="thread.html#610">[ thread ]</a>
+ <a href="subject.html#610">[ subject ]</a>
+ <a href="author.html#610">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/30 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i> Le 30/03/2011 17:12, Rapha&#235;l Jadot a &#233;crit :
+</I>&gt;&gt;<i> 2011/3/30 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;:
+</I>&gt;&gt;&gt;<i> I agree to the necessity of good communication between
+</I>&gt;&gt;&gt;<i> moderators/admins. I also suggested to have a hidden moderator/admin
+</I>&gt;&gt;&gt;<i> forum where all moderators and admins can share their experiences,
+</I>&gt;&gt;&gt;<i> discuss certain issues, and even exchange names of users who popped up
+</I>&gt;&gt;&gt;<i> in a positive or negative way.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> In fact it already exist (moderation under &quot;mageia forums&quot;), but if
+</I>&gt;&gt;<i> you ask for it, then you certainly don't see it.
+</I>&gt;&gt;<i>
+</I>&gt;<i> :)
+</I>&gt;<i>
+</I>&gt;&gt;<i> Mmm looking for it, maybe permissions are not correctly applied to this forum
+</I>&gt;&gt;<i>
+</I>&gt;<i> Nope fort this part ACL are correctly defined
+</I>&gt;<i>
+</I>&gt;<i> This forum is only designed to be used by &quot;global moderators&quot; the we usually call &quot;moderators&quot;
+</I>&gt;<i>
+</I>&gt;<i> (Other groups may have partial moderation rights enabled so that everybody's life is easier... for example translators on the forum dedicated to packaging and translating can edit posts or topic so that they have the right to mark a topic as [resolved]&quot; but this is not something that make them moderators)
+</I>
+So either I was not added to the right group or the permission system
+as you proposed in the initial setup is not consistent. At the moment
+I am totally lost when it comes to
+ - what my task is
+ - what I am allowed to do
+ - where I have access and where not
+
+We had this discussion before, where I laid out my view. I did not
+expect that the discussion was over:
+<A HREF="https://www.mageia.org/pipermail/mageia-webteam/2011-March/000559.html">https://www.mageia.org/pipermail/mageia-webteam/2011-March/000559.html</A>
+(and previous postings in that thread)
+
+--
+wobo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000609.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000619.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#610">[ date ]</a>
+ <a href="thread.html#610">[ thread ]</a>
+ <a href="subject.html#610">[ subject ]</a>
+ <a href="author.html#610">[ 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-March/000611.html b/zarb-ml/mageia-webteam/2011-March/000611.html
new file mode 100644
index 000000000..22e12ec6c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000611.html
@@ -0,0 +1,93 @@
+<!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%20been%0A%09made&In-Reply-To=%3CAANLkTimOsjcoXvLnw_pdAAXwjGw-TziKDu077Hy38vNv%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="000620.html">
+ <LINK REL="Next" HREF="000612.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Forum] Fwd: A request to join your group has been made</H1>
+ <B>Wolfgang Bornath</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%20been%0A%09made&In-Reply-To=%3CAANLkTimOsjcoXvLnw_pdAAXwjGw-TziKDu077Hy38vNv%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Forum] Fwd: A request to join your group has been made">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 30 19:58:48 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000620.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000612.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#611">[ date ]</a>
+ <a href="thread.html#611">[ thread ]</a>
+ <a href="subject.html#611">[ subject ]</a>
+ <a href="author.html#611">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>This is a typical case which shows that the system can not work like this.
+
+1. What are the criteriae for the &quot;translator group&quot;?
+2. Who is &quot;dglent&quot; - no contact address or whatever is given so I
+can't even ask who he is.
+
+As I pointed out before, &quot;Translators&quot; are listed as moderators in the
+forum, it was said before that moderators are not a grouop somebody
+applies to but people who are picked and asked by existing moderators,
+depending on their performance in the forum or elsewhere.
+
+We need to fix such open questions before we start anything like this.
+
+wobo
+
+---------- Forwarded message ----------
+From: &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-forumadmin at vilarem.net</A>&gt;
+Date: 2011/3/30
+Subject: A request to join your group has been made
+To: wobo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;
+
+
+Dear wobo,
+
+The user &quot;dglent&quot; has requested to join the group &quot;Mageia Translators&quot; you
+moderate on &quot;Mageia forum&quot;.
+To approve or deny this request for group membership please visit the
+following link:
+
+<A HREF="https://forums.mageia.org/en/ucp.php?i=groups&amp;mode=manage&amp;action=list&amp;g=10">https://forums.mageia.org/en/ucp.php?i=groups&amp;mode=manage&amp;action=list&amp;g=10</A>
+
+--
+--
+Thanks, the Mageia Forums Team
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000620.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000612.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#611">[ date ]</a>
+ <a href="thread.html#611">[ thread ]</a>
+ <a href="subject.html#611">[ subject ]</a>
+ <a href="author.html#611">[ 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-March/000612.html b/zarb-ml/mageia-webteam/2011-March/000612.html
new file mode 100644
index 000000000..7733620c4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000612.html
@@ -0,0 +1,89 @@
+<!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=%3CAANLkTing8J1A1_Wt83FCHj0uvSYnGuWbA8QoevXpwDJm%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="000611.html">
+ <LINK REL="Next" HREF="000614.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Forum] Fwd: A request to join your group has been made</H1>
+ <B>Kosmas Chatzimichalis</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=%3CAANLkTing8J1A1_Wt83FCHj0uvSYnGuWbA8QoevXpwDJm%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Forum] Fwd: A request to join your group has been made">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Mar 30 21:33:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000611.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000614.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#612">[ date ]</a>
+ <a href="thread.html#612">[ thread ]</a>
+ <a href="subject.html#612">[ subject ]</a>
+ <a href="author.html#612">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 30 March 2011 17:58, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+
+&gt;<i> This is a typical case which shows that the system can not work like this.
+</I>&gt;<i>
+</I>&gt;<i> 1. What are the criteriae for the &quot;translator group&quot;?
+</I>&gt;<i> 2. Who is &quot;dglent&quot; - no contact address or whatever is given so I
+</I>&gt;<i> can't even ask who he is.
+</I>&gt;<i>
+</I>&gt;<i> As I pointed out before, &quot;Translators&quot; are listed as moderators in the
+</I>&gt;<i> forum, it was said before that moderators are not a grouop somebody
+</I>&gt;<i> applies to but people who are picked and asked by existing moderators,
+</I>&gt;<i> depending on their performance in the forum or elsewhere.
+</I>&gt;<i>
+</I>&gt;<i> We need to fix such open questions before we start anything like this.
+</I>&gt;<i>
+</I>&gt;<i> wobo
+</I>&gt;<i>
+</I>
+wobo,
+
+dglent is Dimitrios Glentadakis, which is very active in the Greek
+translation,which I'm part of.
+
+Did he ask you to start a Greek forum by any chance?
+
+Kosmas
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110330/ac768177/attachment-0001.html&gt;
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000611.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000614.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#612">[ date ]</a>
+ <a href="thread.html#612">[ thread ]</a>
+ <a href="subject.html#612">[ subject ]</a>
+ <a href="author.html#612">[ 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-March/000613.html b/zarb-ml/mageia-webteam/2011-March/000613.html
new file mode 100644
index 000000000..3b4f4646c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000613.html
@@ -0,0 +1,104 @@
+<!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%09been%20made&In-Reply-To=%3C9797F200-9F17-4759-B4ED-479FB7833C5F%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000614.html">
+ <LINK REL="Next" HREF="000615.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Forum] Fwd: A request to join your group has been made</H1>
+ <B>Pascal</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%09been%20made&In-Reply-To=%3C9797F200-9F17-4759-B4ED-479FB7833C5F%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>Wed Mar 30 22:13:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000614.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000615.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#613">[ date ]</a>
+ <a href="thread.html#613">[ thread ]</a>
+ <a href="subject.html#613">[ subject ]</a>
+ <a href="author.html#613">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>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 :
+
+&gt;<i> This is a typical case which shows that the system can not work like
+</I>&gt;<i> this.
+</I>&gt;<i>
+</I>
+I think here I have to respectfully disagree
+
+
+&gt;<i> 1. What are the criteriae for the &quot;translator group&quot;?
+</I>
+To be defined (by you as a leader of i18n team or by a common position
+defined after an open debate in the heresaid team)
+
+:<i>)
+</I>
+
+&gt;<i> 2. Who is &quot;dglent&quot; - no contact address or whatever is given so I
+</I>&gt;<i> can't even ask who he is.
+</I>
+Send him a private message :)
+
+
+&gt;<i>
+</I>&gt;<i> As I pointed out before, &quot;Translators&quot; are listed as moderators in the
+</I>&gt;<i> forum,
+</I>
+They are not (or they should not)
+
+If i left something that list phpbb groups as moderators for a given
+forum this is a bug that we need to fix
+
+
+&gt;<i> it was said before that moderators are not a grouop somebody
+</I>&gt;<i> applies to but people who are picked and asked by existing moderators,
+</I>&gt;<i> depending on their performance in the forum or elsewhere.
+</I>
+True
+
+&gt;<i> We need to fix such open questions before we start anything like this.
+</I>&gt;<i>
+</I>&gt;<i> wobo
+</I>&gt;<i>
+</I></PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000614.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000615.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#613">[ date ]</a>
+ <a href="thread.html#613">[ thread ]</a>
+ <a href="subject.html#613">[ subject ]</a>
+ <a href="author.html#613">[ 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-March/000614.html b/zarb-ml/mageia-webteam/2011-March/000614.html
new file mode 100644
index 000000000..ab874d43a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000614.html
@@ -0,0 +1,73 @@
+<!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=%3CAANLkTim%3DqvOUO__T8cmtys0sCbGzv9K7tHAnfC8N4cXh%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="000612.html">
+ <LINK REL="Next" HREF="000613.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Forum] Fwd: A request to join your group has been made</H1>
+ <B>Wolfgang Bornath</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=%3CAANLkTim%3DqvOUO__T8cmtys0sCbGzv9K7tHAnfC8N4cXh%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Forum] Fwd: A request to join your group has been made">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 30 22:30:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000612.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000613.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#614">[ date ]</a>
+ <a href="thread.html#614">[ thread ]</a>
+ <a href="subject.html#614">[ subject ]</a>
+ <a href="author.html#614">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/30 Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt;:
+&gt;<i>
+</I>&gt;<i> wobo,
+</I>&gt;<i>
+</I>&gt;<i> dglent is Dimitrios Glentadakis, which is very active in the Greek
+</I>&gt;<i> translation,which I'm part of.
+</I>
+Ah, ok, I know him (his name), thx.
+
+&gt;<i> Did he ask you to start a Greek forum by any chance?
+</I>
+This is to be asked to the admins of the forum (maat, ash)
+
+--
+wobo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000612.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000613.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#614">[ date ]</a>
+ <a href="thread.html#614">[ thread ]</a>
+ <a href="subject.html#614">[ subject ]</a>
+ <a href="author.html#614">[ 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-March/000615.html b/zarb-ml/mageia-webteam/2011-March/000615.html
new file mode 100644
index 000000000..eabe9b42c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000615.html
@@ -0,0 +1,90 @@
+<!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=%3CAANLkTinj%3DhXqaYuqzpZ1vYnEWJEpu%3DuPmcdrAe%3DDw2hm%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="000613.html">
+ <LINK REL="Next" HREF="000617.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Forum] Fwd: A request to join your group has been made</H1>
+ <B>Wolfgang Bornath</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=%3CAANLkTinj%3DhXqaYuqzpZ1vYnEWJEpu%3DuPmcdrAe%3DDw2hm%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Forum] Fwd: A request to join your group has been made">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed Mar 30 22:37:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000613.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000617.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#615">[ date ]</a>
+ <a href="thread.html#615">[ thread ]</a>
+ <a href="subject.html#615">[ subject ]</a>
+ <a href="author.html#615">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/30 Pascal &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&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;<i>
+</I>&gt;&gt;<i> 1. What are the criteriae for the &quot;translator group&quot;?
+</I>&gt;<i>
+</I>&gt;<i> To be defined (by you as a leader of i18n team or by a common position
+</I>&gt;<i> defined after an open debate in the heresaid team)
+</I>
+??? This has nothing to do with the i18n team, it's a forum group, to
+have some function in the forum.
+
+&gt;&gt;<i> As I pointed out before, &quot;Translators&quot; are listed as moderators in the
+</I>&gt;&gt;<i> forum,
+</I>&gt;<i>
+</I>&gt;<i> They are not (or they should not)
+</I>
+They were when I joined. If this is not the case any more, then what
+is the purpose for the translator group in the forum?
+As I said before, I'm quite confused, may be we both have completely
+different understandings of the &quot;groups&quot; in the forum.
+
+Could you elaborate about what you understand by
+
+ - group (what's the purpose of a group in the forum)
+ - moderators (what's their task if not &quot;moderating&quot;)
+
+Did you set &quot;moderators&quot; per forum or as &quot;global moderators&quot;?
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000613.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000617.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#615">[ date ]</a>
+ <a href="thread.html#615">[ thread ]</a>
+ <a href="subject.html#615">[ subject ]</a>
+ <a href="author.html#615">[ 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-March/000616.html b/zarb-ml/mageia-webteam/2011-March/000616.html
new file mode 100644
index 000000000..5ffa904a1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000616.html
@@ -0,0 +1,108 @@
+<!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=%3C20110330220002.D713E42D38%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="000618.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=%3C20110330220002.D713E42D38%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 31 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000618.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#616">[ date ]</a>
+ <a href="thread.html#616">[ thread ]</a>
+ <a href="subject.html#616">[ subject ]</a>
+ <a href="author.html#616">[ 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>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000618.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#616">[ date ]</a>
+ <a href="thread.html#616">[ thread ]</a>
+ <a href="subject.html#616">[ subject ]</a>
+ <a href="author.html#616">[ 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-March/000617.html b/zarb-ml/mageia-webteam/2011-March/000617.html
new file mode 100644
index 000000000..ab55ca192
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000617.html
@@ -0,0 +1,70 @@
+<!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%09been%20made&In-Reply-To=%3C201103310715.10477.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="000615.html">
+ <LINK REL="Next" HREF="000618.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Forum] Fwd: A request to join your group has been made</H1>
+ <B>Oliver Burger</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%09been%20made&In-Reply-To=%3C201103310715.10477.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] [Forum] Fwd: A request to join your group has been made">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu Mar 31 07:15:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000615.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000618.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#617">[ date ]</a>
+ <a href="thread.html#617">[ thread ]</a>
+ <a href="subject.html#617">[ subject ]</a>
+ <a href="author.html#617">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Am Mittwoch 30 M&#228;rz 2011, 19:58:48 schrieb Wolfgang Bornath:
+&gt;<i> 1. What are the criteriae for the &quot;translator group&quot;?
+</I>&gt;<i> 2. Who is &quot;dglent&quot; - no contact address or whatever is given so I
+</I>&gt;<i> can't even ask who he is.
+</I>He is one of the greek i18n commiters. That's why I added him to the group. Is
+this, how it's supposed to work?
+
+I can only support wobo. Is there any kind of policy for the forum? Please
+elaborate!
+
+Oliver
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000615.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000618.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#617">[ date ]</a>
+ <a href="thread.html#617">[ thread ]</a>
+ <a href="subject.html#617">[ subject ]</a>
+ <a href="author.html#617">[ 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-March/000618.html b/zarb-ml/mageia-webteam/2011-March/000618.html
new file mode 100644
index 000000000..7c8163e9d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000618.html
@@ -0,0 +1,81 @@
+<!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=%3CAANLkTi%3DMsfGJyxJREk6Xzj%2Bo6EAQL4Av4PuZ2an%2BgmRj%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="000617.html">
+ <LINK REL="Next" HREF="000616.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Forum] Fwd: A request to join your group has been made</H1>
+ <B>Wolfgang Bornath</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=%3CAANLkTi%3DMsfGJyxJREk6Xzj%2Bo6EAQL4Av4PuZ2an%2BgmRj%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Forum] Fwd: A request to join your group has been made">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Mar 31 12:18:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000617.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000616.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#618">[ date ]</a>
+ <a href="thread.html#618">[ thread ]</a>
+ <a href="subject.html#618">[ subject ]</a>
+ <a href="author.html#618">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/3/31 Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt;:
+&gt;<i> Am Mittwoch 30 M&#228;rz 2011, 19:58:48 schrieb Wolfgang Bornath:
+</I>&gt;&gt;<i> 1. What are the criteriae for the &quot;translator group&quot;?
+</I>&gt;&gt;<i> 2. Who is &quot;dglent&quot; - no contact address or whatever is given so I
+</I>&gt;&gt;<i> can't even ask who he is.
+</I>&gt;<i> He is one of the greek i18n commiters. That's why I added him to the group. Is
+</I>&gt;<i> this, how it's supposed to work?
+</I>
+Hmm, you added him to the group? So you can also add people to the
+group? That's ok with me, you know that. But I wonder why nobody told
+me that there's another group leader. Strange.
+
+I think we definitely need to talk about all this.
+
+&gt;<i> I can only support wobo. Is there any kind of policy for the forum? Please
+</I>&gt;<i> elaborate!
+</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="000617.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000616.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#618">[ date ]</a>
+ <a href="thread.html#618">[ thread ]</a>
+ <a href="subject.html#618">[ subject ]</a>
+ <a href="author.html#618">[ 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-March/000619.html b/zarb-ml/mageia-webteam/2011-March/000619.html
new file mode 100644
index 000000000..ad7474e43
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000619.html
@@ -0,0 +1,123 @@
+<!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=%3C1301569531.10310.133.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000610.html">
+ <LINK REL="Next" HREF="000620.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Michael Scherer</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=%3C1301569531.10310.133.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">misc at zarb.org
+ </A><BR>
+ <I>Thu Mar 31 13:05:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000610.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000620.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#619">[ date ]</a>
+ <a href="thread.html#619">[ thread ]</a>
+ <a href="subject.html#619">[ subject ]</a>
+ <a href="author.html#619">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 30 mars 2011 &#224; 18:08 +0200, Ma&#226;t a &#233;crit :
+&gt;<i> Le 30/03/2011 17:12, Rapha&#235;l Jadot a &#233;crit :
+</I>&gt;<i> &gt; 2011/3/30 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; I agree to the necessity of good communication between
+</I>&gt;<i> &gt;&gt; moderators/admins. I also suggested to have a hidden moderator/admin
+</I>&gt;<i> &gt;&gt; forum where all moderators and admins can share their experiences,
+</I>&gt;<i> &gt;&gt; discuss certain issues, and even exchange names of users who popped up
+</I>&gt;<i> &gt;&gt; in a positive or negative way.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; In fact it already exist (moderation under &quot;mageia forums&quot;), but if
+</I>&gt;<i> &gt; you ask for it, then you certainly don't see it.
+</I>&gt;<i> &gt;
+</I>&gt;<i> :)
+</I>&gt;<i>
+</I>&gt;<i> &gt; Mmm looking for it, maybe permissions are not correctly applied to this forum
+</I>&gt;<i> &gt;
+</I>&gt;<i> Nope fort this part ACL are correctly defined
+</I>&gt;<i>
+</I>&gt;<i> This forum is only designed to be used by &quot;global moderators&quot; the we usually call &quot;moderators&quot;
+</I>&gt;<i>
+</I>&gt;<i> (Other groups may have partial moderation rights enabled so that everybody's life is easier...
+</I>&gt;<i> for example translators on the forum dedicated to packaging and translating can edit posts or
+</I>&gt;<i> topic so that they have the right to mark a topic as [resolved]&quot; but this is not something
+</I>&gt;<i> that make them moderators)
+</I>
+I think that first, we need to make clear about what we talk, because
+the concept of group exist already outside of phpbb, and yet, we use the
+same word for both.
+
+( like founders in phpbb, that already exist outside and will confuse
+users ). So for the sake of proper communication, please be precise.
+
+The example of wobo and the translators group is exactly that.
+
+
+I would propose to have a organisation that's as simple as possible.
+
+- a group moderators for the whole forums ( ie all forums ), derived
+from some ldap group like forum-developers, used for general
+administration or stuff like that
+- moderators per forum instance ( in our case for english forum ),
+sorted in a phpbb group.
+- users ( ie everything else )
+
+If you want to have forums were people have some rights, then I would
+also prefer for the sake of simplicity of right managements to tie that
+with ldap groups.
+
+Ie, that when someone is promoted to become i18n commiters ( see i18n
+team organisation ), he then also receive the right on forum in the same
+way that this person receive right to commit to svn and to transifex.
+
+This way, we would not have the mess of tracking everything in several
+permissions databases, which in turn mean we will have a clearer
+documentation and view of the various capabilities of our users.
+
+And this also would help if we decide to vote, as epoll have ldap
+integration ( that is quite painful to use at the moment as we need to
+give all information again each time ). And this also make sure that
+there is no confusion about who decide for what. Ie, the i18n team is
+consistently managed.
+
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000610.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000620.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#619">[ date ]</a>
+ <a href="thread.html#619">[ thread ]</a>
+ <a href="subject.html#619">[ subject ]</a>
+ <a href="author.html#619">[ 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-March/000620.html b/zarb-ml/mageia-webteam/2011-March/000620.html
new file mode 100644
index 000000000..a45443451
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000620.html
@@ -0,0 +1,75 @@
+<!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=%3C201103311929.51764.maarten.vanraes%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000619.html">
+ <LINK REL="Next" HREF="000611.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Maarten Vanraes</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=%3C201103311929.51764.maarten.vanraes%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">maarten.vanraes at gmail.com
+ </A><BR>
+ <I>Thu Mar 31 19:29:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000619.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000611.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#620">[ date ]</a>
+ <a href="thread.html#620">[ thread ]</a>
+ <a href="subject.html#620">[ subject ]</a>
+ <a href="author.html#620">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op donderdag 31 maart 2011 13:05:31 schreef Michael Scherer:
+[...]
+&gt;<i> I would propose to have a organisation that's as simple as possible.
+</I>[...]
+&gt;<i> Ie, that when someone is promoted to become i18n commiters ( see i18n
+</I>&gt;<i> team organisation ), he then also receive the right on forum in the same
+</I>&gt;<i> way that this person receive right to commit to svn and to transifex.
+</I>&gt;<i>
+</I>&gt;<i> This way, we would not have the mess of tracking everything in several
+</I>&gt;<i> permissions databases, which in turn mean we will have a clearer
+</I>&gt;<i> documentation and view of the various capabilities of our users.
+</I>&gt;<i>
+</I>&gt;<i> And this also would help if we decide to vote, as epoll have ldap
+</I>&gt;<i> integration ( that is quite painful to use at the moment as we need to
+</I>&gt;<i> give all information again each time ). And this also make sure that
+</I>&gt;<i> there is no confusion about who decide for what. Ie, the i18n team is
+</I>&gt;<i> consistently managed.
+</I>
++1
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000619.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000611.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#620">[ date ]</a>
+ <a href="thread.html#620">[ thread ]</a>
+ <a href="subject.html#620">[ subject ]</a>
+ <a href="author.html#620">[ 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-March/000621.html b/zarb-ml/mageia-webteam/2011-March/000621.html
new file mode 100644
index 000000000..14a99b9ea
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/000621.html
@@ -0,0 +1,137 @@
+<!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=%3CAANLkTi%3Dmx%2BZtwzLPOyKJhgEjh2vcYn9sL-xdB7e9-VGF%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="000568.html">
+ <LINK REL="Next" HREF="000550.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forums structure : support catregory</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums%20structure%20%3A%20support%20catregory&In-Reply-To=%3CAANLkTi%3Dmx%2BZtwzLPOyKJhgEjh2vcYn9sL-xdB7e9-VGF%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Forums structure : support catregory">ahmadsamir3891 at gmail.com
+ </A><BR>
+ <I>Thu Mar 31 20:49:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000568.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000550.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#621">[ date ]</a>
+ <a href="thread.html#621">[ thread ]</a>
+ <a href="subject.html#621">[ subject ]</a>
+ <a href="author.html#621">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>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:
+&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;<i> Hi there,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> ahmad(78) and i have had a talk on irc about this part of the forum.
+</I>&gt;&gt;<i>
+</I>&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;<i>
+</I>&gt;&gt;<i> my first structure was just 2 forums :
+</I>&gt;&gt;<i> -- Basic support
+</I>&gt;&gt;<i> -- Advanced support
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> He pushed 3 forums :
+</I>&gt;&gt;<i> -- Software
+</I>&gt;&gt;<i> -- Printers and printing
+</I>&gt;&gt;<i> -- Networking
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Then i tried to use sub-forums under &quot;Basic support&quot; :
+</I>&gt;&gt;<i> -- Networking
+</I>&gt;&gt;<i> -- Video
+</I>&gt;&gt;<i> -- Sound
+</I>&gt;&gt;<i> -- Printers and printing
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> What do you think ?
+</I>&gt;<i>
+</I>&gt;<i> Here's my proposal (based on my usage of the mandriva forums previously, the
+</I>&gt;<i> English speaking section).
+</I>&gt;<i>
+</I>&gt;<i> I am not going to talk bout chat/lounge forums, only the support ones.
+</I>&gt;<i>
+</I>&gt;<i> IMHO, there should be:
+</I>&gt;<i>
+</I>&gt;<i> - Software
+</I>&gt;<i> &#160;o includes questions on software packages included in the repos (e.g.
+</I>&gt;<i> &#160; &#160;firefox-doesn't-work, kmail-takes-ages-to-get-my-mail, gnome-panel crashes
+</I>&gt;<i> &#160; &#160;at login... etc).
+</I>&gt;<i> &#160;o Installation problems
+</I>&gt;<i> &#160; &#160;o that includes installer problems (&quot;I don't know how to partition my HD&quot;,
+</I>&gt;<i> &#160; &#160; &#160;&quot;I don't know where to install the thing called &quot;bootloader&quot;&quot;... etc)
+</I>&gt;<i> &#160;N.B. &quot;Installation&quot; could be a separate forum or a sub-forum of Software.
+</I>&gt;<i>
+</I>&gt;<i> - General Hardware
+</I>&gt;<i> &#160;o Sound cards problems
+</I>&gt;<i> &#160;o Graphics cards and display problems
+</I>&gt;<i> &#160;o Hardware problems not covered by Networking and Printers forums
+</I>&gt;<i> &#160;I'd rather if these ^ forums weren't sub-forums, the posts can be mixed
+</I>&gt;<i> &#160;(judging by what I saw in the mdv forums, sound and graphics cards forums
+</I>&gt;<i> &#160; had low-medium traffic)
+</I>&gt;<i>
+</I>&gt;<i> - Networking
+</I>&gt;<i> &#160;o this is a forum where networking experts from the community can reside,
+</I>&gt;<i> &#160; &#160;anything to do with networking problems goes here, NIC chipsets problems,
+</I>&gt;<i> &#160; &#160;wifi problems (software and hardware), routers/switches. Given how much
+</I>&gt;<i> &#160; &#160;networking problems Linux has, this warrants a separate forum. There's such
+</I>&gt;<i> &#160; &#160;a forum in the mdv forums, and it was/is a great success since Germ created
+</I>&gt;<i> &#160; &#160;it.
+</I>&gt;<i>
+</I>&gt;<i> - Printers &amp; Printing
+</I>&gt;<i> &#160;o this is the forum where printing problems can posted; again given how much
+</I>&gt;<i> &#160; &#160;printing issues exist, this warrants a separate forum
+</I>&gt;<i>
+</I>&gt;<i> - Cauldron development:
+</I>&gt;<i> &#160;o this forum is dedicated to problems Cauldron users hit (ideally valid bugs
+</I>&gt;<i> &#160; &#160;should be redirected to bugzilla by the more experienced users).
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Personally, I am not in favour of the &quot;Basic&quot; and &quot;Advanced&quot; support layout...
+</I>&gt;<i> in the end it's all support, there can be a topic that has both basic
+</I>&gt;<i> and advanced debugging side by side.
+</I>&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> Ahmad Samir
+</I>&gt;<i>
+</I>
+Ping.
+
+(IMHO, structure changes, if any, should be done early on before the
+forums are heavily used....).
+
+--
+Ahmad Samir
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000568.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000550.html">[Mageia-webteam] 2011/week 12 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#621">[ date ]</a>
+ <a href="thread.html#621">[ thread ]</a>
+ <a href="subject.html#621">[ subject ]</a>
+ <a href="author.html#621">[ 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-March/author.html b/zarb-ml/mageia-webteam/2011-March/author.html
new file mode 100644
index 000000000..bcce7d106
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/author.html
@@ -0,0 +1,1222 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam March 2011 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>March 2011 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>Tue Mar 1 00:00:02 CET 2011</i><br>
+ <b>Ending:</b> <i>Thu Mar 31 20:49:19 CEST 2011</i><br>
+ <b>Messages:</b> 235<p>
+ <ul>
+
+<LI><A HREF="000511.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="511">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000588.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="588">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000589.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="589">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000435.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="435">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000437.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="437">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000526.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="526">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000528.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="528">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000533.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="533">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000535.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="535">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000542.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="542">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000548.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="548">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000549.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="549">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000555.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="555">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000557.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="557">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000559.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="559">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000603.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="603">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000606.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="606">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000608.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="608">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000610.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="610">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000611.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="611">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000614.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="614">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000615.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="615">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000618.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="618">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000592.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="592">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000396.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="396">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000404.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="404">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000405.html">[Mageia-webteam] Etherpad for collaborative work
+</A><A NAME="405">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000502.html">[Mageia-webteam] Forums
+</A><A NAME="502">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000551.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="551">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000563.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="563">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000617.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="617">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000390.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="390">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000393.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="393">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000403.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="403">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000420.html">[Mageia-webteam] Maintdb
+</A><A NAME="420">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000433.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="433">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000442.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="442">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000484.html">[Mageia-webteam] Maintdb
+</A><A NAME="484">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000486.html">[Mageia-webteam] Maintdb
+</A><A NAME="486">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000600.html">[Mageia-webteam] meeting today
+</A><A NAME="600">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000602.html">[Mageia-webteam] meeting today
+</A><A NAME="602">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000612.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="612">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000496.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A><A NAME="496">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="000497.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A><A NAME="497">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="000580.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A><A NAME="580">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="000449.html">[Mageia-webteam] You're invited to Dropbox!
+</A><A NAME="449">&nbsp;</A>
+<I>Dropbox
+</I>
+
+<LI><A HREF="000565.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="565">&nbsp;</A>
+<I>Frank Griffin
+</I>
+
+<LI><A HREF="000582.html">[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs
+</A><A NAME="582">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000583.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="583">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000584.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="584">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000573.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A><A NAME="573">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="000605.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="605">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<LI><A HREF="000607.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="607">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<LI><A HREF="000407.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="407">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000416.html">[Mageia-webteam] Forums : nfrance machine
+</A><A NAME="416">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000475.html">[Mageia-webteam] Fwd: Re: Question de licence
+</A><A NAME="475">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000473.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="473">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000474.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="474">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000476.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="476">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000477.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="477">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000479.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="479">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000529.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="529">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000531.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="531">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000538.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="538">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000539.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="539">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000540.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="540">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000545.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="545">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000546.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="546">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000552.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="552">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000553.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="553">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000556.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="556">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000558.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="558">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000604.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="604">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000609.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="609">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000520.html">[Mageia-webteam] [Bug 467] Allow votes for bugzilla
+</A><A NAME="520">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000524.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="524">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000547.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="547">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000564.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="564">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000544.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="544">&nbsp;</A>
+<I>Er Palm
+</I>
+
+<LI><A HREF="000613.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="613">&nbsp;</A>
+<I>Pascal
+</I>
+
+<LI><A HREF="000523.html">[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="523">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000543.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="543">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000562.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="562">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000509.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="509">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000568.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="568">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000585.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="585">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000590.html">[Mageia-webteam] [Bug 591] [New] Test bug, please ignore
+</A><A NAME="590">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000591.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="591">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000593.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="593">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000596.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="596">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000597.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="597">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000621.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="621">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000389.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="389">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000391.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="391">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000432.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="432">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000490.html">[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="490">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000491.html">[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="491">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000512.html">[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website
+</A><A NAME="512">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000513.html">[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed
+</A><A NAME="513">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000514.html">[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft
+</A><A NAME="514">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000518.html">[Mageia-webteam] [Bug 465] [New] captcha is annoying
+</A><A NAME="518">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000554.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="554">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000569.html">[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page
+</A><A NAME="569">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000570.html">[Mageia-webteam] [Bug 544] [New] Cannot modify group
+</A><A NAME="570">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000571.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="571">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000619.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="619">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000398.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="398">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000411.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="411">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000424.html">[Mageia-webteam] Maintdb
+</A><A NAME="424">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000426.html">[Mageia-webteam] Maintdb
+</A><A NAME="426">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000506.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="506">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000507.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="507">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000620.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="620">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000395.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="395">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000402.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="402">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000413.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="413">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000575.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="575">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000519.html">[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla
+</A><A NAME="519">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<LI><A HREF="000388.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="388">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000397.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="397">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000406.html">[Mageia-webteam] Etherpad for collaborative work
+</A><A NAME="406">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000436.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="436">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000438.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="438">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000441.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="441">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000443.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="443">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000444.html">[Mageia-webteam] 2011/week 10 review
+</A><A NAME="444">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000448.html">[Mageia-webteam] 2011/week 10 review
+</A><A NAME="448">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000480.html">[Mageia-webteam] Maintdb
+</A><A NAME="480">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000481.html">[Mageia-webteam] Maintdb
+</A><A NAME="481">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000483.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="483">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000485.html">[Mageia-webteam] Maintdb
+</A><A NAME="485">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000487.html">[Mageia-webteam] Maintdb
+</A><A NAME="487">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000488.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="488">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000492.html">[Mageia-webteam] 2011/week 11 review
+</A><A NAME="492">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000494.html">[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="494">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000495.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="495">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000498.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A><A NAME="498">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000499.html">[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc
+</A><A NAME="499">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000500.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="500">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000504.html">[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin
+</A><A NAME="504">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000505.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A><A NAME="505">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000508.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="508">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000515.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="515">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000516.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A><A NAME="516">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000525.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="525">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000527.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="527">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000530.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="530">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000532.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="532">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000534.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="534">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000536.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="536">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000550.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="550">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000560.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="560">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000566.html">[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP
+</A><A NAME="566">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000576.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="576">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000586.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="586">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000587.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="587">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000595.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="595">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000598.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="598">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000599.html">[Mageia-webteam] website design update &amp; a few comments/tracks
+</A><A NAME="599">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000601.html">[Mageia-webteam] meeting today
+</A><A NAME="601">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000572.html">[Mageia-webteam] [Bug 546] [New] Cannot log into the forum
+</A><A NAME="572">&nbsp;</A>
+<I>isa dora
+</I>
+
+<LI><A HREF="000574.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A><A NAME="574">&nbsp;</A>
+<I>isa dora
+</I>
+
+<LI><A HREF="000387.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="387">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000392.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="392">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000394.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="394">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000399.html">[Mageia-webteam] [Bug 252] New: Authentication does not work with email address
+</A><A NAME="399">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000400.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="400">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000401.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="401">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000408.html">[Mageia-webteam] [Bug 257] [New:] test bugreport
+</A><A NAME="408">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000409.html">[Mageia-webteam] [Bug 257] test bugreport
+</A><A NAME="409">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000410.html">[Mageia-webteam] [Bug 257] test bugreport
+</A><A NAME="410">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000412.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="412">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000414.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="414">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000415.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="415">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000417.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="417">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000418.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="418">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000419.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="419">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000421.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="421">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000422.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="422">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000427.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="427">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000428.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="428">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000429.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="429">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000430.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="430">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000439.html">[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list
+</A><A NAME="439">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000445.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A><A NAME="445">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000446.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A><A NAME="446">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000447.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="447">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000450.html">[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components
+</A><A NAME="450">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000451.html">[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure
+</A><A NAME="451">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000452.html">[Mageia-webteam] [Bug 319] Wrong url for forums in the Components
+</A><A NAME="452">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000453.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="453">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000454.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="454">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000455.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="455">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000456.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="456">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000457.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="457">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000458.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="458">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000459.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="459">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000460.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="460">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000461.html">[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search
+</A><A NAME="461">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000462.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="462">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000463.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="463">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000464.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="464">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000465.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="465">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000466.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="466">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000467.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="467">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000468.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="468">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000469.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="469">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000470.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="470">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000471.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="471">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000472.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="472">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000478.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="478">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000482.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="482">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000489.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="489">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000493.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="493">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000501.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="501">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000510.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="510">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000517.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="517">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000521.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="521">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000522.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="522">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000537.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="537">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000561.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="561">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000567.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="567">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000577.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="577">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000578.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="578">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000579.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="579">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000581.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="581">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000594.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="594">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000616.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="616">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000503.html">[Mageia-webteam] Forums
+</A><A NAME="503">&nbsp;</A>
+<I>Anne nicolas
+</I>
+
+<LI><A HREF="000541.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="541">&nbsp;</A>
+<I>planas
+</I>
+
+<LI><A HREF="000423.html">[Mageia-webteam] Maintdb
+</A><A NAME="423">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000425.html">[Mageia-webteam] Maintdb
+</A><A NAME="425">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000431.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="431">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000434.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="434">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000440.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="440">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Mar 31 20:49:19 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Thu Mar 31 20:49:24 CEST 2011</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/2011-March/date.html b/zarb-ml/mageia-webteam/2011-March/date.html
new file mode 100644
index 000000000..a4a140a1a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/date.html
@@ -0,0 +1,1222 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam March 2011 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>March 2011 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>Tue Mar 1 00:00:02 CET 2011</i><br>
+ <b>Ending:</b> <i>Thu Mar 31 20:49:19 CEST 2011</i><br>
+ <b>Messages:</b> 235<p>
+ <ul>
+
+<LI><A HREF="000387.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="387">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000388.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="388">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000389.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="389">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000390.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="390">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000391.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="391">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000392.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="392">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000393.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="393">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000394.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="394">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000395.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="395">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000396.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="396">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000397.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="397">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000398.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="398">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000399.html">[Mageia-webteam] [Bug 252] New: Authentication does not work with email address
+</A><A NAME="399">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000400.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="400">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000401.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="401">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000402.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="402">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000403.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="403">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000404.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="404">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000405.html">[Mageia-webteam] Etherpad for collaborative work
+</A><A NAME="405">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000407.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="407">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000406.html">[Mageia-webteam] Etherpad for collaborative work
+</A><A NAME="406">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000408.html">[Mageia-webteam] [Bug 257] [New:] test bugreport
+</A><A NAME="408">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000409.html">[Mageia-webteam] [Bug 257] test bugreport
+</A><A NAME="409">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000410.html">[Mageia-webteam] [Bug 257] test bugreport
+</A><A NAME="410">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000411.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="411">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000412.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="412">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000413.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="413">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000414.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="414">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000415.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="415">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000416.html">[Mageia-webteam] Forums : nfrance machine
+</A><A NAME="416">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000417.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="417">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000418.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="418">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000419.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="419">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000420.html">[Mageia-webteam] Maintdb
+</A><A NAME="420">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000421.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="421">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000422.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="422">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000423.html">[Mageia-webteam] Maintdb
+</A><A NAME="423">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000424.html">[Mageia-webteam] Maintdb
+</A><A NAME="424">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000425.html">[Mageia-webteam] Maintdb
+</A><A NAME="425">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000426.html">[Mageia-webteam] Maintdb
+</A><A NAME="426">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000427.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="427">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000428.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="428">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000429.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="429">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000430.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="430">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000431.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="431">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000432.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="432">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000433.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="433">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000434.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="434">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000435.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="435">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000436.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="436">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000437.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="437">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000438.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="438">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000439.html">[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list
+</A><A NAME="439">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000440.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="440">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000441.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="441">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000442.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="442">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000443.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="443">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000444.html">[Mageia-webteam] 2011/week 10 review
+</A><A NAME="444">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000445.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A><A NAME="445">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000446.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A><A NAME="446">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000447.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="447">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000448.html">[Mageia-webteam] 2011/week 10 review
+</A><A NAME="448">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000449.html">[Mageia-webteam] You're invited to Dropbox!
+</A><A NAME="449">&nbsp;</A>
+<I>Dropbox
+</I>
+
+<LI><A HREF="000450.html">[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components
+</A><A NAME="450">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000451.html">[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure
+</A><A NAME="451">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000452.html">[Mageia-webteam] [Bug 319] Wrong url for forums in the Components
+</A><A NAME="452">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000453.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="453">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000454.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="454">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000455.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="455">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000456.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="456">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000457.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="457">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000458.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="458">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000459.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="459">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000460.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="460">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000461.html">[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search
+</A><A NAME="461">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000462.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="462">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000463.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="463">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000464.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="464">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000465.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="465">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000466.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="466">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000467.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="467">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000468.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="468">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000469.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="469">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000470.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="470">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000471.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="471">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000472.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="472">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000475.html">[Mageia-webteam] Fwd: Re: Question de licence
+</A><A NAME="475">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000473.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="473">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000474.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="474">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000476.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="476">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000477.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="477">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000478.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="478">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000479.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="479">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000480.html">[Mageia-webteam] Maintdb
+</A><A NAME="480">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000481.html">[Mageia-webteam] Maintdb
+</A><A NAME="481">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000482.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="482">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000483.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="483">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000484.html">[Mageia-webteam] Maintdb
+</A><A NAME="484">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000485.html">[Mageia-webteam] Maintdb
+</A><A NAME="485">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000486.html">[Mageia-webteam] Maintdb
+</A><A NAME="486">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000487.html">[Mageia-webteam] Maintdb
+</A><A NAME="487">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000488.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="488">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000489.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="489">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000490.html">[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="490">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000491.html">[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="491">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000492.html">[Mageia-webteam] 2011/week 11 review
+</A><A NAME="492">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000496.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A><A NAME="496">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="000493.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="493">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000494.html">[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="494">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000495.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="495">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000497.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A><A NAME="497">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="000580.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A><A NAME="580">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="000498.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A><A NAME="498">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000499.html">[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc
+</A><A NAME="499">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000500.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="500">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000501.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="501">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000502.html">[Mageia-webteam] Forums
+</A><A NAME="502">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000503.html">[Mageia-webteam] Forums
+</A><A NAME="503">&nbsp;</A>
+<I>Anne nicolas
+</I>
+
+<LI><A HREF="000504.html">[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin
+</A><A NAME="504">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000505.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A><A NAME="505">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000506.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="506">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000507.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="507">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000508.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="508">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000509.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="509">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000510.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="510">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000511.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="511">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000512.html">[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website
+</A><A NAME="512">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000513.html">[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed
+</A><A NAME="513">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000514.html">[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft
+</A><A NAME="514">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000515.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="515">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000516.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A><A NAME="516">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000517.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="517">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000518.html">[Mageia-webteam] [Bug 465] [New] captcha is annoying
+</A><A NAME="518">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000519.html">[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla
+</A><A NAME="519">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<LI><A HREF="000520.html">[Mageia-webteam] [Bug 467] Allow votes for bugzilla
+</A><A NAME="520">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000521.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="521">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000522.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="522">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000523.html">[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="523">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000524.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="524">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000525.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="525">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000526.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="526">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000527.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="527">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000528.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="528">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000529.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="529">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000530.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="530">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000531.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="531">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000532.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="532">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000533.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="533">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000534.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="534">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000535.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="535">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000536.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="536">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000537.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="537">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000538.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="538">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000539.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="539">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000540.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="540">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000541.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="541">&nbsp;</A>
+<I>planas
+</I>
+
+<LI><A HREF="000542.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="542">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000543.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="543">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000544.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="544">&nbsp;</A>
+<I>Er Palm
+</I>
+
+<LI><A HREF="000545.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="545">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000546.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="546">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000547.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="547">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000548.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="548">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000549.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="549">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000550.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="550">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000551.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="551">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000552.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="552">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000553.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="553">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000554.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="554">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000555.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="555">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000556.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="556">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000557.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="557">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000558.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="558">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000559.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="559">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000560.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="560">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000561.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="561">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000562.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="562">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000563.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="563">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000564.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="564">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000565.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="565">&nbsp;</A>
+<I>Frank Griffin
+</I>
+
+<LI><A HREF="000566.html">[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP
+</A><A NAME="566">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000567.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="567">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000568.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="568">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000569.html">[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page
+</A><A NAME="569">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000570.html">[Mageia-webteam] [Bug 544] [New] Cannot modify group
+</A><A NAME="570">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000571.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="571">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000572.html">[Mageia-webteam] [Bug 546] [New] Cannot log into the forum
+</A><A NAME="572">&nbsp;</A>
+<I>isa dora
+</I>
+
+<LI><A HREF="000573.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A><A NAME="573">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="000574.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A><A NAME="574">&nbsp;</A>
+<I>isa dora
+</I>
+
+<LI><A HREF="000575.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="575">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000576.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="576">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000577.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="577">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000578.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="578">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000579.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="579">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000581.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="581">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000582.html">[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs
+</A><A NAME="582">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000583.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="583">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000584.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="584">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000585.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="585">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000586.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="586">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000587.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="587">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000588.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="588">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000589.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="589">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000590.html">[Mageia-webteam] [Bug 591] [New] Test bug, please ignore
+</A><A NAME="590">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000591.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="591">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000592.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="592">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000593.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="593">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000594.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="594">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000595.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="595">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000596.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="596">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000597.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="597">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000598.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="598">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000599.html">[Mageia-webteam] website design update &amp; a few comments/tracks
+</A><A NAME="599">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000600.html">[Mageia-webteam] meeting today
+</A><A NAME="600">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000601.html">[Mageia-webteam] meeting today
+</A><A NAME="601">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000602.html">[Mageia-webteam] meeting today
+</A><A NAME="602">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000603.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="603">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000604.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="604">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000605.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="605">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<LI><A HREF="000606.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="606">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000607.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="607">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<LI><A HREF="000608.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="608">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000609.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="609">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000610.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="610">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000611.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="611">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000612.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="612">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000613.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="613">&nbsp;</A>
+<I>Pascal
+</I>
+
+<LI><A HREF="000614.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="614">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000615.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="615">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000616.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="616">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000617.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="617">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000618.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="618">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000619.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="619">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000620.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="620">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000621.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="621">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Mar 31 20:49:19 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Thu Mar 31 20:49:24 CEST 2011</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/2011-March/index.html b/zarb-ml/mageia-webteam/2011-March/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-March/subject.html b/zarb-ml/mageia-webteam/2011-March/subject.html
new file mode 100644
index 000000000..e5896aa00
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/subject.html
@@ -0,0 +1,1222 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam March 2011 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>March 2011 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>Tue Mar 1 00:00:02 CET 2011</i><br>
+ <b>Ending:</b> <i>Thu Mar 31 20:49:19 CEST 2011</i><br>
+ <b>Messages:</b> 235<p>
+ <ul>
+
+<LI><A HREF="000388.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="388">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000389.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="389">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000390.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="390">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000391.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="391">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000393.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="393">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000395.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="395">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000396.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="396">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000397.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="397">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000398.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="398">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000402.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="402">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000403.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="403">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000404.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="404">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000407.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="407">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000411.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="411">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000413.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="413">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000444.html">[Mageia-webteam] 2011/week 10 review
+</A><A NAME="444">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000448.html">[Mageia-webteam] 2011/week 10 review
+</A><A NAME="448">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000492.html">[Mageia-webteam] 2011/week 11 review
+</A><A NAME="492">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000550.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="550">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000551.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="551">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000560.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="560">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000563.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="563">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000401.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="401">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000399.html">[Mageia-webteam] [Bug 252] New: Authentication does not work with email address
+</A><A NAME="399">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000408.html">[Mageia-webteam] [Bug 257] [New:] test bugreport
+</A><A NAME="408">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000409.html">[Mageia-webteam] [Bug 257] test bugreport
+</A><A NAME="409">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000410.html">[Mageia-webteam] [Bug 257] test bugreport
+</A><A NAME="410">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000394.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="394">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000439.html">[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list
+</A><A NAME="439">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000445.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A><A NAME="445">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000446.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A><A NAME="446">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000450.html">[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components
+</A><A NAME="450">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000452.html">[Mageia-webteam] [Bug 319] Wrong url for forums in the Components
+</A><A NAME="452">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000451.html">[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure
+</A><A NAME="451">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000453.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="453">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000454.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="454">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000456.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="456">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000457.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="457">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000458.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="458">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000459.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="459">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000461.html">[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search
+</A><A NAME="461">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000462.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="462">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000463.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="463">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000465.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="465">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000466.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="466">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000467.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="467">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000469.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="469">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000470.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="470">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000490.html">[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="490">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000491.html">[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="491">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000494.html">[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="494">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000495.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="495">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000499.html">[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc
+</A><A NAME="499">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000500.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="500">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000504.html">[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin
+</A><A NAME="504">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000505.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A><A NAME="505">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000512.html">[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website
+</A><A NAME="512">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000516.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A><A NAME="516">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000513.html">[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed
+</A><A NAME="513">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000587.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="587">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000514.html">[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft
+</A><A NAME="514">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000515.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="515">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000518.html">[Mageia-webteam] [Bug 465] [New] captcha is annoying
+</A><A NAME="518">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000519.html">[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla
+</A><A NAME="519">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<LI><A HREF="000520.html">[Mageia-webteam] [Bug 467] Allow votes for bugzilla
+</A><A NAME="520">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000523.html">[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="523">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000524.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="524">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000525.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="525">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000543.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="543">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000544.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="544">&nbsp;</A>
+<I>Er Palm
+</I>
+
+<LI><A HREF="000547.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="547">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000554.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="554">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000562.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="562">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000564.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="564">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000565.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="565">&nbsp;</A>
+<I>Frank Griffin
+</I>
+
+<LI><A HREF="000566.html">[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP
+</A><A NAME="566">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000569.html">[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page
+</A><A NAME="569">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000570.html">[Mageia-webteam] [Bug 544] [New] Cannot modify group
+</A><A NAME="570">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000571.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="571">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000572.html">[Mageia-webteam] [Bug 546] [New] Cannot log into the forum
+</A><A NAME="572">&nbsp;</A>
+<I>isa dora
+</I>
+
+<LI><A HREF="000573.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A><A NAME="573">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="000574.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A><A NAME="574">&nbsp;</A>
+<I>isa dora
+</I>
+
+<LI><A HREF="000582.html">[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs
+</A><A NAME="582">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000583.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="583">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000584.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="584">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000585.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="585">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000588.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="588">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000589.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="589">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000591.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="591">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000592.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="592">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000590.html">[Mageia-webteam] [Bug 591] [New] Test bug, please ignore
+</A><A NAME="590">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000417.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="417">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000418.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="418">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000419.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="419">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000421.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="421">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000422.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="422">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000427.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="427">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000428.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="428">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000483.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="483">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000506.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="506">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000507.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="507">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000508.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="508">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000509.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="509">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000511.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="511">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000586.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="586">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000593.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="593">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000595.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="595">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000596.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="596">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000597.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="597">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000598.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="598">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000460.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="460">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000464.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="464">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000613.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="613">&nbsp;</A>
+<I>Pascal
+</I>
+
+<LI><A HREF="000617.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="617">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000611.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="611">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000612.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="612">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000614.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="614">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000615.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="615">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000618.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="618">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000473.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="473">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000474.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="474">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000476.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="476">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000477.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="477">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000479.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="479">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000405.html">[Mageia-webteam] Etherpad for collaborative work
+</A><A NAME="405">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000406.html">[Mageia-webteam] Etherpad for collaborative work
+</A><A NAME="406">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000502.html">[Mageia-webteam] Forums
+</A><A NAME="502">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000503.html">[Mageia-webteam] Forums
+</A><A NAME="503">&nbsp;</A>
+<I>Anne nicolas
+</I>
+
+<LI><A HREF="000416.html">[Mageia-webteam] Forums : nfrance machine
+</A><A NAME="416">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000538.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="538">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000541.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="541">&nbsp;</A>
+<I>planas
+</I>
+
+<LI><A HREF="000546.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="546">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000549.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="549">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000552.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="552">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000568.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="568">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000621.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="621">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000475.html">[Mageia-webteam] Fwd: Re: Question de licence
+</A><A NAME="475">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000435.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="435">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000436.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="436">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000437.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="437">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000488.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="488">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000575.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="575">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000576.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="576">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000420.html">[Mageia-webteam] Maintdb
+</A><A NAME="420">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000423.html">[Mageia-webteam] Maintdb
+</A><A NAME="423">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000424.html">[Mageia-webteam] Maintdb
+</A><A NAME="424">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000425.html">[Mageia-webteam] Maintdb
+</A><A NAME="425">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000426.html">[Mageia-webteam] Maintdb
+</A><A NAME="426">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000480.html">[Mageia-webteam] Maintdb
+</A><A NAME="480">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000481.html">[Mageia-webteam] Maintdb
+</A><A NAME="481">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000484.html">[Mageia-webteam] Maintdb
+</A><A NAME="484">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000485.html">[Mageia-webteam] Maintdb
+</A><A NAME="485">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000486.html">[Mageia-webteam] Maintdb
+</A><A NAME="486">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000487.html">[Mageia-webteam] Maintdb
+</A><A NAME="487">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000600.html">[Mageia-webteam] meeting today
+</A><A NAME="600">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000601.html">[Mageia-webteam] meeting today
+</A><A NAME="601">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000602.html">[Mageia-webteam] meeting today
+</A><A NAME="602">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000431.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="431">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000432.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="432">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000433.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="433">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000434.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="434">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000438.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="438">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000440.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="440">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000441.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="441">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000442.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="442">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000443.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="443">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000526.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="526">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000527.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="527">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000528.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="528">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000529.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="529">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000530.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="530">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000531.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="531">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000532.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="532">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000533.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="533">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000534.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="534">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000535.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="535">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000536.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="536">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000539.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="539">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000540.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="540">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000542.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="542">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000545.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="545">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000548.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="548">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000553.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="553">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000555.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="555">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000556.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="556">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000557.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="557">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000558.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="558">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000559.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="559">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000603.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="603">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000604.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="604">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000605.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="605">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<LI><A HREF="000606.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="606">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000607.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="607">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<LI><A HREF="000608.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="608">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000609.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="609">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="000610.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="610">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000619.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="619">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000620.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="620">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<LI><A HREF="000599.html">[Mageia-webteam] website design update &amp; a few comments/tracks
+</A><A NAME="599">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000497.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A><A NAME="497">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="000580.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A><A NAME="580">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="000496.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A><A NAME="496">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="000498.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A><A NAME="498">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000449.html">[Mageia-webteam] You're invited to Dropbox!
+</A><A NAME="449">&nbsp;</A>
+<I>Dropbox
+</I>
+
+<LI><A HREF="000387.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="387">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000392.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="392">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000400.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="400">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000412.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="412">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000414.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="414">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000415.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="415">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000429.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="429">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000430.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="430">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000447.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="447">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000455.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="455">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000468.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="468">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000471.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="471">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000472.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="472">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000478.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="478">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000482.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="482">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000489.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="489">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000493.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="493">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000501.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="501">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000510.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="510">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000517.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="517">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000521.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="521">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000522.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="522">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000537.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="537">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000561.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="561">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000567.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="567">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000577.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="577">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000578.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="578">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000579.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="579">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000581.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="581">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000594.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="594">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000616.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="616">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Mar 31 20:49:19 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Thu Mar 31 20:49:24 CEST 2011</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/2011-March/thread.html b/zarb-ml/mageia-webteam/2011-March/thread.html
new file mode 100644
index 000000000..d6aba1cf2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-March/thread.html
@@ -0,0 +1,1577 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam March 2011 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>March 2011 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>Tue Mar 1 00:00:02 CET 2011</i><br>
+ <b>Ending:</b> <i>Thu Mar 31 20:49:19 CEST 2011</i><br>
+ <b>Messages:</b> 235<p>
+ <ul>
+
+<!--0 01298934002- -->
+<LI><A HREF="000387.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="387">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01298980803- -->
+<LI><A HREF="000388.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="388">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01298980803-01298981998- -->
+<LI><A HREF="000389.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="389">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01298980803-01298981998-01298982354- -->
+<LI><A HREF="000390.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="390">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--3 01298980803-01298981998-01298982354-01298983562- -->
+<LI><A HREF="000391.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="391">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01298980803-01298981998-01298982354-01298983562-01299023406- -->
+<LI><A HREF="000393.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="393">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+</UL>
+</UL>
+<!--1 01298980803-01299063448- -->
+<LI><A HREF="000395.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="395">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<UL>
+<!--2 01298980803-01299063448-01299073121- -->
+<LI><A HREF="000396.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="396">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--3 01298980803-01299063448-01299073121-01299076739- -->
+<LI><A HREF="000397.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="397">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--2 01298980803-01299063448-01299085518- -->
+<LI><A HREF="000398.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="398">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<UL>
+<!--3 01298980803-01299063448-01299085518-01299143408- -->
+<LI><A HREF="000402.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="402">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--3 01298980803-01299063448-01299085518-01299143408-01299143646- -->
+<LI><A HREF="000403.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="403">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01298980803-01299063448-01299085518-01299143408-01299144764- -->
+<LI><A HREF="000404.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="404">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--3 01298980803-01299063448-01299085518-01299143408-01299162320- -->
+<LI><A HREF="000407.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="407">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01298980803-01299063448-01299085518-01299143408-01299183363- -->
+<LI><A HREF="000411.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="411">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--3 01298980803-01299063448-01299085518-01299143408-01299183363-01299227103- -->
+<LI><A HREF="000413.html">[Mageia-webteam] 2011, week 9 review
+</A><A NAME="413">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01299020404- -->
+<LI><A HREF="000392.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="392">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299060650- -->
+<LI><A HREF="000394.html">[Mageia-webteam] [Bug 25] On the german registry at Mageia identica there are 2 fields for the name, the first should mean &quot;Vorname&quot; and the second one &quot;Nachname&quot;, in both fields stands &quot;Nachname&quot;
+</A><A NAME="394">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299090099- -->
+<LI><A HREF="000399.html">[Mageia-webteam] [Bug 252] New: Authentication does not work with email address
+</A><A NAME="399">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01299090099-01299142084- -->
+<LI><A HREF="000401.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="401">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01299106802- -->
+<LI><A HREF="000400.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="400">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299154620- -->
+<LI><A HREF="000405.html">[Mageia-webteam] Etherpad for collaborative work
+</A><A NAME="405">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01299154620-01299163019- -->
+<LI><A HREF="000406.html">[Mageia-webteam] Etherpad for collaborative work
+</A><A NAME="406">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01299172403- -->
+<LI><A HREF="000408.html">[Mageia-webteam] [Bug 257] [New:] test bugreport
+</A><A NAME="408">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01299172403-01299172734- -->
+<LI><A HREF="000409.html">[Mageia-webteam] [Bug 257] test bugreport
+</A><A NAME="409">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299172403-01299175323- -->
+<LI><A HREF="000410.html">[Mageia-webteam] [Bug 257] test bugreport
+</A><A NAME="410">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01299193202- -->
+<LI><A HREF="000412.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="412">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299279602- -->
+<LI><A HREF="000414.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="414">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299366002- -->
+<LI><A HREF="000415.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="415">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299366706- -->
+<LI><A HREF="000416.html">[Mageia-webteam] Forums : nfrance machine
+</A><A NAME="416">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--0 01299402668- -->
+<LI><A HREF="000417.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="417">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299415289- -->
+<LI><A HREF="000418.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="418">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299415959- -->
+<LI><A HREF="000419.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="419">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299416295- -->
+<LI><A HREF="000420.html">[Mageia-webteam] Maintdb
+</A><A NAME="420">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--1 01299416295-01299421768- -->
+<LI><A HREF="000423.html">[Mageia-webteam] Maintdb
+</A><A NAME="423">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<!--1 01299416295-01299422536- -->
+<LI><A HREF="000424.html">[Mageia-webteam] Maintdb
+</A><A NAME="424">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<UL>
+<!--2 01299416295-01299422536-01299424735- -->
+<LI><A HREF="000425.html">[Mageia-webteam] Maintdb
+</A><A NAME="425">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<UL>
+<!--3 01299416295-01299422536-01299424735-01299431791- -->
+<LI><A HREF="000426.html">[Mageia-webteam] Maintdb
+</A><A NAME="426">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--3 01299416295-01299422536-01299424735-01299431791-01300126796- -->
+<LI><A HREF="000480.html">[Mageia-webteam] Maintdb
+</A><A NAME="480">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01299416295-01299422536-01299424735-01299431791-01300126796-01300140022- -->
+<LI><A HREF="000481.html">[Mageia-webteam] Maintdb
+</A><A NAME="481">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01299416295-01299422536-01299424735-01299431791-01300126796-01300140022-01300147326- -->
+<LI><A HREF="000484.html">[Mageia-webteam] Maintdb
+</A><A NAME="484">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01299416295-01299422536-01299424735-01299431791-01300126796-01300140022-01300147326-01300180461- -->
+<LI><A HREF="000485.html">[Mageia-webteam] Maintdb
+</A><A NAME="485">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01299416295-01299422536-01299424735-01299431791-01300126796-01300140022-01300147326-01300180461-01300181131- -->
+<LI><A HREF="000486.html">[Mageia-webteam] Maintdb
+</A><A NAME="486">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01299416295-01299422536-01299424735-01299431791-01300126796-01300140022-01300147326-01300180461-01300181131-01300181393- -->
+<LI><A HREF="000487.html">[Mageia-webteam] Maintdb
+</A><A NAME="487">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01299421519- -->
+<LI><A HREF="000421.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="421">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299421604- -->
+<LI><A HREF="000422.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="422">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299435145- -->
+<LI><A HREF="000427.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="427">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299437504- -->
+<LI><A HREF="000428.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="428">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299452402- -->
+<LI><A HREF="000429.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="429">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299538803- -->
+<LI><A HREF="000430.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="430">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299552791- -->
+<LI><A HREF="000431.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="431">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<UL>
+<!--1 01299552791-01299574095- -->
+<LI><A HREF="000432.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="432">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--2 01299552791-01299574095-01299578648- -->
+<LI><A HREF="000433.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="433">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--2 01299552791-01299574095-01299586430- -->
+<LI><A HREF="000434.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="434">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<UL>
+<!--3 01299552791-01299574095-01299586430-01299596137- -->
+<LI><A HREF="000438.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="438">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01299552791-01299574095-01299586430-01299596137-01299599645- -->
+<LI><A HREF="000440.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="440">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<!--3 01299552791-01299574095-01299586430-01299596137-01299599645-01299600439- -->
+<LI><A HREF="000441.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="441">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01299552791-01299574095-01299586430-01299596137-01299599645-01299600439-01299600831- -->
+<LI><A HREF="000442.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="442">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01299552791-01299574095-01299586430-01299596137-01299599645-01299600439-01299600831-01299601188- -->
+<LI><A HREF="000443.html">[Mageia-webteam] Proposal for maintainers database API
+</A><A NAME="443">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01299586970- -->
+<LI><A HREF="000435.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="435">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--1 01299586970-01299590253- -->
+<LI><A HREF="000436.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="436">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01299586970-01299590253-01299590710- -->
+<LI><A HREF="000437.html">[Mageia-webteam] Mageia Calendar
+</A><A NAME="437">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+</UL>
+<!--0 01299597926- -->
+<LI><A HREF="000439.html">[Mageia-webteam] [Bug 308] [New] There's no OLD in the Resolved statuses list
+</A><A NAME="439">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01299597926-01299617090- -->
+<LI><A HREF="000445.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A><A NAME="445">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299597926-01299617740- -->
+<LI><A HREF="000446.html">[Mageia-webteam] [Bug 308] There's no OLD in the Resolved statuses list
+</A><A NAME="446">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01299602786- -->
+<LI><A HREF="000444.html">[Mageia-webteam] 2011/week 10 review
+</A><A NAME="444">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01299602786-01299682737- -->
+<LI><A HREF="000448.html">[Mageia-webteam] 2011/week 10 review
+</A><A NAME="448">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01299625202- -->
+<LI><A HREF="000447.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="447">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299699124- -->
+<LI><A HREF="000449.html">[Mageia-webteam] You're invited to Dropbox!
+</A><A NAME="449">&nbsp;</A>
+<I>Dropbox
+</I>
+
+<!--0 01299699917- -->
+<LI><A HREF="000450.html">[Mageia-webteam] [Bug 319] [New] Wrong url for forums in the Components
+</A><A NAME="450">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01299699917-01299704526- -->
+<LI><A HREF="000452.html">[Mageia-webteam] [Bug 319] Wrong url for forums in the Components
+</A><A NAME="452">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01299700287- -->
+<LI><A HREF="000451.html">[Mageia-webteam] [Bug 320] [New] Missing component for infrastructure
+</A><A NAME="451">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01299700287-01299706993- -->
+<LI><A HREF="000453.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="453">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299700287-01299707531- -->
+<LI><A HREF="000454.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="454">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299700287-01299711805- -->
+<LI><A HREF="000456.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="456">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299700287-01299712663- -->
+<LI><A HREF="000457.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="457">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299700287-01299747088- -->
+<LI><A HREF="000458.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="458">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299700287-01299749556- -->
+<LI><A HREF="000459.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="459">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01299711602- -->
+<LI><A HREF="000455.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="455">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299771410- -->
+<LI><A HREF="000460.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="460">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299776600- -->
+<LI><A HREF="000461.html">[Mageia-webteam] [Bug 329] [New] Proposal: show resolved bugs in the search
+</A><A NAME="461">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<UL>
+<!--1 01299776600-01299776801- -->
+<LI><A HREF="000462.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="462">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299776600-01299777303- -->
+<LI><A HREF="000463.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="463">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299776600-01299796770- -->
+<LI><A HREF="000465.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="465">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299776600-01299796808- -->
+<LI><A HREF="000466.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="466">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299776600-01299797884- -->
+<LI><A HREF="000467.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="467">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299776600-01299799105- -->
+<LI><A HREF="000469.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="469">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--1 01299776600-01299873936- -->
+<LI><A HREF="000470.html">[Mageia-webteam] [Bug 329] Proposal: show resolved bugs in the search
+</A><A NAME="470">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+</UL>
+<!--0 01299784432- -->
+<LI><A HREF="000464.html">[Mageia-webteam] [Bug 92] Add your own favicon to bugs.mageia.org
+</A><A NAME="464">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299798002- -->
+<LI><A HREF="000468.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="468">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299884402- -->
+<LI><A HREF="000471.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="471">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01299970802- -->
+<LI><A HREF="000472.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="472">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300035730- -->
+<LI><A HREF="000475.html">[Mageia-webteam] Fwd: Re: Question de licence
+</A><A NAME="475">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--0 01300036963- -->
+<LI><A HREF="000473.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="473">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--1 01300036963-01300037621- -->
+<LI><A HREF="000474.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="474">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--2 01300036963-01300037621-01300037836- -->
+<LI><A HREF="000476.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="476">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+</UL>
+</UL>
+<!--0 01300045809- -->
+<LI><A HREF="000477.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="477">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--0 01300057203- -->
+<LI><A HREF="000478.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="478">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300097842- -->
+<LI><A HREF="000479.html">[Mageia-webteam] [Mageia-sysadm] Fwd: Re: Question de licence
+</A><A NAME="479">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--0 01300143602- -->
+<LI><A HREF="000482.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="482">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300144076- -->
+<LI><A HREF="000483.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="483">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01300187121- -->
+<LI><A HREF="000488.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="488">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01300187121-01301088468- -->
+<LI><A HREF="000575.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="575">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<UL>
+<!--2 01300187121-01301088468-01301089705- -->
+<LI><A HREF="000576.html">[Mageia-webteam] Mageia Web site(s)
+</A><A NAME="576">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+<!--0 01300230002- -->
+<LI><A HREF="000489.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="489">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300233455- -->
+<LI><A HREF="000490.html">[Mageia-webteam] [Bug 386] [New] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="490">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01300233735- -->
+<LI><A HREF="000491.html">[Mageia-webteam] [Bug 387] [New] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="491">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01300289346- -->
+<LI><A HREF="000492.html">[Mageia-webteam] 2011/week 11 review
+</A><A NAME="492">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01300298082- -->
+<LI><A HREF="000496.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A><A NAME="496">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<UL>
+<!--1 01300298082-01300368731- -->
+<LI><A HREF="000498.html">[Mageia-webteam] wrong adress for errata on mageia Alpha page
+</A><A NAME="498">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01300316402- -->
+<LI><A HREF="000493.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="493">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300362989- -->
+<LI><A HREF="000494.html">[Mageia-webteam] [Bug 415] [New] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="494">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01300362989-01300363069- -->
+<LI><A HREF="000495.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="495">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01300364026- -->
+<LI><A HREF="000497.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A><A NAME="497">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<UL>
+<!--1 01300364026-01300366232- -->
+<LI><A HREF="000580.html">[Mageia-webteam] wrong address in the link to errata on Mageia Alpha page
+</A><A NAME="580">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+</UL>
+<!--0 01300372361- -->
+<LI><A HREF="000499.html">[Mageia-webteam] [Bug 419] [New] Define, discuss and implement website(s) direction doc
+</A><A NAME="499">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01300372361-01300372457- -->
+<LI><A HREF="000500.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="500">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01300402803- -->
+<LI><A HREF="000501.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="501">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300433417- -->
+<LI><A HREF="000502.html">[Mageia-webteam] Forums
+</A><A NAME="502">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01300433417-01300434531- -->
+<LI><A HREF="000503.html">[Mageia-webteam] Forums
+</A><A NAME="503">&nbsp;</A>
+<I>Anne nicolas
+</I>
+
+</UL>
+<!--0 01300464412- -->
+<LI><A HREF="000504.html">[Mageia-webteam] [Bug 434] [New] Use email as a contact/id for mirror admin
+</A><A NAME="504">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01300464412-01300464438- -->
+<LI><A HREF="000505.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A><A NAME="505">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01300476170- -->
+<LI><A HREF="000506.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="506">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--0 01300476182- -->
+<LI><A HREF="000507.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="507">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+<!--0 01300487328- -->
+<LI><A HREF="000508.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="508">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01300487394- -->
+<LI><A HREF="000509.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="509">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01300489202- -->
+<LI><A HREF="000510.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="510">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300489941- -->
+<LI><A HREF="000511.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="511">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01300537447- -->
+<LI><A HREF="000512.html">[Mageia-webteam] [Bug 450] [New] No link to accounting report or status on the website
+</A><A NAME="512">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01300537447-01300540943- -->
+<LI><A HREF="000516.html">[Mageia-webteam] [Bug 450] No link to accounting report or status on the website
+</A><A NAME="516">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01300537624- -->
+<LI><A HREF="000513.html">[Mageia-webteam] [Bug 451] [New] FAQ should be refreshed
+</A><A NAME="513">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01300537624-01301414982- -->
+<LI><A HREF="000587.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="587">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01300538314- -->
+<LI><A HREF="000514.html">[Mageia-webteam] [Bug 452] [New] Privacy policy is still a draft
+</A><A NAME="514">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01300538314-01300540391- -->
+<LI><A HREF="000515.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="515">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01300575602- -->
+<LI><A HREF="000517.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="517">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300619236- -->
+<LI><A HREF="000518.html">[Mageia-webteam] [Bug 465] [New] captcha is annoying
+</A><A NAME="518">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01300622491- -->
+<LI><A HREF="000519.html">[Mageia-webteam] [Bug 467] [New] Allow votes for bugzilla
+</A><A NAME="519">&nbsp;</A>
+<I>Lucien XU
+</I>
+
+<UL>
+<!--1 01300622491-01300622671- -->
+<LI><A HREF="000520.html">[Mageia-webteam] [Bug 467] Allow votes for bugzilla
+</A><A NAME="520">&nbsp;</A>
+<I>D Morgan
+</I>
+
+</UL>
+<!--0 01300662002- -->
+<LI><A HREF="000521.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="521">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300748402- -->
+<LI><A HREF="000522.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="522">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300765889- -->
+<LI><A HREF="000523.html">[Mageia-webteam] [Bug 492] [New] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="523">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<UL>
+<!--1 01300765889-01300780431- -->
+<LI><A HREF="000524.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="524">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--1 01300765889-01300784011- -->
+<LI><A HREF="000525.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="525">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01300765889-01300852621- -->
+<LI><A HREF="000543.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="543">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<!--1 01300765889-01300853703- -->
+<LI><A HREF="000544.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="544">&nbsp;</A>
+<I>Er Palm
+</I>
+
+<!--1 01300765889-01300867088- -->
+<LI><A HREF="000547.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="547">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--1 01300765889-01300874338- -->
+<LI><A HREF="000554.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="554">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01300765889-01300935053- -->
+<LI><A HREF="000562.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="562">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<!--1 01300765889-01300952413- -->
+<LI><A HREF="000564.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="564">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--1 01300765889-01300962708- -->
+<LI><A HREF="000565.html">[Mageia-webteam] [Bug 492] Logging in to bugzilla isn't possible for existing or just created account
+</A><A NAME="565">&nbsp;</A>
+<I>Frank Griffin
+</I>
+
+</UL>
+<!--0 01300808594- -->
+<LI><A HREF="000526.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="526">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--1 01300808594-01300809473- -->
+<LI><A HREF="000527.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="527">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01300808594-01300809473-01300810035- -->
+<LI><A HREF="000528.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="528">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--3 01300808594-01300809473-01300810035-01300815275- -->
+<LI><A HREF="000534.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="534">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944- -->
+<LI><A HREF="000535.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="535">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300817546- -->
+<LI><A HREF="000536.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="536">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300817546-01300840332- -->
+<LI><A HREF="000540.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="540">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106- -->
+<LI><A HREF="000539.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="539">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106-01300847528- -->
+<LI><A HREF="000542.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="542">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106-01300847528-01300862784- -->
+<LI><A HREF="000545.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="545">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106-01300847528-01300862784-01300869097- -->
+<LI><A HREF="000548.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="548">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106-01300847528-01300862784-01300869097-01300872358- -->
+<LI><A HREF="000553.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="553">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106-01300847528-01300862784-01300869097-01300872358-01300876437- -->
+<LI><A HREF="000555.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="555">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106-01300847528-01300862784-01300869097-01300872358-01300876437-01300877235- -->
+<LI><A HREF="000556.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="556">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106-01300847528-01300862784-01300869097-01300872358-01300876437-01300877235-01300877521- -->
+<LI><A HREF="000557.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="557">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106-01300847528-01300862784-01300869097-01300872358-01300876437-01300877235-01300877521-01300878246- -->
+<LI><A HREF="000558.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="558">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01300808594-01300809473-01300810035-01300815275-01300816944-01300838106-01300847528-01300862784-01300869097-01300872358-01300876437-01300877235-01300877521-01300878246-01300879576- -->
+<LI><A HREF="000559.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="559">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--2 01300808594-01300809473-01300811231- -->
+<LI><A HREF="000529.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="529">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--3 01300808594-01300809473-01300811231-01300811467- -->
+<LI><A HREF="000530.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="530">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01300808594-01300809473-01300811231-01300811467-01300811827- -->
+<LI><A HREF="000531.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="531">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01300808594-01300809473-01300811231-01300811467-01300811827-01300813702- -->
+<LI><A HREF="000532.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="532">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01300808594-01300809473-01300811231-01300814928- -->
+<LI><A HREF="000533.html">[Mageia-webteam] Questions about the forum
+</A><A NAME="533">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01300834802- -->
+<LI><A HREF="000537.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="537">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300836271- -->
+<LI><A HREF="000538.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="538">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--1 01300836271-01300846287- -->
+<LI><A HREF="000541.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="541">&nbsp;</A>
+<I>planas
+</I>
+
+<UL>
+<!--2 01300836271-01300846287-01300863605- -->
+<LI><A HREF="000546.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="546">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--3 01300836271-01300846287-01300863605-01300869512- -->
+<LI><A HREF="000549.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="549">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01300836271-01300846287-01300863605-01300869512-01300871785- -->
+<LI><A HREF="000552.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="552">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+</UL>
+</UL>
+<!--1 01300836271-01301026614- -->
+<LI><A HREF="000568.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="568">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<UL>
+<!--2 01300836271-01301026614-01301597359- -->
+<LI><A HREF="000621.html">[Mageia-webteam] Forums structure : support catregory
+</A><A NAME="621">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+</UL>
+</UL>
+<!--0 01300870436- -->
+<LI><A HREF="000550.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="550">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01300870436-01300870768- -->
+<LI><A HREF="000551.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="551">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--2 01300870436-01300870768-01300903644- -->
+<LI><A HREF="000560.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="560">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--3 01300870436-01300870768-01300903644-01300947942- -->
+<LI><A HREF="000563.html">[Mageia-webteam] 2011/week 12 meeting
+</A><A NAME="563">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01300921203- -->
+<LI><A HREF="000561.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="561">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01300985812- -->
+<LI><A HREF="000566.html">[Mageia-webteam] [Bug 530] [New] Restrict /packages POST to buildsystem host IP
+</A><A NAME="566">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01301007602- -->
+<LI><A HREF="000567.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="567">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301048130- -->
+<LI><A HREF="000569.html">[Mageia-webteam] [Bug 543] [New] Allow to promote a user directly from the user edition page
+</A><A NAME="569">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01301048378- -->
+<LI><A HREF="000570.html">[Mageia-webteam] [Bug 544] [New] Cannot modify group
+</A><A NAME="570">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01301048378-01301049077- -->
+<LI><A HREF="000571.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="571">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01301061181- -->
+<LI><A HREF="000572.html">[Mageia-webteam] [Bug 546] [New] Cannot log into the forum
+</A><A NAME="572">&nbsp;</A>
+<I>isa dora
+</I>
+
+<UL>
+<!--1 01301061181-01301070088- -->
+<LI><A HREF="000573.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A><A NAME="573">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01301061181-01301072284- -->
+<LI><A HREF="000574.html">[Mageia-webteam] [Bug 546] Cannot log into the forum
+</A><A NAME="574">&nbsp;</A>
+<I>isa dora
+</I>
+
+</UL>
+<!--0 01301094002- -->
+<LI><A HREF="000577.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="577">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301180402- -->
+<LI><A HREF="000578.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="578">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301263203- -->
+<LI><A HREF="000579.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="579">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301349602- -->
+<LI><A HREF="000581.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="581">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301392077- -->
+<LI><A HREF="000582.html">[Mageia-webteam] [Bug 586] [New] Remove the fields Reproducible: &amp; Steps to Reproduce: from reported bugs
+</A><A NAME="582">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<UL>
+<!--1 01301392077-01301392102- -->
+<LI><A HREF="000583.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="583">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01301392077-01301393311- -->
+<LI><A HREF="000584.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="584">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01301392077-01301411464- -->
+<LI><A HREF="000585.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="585">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01301392077-01301419649- -->
+<LI><A HREF="000588.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="588">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--1 01301392077-01301419706- -->
+<LI><A HREF="000589.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="589">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--1 01301392077-01301428254- -->
+<LI><A HREF="000591.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="591">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01301392077-01301429691- -->
+<LI><A HREF="000592.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A><A NAME="592">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+</UL>
+<!--0 01301414818- -->
+<LI><A HREF="000586.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="586">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01301428100- -->
+<LI><A HREF="000590.html">[Mageia-webteam] [Bug 591] [New] Test bug, please ignore
+</A><A NAME="590">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01301432176- -->
+<LI><A HREF="000593.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="593">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01301436002- -->
+<LI><A HREF="000594.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="594">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01301437498- -->
+<LI><A HREF="000595.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="595">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01301439026- -->
+<LI><A HREF="000596.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="596">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01301440596- -->
+<LI><A HREF="000597.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="597">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01301477247- -->
+<LI><A HREF="000598.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="598">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01301479836- -->
+<LI><A HREF="000599.html">[Mageia-webteam] website design update &amp; a few comments/tracks
+</A><A NAME="599">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01301481045- -->
+<LI><A HREF="000600.html">[Mageia-webteam] meeting today
+</A><A NAME="600">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--1 01301481045-01301481476- -->
+<LI><A HREF="000601.html">[Mageia-webteam] meeting today
+</A><A NAME="601">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01301481045-01301481476-01301482000- -->
+<LI><A HREF="000602.html">[Mageia-webteam] meeting today
+</A><A NAME="602">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+</UL>
+</UL>
+<!--0 01301483072- -->
+<LI><A HREF="000603.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="603">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--1 01301483072-01301488623- -->
+<LI><A HREF="000604.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="604">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--2 01301483072-01301488623-01301492342- -->
+<LI><A HREF="000605.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="605">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<UL>
+<!--3 01301483072-01301488623-01301492342-01301495642- -->
+<LI><A HREF="000606.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="606">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01301483072-01301488623-01301492342-01301495642-01301497933- -->
+<LI><A HREF="000607.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="607">&nbsp;</A>
+<I>Rapha&#235;l Jadot
+</I>
+
+<!--3 01301483072-01301488623-01301492342-01301495642-01301497933-01301499321- -->
+<LI><A HREF="000608.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="608">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01301483072-01301488623-01301492342-01301495642-01301497933-01301501318- -->
+<LI><A HREF="000609.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="609">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<!--3 01301483072-01301488623-01301492342-01301495642-01301497933-01301501318-01301505574- -->
+<LI><A HREF="000610.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="610">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01301483072-01301488623-01301492342-01301495642-01301497933-01301501318-01301569531- -->
+<LI><A HREF="000619.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="619">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--3 01301483072-01301488623-01301492342-01301495642-01301497933-01301501318-01301569531-01301592591- -->
+<LI><A HREF="000620.html">[Mageia-webteam] Questions about the forum - Part II
+</A><A NAME="620">&nbsp;</A>
+<I>Maarten Vanraes
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01301507928- -->
+<LI><A HREF="000611.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="611">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--1 01301507928-01301513637- -->
+<LI><A HREF="000612.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="612">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--2 01301507928-01301513637-01301517013- -->
+<LI><A HREF="000614.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="614">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--1 01301507928-01301515985- -->
+<LI><A HREF="000613.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="613">&nbsp;</A>
+<I>Pascal
+</I>
+
+<UL>
+<!--2 01301507928-01301515985-01301517426- -->
+<LI><A HREF="000615.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="615">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--1 01301507928-01301548509- -->
+<LI><A HREF="000617.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="617">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--2 01301507928-01301548509-01301566733- -->
+<LI><A HREF="000618.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A><A NAME="618">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+</UL>
+<!--0 01301522402- -->
+<LI><A HREF="000616.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="616">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Mar 31 20:49:19 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Thu Mar 31 20:49:24 CEST 2011</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-May.txt.gz b/zarb-ml/mageia-webteam/2011-May.txt.gz
new file mode 100644
index 000000000..995949661
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-May/000823.html b/zarb-ml/mageia-webteam/2011-May/000823.html
new file mode 100644
index 000000000..73ec7f313
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000823.html
@@ -0,0 +1,116 @@
+<!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=%3C20110430220002.907B542B44%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="000824.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=%3C20110430220002.907B542B44%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 1 00:00:02 CEST 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="000824.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#823">[ date ]</a>
+ <a href="thread.html#823">[ thread ]</a>
+ <a href="subject.html#823">[ subject ]</a>
+ <a href="author.html#823">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>Next message: <A HREF="000824.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#823">[ date ]</a>
+ <a href="thread.html#823">[ thread ]</a>
+ <a href="subject.html#823">[ subject ]</a>
+ <a href="author.html#823">[ 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-May/000824.html b/zarb-ml/mageia-webteam/2011-May/000824.html
new file mode 100644
index 000000000..37b807ec5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000824.html
@@ -0,0 +1,118 @@
+<!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=%3C20110501220003.1920642BD1%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="000823.html">
+ <LINK REL="Next" HREF="000825.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=%3C20110501220003.1920642BD1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 2 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000823.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000825.html">[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#824">[ date ]</a>
+ <a href="thread.html#824">[ thread ]</a>
+ <a href="subject.html#824">[ subject ]</a>
+ <a href="author.html#824">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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="000823.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000825.html">[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#824">[ date ]</a>
+ <a href="thread.html#824">[ thread ]</a>
+ <a href="subject.html#824">[ subject ]</a>
+ <a href="author.html#824">[ 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-May/000825.html b/zarb-ml/mageia-webteam/2011-May/000825.html
new file mode 100644
index 000000000..6c43991fa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000825.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user
+ </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%201100%5D%20%5BNew%5D%20Admin%20demoted%20to%20Mod%20or%20simple%0A%09user&In-Reply-To=%3Cbug-1100-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="000824.html">
+ <LINK REL="Next" HREF="000827.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user</H1>
+ <B>Raphael Jadot</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201100%5D%20%5BNew%5D%20Admin%20demoted%20to%20Mod%20or%20simple%0A%09user&In-Reply-To=%3Cbug-1100-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 2 19:54:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000824.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000827.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#825">[ date ]</a>
+ <a href="thread.html#825">[ thread ]</a>
+ <a href="subject.html#825">[ subject ]</a>
+ <a href="author.html#825">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+
+ Summary: Admin demoted to Mod or simple user
+ 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">ashledombos at hodo.fr</A>
+
+
+Hi every one,
+
+as forum admin, i have no time enough to do my job well, so i would like to
+give the torch to someone else.
+
+I can be demoted to mod, or, if there is no need, to simple user (as it doesn't
+prevent me to participate in forums)
+
+As Misc told me, I open a bug report as I am not sure who to ask.
+
+Sincerely yours
+
+Rapha&#235;l aka ashledombos
+
+--
+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="000824.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000827.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#825">[ date ]</a>
+ <a href="thread.html#825">[ thread ]</a>
+ <a href="subject.html#825">[ subject ]</a>
+ <a href="author.html#825">[ 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-May/000826.html b/zarb-ml/mageia-webteam/2011-May/000826.html
new file mode 100644
index 000000000..f0370ecd0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000826.html
@@ -0,0 +1,120 @@
+<!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=%3C20110502220004.46C5E42D45%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="000828.html">
+ <LINK REL="Next" HREF="000829.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=%3C20110502220004.46C5E42D45%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 3 00:00:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000828.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="000829.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#826">[ date ]</a>
+ <a href="thread.html#826">[ thread ]</a>
+ <a href="subject.html#826">[ subject ]</a>
+ <a href="author.html#826">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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="000828.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="000829.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#826">[ date ]</a>
+ <a href="thread.html#826">[ thread ]</a>
+ <a href="subject.html#826">[ subject ]</a>
+ <a href="author.html#826">[ 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-May/000827.html b/zarb-ml/mageia-webteam/2011-May/000827.html
new file mode 100644
index 000000000..90546cf66
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000827.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+ </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%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20110503131253.1321542D6D%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="000825.html">
+ <LINK REL="Next" HREF="000828.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20110503131253.1321542D6D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 3 15:12:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000825.html">[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="000828.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#827">[ date ]</a>
+ <a href="thread.html#827">[ thread ]</a>
+ <a href="subject.html#827">[ subject ]</a>
+ <a href="author.html#827">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</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">boklm at mars-attacks.org</A>
+
+--- Comment #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-05-03 17:12:53 CEST ---
+As you are admin, I think you can do the change yourself. You can remove you
+from the groups, then remove you from founders.
+
+--
+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="000825.html">[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="000828.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#827">[ date ]</a>
+ <a href="thread.html#827">[ thread ]</a>
+ <a href="subject.html#827">[ subject ]</a>
+ <a href="author.html#827">[ 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-May/000828.html b/zarb-ml/mageia-webteam/2011-May/000828.html
new file mode 100644
index 000000000..56081c18f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000828.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+ </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%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20110503133756.4D3BB42D73%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="000827.html">
+ <LINK REL="Next" HREF="000826.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user</H1>
+ <B>Maat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20110503133756.4D3BB42D73%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 3 15:37:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000827.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="000826.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#828">[ date ]</a>
+ <a href="thread.html#828">[ thread ]</a>
+ <a href="subject.html#828">[ subject ]</a>
+ <a href="author.html#828">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+
+Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>
+
+--- Comment #2 from Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; 2011-05-03 17:37:56 CEST ---
+True but your help will be missed Raphael :-(
+
+--
+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="000827.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="000826.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#828">[ date ]</a>
+ <a href="thread.html#828">[ thread ]</a>
+ <a href="subject.html#828">[ subject ]</a>
+ <a href="author.html#828">[ 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-May/000829.html b/zarb-ml/mageia-webteam/2011-May/000829.html
new file mode 100644
index 000000000..7dd4ee3c0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000829.html
@@ -0,0 +1,120 @@
+<!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=%3C20110503220003.0282242DDA%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="000826.html">
+ <LINK REL="Next" HREF="000830.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=%3C20110503220003.0282242DDA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000826.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000830.html">[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#829">[ date ]</a>
+ <a href="thread.html#829">[ thread ]</a>
+ <a href="subject.html#829">[ subject ]</a>
+ <a href="author.html#829">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000826.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000830.html">[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#829">[ date ]</a>
+ <a href="thread.html#829">[ thread ]</a>
+ <a href="subject.html#829">[ subject ]</a>
+ <a href="author.html#829">[ 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-May/000830.html b/zarb-ml/mageia-webteam/2011-May/000830.html
new file mode 100644
index 000000000..e572ad047
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000830.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20%5BNew%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3Cbug-1126-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="000829.html">
+ <LINK REL="Next" HREF="000831.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20%5BNew%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3Cbug-1126-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 02:56:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000829.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000831.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#830">[ date ]</a>
+ <a href="thread.html#830">[ thread ]</a>
+ <a href="subject.html#830">[ subject ]</a>
+ <a href="author.html#830">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</A>
+
+ Summary: Make a page similar to
+ <A HREF="http://l10n.gnome.org/languages/sv/">http://l10n.gnome.org/languages/sv/</A> for the Mageia SVN
+ to help users keep track of what's translated &amp; how
+ much it's translated.
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://svnweb.mageia.org/soft/">http://svnweb.mageia.org/soft/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">kristoffer.grundstrom1983 at gmail.com</A>
+
+
+Description of problem: I wish that you guys make a page that works similar to
+<A HREF="http://l10n.gnome.org/languages/sv/">http://l10n.gnome.org/languages/sv/</A> since that shows what PO's you should
+download to translate.
+
+--
+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="000829.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000831.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#830">[ date ]</a>
+ <a href="thread.html#830">[ thread ]</a>
+ <a href="subject.html#830">[ subject ]</a>
+ <a href="author.html#830">[ 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-May/000831.html b/zarb-ml/mageia-webteam/2011-May/000831.html
new file mode 100644
index 000000000..ab09e6414
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000831.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504024740.4A3DC42DF1%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="000830.html">
+ <LINK REL="Next" HREF="000832.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Olav Dahlum</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504024740.4A3DC42DF1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 04:47:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000830.html">[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000832.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#831">[ date ]</a>
+ <a href="thread.html#831">[ thread ]</a>
+ <a href="subject.html#831">[ subject ]</a>
+ <a href="author.html#831">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</A>
+
+Olav Dahlum &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">odahlum at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">odahlum at gmail.com</A>
+
+--- Comment #1 from Olav Dahlum &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">odahlum at gmail.com</A>&gt; 2011-05-04 06:47:40 CEST ---
+Transifex does statistics, online translation and uploads/downloads of files:
+<A HREF="https://transifex.mageia.org/">https://transifex.mageia.org/</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="000830.html">[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000832.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#831">[ date ]</a>
+ <a href="thread.html#831">[ thread ]</a>
+ <a href="subject.html#831">[ subject ]</a>
+ <a href="author.html#831">[ 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-May/000832.html b/zarb-ml/mageia-webteam/2011-May/000832.html
new file mode 100644
index 000000000..8cef87c5b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000832.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504025029.D3BBC42DBA%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="000831.html">
+ <LINK REL="Next" HREF="000833.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Olav Dahlum</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504025029.D3BBC42DBA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 04:50:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000831.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000833.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#832">[ date ]</a>
+ <a href="thread.html#832">[ thread ]</a>
+ <a href="subject.html#832">[ subject ]</a>
+ <a href="author.html#832">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</A>
+
+Olav Dahlum &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">odahlum at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |INVALID
+
+--- Comment #2 from Olav Dahlum &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">odahlum at gmail.com</A>&gt; 2011-05-04 06:50:30 CEST ---
+There's no need for this as long as the translation platform handle 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000831.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000833.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#832">[ date ]</a>
+ <a href="thread.html#832">[ thread ]</a>
+ <a href="subject.html#832">[ subject ]</a>
+ <a href="author.html#832">[ 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-May/000833.html b/zarb-ml/mageia-webteam/2011-May/000833.html
new file mode 100644
index 000000000..f79d161b2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000833.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504025135.25DCE42DF2%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="000832.html">
+ <LINK REL="Next" HREF="000834.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Marek Laane</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504025135.25DCE42DF2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 04:51:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000832.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000834.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#833">[ date ]</a>
+ <a href="thread.html#833">[ thread ]</a>
+ <a href="subject.html#833">[ subject ]</a>
+ <a href="author.html#833">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</A>
+
+Marek Laane &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bald at smail.ee</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bald at smail.ee</A>
+
+--- Comment #3 from Marek Laane &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bald at smail.ee</A>&gt; 2011-05-04 06:51:35 CEST ---
+There is now <A HREF="https://transifex.mageia.org/projects/p/mageia_i18n/r/mga1/">https://transifex.mageia.org/projects/p/mageia_i18n/r/mga1/</A> with
+similar information - alas, not Swedish yet, though it seems there is Swedish
+team <A HREF="http://mageia.org/wiki/doku.php?id=translators#swedish">http://mageia.org/wiki/doku.php?id=translators#swedish</A> .
+But yes, essentially there might be also similar web page which would mirror
+directly SVN - something like Mandriva has at
+<A HREF="http://mdk.jack.kiev.ua/stats/gui/trunk/team/">http://mdk.jack.kiev.ua/stats/gui/trunk/team/</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="000832.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000834.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#833">[ date ]</a>
+ <a href="thread.html#833">[ thread ]</a>
+ <a href="subject.html#833">[ subject ]</a>
+ <a href="author.html#833">[ 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-May/000834.html b/zarb-ml/mageia-webteam/2011-May/000834.html
new file mode 100644
index 000000000..59c94d1eb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000834.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504030029.5F92C42DF3%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="000833.html">
+ <LINK REL="Next" HREF="000835.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Olav Dahlum</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504030029.5F92C42DF3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 05:00:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000833.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000835.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#834">[ date ]</a>
+ <a href="thread.html#834">[ thread ]</a>
+ <a href="subject.html#834">[ subject ]</a>
+ <a href="author.html#834">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</A>
+
+--- Comment #4 from Olav Dahlum &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">odahlum at gmail.com</A>&gt; 2011-05-04 07:00:29 CEST ---
+Just a little follow up. If we're lucky, Transifex should be able to
+communicate with Subversion again. Last time I looked into this, it couldn't.
+
+--
+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="000833.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000835.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#834">[ date ]</a>
+ <a href="thread.html#834">[ thread ]</a>
+ <a href="subject.html#834">[ subject ]</a>
+ <a href="author.html#834">[ 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-May/000835.html b/zarb-ml/mageia-webteam/2011-May/000835.html
new file mode 100644
index 000000000..5a40eee02
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000835.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504063127.A1FFB42DF6%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="000834.html">
+ <LINK REL="Next" HREF="000836.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504063127.A1FFB42DF6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 08:31:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000834.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000836.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#835">[ date ]</a>
+ <a href="thread.html#835">[ thread ]</a>
+ <a href="subject.html#835">[ subject ]</a>
+ <a href="author.html#835">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #5 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-05-04 10:31:27 CEST ---
+It can't and I'm sure Mdv will run into a trap with the way, they are setting
+up the connection between Tx and svn.
+
+The problem is: we don't commit files from Tx into svn automatically because we
+don't want to have translations in svn, which were not approved of by the team
+coordinators and Tx has no &quot;this translation is approved flag&quot;.
+When you now pull pot files automatically from svn to Tx, translations will get
+lost. This is why I always need some time to prevent this by merging the string
+changes into the po files from Tx.
+
+But the files in Tx are normally not far behind the state in svn (at the moment
+e.g. there shouldn't be any missing strings)
+
+So it is the easiest way for all of us to use what Tx gives us.
+
+Oliver
+
+--
+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="000834.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000836.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#835">[ date ]</a>
+ <a href="thread.html#835">[ thread ]</a>
+ <a href="subject.html#835">[ subject ]</a>
+ <a href="author.html#835">[ 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-May/000836.html b/zarb-ml/mageia-webteam/2011-May/000836.html
new file mode 100644
index 000000000..b787e79f0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000836.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504113117.90FDD42DF2%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="000835.html">
+ <LINK REL="Next" HREF="000837.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504113117.90FDD42DF2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 13:31:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000835.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000837.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#836">[ date ]</a>
+ <a href="thread.html#836">[ thread ]</a>
+ <a href="subject.html#836">[ subject ]</a>
+ <a href="author.html#836">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</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 #6 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-04 13:31:17 CEST ---
+tx used to communicate with svn/etc before 1.0, but this was removed (
+<A HREF="http://blog.transifex.net/2010/11/one-dot-zero/">http://blog.transifex.net/2010/11/one-dot-zero/</A> ), and I think they do not plan
+to make this go back.
+
+--
+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="000835.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000837.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#836">[ date ]</a>
+ <a href="thread.html#836">[ thread ]</a>
+ <a href="subject.html#836">[ subject ]</a>
+ <a href="author.html#836">[ 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-May/000837.html b/zarb-ml/mageia-webteam/2011-May/000837.html
new file mode 100644
index 000000000..30e8d7de1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000837.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504114229.4146242DF1%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="000836.html">
+ <LINK REL="Next" HREF="000838.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Olav Dahlum</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504114229.4146242DF1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 13:42:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000836.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000838.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#837">[ date ]</a>
+ <a href="thread.html#837">[ thread ]</a>
+ <a href="subject.html#837">[ subject ]</a>
+ <a href="author.html#837">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</A>
+
+Olav Dahlum &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">odahlum at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|RESOLVED |REOPENED
+ Resolution|INVALID |
+
+--- Comment #7 from Olav Dahlum &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">odahlum at gmail.com</A>&gt; 2011-05-04 15:42:29 CEST ---
+(In reply to comment #6)
+&gt;<i> tx used to communicate with svn/etc before 1.0, but this was removed (
+</I>&gt;<i> <A HREF="http://blog.transifex.net/2010/11/one-dot-zero/">http://blog.transifex.net/2010/11/one-dot-zero/</A> ), and I think they do not plan
+</I>&gt;<i> to make this go back.
+</I>
+Maybe we're better off with Pootle then. Remember our discussion about which
+solution I thought was better suited for entry level translators? Pootle should
+have no problems with communicating, but it's slow as hell.
+
+--
+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="000836.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000838.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#837">[ date ]</a>
+ <a href="thread.html#837">[ thread ]</a>
+ <a href="subject.html#837">[ subject ]</a>
+ <a href="author.html#837">[ 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-May/000838.html b/zarb-ml/mageia-webteam/2011-May/000838.html
new file mode 100644
index 000000000..d549c2c3d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000838.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504120323.58B6E42DEF%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="000837.html">
+ <LINK REL="Next" HREF="000839.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504120323.58B6E42DEF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 14:03:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000837.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000839.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#838">[ date ]</a>
+ <a href="thread.html#838">[ thread ]</a>
+ <a href="subject.html#838">[ subject ]</a>
+ <a href="author.html#838">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|REOPENED |RESOLVED
+ Resolution| |INVALID
+
+--- Comment #8 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-05-04 16:03:23 CEST ---
+We now have a working solution, so I don't see the problems discussed here. We
+can rediscuss this after Mga1 release, but I think 6 days before freeze is just
+not the best idea.
+
+So it is invalid for now
+
+--
+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="000837.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000839.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#838">[ date ]</a>
+ <a href="thread.html#838">[ thread ]</a>
+ <a href="subject.html#838">[ subject ]</a>
+ <a href="author.html#838">[ 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-May/000839.html b/zarb-ml/mageia-webteam/2011-May/000839.html
new file mode 100644
index 000000000..78ab24566
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000839.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+ </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%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504120802.9032842DF1%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="000838.html">
+ <LINK REL="Next" HREF="000840.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.</H1>
+ <B>Olav Dahlum</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201126%5D%20Make%20a%20page%20similar%20to%0A%20http%3A//l10n.gnome.org/languages/sv/%20for%20the%20Mageia%20SVN%20to%20help%20users%20keep%0A%20track%20of%20what%27s%20translated%20%26%20how%20much%20it%27s%20translated.&In-Reply-To=%3C20110504120802.9032842DF1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 14:08:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000838.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000840.html">[Mageia-webteam] [Bug 1140] [New] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#839">[ date ]</a>
+ <a href="thread.html#839">[ thread ]</a>
+ <a href="subject.html#839">[ subject ]</a>
+ <a href="author.html#839">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1126">https://bugs.mageia.org/show_bug.cgi?id=1126</A>
+
+--- Comment #9 from Olav Dahlum &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">odahlum at gmail.com</A>&gt; 2011-05-04 14:08:02 CEST ---
+(In reply to comment #8)
+&gt;<i> We now have a working solution, so I don't see the problems discussed here. We
+</I>&gt;<i> can rediscuss this after Mga1 release, but I think 6 days before freeze is just
+</I>&gt;<i> not the best idea.
+</I>&gt;<i>
+</I>&gt;<i> So it is invalid for now
+</I>
+I agree.
+
+--
+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="000838.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000840.html">[Mageia-webteam] [Bug 1140] [New] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#839">[ date ]</a>
+ <a href="thread.html#839">[ thread ]</a>
+ <a href="subject.html#839">[ subject ]</a>
+ <a href="author.html#839">[ 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-May/000840.html b/zarb-ml/mageia-webteam/2011-May/000840.html
new file mode 100644
index 000000000..643b3a072
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000840.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1140] [New] Download page should not use https links
+ </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%201140%5D%20%5BNew%5D%20Download%20page%20should%20not%20use%0A%09https%20links&In-Reply-To=%3Cbug-1140-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="000839.html">
+ <LINK REL="Next" HREF="000843.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1140] [New] Download page should not use https links</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201140%5D%20%5BNew%5D%20Download%20page%20should%20not%20use%0A%09https%20links&In-Reply-To=%3Cbug-1140-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1140] [New] Download page should not use https links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 23:30:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000839.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000843.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#840">[ date ]</a>
+ <a href="thread.html#840">[ thread ]</a>
+ <a href="subject.html#840">[ subject ]</a>
+ <a href="author.html#840">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1140">https://bugs.mageia.org/show_bug.cgi?id=1140</A>
+
+ Summary: Download page should not use https links
+ 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">boklm at mars-attacks.org</A>
+
+
+On download page :
+<A HREF="http://www.mageia.org/en/downloads/dl.php?product=mageia-1-beta2-dvd-i586">http://www.mageia.org/en/downloads/dl.php?product=mageia-1-beta2-dvd-i586</A>
+
+A random mirror is selected. Sometimes, distrib-coffee.ipsl.jussieu.fr is
+selected with https. However, the SSL certificate is not accepted by firefox,
+so it display a warning page. As the download is started automatically, the
+warning page is displayed after 2 seconds, and it is not possible to select
+other mirrors.
+
+As using https in random is not very useful, I think it should not be removed.
+
+--
+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="000839.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A></li>
+ <LI>Next message: <A HREF="000843.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#840">[ date ]</a>
+ <a href="thread.html#840">[ thread ]</a>
+ <a href="subject.html#840">[ subject ]</a>
+ <a href="author.html#840">[ 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-May/000841.html b/zarb-ml/mageia-webteam/2011-May/000841.html
new file mode 100644
index 000000000..bc81344d0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000841.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey 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%201141%5D%20%5BNew%5D%20User%20panel%20does%20not%20allow%20to%20add%0A%20sshPublicKey%20attributes&In-Reply-To=%3Cbug-1141-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="000848.html">
+ <LINK REL="Next" HREF="000842.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes</H1>
+ <B>Dimitri J</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201141%5D%20%5BNew%5D%20User%20panel%20does%20not%20allow%20to%20add%0A%20sshPublicKey%20attributes&In-Reply-To=%3Cbug-1141-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 4 23:57:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000848.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000842.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#841">[ date ]</a>
+ <a href="thread.html#841">[ thread ]</a>
+ <a href="subject.html#841">[ subject ]</a>
+ <a href="author.html#841">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+
+ Summary: User panel does not allow to add sshPublicKey
+ attributes
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">mitya at mandriva.org</A>
+
+
+Description of problem:
+
+It would be good to have an ability to supply one or more additional values for
+sshPublicKey (to allow svn+ssh from another computer with different SSH key).
+Unfortunately, our user panel does not allow to do that.
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+always
+
+Steps to Reproduce:
+1. Log in to <A HREF="https://identity.mageia.org">https://identity.mageia.org</A>
+2. Press &quot;Add&quot; against sshPublicKey
+3.
+
+--
+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="000848.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000842.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#841">[ date ]</a>
+ <a href="thread.html#841">[ thread ]</a>
+ <a href="subject.html#841">[ subject ]</a>
+ <a href="author.html#841">[ 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-May/000842.html b/zarb-ml/mageia-webteam/2011-May/000842.html
new file mode 100644
index 000000000..149183b28
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000842.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=%3C20110504220002.EE6D342E03%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="000841.html">
+ <LINK REL="Next" HREF="000849.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=%3C20110504220002.EE6D342E03%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 5 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000841.html">[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI>Next message: <A HREF="000849.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#842">[ date ]</a>
+ <a href="thread.html#842">[ thread ]</a>
+ <a href="subject.html#842">[ subject ]</a>
+ <a href="author.html#842">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000841.html">[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI>Next message: <A HREF="000849.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#842">[ date ]</a>
+ <a href="thread.html#842">[ thread ]</a>
+ <a href="subject.html#842">[ subject ]</a>
+ <a href="author.html#842">[ 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-May/000843.html b/zarb-ml/mageia-webteam/2011-May/000843.html
new file mode 100644
index 000000000..7a52165f2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000843.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1140] Download page should not use https links
+ </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%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504220153.4011442DA6%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="000840.html">
+ <LINK REL="Next" HREF="000844.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1140] Download page should not use https links</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504220153.4011442DA6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1140] Download page should not use https links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 5 00:01:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000840.html">[Mageia-webteam] [Bug 1140] [New] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000844.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#843">[ date ]</a>
+ <a href="thread.html#843">[ thread ]</a>
+ <a href="subject.html#843">[ subject ]</a>
+ <a href="author.html#843">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1140">https://bugs.mageia.org/show_bug.cgi?id=1140</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-05-05 02:01:53 CEST ---
+We also need to filter rsync mirror from the list as a web browser may have
+some trouble for that.
+
+--
+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="000840.html">[Mageia-webteam] [Bug 1140] [New] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000844.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#843">[ date ]</a>
+ <a href="thread.html#843">[ thread ]</a>
+ <a href="subject.html#843">[ subject ]</a>
+ <a href="author.html#843">[ 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-May/000844.html b/zarb-ml/mageia-webteam/2011-May/000844.html
new file mode 100644
index 000000000..f593c295d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000844.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1140] Download page should not use https links
+ </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%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504220900.479FF42DC8%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="000843.html">
+ <LINK REL="Next" HREF="000845.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1140] Download page should not use https links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504220900.479FF42DC8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1140] Download page should not use https links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 5 00:09:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000843.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000845.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#844">[ date ]</a>
+ <a href="thread.html#844">[ thread ]</a>
+ <a href="subject.html#844">[ subject ]</a>
+ <a href="author.html#844">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1140">https://bugs.mageia.org/show_bug.cgi?id=1140</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|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-05 02:09:00 CEST ---
+Fixed (r407), in production. rsync is already filtered out.
+
+--
+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="000843.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000845.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#844">[ date ]</a>
+ <a href="thread.html#844">[ thread ]</a>
+ <a href="subject.html#844">[ subject ]</a>
+ <a href="author.html#844">[ 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-May/000845.html b/zarb-ml/mageia-webteam/2011-May/000845.html
new file mode 100644
index 000000000..ec04fbe80
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000845.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1140] Download page should not use https links
+ </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%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504221705.E316842E0A%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="000844.html">
+ <LINK REL="Next" HREF="000846.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1140] Download page should not use https links</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504221705.E316842E0A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1140] Download page should not use https links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 5 00:17:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000844.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000846.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#845">[ date ]</a>
+ <a href="thread.html#845">[ thread ]</a>
+ <a href="subject.html#845">[ subject ]</a>
+ <a href="author.html#845">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1140">https://bugs.mageia.org/show_bug.cgi?id=1140</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>
+
+--- Comment #3 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-05-05 02:17:06 CEST ---
+perhaps, if we have a https mirror, it should be with a valid certificate?
+
+--
+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="000844.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000846.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#845">[ date ]</a>
+ <a href="thread.html#845">[ thread ]</a>
+ <a href="subject.html#845">[ subject ]</a>
+ <a href="author.html#845">[ 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-May/000846.html b/zarb-ml/mageia-webteam/2011-May/000846.html
new file mode 100644
index 000000000..63fbc3370
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000846.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1140] Download page should not use https links
+ </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%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504221738.A651242E0B%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="000845.html">
+ <LINK REL="Next" HREF="000847.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1140] Download page should not use https links</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504221738.A651242E0B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1140] Download page should not use https links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 5 00:17:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000845.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000847.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#846">[ date ]</a>
+ <a href="thread.html#846">[ thread ]</a>
+ <a href="subject.html#846">[ subject ]</a>
+ <a href="author.html#846">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1140">https://bugs.mageia.org/show_bug.cgi?id=1140</A>
+
+--- Comment #4 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-05 02:17:38 CEST ---
+But not https :
+
+--
+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="000845.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000847.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#846">[ date ]</a>
+ <a href="thread.html#846">[ thread ]</a>
+ <a href="subject.html#846">[ subject ]</a>
+ <a href="author.html#846">[ 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-May/000847.html b/zarb-ml/mageia-webteam/2011-May/000847.html
new file mode 100644
index 000000000..4fa146a08
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000847.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1140] Download page should not use https links
+ </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%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504221803.F2CB642E12%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="000846.html">
+ <LINK REL="Next" HREF="000848.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1140] Download page should not use https links</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504221803.F2CB642E12%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1140] Download page should not use https links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 5 00:18:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000846.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000848.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#847">[ date ]</a>
+ <a href="thread.html#847">[ thread ]</a>
+ <a href="subject.html#847">[ subject ]</a>
+ <a href="author.html#847">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1140">https://bugs.mageia.org/show_bug.cgi?id=1140</A>
+
+--- Comment #5 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-05 02:18:04 CEST ---
+Created attachment 354
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=354">https://bugs.mageia.org/attachment.cgi?id=354</A>
+Fix to remove https
+
+--
+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="000846.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000848.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#847">[ date ]</a>
+ <a href="thread.html#847">[ thread ]</a>
+ <a href="subject.html#847">[ subject ]</a>
+ <a href="author.html#847">[ 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-May/000848.html b/zarb-ml/mageia-webteam/2011-May/000848.html
new file mode 100644
index 000000000..e40e84fac
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000848.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1140] Download page should not use https links
+ </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%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504221850.DB9CA42E15%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="000847.html">
+ <LINK REL="Next" HREF="000841.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1140] Download page should not use https links</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201140%5D%20Download%20page%20should%20not%20use%20https%20links&In-Reply-To=%3C20110504221850.DB9CA42E15%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1140] Download page should not use https links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 5 00:18:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000847.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000841.html">[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#848">[ date ]</a>
+ <a href="thread.html#848">[ thread ]</a>
+ <a href="subject.html#848">[ subject ]</a>
+ <a href="author.html#848">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1140">https://bugs.mageia.org/show_bug.cgi?id=1140</A>
+
+--- Comment #6 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-05 02:18:51 CEST ---
+Also, on epiphany, ftp will produce a error ( &quot;current emplacement not mounted&quot;
+)
+
+And epiphany do not complain on https :)
+
+--
+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="000847.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A></li>
+ <LI>Next message: <A HREF="000841.html">[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#848">[ date ]</a>
+ <a href="thread.html#848">[ thread ]</a>
+ <a href="subject.html#848">[ subject ]</a>
+ <a href="author.html#848">[ 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-May/000849.html b/zarb-ml/mageia-webteam/2011-May/000849.html
new file mode 100644
index 000000000..f6015759e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000849.html
@@ -0,0 +1,65 @@
+<!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=%3C20110505121038.0137242E11%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="000842.html">
+ <LINK REL="Next" HREF="000850.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=%3C20110505121038.0137242E11%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 May 5 14:10:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000842.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000850.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#849">[ date ]</a>
+ <a href="thread.html#849">[ thread ]</a>
+ <a href="subject.html#849">[ subject ]</a>
+ <a href="author.html#849">[ 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 #31 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-05 16:10:38 CEST ---
+Status update? Or can we close this one?
+
+--
+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="000842.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000850.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#849">[ date ]</a>
+ <a href="thread.html#849">[ thread ]</a>
+ <a href="subject.html#849">[ subject ]</a>
+ <a href="author.html#849">[ 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-May/000850.html b/zarb-ml/mageia-webteam/2011-May/000850.html
new file mode 100644
index 000000000..9dc1eb58e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000850.html
@@ -0,0 +1,65 @@
+<!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=%3C20110505160925.E6B4842E1F%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="000849.html">
+ <LINK REL="Next" HREF="000851.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=%3C20110505160925.E6B4842E1F%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 May 5 18:09:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000849.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000851.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#850">[ date ]</a>
+ <a href="thread.html#850">[ thread ]</a>
+ <a href="subject.html#850">[ subject ]</a>
+ <a href="author.html#850">[ 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 #32 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-05 20:09:26 CEST ---
+Last time I tested, it worked as expected.
+
+--
+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="000849.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000851.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#850">[ date ]</a>
+ <a href="thread.html#850">[ thread ]</a>
+ <a href="subject.html#850">[ subject ]</a>
+ <a href="author.html#850">[ 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-May/000851.html b/zarb-ml/mageia-webteam/2011-May/000851.html
new file mode 100644
index 000000000..0b09b5139
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000851.html
@@ -0,0 +1,72 @@
+<!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=%3C20110505161731.CB50442E19%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="000850.html">
+ <LINK REL="Next" HREF="000852.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=%3C20110505161731.CB50442E19%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 May 5 18:17:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000850.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000852.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#851">[ date ]</a>
+ <a href="thread.html#851">[ thread ]</a>
+ <a href="subject.html#851">[ subject ]</a>
+ <a href="author.html#851">[ 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>
+
+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 #33 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-05 20:17:32 CEST ---
+Ok, then; 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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000850.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000852.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#851">[ date ]</a>
+ <a href="thread.html#851">[ thread ]</a>
+ <a href="subject.html#851">[ subject ]</a>
+ <a href="author.html#851">[ 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-May/000852.html b/zarb-ml/mageia-webteam/2011-May/000852.html
new file mode 100644
index 000000000..ad7a46c24
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000852.html
@@ -0,0 +1,120 @@
+<!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=%3C20110505220002.B7C8742E11%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="000851.html">
+ <LINK REL="Next" HREF="000853.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=%3C20110505220002.B7C8742E11%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000851.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000853.html">[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#852">[ date ]</a>
+ <a href="thread.html#852">[ thread ]</a>
+ <a href="subject.html#852">[ subject ]</a>
+ <a href="author.html#852">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000851.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000853.html">[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#852">[ date ]</a>
+ <a href="thread.html#852">[ thread ]</a>
+ <a href="subject.html#852">[ subject ]</a>
+ <a href="author.html#852">[ 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-May/000853.html b/zarb-ml/mageia-webteam/2011-May/000853.html
new file mode 100644
index 000000000..66e594b6c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000853.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often
+ </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%201170%5D%20%5BNew%5D%20Users%20select%20%22Installation%22%0A%20component%20by%20mistake%20more%20than%20often&In-Reply-To=%3Cbug-1170-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="000852.html">
+ <LINK REL="Next" HREF="000854.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201170%5D%20%5BNew%5D%20Users%20select%20%22Installation%22%0A%20component%20by%20mistake%20more%20than%20often&In-Reply-To=%3Cbug-1170-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 04:35:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000852.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000854.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#853">[ date ]</a>
+ <a href="thread.html#853">[ thread ]</a>
+ <a href="subject.html#853">[ subject ]</a>
+ <a href="author.html#853">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1170">https://bugs.mageia.org/show_bug.cgi?id=1170</A>
+
+ Summary: Users select &quot;Installation&quot; component by mistake more
+ than often
+ 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">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>
+
+
+The &quot;Installation&quot; in the Components list is a bit misleading, and sometimes
+users select it when they hit a urpmi bug when updating, upgrading, installing
+packages.
+
+This situation should be improved:
+- Changing the component name to &quot;Installer&quot;, as it mainly has to do with the
+traditional drakx installer
+- Changing the description of that component to &quot;Bug reports about the Mageia
+drakx traditional installation (the installer used on the DVD and the Dual
+ISO's&quot;
+
+I probably can do both changes in the bugzilla templates in SVN, but opening
+this report for discussion/ideas/suggestions.
+
+--
+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="000852.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000854.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#853">[ date ]</a>
+ <a href="thread.html#853">[ thread ]</a>
+ <a href="subject.html#853">[ subject ]</a>
+ <a href="author.html#853">[ 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-May/000854.html b/zarb-ml/mageia-webteam/2011-May/000854.html
new file mode 100644
index 000000000..a7f6a45b0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000854.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+ </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%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506080953.A495C42E22%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="000853.html">
+ <LINK REL="Next" HREF="000855.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506080953.A495C42E22%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 10:09:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000853.html">[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000855.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#854">[ date ]</a>
+ <a href="thread.html#854">[ thread ]</a>
+ <a href="subject.html#854">[ subject ]</a>
+ <a href="author.html#854">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1170">https://bugs.mageia.org/show_bug.cgi?id=1170</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">boklm at mars-attacks.org</A>
+
+--- Comment #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-05-06 10:09:53 CEST ---
+It looks like a good idea. Maybe &quot;RPM Packages&quot; can also be the first in the
+list, if it is the most used.
+
+For those changes I think it's not in the templates on svn but in the admin
+part of bugzilla (with an 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="000853.html">[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000855.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#854">[ date ]</a>
+ <a href="thread.html#854">[ thread ]</a>
+ <a href="subject.html#854">[ subject ]</a>
+ <a href="author.html#854">[ 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-May/000855.html b/zarb-ml/mageia-webteam/2011-May/000855.html
new file mode 100644
index 000000000..d8cc9a6f3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000855.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+ </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%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506100426.A6D3942E14%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="000854.html">
+ <LINK REL="Next" HREF="000865.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506100426.A6D3942E14%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 12:04:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000854.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000865.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#855">[ date ]</a>
+ <a href="thread.html#855">[ thread ]</a>
+ <a href="subject.html#855">[ subject ]</a>
+ <a href="author.html#855">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1170">https://bugs.mageia.org/show_bug.cgi?id=1170</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>
+
+--- Comment #2 from Thierry Vignaud &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>&gt; 2011-05-06 14:04:26 CEST ---
+Indeed this is 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="000854.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000865.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#855">[ date ]</a>
+ <a href="thread.html#855">[ thread ]</a>
+ <a href="subject.html#855">[ subject ]</a>
+ <a href="author.html#855">[ 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-May/000856.html b/zarb-ml/mageia-webteam/2011-May/000856.html
new file mode 100644
index 000000000..0e3fa6b44
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000856.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too
+ </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%201171%5D%20%5BNew%5D%20Bugzilla%20should%20let%20people%20use%0A%20their%20email%20to%20login%20too&In-Reply-To=%3Cbug-1171-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="000897.html">
+ <LINK REL="Next" HREF="000857.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201171%5D%20%5BNew%5D%20Bugzilla%20should%20let%20people%20use%0A%20their%20email%20to%20login%20too&In-Reply-To=%3Cbug-1171-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 12:37:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000897.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000857.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#856">[ date ]</a>
+ <a href="thread.html#856">[ thread ]</a>
+ <a href="subject.html#856">[ subject ]</a>
+ <a href="author.html#856">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1171">https://bugs.mageia.org/show_bug.cgi?id=1171</A>
+
+ Summary: Bugzilla should let people use their email to login
+ too
+ 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>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+
+
+Currently, when someone try to log on bugzilla, he must use his login. That's
+fine and it work. However, some people may try to use their email too, and I
+think we could allow this by using some ldap trick.
+
+What about enabling this ?
+
+( alternatively, changing the error message saying &quot;you should not use your
+email&quot; if we decide to not let people do would be a improvement )
+
+--
+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="000897.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000857.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#856">[ date ]</a>
+ <a href="thread.html#856">[ thread ]</a>
+ <a href="subject.html#856">[ subject ]</a>
+ <a href="author.html#856">[ 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-May/000857.html b/zarb-ml/mageia-webteam/2011-May/000857.html
new file mode 100644
index 000000000..2cd04f7cd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000857.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+ </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%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506104732.9750642C99%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="000856.html">
+ <LINK REL="Next" HREF="000859.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506104732.9750642C99%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 12:47:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000856.html">[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000859.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#857">[ date ]</a>
+ <a href="thread.html#857">[ thread ]</a>
+ <a href="subject.html#857">[ subject ]</a>
+ <a href="author.html#857">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1171">https://bugs.mageia.org/show_bug.cgi?id=1171</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|NEW |RESOLVED
+ Resolution| |DUPLICATE
+ 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-05-06 14:47:32 CEST ---
+This is not needed/useful for Bugzilla only - and I believe that's not a matter
+of formatting the login token, but just that the auth server accepting both
+email and uid.
+
+*** This bug has been marked as a duplicate of bug 252 ***
+
+--
+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="000856.html">[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000859.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#857">[ date ]</a>
+ <a href="thread.html#857">[ thread ]</a>
+ <a href="subject.html#857">[ subject ]</a>
+ <a href="author.html#857">[ 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-May/000858.html b/zarb-ml/mageia-webteam/2011-May/000858.html
new file mode 100644
index 000000000..961de0b6d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000858.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 252] Authentication does not work with email address
+ </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%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20110506104733.0A5D542E13%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="000863.html">
+ <LINK REL="Next" HREF="000864.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 252] Authentication does not work with email address</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20110506104733.0A5D542E13%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 252] Authentication does not work with email address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 12:47:33 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000863.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000864.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#858">[ date ]</a>
+ <a href="thread.html#858">[ thread ]</a>
+ <a href="subject.html#858">[ subject ]</a>
+ <a href="author.html#858">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</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">misc at zarb.org</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-06 14:47:32 CEST ---
+*** Bug 1171 has been marked as a duplicate of this bug. ***
+
+--
+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="000863.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000864.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#858">[ date ]</a>
+ <a href="thread.html#858">[ thread ]</a>
+ <a href="subject.html#858">[ subject ]</a>
+ <a href="author.html#858">[ 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-May/000859.html b/zarb-ml/mageia-webteam/2011-May/000859.html
new file mode 100644
index 000000000..573d3f2c7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000859.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+ </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%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506105304.1632942D15%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="000857.html">
+ <LINK REL="Next" HREF="000860.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506105304.1632942D15%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 12:53:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000857.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000860.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#859">[ date ]</a>
+ <a href="thread.html#859">[ thread ]</a>
+ <a href="subject.html#859">[ subject ]</a>
+ <a href="author.html#859">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1171">https://bugs.mageia.org/show_bug.cgi?id=1171</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">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-05-06 14:53:04 CEST ---
+This is maybe something that could be changed in bugzilla config, so I'm not
+sure it is a duplicate of bug #252 (which is about catdap I think).
+
+--
+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="000857.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000860.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#859">[ date ]</a>
+ <a href="thread.html#859">[ thread ]</a>
+ <a href="subject.html#859">[ subject ]</a>
+ <a href="author.html#859">[ 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-May/000860.html b/zarb-ml/mageia-webteam/2011-May/000860.html
new file mode 100644
index 000000000..0c2acb4c1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000860.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+ </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%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506105842.8198642CCD%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="000859.html">
+ <LINK REL="Next" HREF="000861.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506105842.8198642CCD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 12:58:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000859.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000861.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#860">[ date ]</a>
+ <a href="thread.html#860">[ thread ]</a>
+ <a href="subject.html#860">[ subject ]</a>
+ <a href="author.html#860">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1171">https://bugs.mageia.org/show_bug.cgi?id=1171</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|RESOLVED |REOPENED
+ Resolution|DUPLICATE |
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-06 14:58:42 CEST ---
+There is some software where it may not work ( for example, all software that
+do not let us use a proper lda filter ), and the configuration should be
+software per software.
+
+--
+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="000859.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000861.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#860">[ date ]</a>
+ <a href="thread.html#860">[ thread ]</a>
+ <a href="subject.html#860">[ subject ]</a>
+ <a href="author.html#860">[ 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-May/000861.html b/zarb-ml/mageia-webteam/2011-May/000861.html
new file mode 100644
index 000000000..c436d9345
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000861.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+ </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%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506111157.B234442D15%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="000860.html">
+ <LINK REL="Next" HREF="000862.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506111157.B234442D15%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 13:11:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000860.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000862.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#861">[ date ]</a>
+ <a href="thread.html#861">[ thread ]</a>
+ <a href="subject.html#861">[ subject ]</a>
+ <a href="author.html#861">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1171">https://bugs.mageia.org/show_bug.cgi?id=1171</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-06 15:11:57 CEST ---
+Well, it would really be best to let all users have the same auth experience.
+
+Sure, this could be done locally only for Bugzilla, but the benefit from having
+it enabled on a global scale, well... whether this means having LDAP handling
+it differently, or providing a different proxy auth service for that matter.
+
+--
+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="000860.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000862.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#861">[ date ]</a>
+ <a href="thread.html#861">[ thread ]</a>
+ <a href="subject.html#861">[ subject ]</a>
+ <a href="author.html#861">[ 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-May/000862.html b/zarb-ml/mageia-webteam/2011-May/000862.html
new file mode 100644
index 000000000..c21f98448
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000862.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+ </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%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506111721.2477642DE2%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="000861.html">
+ <LINK REL="Next" HREF="000863.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506111721.2477642DE2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 13:17:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000861.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000863.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#862">[ date ]</a>
+ <a href="thread.html#862">[ thread ]</a>
+ <a href="subject.html#862">[ subject ]</a>
+ <a href="author.html#862">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1171">https://bugs.mageia.org/show_bug.cgi?id=1171</A>
+
+--- Comment #5 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-05-06 15:17:21 CEST ---
+In long term, I think an auth service would be nice. But we can also change
+bugzilla config (if possible) before that, as having an auth service (and
+agreeing how to do it) will probably take 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="000861.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000863.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#862">[ date ]</a>
+ <a href="thread.html#862">[ thread ]</a>
+ <a href="subject.html#862">[ subject ]</a>
+ <a href="author.html#862">[ 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-May/000863.html b/zarb-ml/mageia-webteam/2011-May/000863.html
new file mode 100644
index 000000000..66212eead
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000863.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+ </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%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506112705.7089B42D15%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="000862.html">
+ <LINK REL="Next" HREF="000858.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20110506112705.7089B42D15%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 13:27:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000862.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000858.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#863">[ date ]</a>
+ <a href="thread.html#863">[ thread ]</a>
+ <a href="subject.html#863">[ subject ]</a>
+ <a href="author.html#863">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1171">https://bugs.mageia.org/show_bug.cgi?id=1171</A>
+
+--- Comment #6 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-06 15:27:05 CEST ---
+I agree to do it globally, but I know for sure there is case ( sympa ) where it
+would be difficult. So let's deploy service by service first, and to keep track
+of progress, open 1 bug per 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="000862.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="000858.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#863">[ date ]</a>
+ <a href="thread.html#863">[ thread ]</a>
+ <a href="subject.html#863">[ subject ]</a>
+ <a href="author.html#863">[ 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-May/000864.html b/zarb-ml/mageia-webteam/2011-May/000864.html
new file mode 100644
index 000000000..630852db7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000864.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 252] Authentication does not work with email address
+ </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%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20110506113812.30F6242CCD%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="000858.html">
+ <LINK REL="Next" HREF="000868.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 252] Authentication does not work with email address</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20110506113812.30F6242CCD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 252] Authentication does not work with email address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 13:38:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000858.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="000868.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#864">[ date ]</a>
+ <a href="thread.html#864">[ thread ]</a>
+ <a href="subject.html#864">[ subject ]</a>
+ <a href="author.html#864">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-06 15:38:12 CEST ---
+Do you have a simple test case for C::A::S::LDAP, so we can try to take a look
+and either send a patch or a bug report ?
+
+--
+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="000858.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="000868.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#864">[ date ]</a>
+ <a href="thread.html#864">[ thread ]</a>
+ <a href="subject.html#864">[ subject ]</a>
+ <a href="author.html#864">[ 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-May/000865.html b/zarb-ml/mageia-webteam/2011-May/000865.html
new file mode 100644
index 000000000..4bb2b96cd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000865.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+ </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%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506130043.80FF942BBF%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="000855.html">
+ <LINK REL="Next" HREF="000866.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506130043.80FF942BBF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 15:00:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000855.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000866.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#865">[ date ]</a>
+ <a href="thread.html#865">[ thread ]</a>
+ <a href="subject.html#865">[ subject ]</a>
+ <a href="author.html#865">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1170">https://bugs.mageia.org/show_bug.cgi?id=1170</A>
+
+--- Comment #3 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-06 17:00:43 CEST ---
+(In reply to comment #1)
+[...]
+&gt;<i> For those changes I think it's not in the templates on svn but in the admin
+</I>&gt;<i> part of bugzilla (with an admin account).
+</I>
+I said &quot;probably can do&quot; at least.. :/
+
+Someone with the right privileges can make the changes, if no one objects.
+
+--
+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="000855.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000866.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#865">[ date ]</a>
+ <a href="thread.html#865">[ thread ]</a>
+ <a href="subject.html#865">[ subject ]</a>
+ <a href="author.html#865">[ 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-May/000866.html b/zarb-ml/mageia-webteam/2011-May/000866.html
new file mode 100644
index 000000000..71f52e748
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000866.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+ </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%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506130637.BC87042DF1%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="000865.html">
+ <LINK REL="Next" HREF="000867.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506130637.BC87042DF1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 15:06:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000865.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000867.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#866">[ date ]</a>
+ <a href="thread.html#866">[ thread ]</a>
+ <a href="subject.html#866">[ subject ]</a>
+ <a href="author.html#866">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1170">https://bugs.mageia.org/show_bug.cgi?id=1170</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 #4 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-05-06 17:06:37 CEST ---
+It looks like no one objects so I made the change to the component name and
+description.
+However it doesn't seem possible to change the order (from the web interface at
+least).
+
+--
+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="000865.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000867.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#866">[ date ]</a>
+ <a href="thread.html#866">[ thread ]</a>
+ <a href="subject.html#866">[ subject ]</a>
+ <a href="author.html#866">[ 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-May/000867.html b/zarb-ml/mageia-webteam/2011-May/000867.html
new file mode 100644
index 000000000..9e0ea6580
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000867.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+ </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%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506132659.EFB4E42D15%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="000866.html">
+ <LINK REL="Next" HREF="000897.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110506132659.EFB4E42D15%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 6 15:26:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000866.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000897.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#867">[ date ]</a>
+ <a href="thread.html#867">[ thread ]</a>
+ <a href="subject.html#867">[ subject ]</a>
+ <a href="author.html#867">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1170">https://bugs.mageia.org/show_bug.cgi?id=1170</A>
+
+Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>
+
+--- Comment #5 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-06 17:27:00 CEST ---
+(In reply to comment #0)
+The replacement description also uses the word &quot;installation&quot; - would not
+&quot;installer&quot; be better there 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="000866.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000897.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#867">[ date ]</a>
+ <a href="thread.html#867">[ thread ]</a>
+ <a href="subject.html#867">[ subject ]</a>
+ <a href="author.html#867">[ 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-May/000868.html b/zarb-ml/mageia-webteam/2011-May/000868.html
new file mode 100644
index 000000000..4c7fd3132
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000868.html
@@ -0,0 +1,121 @@
+<!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=%3C20110506220002.512EE42E3F%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="000864.html">
+ <LINK REL="Next" HREF="000869.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=%3C20110506220002.512EE42E3F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000864.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="000869.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#868">[ date ]</a>
+ <a href="thread.html#868">[ thread ]</a>
+ <a href="subject.html#868">[ subject ]</a>
+ <a href="author.html#868">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000864.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="000869.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#868">[ date ]</a>
+ <a href="thread.html#868">[ thread ]</a>
+ <a href="subject.html#868">[ subject ]</a>
+ <a href="author.html#868">[ 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-May/000869.html b/zarb-ml/mageia-webteam/2011-May/000869.html
new file mode 100644
index 000000000..883965892
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000869.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507022704.08C6742E3D%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="000868.html">
+ <LINK REL="Next" HREF="000870.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507022704.08C6742E3D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 04:27:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000868.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000870.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#869">[ date ]</a>
+ <a href="thread.html#869">[ thread ]</a>
+ <a href="subject.html#869">[ subject ]</a>
+ <a href="author.html#869">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+--- Comment #1 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-07 06:27:04 CEST ---
+@webteam, in <A HREF="http://mageia.org/en/downloads/">http://mageia.org/en/downloads/</A> both Live CD's should have a 32bit
+next to the to indicate the arch.
+
+--
+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="000868.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000870.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#869">[ date ]</a>
+ <a href="thread.html#869">[ thread ]</a>
+ <a href="subject.html#869">[ subject ]</a>
+ <a href="author.html#869">[ 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-May/000870.html b/zarb-ml/mageia-webteam/2011-May/000870.html
new file mode 100644
index 000000000..ec5c760ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000870.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507085405.8476F42D8E%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="000869.html">
+ <LINK REL="Next" HREF="000871.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507085405.8476F42D8E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 10:54:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000869.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000871.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#870">[ date ]</a>
+ <a href="thread.html#870">[ thread ]</a>
+ <a href="subject.html#870">[ subject ]</a>
+ <a href="author.html#870">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</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|NEW |ASSIGNED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="000869.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000871.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#870">[ date ]</a>
+ <a href="thread.html#870">[ thread ]</a>
+ <a href="subject.html#870">[ subject ]</a>
+ <a href="author.html#870">[ 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-May/000871.html b/zarb-ml/mageia-webteam/2011-May/000871.html
new file mode 100644
index 000000000..2e41bbad2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000871.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507085416.75DD342DB1%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="000870.html">
+ <LINK REL="Next" HREF="000872.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507085416.75DD342DB1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 10:54:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000870.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000872.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#871">[ date ]</a>
+ <a href="thread.html#871">[ thread ]</a>
+ <a href="subject.html#871">[ subject ]</a>
+ <a href="author.html#871">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</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
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="000870.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000872.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#871">[ date ]</a>
+ <a href="thread.html#871">[ thread ]</a>
+ <a href="subject.html#871">[ subject ]</a>
+ <a href="author.html#871">[ 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-May/000872.html b/zarb-ml/mageia-webteam/2011-May/000872.html
new file mode 100644
index 000000000..40ebc5f76
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000872.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507095723.09F6042DB1%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="000871.html">
+ <LINK REL="Next" HREF="000873.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507095723.09F6042DB1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 11:57:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000871.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000873.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#872">[ date ]</a>
+ <a href="thread.html#872">[ thread ]</a>
+ <a href="subject.html#872">[ subject ]</a>
+ <a href="author.html#872">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</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|ASSIGNED |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-07 13:57:23 CEST ---
+Fixed, 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 on the CC list for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000871.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000873.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#872">[ date ]</a>
+ <a href="thread.html#872">[ thread ]</a>
+ <a href="subject.html#872">[ subject ]</a>
+ <a href="author.html#872">[ 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-May/000873.html b/zarb-ml/mageia-webteam/2011-May/000873.html
new file mode 100644
index 000000000..a142bf400
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000873.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507095808.402FE42D8C%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="000872.html">
+ <LINK REL="Next" HREF="000874.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507095808.402FE42D8C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 11:58:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000872.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000874.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#873">[ date ]</a>
+ <a href="thread.html#873">[ thread ]</a>
+ <a href="subject.html#873">[ subject ]</a>
+ <a href="author.html#873">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</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|RESOLVED |REOPENED
+ 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-05-07 11:58:08 CEST ---
+Ooops sorry. Fixed the 32bit label only.
+
+As for 64bit Live CD ISOs, that's the point but I'm of no help here.
+
+--
+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="000872.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000874.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#873">[ date ]</a>
+ <a href="thread.html#873">[ thread ]</a>
+ <a href="subject.html#873">[ subject ]</a>
+ <a href="author.html#873">[ 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-May/000874.html b/zarb-ml/mageia-webteam/2011-May/000874.html
new file mode 100644
index 000000000..b72ddc5f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000874.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507101803.E42DC42D0B%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="000873.html">
+ <LINK REL="Next" HREF="000875.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Dick Gevers</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110507101803.E42DC42D0B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 12:18:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000873.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000875.html">[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#874">[ date ]</a>
+ <a href="thread.html#874">[ thread ]</a>
+ <a href="subject.html#874">[ subject ]</a>
+ <a href="author.html#874">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+Dick Gevers &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dvgevers at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+
+--- Comment #4 from Dick Gevers &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dvgevers at xs4all.nl</A>&gt; 2011-05-07 12:18:04 CEST ---
+Thank you.
+
+Bugsquad: please reassign and/or re-prioritise. TIA
+
+--
+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="000873.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000875.html">[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#874">[ date ]</a>
+ <a href="thread.html#874">[ thread ]</a>
+ <a href="subject.html#874">[ subject ]</a>
+ <a href="author.html#874">[ 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-May/000875.html b/zarb-ml/mageia-webteam/2011-May/000875.html
new file mode 100644
index 000000000..59c124a74
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000875.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in 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%201188%5D%20%5BNew%5D%20Topic%20subscription%20defaults%20wrong%0A%09in%20forum&In-Reply-To=%3Cbug-1188-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="000874.html">
+ <LINK REL="Next" HREF="000876.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20%5BNew%5D%20Topic%20subscription%20defaults%20wrong%0A%09in%20forum&In-Reply-To=%3Cbug-1188-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 13:50:52 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000874.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000876.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#875">[ date ]</a>
+ <a href="thread.html#875">[ thread ]</a>
+ <a href="subject.html#875">[ subject ]</a>
+ <a href="author.html#875">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+ Summary: Topic subscription defaults wrong in forum
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="https://forums.mageia.org/en/index.php">https://forums.mageia.org/en/index.php</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">zen25000 at zen.co.uk</A>
+
+
+Description of problem:
+When replying to a forum post I expect to be automatically subscribed to that
+topic in order to get a topic reply notification by email.
+
+At present the forum appears to be set up to *not* send email notification
+unless the subscription link is clicked.
+
+What is very confusing is that the subscription link looks like a check box
+that is *already* checked to enable subscription to the topic.
+
+This bound to confuse users - it has me!
+
+Can we :-
+1. Change the default to always send topic reply notifications.
+2. Change the icon to not give the impression that notification is already
+subscribed.
+
+Without this the forum will be dead IMHO.
+
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1.
+2.
+3.
+
+--
+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="000874.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000876.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#875">[ date ]</a>
+ <a href="thread.html#875">[ thread ]</a>
+ <a href="subject.html#875">[ subject ]</a>
+ <a href="author.html#875">[ 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-May/000876.html b/zarb-ml/mageia-webteam/2011-May/000876.html
new file mode 100644
index 000000000..0bd1fa6ec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000876.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507133957.DAAA542E38%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="000875.html">
+ <LINK REL="Next" HREF="000877.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>James Kerr</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507133957.DAAA542E38%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 15:39:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000875.html">[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000877.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#876">[ date ]</a>
+ <a href="thread.html#876">[ thread ]</a>
+ <a href="subject.html#876">[ subject ]</a>
+ <a href="author.html#876">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #1 from James Kerr &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jim at jkerr82508.free-online.co.uk</A>&gt; 2011-05-07 17:39:58 CEST ---
+I've been receiving email notifications of new posts to threads to which I've
+posted. I haven't had to select the subscription option; I've been
+automatically subscribed. Most forums provide an option in the User Control
+Panel where this can be set globally, and I thought that I had found it once,
+but I cant find it now!
+
+--
+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="000875.html">[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000877.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#876">[ date ]</a>
+ <a href="thread.html#876">[ thread ]</a>
+ <a href="subject.html#876">[ subject ]</a>
+ <a href="author.html#876">[ 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-May/000877.html b/zarb-ml/mageia-webteam/2011-May/000877.html
new file mode 100644
index 000000000..037dd8308
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000877.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507135144.DF40C42D93%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="000876.html">
+ <LINK REL="Next" HREF="000878.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507135144.DF40C42D93%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 15:51:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000876.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000878.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#877">[ date ]</a>
+ <a href="thread.html#877">[ thread ]</a>
+ <a href="subject.html#877">[ subject ]</a>
+ <a href="author.html#877">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #2 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-07 17:51:45 CEST ---
+(In reply to comment #1)
+&gt;<i>I've been receiving email notifications of new posts to threads to which I've
+</I>&gt;<i>posted. I haven't had to select the subscription option; I've been
+</I>&gt;<i>automatically subscribed.
+</I>
+Well I have not - strange.
+
+&gt;<i>Most forums provide an option in the User Control
+</I>&gt;<i>Panel where this can be set globally, and I thought that I had found it once,
+</I>&gt;<i>but I cant find it now!
+</I>
+Neither can I.
+All I find is a section that says that I am not subscribed to any topics,
+despite making several posts last night.
+
+--
+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="000876.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000878.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#877">[ date ]</a>
+ <a href="thread.html#877">[ thread ]</a>
+ <a href="subject.html#877">[ subject ]</a>
+ <a href="author.html#877">[ 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-May/000878.html b/zarb-ml/mageia-webteam/2011-May/000878.html
new file mode 100644
index 000000000..c206fb744
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000878.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%0A%09in%20forum&In-Reply-To=%3CBANLkTinikqwpihSBZQJN2YvSwEwLhZ7cQg%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="000877.html">
+ <LINK REL="Next" HREF="000879.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%0A%09in%20forum&In-Reply-To=%3CBANLkTinikqwpihSBZQJN2YvSwEwLhZ7cQg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">molch.b at googlemail.com
+ </A><BR>
+ <I>Sat May 7 16:10:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000877.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000879.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#878">[ date ]</a>
+ <a href="thread.html#878">[ thread ]</a>
+ <a href="subject.html#878">[ subject ]</a>
+ <a href="author.html#878">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/5/7 Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugzilla-daemon at mageia.org</A>&gt;:
+&gt;<i> <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+</I>&gt;<i>
+</I>&gt;<i> --- Comment #2 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-07 17:51:45 CEST ---
+</I>&gt;<i> (In reply to comment #1)
+</I>&gt;&gt;<i>I've been receiving email notifications of new posts to threads to which I've
+</I>&gt;&gt;<i>posted. I haven't had to select the subscription option; I've been
+</I>&gt;&gt;<i>automatically subscribed.
+</I>&gt;<i>
+</I>&gt;<i> Well I have not - strange.
+</I>&gt;<i>
+</I>&gt;&gt;<i>Most forums provide an option in the User Control
+</I>&gt;&gt;<i>Panel where this can be set globally, and I thought that I had found it once,
+</I>&gt;&gt;<i>but I cant find it now!
+</I>&gt;<i>
+</I>&gt;<i> Neither can I.
+</I>&gt;<i> All I find is a section that says that I am not subscribed to any topics,
+</I>&gt;<i> despite making several posts last night.
+</I>
+Same here. I've been active in some threads but never received any
+notifications.
+
+--
+wobo
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000877.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000879.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#878">[ date ]</a>
+ <a href="thread.html#878">[ thread ]</a>
+ <a href="subject.html#878">[ subject ]</a>
+ <a href="author.html#878">[ 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-May/000879.html b/zarb-ml/mageia-webteam/2011-May/000879.html
new file mode 100644
index 000000000..1887154a7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000879.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507141205.68CD142B12%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="000878.html">
+ <LINK REL="Next" HREF="000880.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507141205.68CD142B12%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 16:12:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000878.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000880.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#879">[ date ]</a>
+ <a href="thread.html#879">[ thread ]</a>
+ <a href="subject.html#879">[ subject ]</a>
+ <a href="author.html#879">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #3 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-05-07 16:12:05 CEST ---
+Same here. I've been active in some threads and also started threads of my own,
+never received any notification.
+
+--
+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="000878.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000880.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#879">[ date ]</a>
+ <a href="thread.html#879">[ thread ]</a>
+ <a href="subject.html#879">[ subject ]</a>
+ <a href="author.html#879">[ 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-May/000880.html b/zarb-ml/mageia-webteam/2011-May/000880.html
new file mode 100644
index 000000000..cea4ab01b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000880.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507150442.8343F42E41%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="000879.html">
+ <LINK REL="Next" HREF="000881.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>James Kerr</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507150442.8343F42E41%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 17:04:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000879.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000881.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#880">[ date ]</a>
+ <a href="thread.html#880">[ thread ]</a>
+ <a href="subject.html#880">[ subject ]</a>
+ <a href="author.html#880">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #4 from James Kerr &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jim at jkerr82508.free-online.co.uk</A>&gt; 2011-05-07 19:04:42 CEST ---
+I have a vague recollection of editing my email address in the Account
+Settings. IIRC it wasn't displayed properly, but my memory is very unreliable
+these days.
+I really should keep notes of things like this :)
+
+--
+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="000879.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000881.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#880">[ date ]</a>
+ <a href="thread.html#880">[ thread ]</a>
+ <a href="subject.html#880">[ subject ]</a>
+ <a href="author.html#880">[ 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-May/000881.html b/zarb-ml/mageia-webteam/2011-May/000881.html
new file mode 100644
index 000000000..f1e90ea68
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000881.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507152517.3C91D42E41%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="000880.html">
+ <LINK REL="Next" HREF="000882.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507152517.3C91D42E41%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 17:25:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000880.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000882.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#881">[ date ]</a>
+ <a href="thread.html#881">[ thread ]</a>
+ <a href="subject.html#881">[ subject ]</a>
+ <a href="author.html#881">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #5 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-07 17:25:17 CEST ---
+This may help get to the bottom of it ;-)
+<A HREF="https://forums.mageia.org/en/viewtopic.php?f=7&amp;t=210">https://forums.mageia.org/en/viewtopic.php?f=7&amp;t=210</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="000880.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000882.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#881">[ date ]</a>
+ <a href="thread.html#881">[ thread ]</a>
+ <a href="subject.html#881">[ subject ]</a>
+ <a href="author.html#881">[ 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-May/000882.html b/zarb-ml/mageia-webteam/2011-May/000882.html
new file mode 100644
index 000000000..b7e5aa943
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000882.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507161240.D2E8E42E44%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="000881.html">
+ <LINK REL="Next" HREF="000883.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507161240.D2E8E42E44%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 18:12:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000881.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000883.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#882">[ date ]</a>
+ <a href="thread.html#882">[ thread ]</a>
+ <a href="subject.html#882">[ subject ]</a>
+ <a href="author.html#882">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #6 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-07 18:12:41 CEST ---
+The option to get notifications upon replies is still there:
+<A HREF="https://forums.mageia.org/en/ucp.php?i=prefs&amp;mode=post">https://forums.mageia.org/en/ucp.php?i=prefs&amp;mode=post</A>
+
+User Control Panel -&gt; Board Preferences -&gt; Edit posting defaults.
+
+I can't remember what the default was...
+
+--
+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="000881.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000883.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#882">[ date ]</a>
+ <a href="thread.html#882">[ thread ]</a>
+ <a href="subject.html#882">[ subject ]</a>
+ <a href="author.html#882">[ 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-May/000883.html b/zarb-ml/mageia-webteam/2011-May/000883.html
new file mode 100644
index 000000000..2bd427b95
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000883.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507170742.E21B842B07%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="000882.html">
+ <LINK REL="Next" HREF="000884.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507170742.E21B842B07%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 19:07:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000882.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000884.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#883">[ date ]</a>
+ <a href="thread.html#883">[ thread ]</a>
+ <a href="subject.html#883">[ subject ]</a>
+ <a href="author.html#883">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #7 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-07 19:07:43 CEST ---
+(In reply to comment #6)
+Thanks Ahmad - that option is fairly well hidden and the default is &quot;No&quot; which
+explains why people are missing it and not getting notifications.
+
+If Jim, Wolfgang and I failed to find it then it needs attention IMHO. ;)
+
+So both points of this bug report still apply.
+
+--
+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="000882.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000884.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#883">[ date ]</a>
+ <a href="thread.html#883">[ thread ]</a>
+ <a href="subject.html#883">[ subject ]</a>
+ <a href="author.html#883">[ 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-May/000884.html b/zarb-ml/mageia-webteam/2011-May/000884.html
new file mode 100644
index 000000000..14d35e3ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000884.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507171736.B334842E41%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="000883.html">
+ <LINK REL="Next" HREF="000885.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507171736.B334842E41%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 19:17:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000883.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000885.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#884">[ date ]</a>
+ <a href="thread.html#884">[ thread ]</a>
+ <a href="subject.html#884">[ subject ]</a>
+ <a href="author.html#884">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #8 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-07 19:17:36 CEST ---
+I didn't negate the purpose of the bug report; that option should be opt-out.
+
+--
+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="000883.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000885.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#884">[ date ]</a>
+ <a href="thread.html#884">[ thread ]</a>
+ <a href="subject.html#884">[ subject ]</a>
+ <a href="author.html#884">[ 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-May/000885.html b/zarb-ml/mageia-webteam/2011-May/000885.html
new file mode 100644
index 000000000..48173135e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000885.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507173318.0561E42E45%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="000884.html">
+ <LINK REL="Next" HREF="000886.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>James Kerr</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507173318.0561E42E45%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 19:33:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000884.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000886.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#885">[ date ]</a>
+ <a href="thread.html#885">[ thread ]</a>
+ <a href="subject.html#885">[ subject ]</a>
+ <a href="author.html#885">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #9 from James Kerr &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jim at jkerr82508.free-online.co.uk</A>&gt; 2011-05-07 19:33:18 CEST ---
+(In reply to comment #7)
+&gt;<i>
+</I>&gt;<i> If Jim, Wolfgang and I failed to find it then it needs attention IMHO. ;)
+</I>
+Usually when I subscribe to a Forum, I go through all the options, to make sure
+that they are set the way I want them. I suppose that's how I found it the
+first 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 the assignee for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000884.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000886.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#885">[ date ]</a>
+ <a href="thread.html#885">[ thread ]</a>
+ <a href="subject.html#885">[ subject ]</a>
+ <a href="author.html#885">[ 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-May/000886.html b/zarb-ml/mageia-webteam/2011-May/000886.html
new file mode 100644
index 000000000..e9874ff33
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000886.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507173740.26DC642E41%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="000885.html">
+ <LINK REL="Next" HREF="000887.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507173740.26DC642E41%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 19:37:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000885.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000887.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#886">[ date ]</a>
+ <a href="thread.html#886">[ thread ]</a>
+ <a href="subject.html#886">[ subject ]</a>
+ <a href="author.html#886">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #10 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-07 19:37:40 CEST ---
+(In reply to comment #9)
+&gt;<i> (In reply to comment #7)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; If Jim, Wolfgang and I failed to find it then it needs attention IMHO. ;)
+</I>&gt;<i>
+</I>&gt;<i> Usually when I subscribe to a Forum, I go through all the options, to make sure
+</I>&gt;<i> that they are set the way I want them. I suppose that's how I found it the
+</I>&gt;<i> first time.
+</I>
+(Ditto here, old habit... :)).
+
+--
+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="000885.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000887.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#886">[ date ]</a>
+ <a href="thread.html#886">[ thread ]</a>
+ <a href="subject.html#886">[ subject ]</a>
+ <a href="author.html#886">[ 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-May/000887.html b/zarb-ml/mageia-webteam/2011-May/000887.html
new file mode 100644
index 000000000..324e0fad1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000887.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507183834.C3BAA42E44%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="000886.html">
+ <LINK REL="Next" HREF="000888.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507183834.C3BAA42E44%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 20:38:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000886.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000888.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#887">[ date ]</a>
+ <a href="thread.html#887">[ thread ]</a>
+ <a href="subject.html#887">[ subject ]</a>
+ <a href="author.html#887">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #11 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-05-07 22:38:34 CEST ---
+(In reply to comment #8)
+&gt;<i> I didn't negate the purpose of the bug report; that option should be opt-out.
+</I>
+Yes, that's the way I am used to, so I never cared for that option because I
+don't want to opt out. But it seems that the version of phpbb3 we are using
+sets the option default at &quot;No&quot;, so we have to opt in.
+
+--
+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="000886.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000888.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#887">[ date ]</a>
+ <a href="thread.html#887">[ thread ]</a>
+ <a href="subject.html#887">[ subject ]</a>
+ <a href="author.html#887">[ 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-May/000888.html b/zarb-ml/mageia-webteam/2011-May/000888.html
new file mode 100644
index 000000000..cca447ea0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000888.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507204740.5300542E37%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="000887.html">
+ <LINK REL="Next" HREF="000889.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507204740.5300542E37%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 22:47:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000887.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000889.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#888">[ date ]</a>
+ <a href="thread.html#888">[ thread ]</a>
+ <a href="subject.html#888">[ subject ]</a>
+ <a href="author.html#888">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #12 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-08 00:47:40 CEST ---
+(In reply to comment #11)
+&gt;<i>... But it seems that the version of phpbb3 we are using
+</I>&gt;<i> sets the option default at &quot;No&quot;, so we have to opt in.
+</I>
+Surely this must be configurable in the board setup, so I hope it will be
+changed.
+
+No one else has mentioned the graphic.
+It is really confusing as it gives the impression that a subscription is
+enabled when it is not.
+
+--
+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="000887.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000889.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#888">[ date ]</a>
+ <a href="thread.html#888">[ thread ]</a>
+ <a href="subject.html#888">[ subject ]</a>
+ <a href="author.html#888">[ 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-May/000889.html b/zarb-ml/mageia-webteam/2011-May/000889.html
new file mode 100644
index 000000000..95197bc56
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000889.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507212042.1C76442E37%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="000888.html">
+ <LINK REL="Next" HREF="000915.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110507212042.1C76442E37%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 7 23:20:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000888.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000915.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#889">[ date ]</a>
+ <a href="thread.html#889">[ thread ]</a>
+ <a href="subject.html#889">[ subject ]</a>
+ <a href="author.html#889">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #13 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-08 01:20:42 CEST ---
+That would be an upstream &quot;bug&quot;, it looks like that in a couple of forums I
+use... e.g. <A HREF="http://forums.mozillazine.org/viewtopic.php?f=23&amp;t=1883415">http://forums.mozillazine.org/viewtopic.php?f=23&amp;t=1883415</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="000888.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000915.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#889">[ date ]</a>
+ <a href="thread.html#889">[ thread ]</a>
+ <a href="subject.html#889">[ subject ]</a>
+ <a href="author.html#889">[ 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-May/000890.html b/zarb-ml/mageia-webteam/2011-May/000890.html
new file mode 100644
index 000000000..83d488584
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000890.html
@@ -0,0 +1,132 @@
+<!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=%3C20110507220003.023E842E53%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="001019.html">
+ <LINK REL="Next" HREF="000891.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=%3C20110507220003.023E842E53%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 8 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001019.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000891.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#890">[ date ]</a>
+ <a href="thread.html#890">[ thread ]</a>
+ <a href="subject.html#890">[ subject ]</a>
+ <a href="author.html#890">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001019.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000891.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#890">[ date ]</a>
+ <a href="thread.html#890">[ thread ]</a>
+ <a href="subject.html#890">[ subject ]</a>
+ <a href="author.html#890">[ 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-May/000891.html b/zarb-ml/mageia-webteam/2011-May/000891.html
new file mode 100644
index 000000000..023daf17b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000891.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110508031011.900A042B4D%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="000890.html">
+ <LINK REL="Next" HREF="000892.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110508031011.900A042B4D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 8 05:10:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000890.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000892.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#891">[ date ]</a>
+ <a href="thread.html#891">[ thread ]</a>
+ <a href="subject.html#891">[ subject ]</a>
+ <a href="author.html#891">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ennael1 at gmail.com</A>
+
+--- Comment #5 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-08 07:10:11 CEST ---
+Should be closed as WONTFIX, the 64bit live CD/DVD issue has been discussed
+many times and the conclusion was always the same, it's not feasible...
+
+--
+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="000890.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000892.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#891">[ date ]</a>
+ <a href="thread.html#891">[ thread ]</a>
+ <a href="subject.html#891">[ subject ]</a>
+ <a href="author.html#891">[ 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-May/000892.html b/zarb-ml/mageia-webteam/2011-May/000892.html
new file mode 100644
index 000000000..e82382a2c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000892.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110508110509.134DD42E4E%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="000891.html">
+ <LINK REL="Next" HREF="000893.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110508110509.134DD42E4E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 8 13:05:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000891.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000893.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#892">[ date ]</a>
+ <a href="thread.html#892">[ thread ]</a>
+ <a href="subject.html#892">[ subject ]</a>
+ <a href="author.html#892">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+--- Comment #6 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-08 15:05:09 CEST ---
+The issue doesn't depend on a single parameter, there are several in play,
+among which:
+ * increased load on ISO production and QA - for the time being, it's not
+automated enough and we don't have a ISO QA team big/stable enough to increase
+the number of ISOs to manage;
+ * increased inventory of released ISO; induces a harder to read offer (not
+that we should have one and only one ISO to propose, but we have to find the
+best storyline to help people choose the ISO they need - we already have 7
+ISOs: DVD 32b &amp; 64b, CD dual, LiveCD 32b KDE &amp; GNOME, boot ISO 32b &amp; 64b);
+
+(please add other reasons here, maybe link them against a separate bug when
+appropriate, so we can keep this as a reference)
+
+--
+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="000891.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000893.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#892">[ date ]</a>
+ <a href="thread.html#892">[ thread ]</a>
+ <a href="subject.html#892">[ subject ]</a>
+ <a href="author.html#892">[ 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-May/000893.html b/zarb-ml/mageia-webteam/2011-May/000893.html
new file mode 100644
index 000000000..06259838a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000893.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110508115906.933E742E3F%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="000892.html">
+ <LINK REL="Next" HREF="000894.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110508115906.933E742E3F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 8 13:59:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000892.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000894.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#893">[ date ]</a>
+ <a href="thread.html#893">[ thread ]</a>
+ <a href="subject.html#893">[ subject ]</a>
+ <a href="author.html#893">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>
+
+--- Comment #7 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-05-08 15:59:06 CEST ---
+imho: 32bit and 64bit versions cannot be counted as different ISO for the
+reasons of helping people choose.
+
+imho, this could improve, by grouping the same ones for 32bit and 64bit
+together. (and boot.iso doesn't really count), so imho: user choices are:
+ * Free DVD installer
+ * dual arch CD installer (only advanced users)
+ * LiveCD KDE
+ * LiveCD Gnome
+
+for users, choosing between 32bit and 64bit is not really a choice...
+
+
+that 64bit executable files and directories take a little more space is normal.
+i guess if this is feasible that we should find some more packages to delete
+from the liveCD. also, since the livecd doesn't contain all locales, perhaps
+the 32bit one is too tight as well?
+
+secondly, in mdv times in the past, some people had made a community version of
+the 64bit liveCD, does anyone have any info on that and what _THEY_ removed to
+make it fit?
+
+thirdly, perhaps, one could make a dual arch liveDVD instead? (i donno if this
+is what users would want though.)
+
+if the problem is really space-constraints, then perhaps one could explain to
+users that the 64bit version is only in LiveDVD format? (just a suggestion)
+
+another option is to have ONLY a dual arch LiveDVD, that would effectively
+decrease ISO production time and QA load...
+
+but of course, the load on ISO production and QA is one the biggest problems,
+which should be easily fixed:
+ - ISO production =&gt; automatisation
+ - QA =&gt; just find more people to test ISOs
+
+of course, this give extra load to sysadmin team, and we're short on time
+too...
+
+not an easy problem...
+
+i gave some suggestions here... maybe the appropriate decision makers can
+evaluate all the options and decide from there?
+
+--
+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="000892.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000894.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#893">[ date ]</a>
+ <a href="thread.html#893">[ thread ]</a>
+ <a href="subject.html#893">[ subject ]</a>
+ <a href="author.html#893">[ 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-May/000894.html b/zarb-ml/mageia-webteam/2011-May/000894.html
new file mode 100644
index 000000000..9e56893ca
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000894.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110508122847.315BC42E55%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="000893.html">
+ <LINK REL="Next" HREF="000895.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110508122847.315BC42E55%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 8 14:28:47 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000893.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000895.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#894">[ date ]</a>
+ <a href="thread.html#894">[ thread ]</a>
+ <a href="subject.html#894">[ subject ]</a>
+ <a href="author.html#894">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+--- Comment #8 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-05-08 16:28:47 CEST ---
+Perhaps we should explain on download link that we cannot do 64bit LiveCDs,
+because we do not have enough QA people, and if they would agree to QA the
+ISO's completely, that we can make them?
+
+--
+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="000893.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000895.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#894">[ date ]</a>
+ <a href="thread.html#894">[ thread ]</a>
+ <a href="subject.html#894">[ subject ]</a>
+ <a href="author.html#894">[ 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-May/000895.html b/zarb-ml/mageia-webteam/2011-May/000895.html
new file mode 100644
index 000000000..b764dd021
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000895.html
@@ -0,0 +1,132 @@
+<!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=%3C20110508220002.C3F5742E77%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="000894.html">
+ <LINK REL="Next" HREF="000896.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=%3C20110508220002.C3F5742E77%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 9 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000894.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000896.html">[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#895">[ date ]</a>
+ <a href="thread.html#895">[ thread ]</a>
+ <a href="subject.html#895">[ subject ]</a>
+ <a href="author.html#895">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000894.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000896.html">[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#895">[ date ]</a>
+ <a href="thread.html#895">[ thread ]</a>
+ <a href="subject.html#895">[ subject ]</a>
+ <a href="author.html#895">[ 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-May/000896.html b/zarb-ml/mageia-webteam/2011-May/000896.html
new file mode 100644
index 000000000..258c6da02
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000896.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico
+ </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%201220%5D%20%5BNew%5D%20The%20Mageia%20forums%20should%20use%20the%0A%09mageia%20favicon.ico&In-Reply-To=%3Cbug-1220-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="000895.html">
+ <LINK REL="Next" HREF="000899.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201220%5D%20%5BNew%5D%20The%20Mageia%20forums%20should%20use%20the%0A%09mageia%20favicon.ico&In-Reply-To=%3Cbug-1220-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 9 06:24:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000895.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000899.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#896">[ date ]</a>
+ <a href="thread.html#896">[ thread ]</a>
+ <a href="subject.html#896">[ subject ]</a>
+ <a href="author.html#896">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+
+ Summary: The Mageia forums should use the mageia favicon.ico
+ Product: Websites
+ Version: trunk
+ Platform: All
+ 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">ahmadsamir3891 at gmail.com</A>
+
+
+The Mageia forums should use the mageia favicon.ico.
+
+--
+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="000895.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000899.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#896">[ date ]</a>
+ <a href="thread.html#896">[ thread ]</a>
+ <a href="subject.html#896">[ subject ]</a>
+ <a href="author.html#896">[ 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-May/000897.html b/zarb-ml/mageia-webteam/2011-May/000897.html
new file mode 100644
index 000000000..e6245e6a8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000897.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+ </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%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110509045518.5909342E8B%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="000867.html">
+ <LINK REL="Next" HREF="000856.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201170%5D%20Users%20select%20%22Installation%22%20component%0A%20by%20mistake%20more%20than%20often&In-Reply-To=%3C20110509045518.5909342E8B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 9 06:55:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000867.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000856.html">[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#897">[ date ]</a>
+ <a href="thread.html#897">[ thread ]</a>
+ <a href="subject.html#897">[ subject ]</a>
+ <a href="author.html#897">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1170">https://bugs.mageia.org/show_bug.cgi?id=1170</A>
+
+--- Comment #6 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-09 08:55:15 CEST ---
+(In reply to comment #5)
+&gt;<i> (In reply to comment #0)
+</I>&gt;<i> The replacement description also uses the word &quot;installation&quot; - would not
+</I>&gt;<i> &quot;installer&quot; be better there as well?
+</I>
+It's been fixed too (dunno who fixed, either boklm or dmorgan or someone else).
+
+--
+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="000867.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A></li>
+ <LI>Next message: <A HREF="000856.html">[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#897">[ date ]</a>
+ <a href="thread.html#897">[ thread ]</a>
+ <a href="subject.html#897">[ subject ]</a>
+ <a href="author.html#897">[ 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-May/000898.html b/zarb-ml/mageia-webteam/2011-May/000898.html
new file mode 100644
index 000000000..d437b2c19
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000898.html
@@ -0,0 +1,134 @@
+<!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=%3C20110509220003.1CDB942E92%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="000899.html">
+ <LINK REL="Next" HREF="000900.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=%3C20110509220003.1CDB942E92%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 10 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000899.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="000900.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#898">[ date ]</a>
+ <a href="thread.html#898">[ thread ]</a>
+ <a href="subject.html#898">[ subject ]</a>
+ <a href="author.html#898">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000899.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="000900.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#898">[ date ]</a>
+ <a href="thread.html#898">[ thread ]</a>
+ <a href="subject.html#898">[ subject ]</a>
+ <a href="author.html#898">[ 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-May/000899.html b/zarb-ml/mageia-webteam/2011-May/000899.html
new file mode 100644
index 000000000..9726df03b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000899.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+ </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%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110510200650.B25E342EAF%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="000896.html">
+ <LINK REL="Next" HREF="000898.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201220%5D%20The%20Mageia%20forums%20should%20use%20the%20mageia%0A%09favicon.ico&In-Reply-To=%3C20110510200650.B25E342EAF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 10 22:06:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000896.html">[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="000898.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#899">[ date ]</a>
+ <a href="thread.html#899">[ thread ]</a>
+ <a href="subject.html#899">[ subject ]</a>
+ <a href="author.html#899">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+
+Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>
+
+--- Comment #1 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-11 00:06:50 CEST ---
+(In reply to comment #0)
+&gt;<i> The Mageia forums should use the mageia favicon.ico.
+</I>
+You beat me to this one!
+
+May I suggest a different colour background for the forum favicon to make it
+easy to distinguish from bugzilla on a bookmark toolbar ;-)
+
+--
+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="000896.html">[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico
+</A></li>
+ <LI>Next message: <A HREF="000898.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#899">[ date ]</a>
+ <a href="thread.html#899">[ thread ]</a>
+ <a href="subject.html#899">[ subject ]</a>
+ <a href="author.html#899">[ 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-May/000900.html b/zarb-ml/mageia-webteam/2011-May/000900.html
new file mode 100644
index 000000000..e53c3f96d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000900.html
@@ -0,0 +1,135 @@
+<!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=%3C20110510220002.E8F8942EC4%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="000898.html">
+ <LINK REL="Next" HREF="000901.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=%3C20110510220002.E8F8942EC4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 11 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000898.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000901.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#900">[ date ]</a>
+ <a href="thread.html#900">[ thread ]</a>
+ <a href="subject.html#900">[ subject ]</a>
+ <a href="author.html#900">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000898.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000901.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#900">[ date ]</a>
+ <a href="thread.html#900">[ thread ]</a>
+ <a href="subject.html#900">[ subject ]</a>
+ <a href="author.html#900">[ 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-May/000901.html b/zarb-ml/mageia-webteam/2011-May/000901.html
new file mode 100644
index 000000000..f8f8f14b5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000901.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105111714.43099.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="000900.html">
+ <LINK REL="Next" HREF="000902.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105111714.43099.marcello.anni%40alice.it%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">marcello.anni at alice.it
+ </A><BR>
+ <I>Wed May 11 17:14:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000900.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000902.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#901">[ date ]</a>
+ <a href="thread.html#901">[ thread ]</a>
+ <a href="subject.html#901">[ subject ]</a>
+ <a href="author.html#901">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi all,
+
+i'm a mageia contributor (blogteam writer, translator, marketing guy) and with
+the ildn, a non-profit organisation that hosts various distro forums in italy,
+i set up a powerful framework for the italian community:
+
+<A HREF="http://www.mageiaitalia.org/">http://www.mageiaitalia.org/</A>
+
+can we have the official approval by the web-team and a redirect from mageia.org
+to our website? thanks
+
+
+cheers,
+Marcello
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000900.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000902.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#901">[ date ]</a>
+ <a href="thread.html#901">[ thread ]</a>
+ <a href="subject.html#901">[ subject ]</a>
+ <a href="author.html#901">[ 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-May/000902.html b/zarb-ml/mageia-webteam/2011-May/000902.html
new file mode 100644
index 000000000..347cb5292
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000902.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105111919.53264.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="000901.html">
+ <LINK REL="Next" HREF="000903.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105111919.53264.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed May 11 19:19:52 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000901.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000903.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#902">[ date ]</a>
+ <a href="thread.html#902">[ thread ]</a>
+ <a href="subject.html#902">[ subject ]</a>
+ <a href="author.html#902">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; schrieb am 11.05.2011
+&gt;<i> i'm a mageia contributor (blogteam writer, translator, marketing
+</I>&gt;<i> guy) and with the ildn, a non-profit organisation that hosts
+</I>&gt;<i> various distro forums in italy, i set up a powerful framework for
+</I>&gt;<i> the italian community:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://www.mageiaitalia.org/">http://www.mageiaitalia.org/</A>
+</I>&gt;<i>
+</I>&gt;<i> can we have the official approval by the web-team and a redirect
+</I>&gt;<i> from mageia.org to our website? thanks
+</I>A redirect from mageia.org to your website?
+I don't like the idea of having split communities (like MIB) like it
+was the case with Mandriva for so many years.
+Why not participate in Mageia directly?
+
+Oliver
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110511/c66cc33d/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000901.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000903.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#902">[ date ]</a>
+ <a href="thread.html#902">[ thread ]</a>
+ <a href="subject.html#902">[ subject ]</a>
+ <a href="author.html#902">[ 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-May/000903.html b/zarb-ml/mageia-webteam/2011-May/000903.html
new file mode 100644
index 000000000..4b6bea783
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000903.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105112004.13162.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="000902.html">
+ <LINK REL="Next" HREF="000905.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105112004.13162.marcello.anni%40alice.it%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">marcello.anni at alice.it
+ </A><BR>
+ <I>Wed May 11 20:04:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000902.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000905.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#903">[ date ]</a>
+ <a href="thread.html#903">[ thread ]</a>
+ <a href="subject.html#903">[ subject ]</a>
+ <a href="author.html#903">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; schrieb am 11.05.2011
+</I>&gt;<i> &gt; i'm a mageia contributor (blogteam writer, translator, marketing
+</I>&gt;<i> &gt; guy) and with the ildn, a non-profit organisation that hosts
+</I>&gt;<i> &gt; various distro forums in italy, i set up a powerful framework for
+</I>&gt;<i> &gt; the italian community:
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; <A HREF="http://www.mageiaitalia.org/">http://www.mageiaitalia.org/</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; can we have the official approval by the web-team and a redirect
+</I>&gt;<i> &gt; from mageia.org to our website? thanks
+</I>&gt;<i> A redirect from mageia.org to your website?
+</I>&gt;<i> I don't like the idea of having split communities (like MIB) like it
+</I>&gt;<i> was the case with Mandriva for so many years.
+</I>&gt;<i> Why not participate in Mageia directly?
+</I>&gt;<i>
+</I>&gt;<i> Oliver
+</I>&gt;<i>
+</I>
+simply because the framework provided by ildn is really powerful while official
+one can't provide such a thing. in plus, it doesn't exist yet an italian forum
+provided by mageia, otherwise i'd agree with you. if i'm the first to setup an
+italian forum, but i only want to use a different platform, where is the
+problem? i'm waiting for your reply
+
+
+cheers,
+Marcello
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000902.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000905.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#903">[ date ]</a>
+ <a href="thread.html#903">[ thread ]</a>
+ <a href="subject.html#903">[ subject ]</a>
+ <a href="author.html#903">[ 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-May/000904.html b/zarb-ml/mageia-webteam/2011-May/000904.html
new file mode 100644
index 000000000..e4e61be74
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000904.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTi%3Du_E4QhGuLU0f-Opj2nBBCTMxc8g%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="000905.html">
+ <LINK REL="Next" HREF="000906.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTi%3Du_E4QhGuLU0f-Opj2nBBCTMxc8g%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed May 11 20:16:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000905.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000906.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#904">[ date ]</a>
+ <a href="thread.html#904">[ thread ]</a>
+ <a href="subject.html#904">[ subject ]</a>
+ <a href="author.html#904">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Well, I don't think showing your site as some kind of official Mageia
+site is a good idea at all. Providing the users with an italian
+translation of the official website is a far better way for the user.
+He will always prefer information from &#359;he official website over a
+3rd-party site. And don't worry, soon the official Mageia site will be
+powerful as well (whatever you mean by that).
+
+If you are talking about an italian forum, that's a whole case. Open
+it up and let it be listed in the Mageia forums under &quot;Supporting
+community forums&quot; - a link which will redirect the user to your forum.
+At least this is how the others are doing it.
+Soon we will have these links in the header of the Mageia forums, as
+we see it in the Mandriva forum.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000905.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000906.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#904">[ date ]</a>
+ <a href="thread.html#904">[ thread ]</a>
+ <a href="subject.html#904">[ subject ]</a>
+ <a href="author.html#904">[ 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-May/000905.html b/zarb-ml/mageia-webteam/2011-May/000905.html
new file mode 100644
index 000000000..045761afd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000905.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105112026.49627.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="000903.html">
+ <LINK REL="Next" HREF="000904.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105112026.49627.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed May 11 20:26:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000903.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000904.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#905">[ date ]</a>
+ <a href="thread.html#905">[ thread ]</a>
+ <a href="subject.html#905">[ subject ]</a>
+ <a href="author.html#905">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; schrieb am 11.05.2011
+&gt;<i> simply because the framework provided by ildn is really powerful
+</I>&gt;<i> while official one can't provide such a thing. in plus, it doesn't
+</I>&gt;<i> exist yet an italian forum provided by mageia, otherwise i'd agree
+</I>&gt;<i> with you. if i'm the first to setup an italian forum, but i only
+</I>&gt;<i> want to use a different platform, where is the problem? i'm
+</I>&gt;<i> waiting for your reply
+</I>What is that powerful about their framework, that Mageia does not
+have?
+Any specifics? I don't recall you ever asking for any infrastructure on
+this list or any of the others.
+Neither do I remember anyone except the Germans to ask for a forum of
+their own (I know it's not running yet, some technical problem)
+But a bit of reasing why I (I don't say &quot;we&quot; because I can't speak for
+any of the others, this is only my personal opinion) don't want to
+have this kind of splitting up the community is:
+- This will split the manpower and thus weaken the whole community
+- Users won't be able to use one single account for all Mageia
+platforms
+- I am afraid, beginning such split communities may end up in a lot of
+silly third party repos just confusing the users (like MIB, MUD, MCNL,
+BDK and so on)
+
+Oliver
+
+Are you talking about a redirect from the mageia forums to yours or
+from the main website?
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110511/85b63827/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000903.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000904.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#905">[ date ]</a>
+ <a href="thread.html#905">[ thread ]</a>
+ <a href="subject.html#905">[ subject ]</a>
+ <a href="author.html#905">[ 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-May/000906.html b/zarb-ml/mageia-webteam/2011-May/000906.html
new file mode 100644
index 000000000..9db495c12
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000906.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105112030.26175.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="000904.html">
+ <LINK REL="Next" HREF="000907.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105112030.26175.marcello.anni%40alice.it%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">marcello.anni at alice.it
+ </A><BR>
+ <I>Wed May 11 20:30:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000904.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000907.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#906">[ date ]</a>
+ <a href="thread.html#906">[ thread ]</a>
+ <a href="subject.html#906">[ subject ]</a>
+ <a href="author.html#906">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> Well, I don't think showing your site as some kind of official Mageia
+</I>&gt;<i> site is a good idea at all. Providing the users with an italian
+</I>&gt;<i> translation of the official website is a far better way for the user.
+</I>&gt;<i> He will always prefer information from &#359;he official website over a
+</I>&gt;<i> 3rd-party site. And don't worry, soon the official Mageia site will be
+</I>&gt;<i> powerful as well (whatever you mean by that).
+</I>
+but in fact i don't want it to be a 3rd-party site, i only want to have the
+permission to consider it official, and it should be as i'm involved in the
+distro development, i'm not a person outside the project.
+&gt;<i>
+</I>&gt;<i> If you are talking about an italian forum, that's a whole case. Open
+</I>&gt;<i> it up and let it be listed in the Mageia forums under &quot;Supporting
+</I>&gt;<i> community forums&quot; - a link which will redirect the user to your forum.
+</I>&gt;<i> At least this is how the others are doing it.
+</I>
+mageiaitalia.org is not only a forum, it's a complete framework that has:
+- good layout and artwork
+- powerful forum
+- news
+- polls
+- private messages
+- friendships
+- user images
+- user blogs
+- guides
+- advanced research function (+ opensearch protocol support)
+- android application
+
+when mageia plan to have this kind of stuff? seeing the status of the wiki and
+of identity (and much more) i think in a far far time.
+
+i'm asking only to delegate the italian community to use a different platform,
+nothing more.
+
+&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> wobo
+</I>&gt;<i> _______________________________________________
+</I>
+
+cheers,
+Marcello
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000904.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000907.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#906">[ date ]</a>
+ <a href="thread.html#906">[ thread ]</a>
+ <a href="subject.html#906">[ subject ]</a>
+ <a href="author.html#906">[ 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-May/000907.html b/zarb-ml/mageia-webteam/2011-May/000907.html
new file mode 100644
index 000000000..86f85cc46
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000907.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTik1JbMeu5sf8o2K%3D%2B4u5sdM8Lw%3DfQ%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="000906.html">
+ <LINK REL="Next" HREF="000908.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTik1JbMeu5sf8o2K%3D%2B4u5sdM8Lw%3DfQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed May 11 20:40:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000906.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000908.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#907">[ date ]</a>
+ <a href="thread.html#907">[ thread ]</a>
+ <a href="subject.html#907">[ subject ]</a>
+ <a href="author.html#907">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/5/11 Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt;:
+&gt;&gt;<i> Well, I don't think showing your site as some kind of official Mageia
+</I>&gt;&gt;<i> site is a good idea at all. Providing the users with an italian
+</I>&gt;&gt;<i> translation of the official website is a far better way for the user.
+</I>&gt;&gt;<i> He will always prefer information from &#359;he official website over a
+</I>&gt;&gt;<i> 3rd-party site. And don't worry, soon the official Mageia site will be
+</I>&gt;&gt;<i> powerful as well (whatever you mean by that).
+</I>&gt;<i>
+</I>&gt;<i> but in fact i don't want it to be a 3rd-party site, i only want to have the
+</I>&gt;<i> permission to consider it official, and it should be as i'm involved in the
+</I>&gt;<i> distro development, i'm not a person outside the project.
+</I>
+No, this is not related. It can only be an official site if it bears
+the same contents of the official site. How would you guarantee that
+the contents in your italian site is the same as on mageia.org? As
+long as you can't do that it is a 3rd-party site.
+
+&gt;<i> when mageia plan to have this kind of stuff? seeing the status of the wiki and
+</I>&gt;<i> of identity (and much more) i think in a far far time.
+</I>
+Ok, why don't you participate in creating all these good things for
+the whole Mageia community instead of just caring for the italian?
+Mageia is not about French or Germans or Italians or Americans, it's
+about the whole community. Therefore it is the goal of Mageia to
+achieve equal information and support for all, not just one local
+community.
+
+&gt;<i> i'm asking only to delegate the italian community to use a different platform,
+</I>&gt;<i> nothing more.
+</I>
+Again, you can setup everything you want but it will neo tbe the
+offical place. The official place is <A HREF="http://mageia.org">http://mageia.org</A> - and it is up
+to all of us (including you) to make it a place which delivers all
+these services you want.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000906.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000908.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#907">[ date ]</a>
+ <a href="thread.html#907">[ thread ]</a>
+ <a href="subject.html#907">[ subject ]</a>
+ <a href="author.html#907">[ 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-May/000908.html b/zarb-ml/mageia-webteam/2011-May/000908.html
new file mode 100644
index 000000000..842677c39
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000908.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105112044.55832.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="000907.html">
+ <LINK REL="Next" HREF="000909.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105112044.55832.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed May 11 20:44:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000907.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000909.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#908">[ date ]</a>
+ <a href="thread.html#908">[ thread ]</a>
+ <a href="subject.html#908">[ subject ]</a>
+ <a href="author.html#908">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; schrieb am 11.05.2011
+&gt;<i> mageiaitalia.org is not only a forum, it's a complete framework
+</I>&gt;<i> that has: - good layout and artwork
+</I>&gt;<i> - powerful forum
+</I>&gt;<i> - news
+</I>&gt;<i> - polls
+</I>&gt;<i> - private messages
+</I>&gt;<i> - friendships
+</I>&gt;<i> - user images
+</I>&gt;<i> - user blogs
+</I>&gt;<i> - guides
+</I>&gt;<i> - advanced research function (+ opensearch protocol support)
+</I>&gt;<i> - android application
+</I>Reading all of this I am asking myself, why you never asked webteam
+about any of theese things.
+And never offered to help us, getting such goodies for the community as
+a whole.
+I can't hinder you in creating such things, it's your choice. I'm just
+emphasizing my opinion that splitting the community in such a way is a
+bad idea and I won't support making such a split in any way.
+But since it's not my decision, I'm quiet now...
+
+Oliver
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110511/1101d5bf/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000907.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000909.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#908">[ date ]</a>
+ <a href="thread.html#908">[ thread ]</a>
+ <a href="subject.html#908">[ subject ]</a>
+ <a href="author.html#908">[ 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-May/000909.html b/zarb-ml/mageia-webteam/2011-May/000909.html
new file mode 100644
index 000000000..ed20c8e34
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000909.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTimdDj3J2pSAJjXcxXkJpJzWOk2wtA%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="000908.html">
+ <LINK REL="Next" HREF="000914.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTimdDj3J2pSAJjXcxXkJpJzWOk2wtA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">molch.b at googlemail.com
+ </A><BR>
+ <I>Wed May 11 20:58:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000908.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000914.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#909">[ date ]</a>
+ <a href="thread.html#909">[ thread ]</a>
+ <a href="subject.html#909">[ subject ]</a>
+ <a href="author.html#909">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>A few additional comments:
+
+2011/5/11 Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt;:
+
+&gt;<i> mageiaitalia.org is not only a forum, it's a complete framework that has:
+</I>&gt;<i> - good layout and artwork
+</I>&gt;<i> - powerful forum
+</I>&gt;<i> - news
+</I>&gt;<i> - polls
+</I>&gt;<i> - private messages
+</I>
+All these are features of a forum, as I said it's up to you to request
+an italian forum under forums.mageia.org or create our own, being
+liste din teh header of forums.mageia.org.
+
+&gt;<i> - friendships
+</I>What about the web pages Romain proposed?
+
+&gt;<i> - user images
+</I>&gt;<i> - user blogs
+</I>
+Ever heard about the Mageia blog family? It was announced in the
+official blog - you and everybody else can add his blog
+
+&gt;<i> - guides
+</I>
+This is in the making, why re-invent the wheel?
+
+&gt;<i> - advanced research function (+ opensearch protocol support)
+</I>&gt;<i> - android application
+</I>
+Why did you not ask about this before?
+
+As you can see, there's not much left which is not already (a) in the
+making, (b) easy to request or (c) on your own desk.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000908.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000914.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#909">[ date ]</a>
+ <a href="thread.html#909">[ thread ]</a>
+ <a href="subject.html#909">[ subject ]</a>
+ <a href="author.html#909">[ 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-May/000910.html b/zarb-ml/mageia-webteam/2011-May/000910.html
new file mode 100644
index 000000000..d15d2074e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000910.html
@@ -0,0 +1,109 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTik0mVyZF531fc-M52mQv1VVXD7q%3DQ%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="000914.html">
+ <LINK REL="Next" HREF="000911.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTik0mVyZF531fc-M52mQv1VVXD7q%3DQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">rda at mageia.org
+ </A><BR>
+ <I>Wed May 11 21:33:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000914.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000911.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#910">[ date ]</a>
+ <a href="thread.html#910">[ thread ]</a>
+ <a href="subject.html#910">[ subject ]</a>
+ <a href="author.html#910">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi Marcello,
+
+On Wed, May 11, 2011 at 17:14, Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; wrote:
+&gt;<i> i set up a powerful framework for the italian community:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://www.mageiaitalia.org/">http://www.mageiaitalia.org/</A>
+</I>
+That's cool!
+
+&gt;<i> can we have the official approval by the web-team and a redirect from mageia.org
+</I>&gt;<i> to our website? thanks
+</I>
+Oliver and wobo already provided some points about it and I tend to
+agree with them. There are lots of things that are waiting for people
+to join, help and build under mageia.org.
+
+It's cool and great too to foster local energies in a more dynamic
+space (your site), no question about it. But the global mageia.org
+effort is in need for joint efforts. So if you feel there is something
+missing, even if it may take more time, it's important to take this
+time to explain, advocate, and even more importantly, help building
+and build what may be missing.
+
+What is &quot;official&quot; is in mageia.org and is, as much as possible,
+global, through all locales hosted on mageia.org (and here we rely
+heavily on translators and web developers). It's a permanent work in
+progress. We have plans. It takes time. That doesn't prevent from
+having local initiatives and efforts, but we can't count this as
+official if it's not designed thought in a global scope.
+
+What we can do, though, is, as proposed, provide mageiaitalia.org as
+the Italian-speaking forum and local community (for support and such)
+- that leaves you the possibility to manage it as such. But that
+should not prevent mageia.org/it to be maintained as well, and Italian
+contributors to help push the global mageia.org thing further ahead.
+
+What do you think?
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000914.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000911.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#910">[ date ]</a>
+ <a href="thread.html#910">[ thread ]</a>
+ <a href="subject.html#910">[ subject ]</a>
+ <a href="author.html#910">[ 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-May/000911.html b/zarb-ml/mageia-webteam/2011-May/000911.html
new file mode 100644
index 000000000..9b6f2f710
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000911.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTinmFhD0RXqVMN7-bYz1gXn1rG2ZpQ%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="000910.html">
+ <LINK REL="Next" HREF="000919.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTinmFhD0RXqVMN7-bYz1gXn1rG2ZpQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">rda at mageia.org
+ </A><BR>
+ <I>Wed May 11 21:43:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000910.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000919.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#911">[ date ]</a>
+ <a href="thread.html#911">[ thread ]</a>
+ <a href="subject.html#911">[ subject ]</a>
+ <a href="author.html#911">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, May 11, 2011 at 21:33, Mail Delivery System
+&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">MAILER-DAEMON at zarb.org</A>&gt; wrote:
+&gt;<i> &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-council at mageia.org</A>&gt;: unknown user: &quot;mageia-council&quot;
+</I>
+(for next time) Council list is <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">council at ml.mageia.org.</A> :-p
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000910.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000919.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#911">[ date ]</a>
+ <a href="thread.html#911">[ thread ]</a>
+ <a href="subject.html#911">[ subject ]</a>
+ <a href="author.html#911">[ 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-May/000912.html b/zarb-ml/mageia-webteam/2011-May/000912.html
new file mode 100644
index 000000000..c7a55491e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000912.html
@@ -0,0 +1,140 @@
+<!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=%3C20110511220005.53F0642779%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="000920.html">
+ <LINK REL="Next" HREF="000913.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=%3C20110511220005.53F0642779%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 12 00:00:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000920.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000913.html">[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#912">[ date ]</a>
+ <a href="thread.html#912">[ thread ]</a>
+ <a href="subject.html#912">[ subject ]</a>
+ <a href="author.html#912">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000920.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000913.html">[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#912">[ date ]</a>
+ <a href="thread.html#912">[ thread ]</a>
+ <a href="subject.html#912">[ subject ]</a>
+ <a href="author.html#912">[ 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-May/000913.html b/zarb-ml/mageia-webteam/2011-May/000913.html
new file mode 100644
index 000000000..af4023453
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000913.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)
+ </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%201249%5D%20%5BNew%5D%20Broken%20link%20to%20download%20IBAN%20for%0A%09a%20donation%20%28FR%29&In-Reply-To=%3Cbug-1249-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="000912.html">
+ <LINK REL="Next" HREF="000922.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)</H1>
+ <B>Alexis Bienven&#195;&#188;e</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201249%5D%20%5BNew%5D%20Broken%20link%20to%20download%20IBAN%20for%0A%09a%20donation%20%28FR%29&In-Reply-To=%3Cbug-1249-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 12 00:14:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000912.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000922.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#913">[ date ]</a>
+ <a href="thread.html#913">[ thread ]</a>
+ <a href="subject.html#913">[ subject ]</a>
+ <a href="author.html#913">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1249">https://bugs.mageia.org/show_bug.cgi?id=1249</A>
+
+ Summary: Broken link to download IBAN for a donation (FR)
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/fr/donate/">http://www.mageia.org/fr/donate/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">pado at passoire.fr</A>
+
+
+Description of problem:
+
+On the french page
+<A HREF="http://www.mageia.org/fr/donate/">http://www.mageia.org/fr/donate/</A>
+a link to a IBAN PDF file <A HREF="http://www.mageia.org/iban_Mageia.Org.pdf">http://www.mageia.org/iban_Mageia.Org.pdf</A> is broken :
+HTTP 404.
+
+Version-Release number of selected component (if applicable):
+
+www.mageia.org on may 12, 2011
+
+How reproducible:
+
+Allways
+
+Steps to Reproduce:
+1. go to <A HREF="http://www.mageia.org/fr/donate/">http://www.mageia.org/fr/donate/</A>
+2. click on the &quot;t&#233;l&#233;charger notre IBAN&quot; link
+
+--
+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="000912.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000922.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#913">[ date ]</a>
+ <a href="thread.html#913">[ thread ]</a>
+ <a href="subject.html#913">[ subject ]</a>
+ <a href="author.html#913">[ 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-May/000914.html b/zarb-ml/mageia-webteam/2011-May/000914.html
new file mode 100644
index 000000000..e081b076c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000914.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105121529.51810.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="000909.html">
+ <LINK REL="Next" HREF="000910.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C201105121529.51810.marcello.anni%40alice.it%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">marcello.anni at alice.it
+ </A><BR>
+ <I>Thu May 12 15:29:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000909.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000910.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#914">[ date ]</a>
+ <a href="thread.html#914">[ thread ]</a>
+ <a href="subject.html#914">[ subject ]</a>
+ <a href="author.html#914">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> Well, I don't think showing your site as some kind of official Mageia
+</I>&gt;<i> site is a good idea at all. Providing the users with an italian
+</I>&gt;<i> translation of the official website is a far better way for the user.
+</I>&gt;<i> He will always prefer information from &#359;he official website over a
+</I>&gt;<i> 3rd-party site. And don't worry, soon the official Mageia site will be
+</I>&gt;<i> powerful as well (whatever you mean by that).
+</I>&gt;<i>
+</I>&gt;<i> If you are talking about an italian forum, that's a whole case. Open
+</I>&gt;<i> it up and let it be listed in the Mageia forums under &quot;Supporting
+</I>&gt;<i> community forums&quot; - a link which will redirect the user to your forum.
+</I>&gt;<i> At least this is how the others are doing it.
+</I>&gt;<i> Soon we will have these links in the header of the Mageia forums, as
+</I>&gt;<i> we see it in the Mandriva forum.
+</I>&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> wobo
+</I>
+[this is a reply (a &quot;summary&quot;) to everyone]
+
+i would like to apologise for my words, maybe they have been misunderstood.
+i've spoken with ILDN community and they disagree with my e-mails attitude,
+even if i didn't want to be arrogant maybe this is the conclusion you made
+(and speaking by words is even more difficult than by speech : ). i didn't mean
+to create such a discussion, i thought to a solution similar as it was for
+mandriva and i didn't think this would involve many others things...
+unfortunately i don't have technical skills otherwise i would help the webteam
+to port these features to the official mageia forum. The only things i can do i
+to open a bug report for each of this features in order to have them also in
+the official mageia forum.
+
+as Romain and Wobo proposed, we fully agree to be inserted in the list
+&quot;supporting community forums&quot; and we thank you for that.
+
+Cheers,
+Marcello
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000909.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000910.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#914">[ date ]</a>
+ <a href="thread.html#914">[ thread ]</a>
+ <a href="subject.html#914">[ subject ]</a>
+ <a href="author.html#914">[ 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-May/000915.html b/zarb-ml/mageia-webteam/2011-May/000915.html
new file mode 100644
index 000000000..5c2028aaa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000915.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110512172545.3AA4C42EC5%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="000889.html">
+ <LINK REL="Next" HREF="000969.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110512172545.3AA4C42EC5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 12 19:25:45 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000889.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000969.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#915">[ date ]</a>
+ <a href="thread.html#915">[ thread ]</a>
+ <a href="subject.html#915">[ subject ]</a>
+ <a href="author.html#915">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>
+
+--- Comment #14 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-05-12 19:25:45 CEST ---
+I told maat about this problem in the days following the launch of the forum, I
+thought he would fix 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000889.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000969.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#915">[ date ]</a>
+ <a href="thread.html#915">[ thread ]</a>
+ <a href="subject.html#915">[ subject ]</a>
+ <a href="author.html#915">[ 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-May/000916.html b/zarb-ml/mageia-webteam/2011-May/000916.html
new file mode 100644
index 000000000..39464e226
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000916.html
@@ -0,0 +1,140 @@
+<!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=%3C20110512220005.95D2F42ED5%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="000923.html">
+ <LINK REL="Next" HREF="000917.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=%3C20110512220005.95D2F42ED5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 13 00:00:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000923.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI>Next message: <A HREF="000917.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#916">[ date ]</a>
+ <a href="thread.html#916">[ thread ]</a>
+ <a href="subject.html#916">[ subject ]</a>
+ <a href="author.html#916">[ 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>
+ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000923.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI>Next message: <A HREF="000917.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#916">[ date ]</a>
+ <a href="thread.html#916">[ thread ]</a>
+ <a href="subject.html#916">[ subject ]</a>
+ <a href="author.html#916">[ 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-May/000917.html b/zarb-ml/mageia-webteam/2011-May/000917.html
new file mode 100644
index 000000000..24caa8de2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000917.html
@@ -0,0 +1,142 @@
+<!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=%3C20110513220003.6A95542EEA%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="000916.html">
+ <LINK REL="Next" HREF="000918.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=%3C20110513220003.6A95542EEA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 14 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000916.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000918.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#917">[ date ]</a>
+ <a href="thread.html#917">[ thread ]</a>
+ <a href="subject.html#917">[ subject ]</a>
+ <a href="author.html#917">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000916.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000918.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#917">[ date ]</a>
+ <a href="thread.html#917">[ thread ]</a>
+ <a href="subject.html#917">[ subject ]</a>
+ <a href="author.html#917">[ 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-May/000918.html b/zarb-ml/mageia-webteam/2011-May/000918.html
new file mode 100644
index 000000000..b908e9378
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000918.html
@@ -0,0 +1,142 @@
+<!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=%3C20110514220003.1A42342EEA%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="000917.html">
+ <LINK REL="Next" HREF="000921.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=%3C20110514220003.1A42342EEA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 15 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000917.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000921.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#918">[ date ]</a>
+ <a href="thread.html#918">[ thread ]</a>
+ <a href="subject.html#918">[ subject ]</a>
+ <a href="author.html#918">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000917.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000921.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#918">[ date ]</a>
+ <a href="thread.html#918">[ thread ]</a>
+ <a href="subject.html#918">[ subject ]</a>
+ <a href="author.html#918">[ 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-May/000919.html b/zarb-ml/mageia-webteam/2011-May/000919.html
new file mode 100644
index 000000000..4a1bbf5e4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000919.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C1305455867.9523.16.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000911.html">
+ <LINK REL="Next" HREF="000920.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3C1305455867.9523.16.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">misc at zarb.org
+ </A><BR>
+ <I>Sun May 15 12:37:47 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000911.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000920.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#919">[ date ]</a>
+ <a href="thread.html#919">[ thread ]</a>
+ <a href="subject.html#919">[ subject ]</a>
+ <a href="author.html#919">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 11 mai 2011 &#224; 21:33 +0200, Romain d'Alverny a &#233;crit :
+&gt;<i> Hi Marcello,
+</I>&gt;<i>
+</I>&gt;<i> On Wed, May 11, 2011 at 17:14, Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; wrote:
+</I>&gt;<i> &gt; i set up a powerful framework for the italian community:
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; <A HREF="http://www.mageiaitalia.org/">http://www.mageiaitalia.org/</A>
+</I>&gt;<i>
+</I>&gt;<i> That's cool!
+</I>&gt;<i>
+</I>&gt;<i> &gt; can we have the official approval by the web-team and a redirect from mageia.org
+</I>&gt;<i> &gt; to our website? thanks
+</I>&gt;<i>
+</I>&gt;<i> Oliver and wobo already provided some points about it and I tend to
+</I>&gt;<i> agree with them. There are lots of things that are waiting for people
+</I>&gt;<i> to join, help and build under mageia.org.
+</I>&gt;<i>
+</I>&gt;<i> It's cool and great too to foster local energies in a more dynamic
+</I>&gt;<i> space (your site), no question about it. But the global mageia.org
+</I>&gt;<i> effort is in need for joint efforts. So if you feel there is something
+</I>&gt;<i> missing, even if it may take more time, it's important to take this
+</I>&gt;<i> time to explain, advocate, and even more importantly, help building
+</I>&gt;<i> and build what may be missing.
+</I>&gt;<i>
+</I>&gt;<i> What is &quot;official&quot; is in mageia.org and is, as much as possible,
+</I>&gt;<i> global, through all locales hosted on mageia.org (and here we rely
+</I>&gt;<i> heavily on translators and web developers). It's a permanent work in
+</I>&gt;<i> progress. We have plans. It takes time. That doesn't prevent from
+</I>&gt;<i> having local initiatives and efforts, but we can't count this as
+</I>&gt;<i> official if it's not designed thought in a global scope.
+</I>
+While I am slightly late, I would also add that we cannot really tell
+something is official if we cannot even see how it is managed and how it
+work. We cannot judge based on plans, so I would defer the discussion
+and in the mean time, clarify some points :
+
+what it mean to be official ?
+( to me, it would be managed by mageia.org association and on a
+mageia.org subdomain, but maybe others have different views and
+different perspectives than the one of a sysadmin ).
+
+Does it make sense at all, in fact, what would it bring, what would it
+impact ? ( I guess the presence on some list of website to drive traffic
+would be the primary motivation, or some other form of exposure )
+
+What to do if 2 competing services, on the same country, language, etc
+appear ? Do we have to choose one, do we have to give a equal treatment
+to both ( which would then cause subtle issues like the non unicity in
+various part of the system, like having a potential redirection of
+something like it.community.mageia.org to 2 different sites ) ?
+
+How do we manage the brand and trademark, what if a site decide to
+become commercial ( happening with german community at opensuse at the
+moment ) ?
+
+&gt;<i> What we can do, though, is, as proposed, provide mageiaitalia.org as
+</I>&gt;<i> the Italian-speaking forum and local community (for support and such)
+</I>&gt;<i> - that leaves you the possibility to manage it as such. But that
+</I>&gt;<i> should not prevent mageia.org/it to be maintained as well, and Italian
+</I>&gt;<i> contributors to help push the global mageia.org thing further ahead.
+</I>
+I agree, we should indeed simply list &quot;here is local community&quot;, add
+some light process ( like &quot;be there since enough time to demonstrate
+that it will be sustainable&quot;, &quot;be managed by a non-for-profit group, or
+by individuals&quot; or anything we see fit ).
+
+And also add clear instructions of who to contact to be listed on the
+page, what to expect, what to prepare, etc.
+
+And make sure that we from time to time check that the site still exist,
+etc. And make clear that we do not manage them.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000911.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000920.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#919">[ date ]</a>
+ <a href="thread.html#919">[ thread ]</a>
+ <a href="subject.html#919">[ subject ]</a>
+ <a href="author.html#919">[ 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-May/000920.html b/zarb-ml/mageia-webteam/2011-May/000920.html
new file mode 100644
index 000000000..6cedae513
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000920.html
@@ -0,0 +1,149 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Request of formal approval for mageiaitalia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTi%3Dv7uUcJjfQbddVjhNWa42Dk9JgjA%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="000919.html">
+ <LINK REL="Next" HREF="000912.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Request of formal approval for mageiaitalia.org</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Request%20of%20formal%20approval%20for%20mageiaitalia.org&In-Reply-To=%3CBANLkTi%3Dv7uUcJjfQbddVjhNWa42Dk9JgjA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Request of formal approval for mageiaitalia.org">molch.b at googlemail.com
+ </A><BR>
+ <I>Sun May 15 13:30:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000919.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000912.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#920">[ date ]</a>
+ <a href="thread.html#920">[ thread ]</a>
+ <a href="subject.html#920">[ subject ]</a>
+ <a href="author.html#920">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/5/15 Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt;:
+&gt;<i> Le mercredi 11 mai 2011 &#224; 21:33 +0200, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i> Hi Marcello,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> On Wed, May 11, 2011 at 17:14, Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; wrote:
+</I>&gt;&gt;<i> &gt; i set up a powerful framework for the italian community:
+</I>&gt;&gt;<i> &gt;
+</I>&gt;&gt;<i> &gt; <A HREF="http://www.mageiaitalia.org/">http://www.mageiaitalia.org/</A>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> That's cool!
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> &gt; can we have the official approval by the web-team and a redirect from mageia.org
+</I>&gt;&gt;<i> &gt; to our website? thanks
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Oliver and wobo already provided some points about it and I tend to
+</I>&gt;&gt;<i> agree with them. There are lots of things that are waiting for people
+</I>&gt;&gt;<i> to join, help and build under mageia.org.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> It's cool and great too to foster local energies in a more dynamic
+</I>&gt;&gt;<i> space (your site), no question about it. But the global mageia.org
+</I>&gt;&gt;<i> effort is in need for joint efforts. So if you feel there is something
+</I>&gt;&gt;<i> missing, even if it may take more time, it's important to take this
+</I>&gt;&gt;<i> time to explain, advocate, and even more importantly, help building
+</I>&gt;&gt;<i> and build what may be missing.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> What is &quot;official&quot; is in mageia.org and is, as much as possible,
+</I>&gt;&gt;<i> global, through all locales hosted on mageia.org (and here we rely
+</I>&gt;&gt;<i> heavily on translators and web developers). It's a permanent work in
+</I>&gt;&gt;<i> progress. We have plans. It takes time. That doesn't prevent from
+</I>&gt;&gt;<i> having local initiatives and efforts, but we can't count this as
+</I>&gt;&gt;<i> official if it's not designed thought in a global scope.
+</I>&gt;<i>
+</I>&gt;<i> While I am slightly late, I would also add that we cannot really tell
+</I>&gt;<i> something is official if we cannot even see how it is managed and how it
+</I>&gt;<i> work. We cannot judge based on plans, so I would defer the discussion
+</I>&gt;<i> and in the mean time, clarify some points :
+</I>&gt;<i>
+</I>&gt;<i> what it mean to be official ?
+</I>&gt;<i> ( to me, it would be managed by mageia.org association and on a
+</I>&gt;<i> mageia.org subdomain, but maybe others have different views and
+</I>&gt;<i> different perspectives than the one of a sysadmin ).
+</I>
+Not only from a sysadmin's POV but also from a user's POV. If a user
+is looking for some clarification, let's say about the position of
+Mageia.Org related to some issue - where does he should turn to?
+Exactly: the official website of the organisation. Having a local page
+is noce of course but for official information users have to turn to
+the address mageia,org.
+In consequence it would be much easier for the user having a page in
+his language under the official site structure (ex:
+<A HREF="http://mageia.org/it">http://mageia.org/it</A> ) than any address outside where he can not know
+about the status.
+
+&gt;<i> What to do if 2 competing services, on the same country, language, etc
+</I>&gt;<i> appear ? Do we have to choose one, do we have to give a equal treatment
+</I>&gt;<i> to both ( which would then cause subtle issues like the non unicity in
+</I>&gt;<i> various part of the system, like having a potential redirection of
+</I>&gt;<i> something like it.community.mageia.org to 2 different sites ) ?
+</I>
+Somebody remembering the issue about 2 different italian Mandriva
+sites, each claiming to be the official one? I'm not pointing my
+finger to the Italians, this could happen in every language community.
+The more important is it to make a point in having &quot;official&quot; sites
+only under the mageia.org website structure.
+
+&gt;<i> I agree, we should indeed simply list &quot;here is local community&quot;, add
+</I>&gt;<i> some light process ( like &quot;be there since enough time to demonstrate
+</I>&gt;<i> that it will be sustainable&quot;, &quot;be managed by a non-for-profit group, or
+</I>&gt;<i> by individuals&quot; or anything we see fit ).
+</I>
+A local forum is a whole other story, from the beginning we proposed
+to have local forums either on a local site or in the
+forums.mageia.org structure. A forum also is different to a website,
+it is the home, meeting, and support place for the users, not the
+place where you point to for official information (of course in every
+forum you can quote and link the official website).
+
+&gt;<i> And make sure that we from time to time check that the site still exist,
+</I>&gt;<i> etc. And make clear that we do not manage them.
+</I>
+Yes.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000919.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A></li>
+ <LI>Next message: <A HREF="000912.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#920">[ date ]</a>
+ <a href="thread.html#920">[ thread ]</a>
+ <a href="subject.html#920">[ subject ]</a>
+ <a href="author.html#920">[ 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-May/000921.html b/zarb-ml/mageia-webteam/2011-May/000921.html
new file mode 100644
index 000000000..4d51c163b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000921.html
@@ -0,0 +1,140 @@
+<!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=%3C20110515220003.0D13042F19%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="000918.html">
+ <LINK REL="Next" HREF="000924.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=%3C20110515220003.0D13042F19%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 16 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000918.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000924.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#921">[ date ]</a>
+ <a href="thread.html#921">[ thread ]</a>
+ <a href="subject.html#921">[ subject ]</a>
+ <a href="author.html#921">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000918.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000924.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#921">[ date ]</a>
+ <a href="thread.html#921">[ thread ]</a>
+ <a href="subject.html#921">[ subject ]</a>
+ <a href="author.html#921">[ 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-May/000922.html b/zarb-ml/mageia-webteam/2011-May/000922.html
new file mode 100644
index 000000000..16a477c72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000922.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+ </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%201249%5D%20Broken%20link%20to%20download%20IBAN%20for%20a%0A%09donation%20%28FR%29&In-Reply-To=%3C20110516072507.5442042F0A%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="000913.html">
+ <LINK REL="Next" HREF="000923.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201249%5D%20Broken%20link%20to%20download%20IBAN%20for%20a%0A%09donation%20%28FR%29&In-Reply-To=%3C20110516072507.5442042F0A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 16 09:25:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000913.html">[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI>Next message: <A HREF="000923.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#922">[ date ]</a>
+ <a href="thread.html#922">[ thread ]</a>
+ <a href="subject.html#922">[ subject ]</a>
+ <a href="author.html#922">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1249">https://bugs.mageia.org/show_bug.cgi?id=1249</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-05-16 11:25:07 CEST ---
+Indeed, there is no pdf at all on the website.
+
+--
+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="000913.html">[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI>Next message: <A HREF="000923.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#922">[ date ]</a>
+ <a href="thread.html#922">[ thread ]</a>
+ <a href="subject.html#922">[ subject ]</a>
+ <a href="author.html#922">[ 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-May/000923.html b/zarb-ml/mageia-webteam/2011-May/000923.html
new file mode 100644
index 000000000..90050b0d1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000923.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+ </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%201249%5D%20Broken%20link%20to%20download%20IBAN%20for%20a%0A%09donation%20%28FR%29&In-Reply-To=%3C20110516085301.4C83042EF5%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="000922.html">
+ <LINK REL="Next" HREF="000916.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201249%5D%20Broken%20link%20to%20download%20IBAN%20for%20a%0A%09donation%20%28FR%29&In-Reply-To=%3C20110516085301.4C83042EF5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 16 10:53:01 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000922.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI>Next message: <A HREF="000916.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#923">[ date ]</a>
+ <a href="thread.html#923">[ thread ]</a>
+ <a href="subject.html#923">[ subject ]</a>
+ <a href="author.html#923">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1249">https://bugs.mageia.org/show_bug.cgi?id=1249</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|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-16 12:53:01 CEST ---
+Removed the link to PDF (that was removed on purpose and HTML had not been
+updated as well). Fixed in r423.
+
+--
+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="000922.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A></li>
+ <LI>Next message: <A HREF="000916.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#923">[ date ]</a>
+ <a href="thread.html#923">[ thread ]</a>
+ <a href="subject.html#923">[ subject ]</a>
+ <a href="author.html#923">[ 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-May/000924.html b/zarb-ml/mageia-webteam/2011-May/000924.html
new file mode 100644
index 000000000..23d99e225
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000924.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110516110024.B5FC742F1D%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="000921.html">
+ <LINK REL="Next" HREF="000925.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110516110024.B5FC742F1D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 16 13:00:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000921.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000925.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#924">[ date ]</a>
+ <a href="thread.html#924">[ thread ]</a>
+ <a href="subject.html#924">[ subject ]</a>
+ <a href="author.html#924">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</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 #9 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-16 15:00:24 CEST ---
+Sysadmins are not really impacted by the number of CD, using scp to copy 1 iso
+or 2 is still 1 command to run.
+
+--
+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="000921.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000925.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#924">[ date ]</a>
+ <a href="thread.html#924">[ thread ]</a>
+ <a href="subject.html#924">[ subject ]</a>
+ <a href="author.html#924">[ 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-May/000925.html b/zarb-ml/mageia-webteam/2011-May/000925.html
new file mode 100644
index 000000000..8c623ada0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000925.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110516115105.61C3842EFD%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="000924.html">
+ <LINK REL="Next" HREF="000926.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20110516115105.61C3842EFD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 16 13:51:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000924.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000926.html">[Mageia-webteam] Mageia 1 release, some tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#925">[ date ]</a>
+ <a href="thread.html#925">[ thread ]</a>
+ <a href="subject.html#925">[ subject ]</a>
+ <a href="author.html#925">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</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>
+
+--- Comment #10 from Thierry Vignaud &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>&gt; 2011-05-16 15:51:05 CEST ---
+Alternatively we could just put two kernels on the livecd instead of one:
+- one 32bit one
+- one 64bit one
+
+A 64bit kernel and a pure 32bit userspace works fine.
+I've tried this in the past, things mostly works (If I remember right,
+rpm was a little bit lost).
+
+--
+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="000924.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000926.html">[Mageia-webteam] Mageia 1 release, some tasks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#925">[ date ]</a>
+ <a href="thread.html#925">[ thread ]</a>
+ <a href="subject.html#925">[ subject ]</a>
+ <a href="author.html#925">[ 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-May/000926.html b/zarb-ml/mageia-webteam/2011-May/000926.html
new file mode 100644
index 000000000..a3801028b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000926.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia 1 release, some tasks
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%201%20release%2C%20some%20tasks&In-Reply-To=%3CBANLkTin7KCL9iMmW%2BxkFioWqQa6q4Nm7Lw%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="000925.html">
+ <LINK REL="Next" HREF="000927.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia 1 release, some tasks</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%201%20release%2C%20some%20tasks&In-Reply-To=%3CBANLkTin7KCL9iMmW%2BxkFioWqQa6q4Nm7Lw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia 1 release, some tasks">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon May 16 22:30:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000925.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000927.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#926">[ date ]</a>
+ <a href="thread.html#926">[ thread ]</a>
+ <a href="subject.html#926">[ subject ]</a>
+ <a href="author.html#926">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+during the LinuxTag exhibition in Berlin, Oliver (obgr) and me took
+the time to briefly discuss what should be done for the RC and final
+release.
+
+For RC, no big change on the Web site: we only remove the red warnings
+and replace those with a RC-focused message. I leave it to anyone here
+to write this message and submit it for inclusion.
+
+For finale release... We have 15 days left and of course, this is very
+short a frame for that. But we can do it focusing on the right thing.
+
+ * NEED: a presentation section on the Web site, showcasing the
+product - this section does not exist already, although you will find
+equivalents all around the Web. Just look at some product page. Oliver
+and me thought of a minimalist, focused layout with ~5 pages:
+ - presentation home, main message being, &quot;this is a Linux system for people&quot;
+ - focus page for users (what do they have useful for them in this,
+what benefits)
+ - focus page for developers (same)
+ - focus page for contributors (same)
+ - focus page for businesses (same)
+ - focus page on technical specs, requirements
+
+ * NEED: redesign the download section to which above section will
+refer. For this, we need the final list of ISOs that will be provided,
+as these influence quite a lot how we will present things.
+
+ * NEED: redesign slightly the home page for the release day and the
+following days. What will happen anyway on the home page:
+ - project announcement content will be moved to a distinct page,
+under the /about section
+ - on release day, about only a page-wide home screen picture,
+linking to the presentation page will be there + news references
+ - on following days, usual news section + contacts will be re-added
+
+ * NEED: message to spread (blog, forum, news sites, etc.) according to audience
+
+ * NICE TO HAVE: a thank you page, for all contributors to this very release
+ - needed: someone to mail all project list and collect name of
+people that accept to be listed there
+ - needed: someone (design) to propose a design to use these names
+(default solution will be to have a special page listing everyone)
+
+ * NICE TO HAVE: updated global navigation (top nav bar on www, that
+should be spread later to other parts of the website). I know I posted
+something about it months ago, but did not finish my mockups about it.
+This is of course still open.
+
+ * NICE TO HAVE: redesigned contribution how to page - from
+<A HREF="http://mageia.org/wiki/doku.php?id=contribute">http://mageia.org/wiki/doku.php?id=contribute</A>
+
+ * finally, for each of the above things, we need someone in charge;
+that means, someone that can take it, deliver a quick prototype,
+implement it and provide for inclusion and translation within the
+coming 15 days (and coordinate with who is needed for that). We might
+post a bug for each of these to assign it to the person in charge.
+
+As for the actual contents (precise info, screenshots), you (the one
+taking this bit in charge) have to get in touch with packagers and
+collaborate with them.
+
+Additions, comments, advice, takers?
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000925.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="000927.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#926">[ date ]</a>
+ <a href="thread.html#926">[ thread ]</a>
+ <a href="subject.html#926">[ subject ]</a>
+ <a href="author.html#926">[ 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-May/000927.html b/zarb-ml/mageia-webteam/2011-May/000927.html
new file mode 100644
index 000000000..79b200e45
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000927.html
@@ -0,0 +1,138 @@
+<!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=%3C20110516220002.7D40E42F21%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="000926.html">
+ <LINK REL="Next" HREF="000928.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=%3C20110516220002.7D40E42F21%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 17 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000926.html">[Mageia-webteam] Mageia 1 release, some tasks
+</A></li>
+ <LI>Next message: <A HREF="000928.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#927">[ date ]</a>
+ <a href="thread.html#927">[ thread ]</a>
+ <a href="subject.html#927">[ subject ]</a>
+ <a href="author.html#927">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000926.html">[Mageia-webteam] Mageia 1 release, some tasks
+</A></li>
+ <LI>Next message: <A HREF="000928.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#927">[ date ]</a>
+ <a href="thread.html#927">[ thread ]</a>
+ <a href="subject.html#927">[ subject ]</a>
+ <a href="author.html#927">[ 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-May/000928.html b/zarb-ml/mageia-webteam/2011-May/000928.html
new file mode 100644
index 000000000..868df609b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000928.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110517132626.9363542F27%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="000927.html">
+ <LINK REL="Next" HREF="000929.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</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.1&In-Reply-To=%3C20110517132626.9363542F27%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 17 15:26:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000927.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000929.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#928">[ date ]</a>
+ <a href="thread.html#928">[ thread ]</a>
+ <a href="subject.html#928">[ subject ]</a>
+ <a href="author.html#928">[ 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 #12 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-05-17 17:26:26 CEST ---
+*** Bug 1040 has been marked as a duplicate of this bug. ***
+
+--
+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="000927.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000929.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#928">[ date ]</a>
+ <a href="thread.html#928">[ thread ]</a>
+ <a href="subject.html#928">[ subject ]</a>
+ <a href="author.html#928">[ 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-May/000929.html b/zarb-ml/mageia-webteam/2011-May/000929.html
new file mode 100644
index 000000000..91c10dd2d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000929.html
@@ -0,0 +1,140 @@
+<!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=%3C20110517220002.73EB241A04%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="000928.html">
+ <LINK REL="Next" HREF="000930.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=%3C20110517220002.73EB241A04%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 18 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000928.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000930.html">[Mageia-webteam] Romanian download page not up to date!
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#929">[ date ]</a>
+ <a href="thread.html#929">[ thread ]</a>
+ <a href="subject.html#929">[ subject ]</a>
+ <a href="author.html#929">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000928.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000930.html">[Mageia-webteam] Romanian download page not up to date!
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#929">[ date ]</a>
+ <a href="thread.html#929">[ thread ]</a>
+ <a href="subject.html#929">[ subject ]</a>
+ <a href="author.html#929">[ 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-May/000930.html b/zarb-ml/mageia-webteam/2011-May/000930.html
new file mode 100644
index 000000000..0eb1c9bff
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000930.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Romanian download page not up to date!
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Romanian%20download%20page%20not%20up%20to%20date%21&In-Reply-To=%3C754413.20409.qm%40web29612.mail.ird.yahoo.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000929.html">
+ <LINK REL="Next" HREF="000931.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Romanian download page not up to date!</H1>
+ <B>Catalin Florin RUSSEN</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Romanian%20download%20page%20not%20up%20to%20date%21&In-Reply-To=%3C754413.20409.qm%40web29612.mail.ird.yahoo.com%3E"
+ TITLE="[Mageia-webteam] Romanian download page not up to date!">cfrussen at yahoo.co.uk
+ </A><BR>
+ <I>Wed May 18 10:49:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000929.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000931.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#930">[ date ]</a>
+ <a href="thread.html#930">[ thread ]</a>
+ <a href="subject.html#930">[ subject ]</a>
+ <a href="author.html#930">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Dear all,
+
+I see that the Romanian download page isn't up to date, if you look at the bottom (see attached image).
+How can I update it?
+
+&#160;
+Best regards,
+Florin Catalin RUSSEN
+Mageia Romanian Translation Team
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110518/9a32aa18/attachment.html&gt;
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: screenshot.4.png
+Type: application/octet-stream
+Size: 4722 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110518/9a32aa18/attachment.obj&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000929.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000931.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#930">[ date ]</a>
+ <a href="thread.html#930">[ thread ]</a>
+ <a href="subject.html#930">[ subject ]</a>
+ <a href="author.html#930">[ 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-May/000931.html b/zarb-ml/mageia-webteam/2011-May/000931.html
new file mode 100644
index 000000000..8bb7abe22
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000931.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1328] contributors page - redesign
+ </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%201328%5D%20contributors%20page%20-%20redesign&In-Reply-To=%3C20110518091728.9609442F17%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="000930.html">
+ <LINK REL="Next" HREF="000932.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1328] contributors page - redesign</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201328%5D%20contributors%20page%20-%20redesign&In-Reply-To=%3C20110518091728.9609442F17%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1328] contributors page - redesign">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 18 11:17:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000930.html">[Mageia-webteam] Romanian download page not up to date!
+</A></li>
+ <LI>Next message: <A HREF="000932.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#931">[ date ]</a>
+ <a href="thread.html#931">[ thread ]</a>
+ <a href="subject.html#931">[ subject ]</a>
+ <a href="author.html#931">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1328">https://bugs.mageia.org/show_bug.cgi?id=1328</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+ QAContact| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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 QA contact for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000930.html">[Mageia-webteam] Romanian download page not up to date!
+</A></li>
+ <LI>Next message: <A HREF="000932.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#931">[ date ]</a>
+ <a href="thread.html#931">[ thread ]</a>
+ <a href="subject.html#931">[ subject ]</a>
+ <a href="author.html#931">[ 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-May/000932.html b/zarb-ml/mageia-webteam/2011-May/000932.html
new file mode 100644
index 000000000..da476fa98
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000932.html
@@ -0,0 +1,140 @@
+<!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=%3C20110518220003.9576142A6B%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="000931.html">
+ <LINK REL="Next" HREF="000933.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=%3C20110518220003.9576142A6B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 19 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000931.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A></li>
+ <LI>Next message: <A HREF="000933.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#932">[ date ]</a>
+ <a href="thread.html#932">[ thread ]</a>
+ <a href="subject.html#932">[ subject ]</a>
+ <a href="author.html#932">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ O Brother, Where Art Thou?
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000931.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A></li>
+ <LI>Next message: <A HREF="000933.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#932">[ date ]</a>
+ <a href="thread.html#932">[ thread ]</a>
+ <a href="subject.html#932">[ subject ]</a>
+ <a href="author.html#932">[ 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-May/000933.html b/zarb-ml/mageia-webteam/2011-May/000933.html
new file mode 100644
index 000000000..827a7c89c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000933.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110519071206.A650F42F24%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="000932.html">
+ <LINK REL="Next" HREF="000934.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20110519071206.A650F42F24%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 19 09:12:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000932.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000934.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#933">[ date ]</a>
+ <a href="thread.html#933">[ thread ]</a>
+ <a href="subject.html#933">[ subject ]</a>
+ <a href="author.html#933">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+ AssignedTo|<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">oliver.bgr at googlemail.com</A>
+ QAContact| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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 QA contact for the bug.
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000932.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000934.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#933">[ date ]</a>
+ <a href="thread.html#933">[ thread ]</a>
+ <a href="subject.html#933">[ subject ]</a>
+ <a href="author.html#933">[ 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-May/000934.html b/zarb-ml/mageia-webteam/2011-May/000934.html
new file mode 100644
index 000000000..084f5ee49
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000934.html
@@ -0,0 +1,140 @@
+<!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=%3C20110519220002.96191428B4%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="000933.html">
+ <LINK REL="Next" HREF="000935.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=%3C20110519220002.96191428B4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 20 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000933.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000935.html">[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#934">[ date ]</a>
+ <a href="thread.html#934">[ thread ]</a>
+ <a href="subject.html#934">[ subject ]</a>
+ <a href="author.html#934">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000933.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="000935.html">[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#934">[ date ]</a>
+ <a href="thread.html#934">[ thread ]</a>
+ <a href="subject.html#934">[ subject ]</a>
+ <a href="author.html#934">[ 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-May/000935.html b/zarb-ml/mageia-webteam/2011-May/000935.html
new file mode 100644
index 000000000..c81e5a543
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000935.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1356] [New] please update bugzilla to 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%201356%5D%20%5BNew%5D%20please%20update%20bugzilla%20to%204.0&In-Reply-To=%3Cbug-1356-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="000934.html">
+ <LINK REL="Next" HREF="000936.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201356%5D%20%5BNew%5D%20please%20update%20bugzilla%20to%204.0&In-Reply-To=%3Cbug-1356-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 20 14:50:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000934.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000936.html">[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#935">[ date ]</a>
+ <a href="thread.html#935">[ thread ]</a>
+ <a href="subject.html#935">[ subject ]</a>
+ <a href="author.html#935">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1356">https://bugs.mageia.org/show_bug.cgi?id=1356</A>
+
+ Summary: please update bugzilla to 4.0
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">thierry.vignaud at gmail.com</A>
+
+
+please update bugzilla to 4.0
+And make it pretty eg like mdv one now is.
+
+--
+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="000934.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000936.html">[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#935">[ date ]</a>
+ <a href="thread.html#935">[ thread ]</a>
+ <a href="subject.html#935">[ subject ]</a>
+ <a href="author.html#935">[ 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-May/000936.html b/zarb-ml/mageia-webteam/2011-May/000936.html
new file mode 100644
index 000000000..37ca4cfb8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000936.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1356] please update bugzilla to 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%201356%5D%20please%20update%20bugzilla%20to%204.0&In-Reply-To=%3C20110520125808.7786242F73%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="000935.html">
+ <LINK REL="Next" HREF="000937.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201356%5D%20please%20update%20bugzilla%20to%204.0&In-Reply-To=%3C20110520125808.7786242F73%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 20 14:58:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000935.html">[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0
+</A></li>
+ <LI>Next message: <A HREF="000937.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#936">[ date ]</a>
+ <a href="thread.html#936">[ thread ]</a>
+ <a href="subject.html#936">[ subject ]</a>
+ <a href="author.html#936">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1356">https://bugs.mageia.org/show_bug.cgi?id=1356</A>
+
+Damien Lallement &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at damsweb.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |DUPLICATE
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at damsweb.net</A>
+
+--- Comment #1 from Damien Lallement &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at damsweb.net</A>&gt; 2011-05-20 14:58:08 CEST ---
+Close as duplicate.
+
+*** This bug has been marked as a duplicate of bug 40 ***
+
+--
+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="000935.html">[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0
+</A></li>
+ <LI>Next message: <A HREF="000937.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#936">[ date ]</a>
+ <a href="thread.html#936">[ thread ]</a>
+ <a href="subject.html#936">[ subject ]</a>
+ <a href="author.html#936">[ 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-May/000937.html b/zarb-ml/mageia-webteam/2011-May/000937.html
new file mode 100644
index 000000000..4f14d4ebb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000937.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+ </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.1&In-Reply-To=%3C20110520125808.DC07342F7A%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="000936.html">
+ <LINK REL="Next" HREF="000938.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1</H1>
+ <B>Damien Lallement</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0.1&In-Reply-To=%3C20110520125808.DC07342F7A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 20 14:58:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000936.html">[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0
+</A></li>
+ <LI>Next message: <A HREF="000938.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#937">[ date ]</a>
+ <a href="thread.html#937">[ thread ]</a>
+ <a href="subject.html#937">[ subject ]</a>
+ <a href="author.html#937">[ 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 #13 from Damien Lallement &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at damsweb.net</A>&gt; 2011-05-20 14:58:08 CEST ---
+*** Bug 1356 has been marked as a duplicate of this bug. ***
+
+--
+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="000936.html">[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0
+</A></li>
+ <LI>Next message: <A HREF="000938.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#937">[ date ]</a>
+ <a href="thread.html#937">[ thread ]</a>
+ <a href="subject.html#937">[ subject ]</a>
+ <a href="author.html#937">[ 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-May/000938.html b/zarb-ml/mageia-webteam/2011-May/000938.html
new file mode 100644
index 000000000..fb6bf2b66
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000938.html
@@ -0,0 +1,140 @@
+<!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=%3C20110520220002.EB49242F7C%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="000937.html">
+ <LINK REL="Next" HREF="000939.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=%3C20110520220002.EB49242F7C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000937.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000939.html">[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#938">[ date ]</a>
+ <a href="thread.html#938">[ thread ]</a>
+ <a href="subject.html#938">[ subject ]</a>
+ <a href="author.html#938">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000937.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A></li>
+ <LI>Next message: <A HREF="000939.html">[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#938">[ date ]</a>
+ <a href="thread.html#938">[ thread ]</a>
+ <a href="subject.html#938">[ subject ]</a>
+ <a href="author.html#938">[ 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-May/000939.html b/zarb-ml/mageia-webteam/2011-May/000939.html
new file mode 100644
index 000000000..c5e0360fb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000939.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20%5BNew%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3Cbug-1364-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="000938.html">
+ <LINK REL="Next" HREF="000941.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20%5BNew%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3Cbug-1364-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 00:26:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000938.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000941.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#939">[ date ]</a>
+ <a href="thread.html#939">[ thread ]</a>
+ <a href="subject.html#939">[ subject ]</a>
+ <a href="author.html#939">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+ Summary: Bug reported can't be &quot;Resolved Duplicate&quot; without
+ entering a comment
+ 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>
+
+
+All in the summary, this is a major annoyance, and IIRC this used to work in
+mdv bugzilla, i.e. reports could be marked as duplicates without having to post
+a comment.
+
+--
+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="000938.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000941.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#939">[ date ]</a>
+ <a href="thread.html#939">[ thread ]</a>
+ <a href="subject.html#939">[ subject ]</a>
+ <a href="author.html#939">[ 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-May/000940.html b/zarb-ml/mageia-webteam/2011-May/000940.html
new file mode 100644
index 000000000..678b07f60
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000940.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports
+ </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%201365%5D%20%5BNew%5D%20URL%20field%20isn%27t%20shown%20in%20bug%0A%09reports&In-Reply-To=%3Cbug-1365-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="000950.html">
+ <LINK REL="Next" HREF="000947.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201365%5D%20%5BNew%5D%20URL%20field%20isn%27t%20shown%20in%20bug%0A%09reports&In-Reply-To=%3Cbug-1365-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 00:30:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000950.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000947.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#940">[ date ]</a>
+ <a href="thread.html#940">[ thread ]</a>
+ <a href="subject.html#940">[ subject ]</a>
+ <a href="author.html#940">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1365">https://bugs.mageia.org/show_bug.cgi?id=1365</A>
+
+ Summary: URL field isn't shown in bug reports
+ 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>
+
+
+The URL field isn't shown in the bug report page; I'd asked dmorgan to hide it,
+thinking that the See Also field is enough, but it turned out the See Also
+field only accepts links to other bug reports from Mageia or 3rd party
+bugzillas.
+
+Also as the URL field is shown on the enter_bug.cgi page, some users would add
+a url, but it won't show on the submitted report page.
+
+So it's prudent to enable the URL field back.
+
+--
+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="000950.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000947.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#940">[ date ]</a>
+ <a href="thread.html#940">[ thread ]</a>
+ <a href="subject.html#940">[ subject ]</a>
+ <a href="author.html#940">[ 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-May/000941.html b/zarb-ml/mageia-webteam/2011-May/000941.html
new file mode 100644
index 000000000..b9caca243
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000941.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520224127.334C042F7A%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="000939.html">
+ <LINK REL="Next" HREF="000942.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520224127.334C042F7A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 00:41:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000939.html">[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000942.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#941">[ date ]</a>
+ <a href="thread.html#941">[ thread ]</a>
+ <a href="subject.html#941">[ subject ]</a>
+ <a href="author.html#941">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</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">boklm at mars-attacks.org</A>
+
+--- Comment #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-05-21 00:41:26 CEST ---
+I can't find how to change that.
+
+There is a page to define which status transitions require a comment :
+<A HREF="https://bugs.mageia.org/editworkflow.cgi?action=edit_comment">https://bugs.mageia.org/editworkflow.cgi?action=edit_comment</A>
+But it's only possible to select &quot;RESOLVED&quot; as status, not &quot;RESOLVED
+DUPLICATE&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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000939.html">[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000942.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#941">[ date ]</a>
+ <a href="thread.html#941">[ thread ]</a>
+ <a href="subject.html#941">[ subject ]</a>
+ <a href="author.html#941">[ 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-May/000942.html b/zarb-ml/mageia-webteam/2011-May/000942.html
new file mode 100644
index 000000000..c91c40c29
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000942.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520224813.D97E342F5F%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="000941.html">
+ <LINK REL="Next" HREF="000943.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520224813.D97E342F5F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 00:48:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000941.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000943.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#942">[ date ]</a>
+ <a href="thread.html#942">[ thread ]</a>
+ <a href="subject.html#942">[ subject ]</a>
+ <a href="author.html#942">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</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-05-21 02:48:13 CEST ---
+Hmm, there is an option commentonduplicate on this page :
+<A HREF="https://bugs.mageia.org/editparams.cgi?section=bugchange#duplicate_or_move_bug_status">https://bugs.mageia.org/editparams.cgi?section=bugchange#duplicate_or_move_bug_status</A>
+
+but it's already set to &quot;off&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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000941.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000943.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#942">[ date ]</a>
+ <a href="thread.html#942">[ thread ]</a>
+ <a href="subject.html#942">[ subject ]</a>
+ <a href="author.html#942">[ 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-May/000943.html b/zarb-ml/mageia-webteam/2011-May/000943.html
new file mode 100644
index 000000000..179f0f8f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000943.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520235200.51B7542F73%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="000942.html">
+ <LINK REL="Next" HREF="000944.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520235200.51B7542F73%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 01:52:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000942.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000944.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#943">[ date ]</a>
+ <a href="thread.html#943">[ thread ]</a>
+ <a href="subject.html#943">[ subject ]</a>
+ <a href="author.html#943">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+--- Comment #3 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-05-21 03:52:00 CEST ---
+(In reply to comment #1)
+&gt;<i> There is a page to define which status transitions require a comment
+</I>
+Do the transitions to RESOLVED require a comment?
+
+--
+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="000942.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000944.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#943">[ date ]</a>
+ <a href="thread.html#943">[ thread ]</a>
+ <a href="subject.html#943">[ subject ]</a>
+ <a href="author.html#943">[ 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-May/000944.html b/zarb-ml/mageia-webteam/2011-May/000944.html
new file mode 100644
index 000000000..bd7ae17b7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000944.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520235328.CF84442F7D%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="000943.html">
+ <LINK REL="Next" HREF="000945.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520235328.CF84442F7D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 01:53:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000943.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000945.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#944">[ date ]</a>
+ <a href="thread.html#944">[ thread ]</a>
+ <a href="subject.html#944">[ subject ]</a>
+ <a href="author.html#944">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</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 #4 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-21 03:53:28 CEST ---
+test
+
+--
+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="000943.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000945.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#944">[ date ]</a>
+ <a href="thread.html#944">[ thread ]</a>
+ <a href="subject.html#944">[ subject ]</a>
+ <a href="author.html#944">[ 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-May/000945.html b/zarb-ml/mageia-webteam/2011-May/000945.html
new file mode 100644
index 000000000..5696ea32a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000945.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520235354.E4AD042F7B%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="000944.html">
+ <LINK REL="Next" HREF="000946.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520235354.E4AD042F7B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 01:53:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000944.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000946.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#945">[ date ]</a>
+ <a href="thread.html#945">[ thread ]</a>
+ <a href="subject.html#945">[ subject ]</a>
+ <a href="author.html#945">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</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|RESOLVED |REOPENED
+ Resolution|FIXED |
+
+--- Comment #5 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-21 03:53:55 CEST ---
+test2
+
+--
+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="000944.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000946.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#945">[ date ]</a>
+ <a href="thread.html#945">[ thread ]</a>
+ <a href="subject.html#945">[ subject ]</a>
+ <a href="author.html#945">[ 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-May/000946.html b/zarb-ml/mageia-webteam/2011-May/000946.html
new file mode 100644
index 000000000..75b6e59f9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000946.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520235514.A83F042F7B%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="000945.html">
+ <LINK REL="Next" HREF="000948.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110520235514.A83F042F7B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 01:55:14 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000945.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000948.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#946">[ date ]</a>
+ <a href="thread.html#946">[ thread ]</a>
+ <a href="subject.html#946">[ subject ]</a>
+ <a href="author.html#946">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+--- Comment #6 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-21 03:55:14 CEST ---
+The way it is now in Mageia bugzilla:
+- Reopening a report requires a comment
+- Closing as Resolved Fixed/Duplicate requires a comment
+
+--
+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="000945.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000948.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#946">[ date ]</a>
+ <a href="thread.html#946">[ thread ]</a>
+ <a href="subject.html#946">[ subject ]</a>
+ <a href="author.html#946">[ 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-May/000947.html b/zarb-ml/mageia-webteam/2011-May/000947.html
new file mode 100644
index 000000000..5336b5b99
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000947.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%20to%0A%09portuguese%20language&In-Reply-To=%3CBANLkTimYEDQioTPvwDzmCaDsn73pk_HRVw%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="000940.html">
+ <LINK REL="Next" HREF="000962.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%20to%0A%09portuguese%20language&In-Reply-To=%3CBANLkTimYEDQioTPvwDzmCaDsn73pk_HRVw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">terraagua at gmail.com
+ </A><BR>
+ <I>Sat May 21 14:56:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000940.html">[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports
+</A></li>
+ <LI>Next message: <A HREF="000962.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#947">[ date ]</a>
+ <a href="thread.html#947">[ thread ]</a>
+ <a href="subject.html#947">[ subject ]</a>
+ <a href="author.html#947">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Rda,
+
+I'm sending attached a translation of the download page &quot;Mageia RC&quot;, for the
+portuguese language.
+
+English: <A HREF="http://www.mageia.org/en/downloads/">http://www.mageia.org/en/downloads/</A>
+for
+Portuguese: <A HREF="http://www.mageia.org/pt/downloads/">http://www.mageia.org/pt/downloads/</A>
+
+Note: page edited in &quot;KompoZer&quot; software, in Mageia Beta2
+
+Cheers! :)
+
+MacXi
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110521/04490652/attachment.html&gt;
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110521/04490652/attachment.htm&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000940.html">[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports
+</A></li>
+ <LI>Next message: <A HREF="000962.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#947">[ date ]</a>
+ <a href="thread.html#947">[ thread ]</a>
+ <a href="subject.html#947">[ subject ]</a>
+ <a href="author.html#947">[ 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-May/000948.html b/zarb-ml/mageia-webteam/2011-May/000948.html
new file mode 100644
index 000000000..97dc4c389
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000948.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110521203623.D563742F9A%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="000946.html">
+ <LINK REL="Next" HREF="000949.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110521203623.D563742F9A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 22:36:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000946.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000949.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#948">[ date ]</a>
+ <a href="thread.html#948">[ thread ]</a>
+ <a href="subject.html#948">[ subject ]</a>
+ <a href="author.html#948">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+--- Comment #7 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-05-22 00:36:22 CEST ---
+(In reply to comment #6)
+&gt;<i> - Closing as Resolved Fixed/Duplicate requires a comment
+</I>
+So it works as expected as you just said it's configured to require a comment
+when closing as 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 on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000946.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000949.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#948">[ date ]</a>
+ <a href="thread.html#948">[ thread ]</a>
+ <a href="subject.html#948">[ subject ]</a>
+ <a href="author.html#948">[ 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-May/000949.html b/zarb-ml/mageia-webteam/2011-May/000949.html
new file mode 100644
index 000000000..b8053ef60
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000949.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110521204448.A9EFB42F9D%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="000948.html">
+ <LINK REL="Next" HREF="000950.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110521204448.A9EFB42F9D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 22:44:48 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000948.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000950.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#949">[ date ]</a>
+ <a href="thread.html#949">[ thread ]</a>
+ <a href="subject.html#949">[ subject ]</a>
+ <a href="author.html#949">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+--- Comment #8 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-22 00:44:46 CEST ---
+Yes, but somehow the mandriva bugzilla (at least the version before their last
+update/revamp), it was possible to close as a duplicate without commenting....
+IIRC at least.
+
+--
+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="000948.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000950.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#949">[ date ]</a>
+ <a href="thread.html#949">[ thread ]</a>
+ <a href="subject.html#949">[ subject ]</a>
+ <a href="author.html#949">[ 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-May/000950.html b/zarb-ml/mageia-webteam/2011-May/000950.html
new file mode 100644
index 000000000..436880c86
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000950.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110521205617.9718E42F9E%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="000949.html">
+ <LINK REL="Next" HREF="000940.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20110521205617.9718E42F9E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 21 22:56:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000949.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000940.html">[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#950">[ date ]</a>
+ <a href="thread.html#950">[ thread ]</a>
+ <a href="subject.html#950">[ subject ]</a>
+ <a href="author.html#950">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</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
+----------------------------------------------------------------------------
+ Status|REOPENED |NEW
+ See Also| |<A HREF="https://bugzilla.mozilla.or">https://bugzilla.mozilla.or</A>
+ | |g/show_bug.cgi?id=463453,
+ | |<A HREF="https://bugzilla.mozilla.or">https://bugzilla.mozilla.or</A>
+ | |g/show_bug.cgi?id=474974
+
+--- Comment #9 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-05-22 00:56:16 CEST ---
+See upstream 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="000949.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="000940.html">[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#950">[ date ]</a>
+ <a href="thread.html#950">[ thread ]</a>
+ <a href="subject.html#950">[ subject ]</a>
+ <a href="author.html#950">[ 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-May/000951.html b/zarb-ml/mageia-webteam/2011-May/000951.html
new file mode 100644
index 000000000..ce32320a0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000951.html
@@ -0,0 +1,144 @@
+<!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=%3C20110521220003.3AF8242FAC%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="001013.html">
+ <LINK REL="Next" HREF="000952.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=%3C20110521220003.3AF8242FAC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 22 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001013.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="000952.html">[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#951">[ date ]</a>
+ <a href="thread.html#951">[ thread ]</a>
+ <a href="subject.html#951">[ subject ]</a>
+ <a href="author.html#951">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001013.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="000952.html">[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#951">[ date ]</a>
+ <a href="thread.html#951">[ thread ]</a>
+ <a href="subject.html#951">[ subject ]</a>
+ <a href="author.html#951">[ 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-May/000952.html b/zarb-ml/mageia-webteam/2011-May/000952.html
new file mode 100644
index 000000000..37ec7b59b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000952.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] [New] Add distrib links to first 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%201386%5D%20%5BNew%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3Cbug-1386-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="000951.html">
+ <LINK REL="Next" HREF="000953.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page</H1>
+ <B>Sander Lepik</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20%5BNew%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3Cbug-1386-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 22 16:18:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000951.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000953.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#952">[ date ]</a>
+ <a href="thread.html#952">[ thread ]</a>
+ <a href="subject.html#952">[ subject ]</a>
+ <a href="author.html#952">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+
+ Summary: Add distrib links to first page
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://mirrors.mageia.org">http://mirrors.mageia.org</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Normal
+ Component: mirrors.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">sander.lepik at eesti.ee</A>
+
+
+Description of problem:
+<A HREF="http://mirrors.mageia.org/distrib">http://mirrors.mageia.org/distrib</A> is a bit of mess (eg.
+<A HREF="http://mirrors.mageia.org/distrib?version=cauldron&amp;arch=i586">http://mirrors.mageia.org/distrib?version=cauldron&amp;arch=i586</A>). It's very hard
+to find what you want (it should be sorted at least).
+
+But it would be nice to have one more column at first page that lists distrib
+urls like mirror urls, so you can just copy url and use it with urpmi.addmedia.
+
+Or it could be link to filtered distrib page that shows links for specified
+mirror only.
+
+--
+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="000951.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000953.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#952">[ date ]</a>
+ <a href="thread.html#952">[ thread ]</a>
+ <a href="subject.html#952">[ subject ]</a>
+ <a href="author.html#952">[ 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-May/000953.html b/zarb-ml/mageia-webteam/2011-May/000953.html
new file mode 100644
index 000000000..ab251955b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000953.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] Add distrib links to first 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%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522155157.A448B42EF7%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="000952.html">
+ <LINK REL="Next" HREF="000954.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] Add distrib links to first page</H1>
+ <B>Sander Lepik</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522155157.A448B42EF7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] Add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 22 17:51:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000952.html">[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000954.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#953">[ date ]</a>
+ <a href="thread.html#953">[ thread ]</a>
+ <a href="subject.html#953">[ subject ]</a>
+ <a href="author.html#953">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+
+--- Comment #1 from Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; 2011-05-22 19:51:55 CEST ---
+Distrib links could be listed in this view too:
+
+<A HREF="http://mirrors.mageia.org/mirrors/mageia.c3sl.ufpr.br">http://mirrors.mageia.org/mirrors/mageia.c3sl.ufpr.br</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="000952.html">[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000954.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#953">[ date ]</a>
+ <a href="thread.html#953">[ thread ]</a>
+ <a href="subject.html#953">[ subject ]</a>
+ <a href="author.html#953">[ 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-May/000954.html b/zarb-ml/mageia-webteam/2011-May/000954.html
new file mode 100644
index 000000000..e183a975d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000954.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] Add distrib links to first 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%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522162444.5FB9742F76%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="000953.html">
+ <LINK REL="Next" HREF="000955.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] Add distrib links to first page</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522162444.5FB9742F76%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] Add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 22 18:24:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000953.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000955.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#954">[ date ]</a>
+ <a href="thread.html#954">[ thread ]</a>
+ <a href="subject.html#954">[ subject ]</a>
+ <a href="author.html#954">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">nanardon at nanardon.zarb.org</A>
+
+--- Comment #2 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-22 20:24:44 CEST ---
+(In reply to comment #0)
+&gt;<i> Description of problem:
+</I>&gt;<i> <A HREF="http://mirrors.mageia.org/distrib">http://mirrors.mageia.org/distrib</A> is a bit of mess (eg.
+</I>&gt;<i> <A HREF="http://mirrors.mageia.org/distrib?version=cauldron&amp;arch=i586">http://mirrors.mageia.org/distrib?version=cauldron&amp;arch=i586</A>). It's very hard
+</I>&gt;<i> to find what you want (it should be sorted at least).
+</I>&gt;<i>
+</I>
+And if you want arch x86_64? or Mageia 1 i586? or Mageia 2 x86_64?
+
+My point is, the idea was to make it create exactly the list &quot;you&quot; want, after
+selecting the release and arch.
+
+[...]
+
+--
+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="000953.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000955.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#954">[ date ]</a>
+ <a href="thread.html#954">[ thread ]</a>
+ <a href="subject.html#954">[ subject ]</a>
+ <a href="author.html#954">[ 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-May/000955.html b/zarb-ml/mageia-webteam/2011-May/000955.html
new file mode 100644
index 000000000..d3598ab40
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000955.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] Add distrib links to first 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%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522171601.DB0F942F1D%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="000954.html">
+ <LINK REL="Next" HREF="000956.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] Add distrib links to first page</H1>
+ <B>Sander Lepik</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522171601.DB0F942F1D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] Add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 22 19:16:01 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000954.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000956.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#955">[ date ]</a>
+ <a href="thread.html#955">[ thread ]</a>
+ <a href="subject.html#955">[ subject ]</a>
+ <a href="author.html#955">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+
+--- Comment #3 from Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; 2011-05-22 21:16:02 CEST ---
+Well, it would be ok to add link to distrib list which is filtered to that
+specific mirror you selected. At this page it may list both archs.
+
+Or something like that:
+
+You click on the link Distrib (or something like that) at the first page and
+after that it will show you the same page as /distrib, but it will remember the
+mirror for you. So you can get distrib links for that mirror only.
+
+it could print even commands you need to enter into terminal
+
+urpmi.addmedia --distrib mirror_links_here
+
+It would solve the &quot;no easyurpmi&quot; problem for some people complaining in the
+ml.
+
+--
+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="000954.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000956.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#955">[ date ]</a>
+ <a href="thread.html#955">[ thread ]</a>
+ <a href="subject.html#955">[ subject ]</a>
+ <a href="author.html#955">[ 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-May/000956.html b/zarb-ml/mageia-webteam/2011-May/000956.html
new file mode 100644
index 000000000..da9dfcdc1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000956.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] Add distrib links to first 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%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522213558.5637742F8F%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="000955.html">
+ <LINK REL="Next" HREF="000958.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] Add distrib links to first page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522213558.5637742F8F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] Add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 22 23:35:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000955.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000958.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#956">[ date ]</a>
+ <a href="thread.html#956">[ thread ]</a>
+ <a href="subject.html#956">[ subject ]</a>
+ <a href="author.html#956">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</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 #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-23 01:35:57 CEST ---
+Why should there be a manual step here? can't this be directly managed between
+the client and the server?
+
+--
+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="000955.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000958.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#956">[ date ]</a>
+ <a href="thread.html#956">[ thread ]</a>
+ <a href="subject.html#956">[ subject ]</a>
+ <a href="author.html#956">[ 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-May/000957.html b/zarb-ml/mageia-webteam/2011-May/000957.html
new file mode 100644
index 000000000..b8a1db52f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000957.html
@@ -0,0 +1,145 @@
+<!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=%3C20110522220002.7612942FBA%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="000958.html">
+ <LINK REL="Next" HREF="000959.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=%3C20110522220002.7612942FBA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 23 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000958.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000959.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#957">[ date ]</a>
+ <a href="thread.html#957">[ thread ]</a>
+ <a href="subject.html#957">[ subject ]</a>
+ <a href="author.html#957">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000958.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000959.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#957">[ date ]</a>
+ <a href="thread.html#957">[ thread ]</a>
+ <a href="subject.html#957">[ subject ]</a>
+ <a href="author.html#957">[ 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-May/000958.html b/zarb-ml/mageia-webteam/2011-May/000958.html
new file mode 100644
index 000000000..7a85aff14
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000958.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] Add distrib links to first 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%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522225625.E191342FB4%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="000956.html">
+ <LINK REL="Next" HREF="000957.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] Add distrib links to first page</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20110522225625.E191342FB4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] Add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 23 00:56:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000956.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000957.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#958">[ date ]</a>
+ <a href="thread.html#958">[ thread ]</a>
+ <a href="subject.html#958">[ subject ]</a>
+ <a href="author.html#958">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</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 #5 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-23 02:56:24 CEST ---
+We can use the .urpmi-media system :
+<A HREF="http://wiki.mandriva.com/en/Development/Howto/CreateRepository#Providing_an_easy_way_to_add_your_repository_to_a_system">http://wiki.mandriva.com/en/Development/Howto/CreateRepository#Providing_an_easy_way_to_add_your_repository_to_a_system</A>
+
+But as said on -discuss, rpmdrake already provides a graphical interface, so
+yes, we can alraedy do this between client and server.
+
+I would be in favor of displaying the documentaion instead of directing people
+to mirrors.mageia.org ( that is for the moment still a backend software rather
+than something that would be user facing ).
+
+--
+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="000956.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="000957.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#958">[ date ]</a>
+ <a href="thread.html#958">[ thread ]</a>
+ <a href="subject.html#958">[ subject ]</a>
+ <a href="author.html#958">[ 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-May/000959.html b/zarb-ml/mageia-webteam/2011-May/000959.html
new file mode 100644
index 000000000..f36089cbb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000959.html
@@ -0,0 +1,144 @@
+<!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=%3C20110523220005.16B1442FCF%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="000957.html">
+ <LINK REL="Next" HREF="000960.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=%3C20110523220005.16B1442FCF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 24 00:00:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000957.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000960.html">[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#959">[ date ]</a>
+ <a href="thread.html#959">[ thread ]</a>
+ <a href="subject.html#959">[ subject ]</a>
+ <a href="author.html#959">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000957.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000960.html">[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#959">[ date ]</a>
+ <a href="thread.html#959">[ thread ]</a>
+ <a href="subject.html#959">[ subject ]</a>
+ <a href="author.html#959">[ 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-May/000960.html b/zarb-ml/mageia-webteam/2011-May/000960.html
new file mode 100644
index 000000000..0145c4f1d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000960.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ </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%201411%5D%20%5BNew%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3Cbug-1411-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="000959.html">
+ <LINK REL="Next" HREF="000961.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201411%5D%20%5BNew%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3Cbug-1411-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 24 18:03:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000959.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000961.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#960">[ date ]</a>
+ <a href="thread.html#960">[ thread ]</a>
+ <a href="subject.html#960">[ subject ]</a>
+ <a href="author.html#960">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+
+ Summary: Should be improved the homepage appareance and the
+ page should contain all the links to the mageia
+ resources
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">marcello.anni at alice.it</A>
+
+
+Description of problem:
+
+
+
+hi,
+
+identity home page is very ugly and it doesn't contain any link to mageia
+resources. Can you make something in time for the release? thanks
+
+
+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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000959.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000961.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#960">[ date ]</a>
+ <a href="thread.html#960">[ thread ]</a>
+ <a href="subject.html#960">[ subject ]</a>
+ <a href="author.html#960">[ 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-May/000961.html b/zarb-ml/mageia-webteam/2011-May/000961.html
new file mode 100644
index 000000000..9b16a43ec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000961.html
@@ -0,0 +1,144 @@
+<!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=%3C20110524220003.2EED642FF9%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="000960.html">
+ <LINK REL="Next" HREF="000963.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=%3C20110524220003.2EED642FF9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 25 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000960.html">[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="000963.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#961">[ date ]</a>
+ <a href="thread.html#961">[ thread ]</a>
+ <a href="subject.html#961">[ subject ]</a>
+ <a href="author.html#961">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000960.html">[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="000963.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#961">[ date ]</a>
+ <a href="thread.html#961">[ thread ]</a>
+ <a href="subject.html#961">[ subject ]</a>
+ <a href="author.html#961">[ 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-May/000962.html b/zarb-ml/mageia-webteam/2011-May/000962.html
new file mode 100644
index 000000000..e3cd287c3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000962.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTim_4ie-Y2Oga-r64FsXfEV-hqa2rA%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="000947.html">
+ <LINK REL="Next" HREF="001010.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTim_4ie-Y2Oga-r64FsXfEV-hqa2rA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">rda at mageia.org
+ </A><BR>
+ <I>Wed May 25 15:44:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000947.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001010.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#962">[ date ]</a>
+ <a href="thread.html#962">[ thread ]</a>
+ <a href="subject.html#962">[ subject ]</a>
+ <a href="author.html#962">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Thanks, integrated some of it, but it would help some more if you
+translate the PHP array in trunk/downloads_locales.php file (there's a
+pt section now). Thanks.
+
+Romain
+
+2011/5/21 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+&gt;<i> Rda,
+</I>&gt;<i>
+</I>&gt;<i> I'm sending attached a translation of the download page &quot;Mageia RC&quot;, for the
+</I>&gt;<i> portuguese language.
+</I>&gt;<i>
+</I>&gt;<i> English: <A HREF="http://www.mageia.org/en/downloads/">http://www.mageia.org/en/downloads/</A>
+</I>&gt;<i> for
+</I>&gt;<i> Portuguese: <A HREF="http://www.mageia.org/pt/downloads/">http://www.mageia.org/pt/downloads/</A>
+</I>&gt;<i>
+</I>&gt;<i> Note: page edited in &quot;KompoZer&quot; software, in Mageia Beta2
+</I>&gt;<i>
+</I>&gt;<i> Cheers!&#160; :)
+</I>&gt;<i>
+</I>&gt;<i> MacXi
+</I>&gt;<i>
+</I>&gt;<i>
+</I></PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000947.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001010.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#962">[ date ]</a>
+ <a href="thread.html#962">[ thread ]</a>
+ <a href="subject.html#962">[ subject ]</a>
+ <a href="author.html#962">[ 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-May/000963.html b/zarb-ml/mageia-webteam/2011-May/000963.html
new file mode 100644
index 000000000..9dd051c2b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000963.html
@@ -0,0 +1,143 @@
+<!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=%3C20110525220002.67EEC42FFF%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="000961.html">
+ <LINK REL="Next" HREF="000964.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=%3C20110525220002.67EEC42FFF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000961.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000964.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#963">[ date ]</a>
+ <a href="thread.html#963">[ thread ]</a>
+ <a href="subject.html#963">[ subject ]</a>
+ <a href="author.html#963">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ Topic subscription defaults wrong in forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000961.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000964.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#963">[ date ]</a>
+ <a href="thread.html#963">[ thread ]</a>
+ <a href="subject.html#963">[ subject ]</a>
+ <a href="author.html#963">[ 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-May/000964.html b/zarb-ml/mageia-webteam/2011-May/000964.html
new file mode 100644
index 000000000..6dba5377b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000964.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Access to the web svn repository
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3C1306399129.1924.6.camel%40akroma.ephaone.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000963.html">
+ <LINK REL="Next" HREF="000965.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Access to the web svn repository</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3C1306399129.1924.6.camel%40akroma.ephaone.org%3E"
+ TITLE="[Mageia-webteam] Access to the web svn repository">misc at zarb.org
+ </A><BR>
+ <I>Thu May 26 10:38:47 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000963.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000965.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#964">[ date ]</a>
+ <a href="thread.html#964">[ thread ]</a>
+ <a href="subject.html#964">[ subject ]</a>
+ <a href="author.html#964">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+While looking at svn repository, I have seen that while we intended to
+have it open to the web team only
+( <A HREF="http://svnweb.mageia.org/adm?view=revision&amp;revision=1565">http://svnweb.mageia.org/adm?view=revision&amp;revision=1565</A> ), it kinda
+didn't work due to subsequent changes and let everybody commit there.
+
+So since people in the i18n team expect to be able to commit ( at least,
+that's the impression I have from reading Oliver mail yesterday ), I
+would like to know what should we do :
+- let website be managed like soft/ svn ( ie, all people with shell
+access can commit )
+- enforce the limitation of being reserved by the web team
+
+We can also report this change to later, as we are now in release period
+and it may prevent people from committing smoothly, thus causing some
+unneeded work and stress.
+
+--
+Michael Scherer
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000963.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000965.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#964">[ date ]</a>
+ <a href="thread.html#964">[ thread ]</a>
+ <a href="subject.html#964">[ subject ]</a>
+ <a href="author.html#964">[ 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-May/000965.html b/zarb-ml/mageia-webteam/2011-May/000965.html
new file mode 100644
index 000000000..2c6513f1c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000965.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Access to the web svn repository
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3C156878.91312.qm%40web29619.mail.ird.yahoo.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000964.html">
+ <LINK REL="Next" HREF="000966.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Access to the web svn repository</H1>
+ <B>Catalin Florin RUSSEN</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3C156878.91312.qm%40web29619.mail.ird.yahoo.com%3E"
+ TITLE="[Mageia-webteam] Access to the web svn repository">cfrussen at yahoo.co.uk
+ </A><BR>
+ <I>Thu May 26 10:51:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000964.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000966.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#965">[ date ]</a>
+ <a href="thread.html#965">[ thread ]</a>
+ <a href="subject.html#965">[ subject ]</a>
+ <a href="author.html#965">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> While looking at svn repository, I have seen that while we intended to
+</I>
+&gt;<i> have it open to the web team only
+</I>&gt;<i> ( <A HREF="http://svnweb.mageia.org/adm?view=revision&amp;revision=1565">http://svnweb.mageia.org/adm?view=revision&amp;revision=1565</A> ), it kinda
+</I>&gt;<i> didn't work due to subsequent changes and let everybody commit there.
+</I>&gt;<i>
+</I>&gt;<i> So since people in the i18n team expect to be able to commit ( at least,
+</I>&gt;<i> that's the impression I have from reading Oliver mail yesterday ), I
+</I>&gt;<i> would like to know what should we do :
+</I>&gt;<i> - let website be managed like soft/ svn ( ie, all people with shell
+</I>&gt;<i> access can commit )
+</I>&gt;<i> - enforce the limitation of being reserved by the web team
+</I>&#160;
+Well, I'll try to be short:
+
+- let the people who know what they are doing do the things
+- but offer a simple and human way to contributors do their work too
+
+So, the more simple thing are for contributors, less headache administrators will have.
+&#160;
+Best regards,
+Florin Catalin RUSSEN
+Romanian Translation Team
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000964.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000966.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#965">[ date ]</a>
+ <a href="thread.html#965">[ thread ]</a>
+ <a href="subject.html#965">[ subject ]</a>
+ <a href="author.html#965">[ 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-May/000966.html b/zarb-ml/mageia-webteam/2011-May/000966.html
new file mode 100644
index 000000000..60037cda8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000966.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Access to the web svn repository
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3CBANLkTinuNXAi14RRirtafWLo6B0eaU%3Dr4g%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="000965.html">
+ <LINK REL="Next" HREF="000967.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Access to the web svn repository</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3CBANLkTinuNXAi14RRirtafWLo6B0eaU%3Dr4g%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Access to the web svn repository">rda at mageia.org
+ </A><BR>
+ <I>Thu May 26 10:56:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000965.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000967.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#966">[ date ]</a>
+ <a href="thread.html#966">[ thread ]</a>
+ <a href="subject.html#966">[ subject ]</a>
+ <a href="author.html#966">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, May 26, 2011 at 10:51, Catalin Florin RUSSEN
+&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">cfrussen at yahoo.co.uk</A>&gt; wrote:
+&gt;&gt;<i> While looking at svn repository, I have seen that while we intended to
+</I>&gt;<i>
+</I>&gt;&gt;<i> have it open to the web team only
+</I>&gt;&gt;<i> ( <A HREF="http://svnweb.mageia.org/adm?view=revision&amp;revision=1565">http://svnweb.mageia.org/adm?view=revision&amp;revision=1565</A> ), it kinda
+</I>&gt;&gt;<i> didn't work due to subsequent changes and let everybody commit there.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> So since people in the i18n team expect to be able to commit ( at least,
+</I>&gt;&gt;<i> that's the impression I have from reading Oliver mail yesterday ), I
+</I>&gt;&gt;<i> would like to know what should we do :
+</I>&gt;&gt;<i> - let website be managed like soft/ svn ( ie, all people with shell
+</I>&gt;&gt;<i> access can commit )
+</I>&gt;&gt;<i> - enforce the limitation of being reserved by the web team
+</I>&gt;<i>
+</I>&gt;<i> Well, I'll try to be short:
+</I>&gt;<i>
+</I>&gt;<i> - let the people who know what they are doing do the things
+</I>&gt;<i> - but offer a simple and human way to contributors do their work too
+</I>
+/me likes github way of doing in this regard. :-p
+
+Anyway, here, let's keep this for after the release; my suggestion would be:
+ - to leave it open to everyone (easier to provide patch, although it
+would be good to have a review path before commits);
+ - keep the production push button to the web team webmasters (so it's
+their duty to maintain the tree for production, check commits are ok
+and fix/revert when needed);
+ - depending on the situation, have the possibility to block abusers.
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000965.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000967.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#966">[ date ]</a>
+ <a href="thread.html#966">[ thread ]</a>
+ <a href="subject.html#966">[ subject ]</a>
+ <a href="author.html#966">[ 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-May/000967.html b/zarb-ml/mageia-webteam/2011-May/000967.html
new file mode 100644
index 000000000..9b93179e0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000967.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Access to the web svn repository
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3C201105261058.38948.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="000966.html">
+ <LINK REL="Next" HREF="000968.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Access to the web svn repository</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3C201105261058.38948.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Access to the web svn repository">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu May 26 10:58:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000966.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000968.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#967">[ date ]</a>
+ <a href="thread.html#967">[ thread ]</a>
+ <a href="subject.html#967">[ subject ]</a>
+ <a href="author.html#967">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; schrieb am 26.05.2011
+&gt;<i> While looking at svn repository, I have seen that while we intended
+</I>&gt;<i> to have it open to the web team only
+</I>&gt;<i> ( <A HREF="http://svnweb.mageia.org/adm?view=revision&amp;revision=1565">http://svnweb.mageia.org/adm?view=revision&amp;revision=1565</A> ), it
+</I>&gt;<i> kinda didn't work due to subsequent changes and let everybody
+</I>&gt;<i> commit there.
+</I>&gt;<i>
+</I>&gt;<i> So since people in the i18n team expect to be able to commit ( at
+</I>&gt;<i> least, that's the impression I have from reading Oliver mail
+</I>&gt;<i> yesterday ), I would like to know what should we do :
+</I>&gt;<i> - let website be managed like soft/ svn ( ie, all people with shell
+</I>&gt;<i> access can commit )
+</I>&gt;<i> - enforce the limitation of being reserved by the web team
+</I>After the experience from yesterday I would rather like to have it web
+team only.
+I thought we could trust people not to mess arround with things, they
+shouldn't, but...
+
+I would prefer for i18n people to send their web translations by mail
+to me or Romain and have us commit them....
+
+Oliver
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110526/2ad0e0e1/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000966.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000968.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#967">[ date ]</a>
+ <a href="thread.html#967">[ thread ]</a>
+ <a href="subject.html#967">[ subject ]</a>
+ <a href="author.html#967">[ 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-May/000968.html b/zarb-ml/mageia-webteam/2011-May/000968.html
new file mode 100644
index 000000000..875d57787
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000968.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Access to the web svn repository
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3C20110526092341.GX21938%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="000967.html">
+ <LINK REL="Next" HREF="000978.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Access to the web svn repository</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Access%20to%20the%20web%20svn%20repository&In-Reply-To=%3C20110526092341.GX21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Access to the web svn repository">boklm at mars-attacks.org
+ </A><BR>
+ <I>Thu May 26 11:23:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000967.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000978.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#968">[ date ]</a>
+ <a href="thread.html#968">[ thread ]</a>
+ <a href="subject.html#968">[ subject ]</a>
+ <a href="author.html#968">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, 26 May 2011, Oliver Burger wrote:
+
+&gt;<i> Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; schrieb am 26.05.2011
+</I>&gt;<i> &gt; While looking at svn repository, I have seen that while we intended
+</I>&gt;<i> &gt; to have it open to the web team only
+</I>&gt;<i> &gt; ( <A HREF="http://svnweb.mageia.org/adm?view=revision&amp;revision=1565">http://svnweb.mageia.org/adm?view=revision&amp;revision=1565</A> ), it
+</I>&gt;<i> &gt; kinda didn't work due to subsequent changes and let everybody
+</I>&gt;<i> &gt; commit there.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; So since people in the i18n team expect to be able to commit ( at
+</I>&gt;<i> &gt; least, that's the impression I have from reading Oliver mail
+</I>&gt;<i> &gt; yesterday ), I would like to know what should we do :
+</I>&gt;<i> &gt; - let website be managed like soft/ svn ( ie, all people with shell
+</I>&gt;<i> &gt; access can commit )
+</I>&gt;<i> &gt; - enforce the limitation of being reserved by the web team
+</I>&gt;<i> After the experience from yesterday I would rather like to have it web
+</I>&gt;<i> team only.
+</I>&gt;<i> I thought we could trust people not to mess arround with things, they
+</I>&gt;<i> shouldn't, but...
+</I>
+Most of the time, there is no problem. And commits can be easily
+reverted.
+
+I think a better solution would be to disable accounts from people
+creating problems repeatedly or not respecting rules, so we only have
+trustable people with commit access.
+
+At least for code that is not automatically pushed to web server, where
+it can be reviewed before being run.
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000967.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000978.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#968">[ date ]</a>
+ <a href="thread.html#968">[ thread ]</a>
+ <a href="subject.html#968">[ subject ]</a>
+ <a href="author.html#968">[ 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-May/000969.html b/zarb-ml/mageia-webteam/2011-May/000969.html
new file mode 100644
index 000000000..31f484b03
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000969.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526093314.652DA42FBA%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="000915.html">
+ <LINK REL="Next" HREF="000970.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526093314.652DA42FBA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 11:33:14 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000915.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000970.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#969">[ date ]</a>
+ <a href="thread.html#969">[ thread ]</a>
+ <a href="subject.html#969">[ subject ]</a>
+ <a href="author.html#969">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</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 #15 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-26 13:33:14 CEST ---
+We can force the configuration from all forums I guess, it just requires to
+digg in the code to know the name of the option ( so we do not forget later
+when we deploy a new one ).
+
+--
+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="000915.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000970.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#969">[ date ]</a>
+ <a href="thread.html#969">[ thread ]</a>
+ <a href="subject.html#969">[ subject ]</a>
+ <a href="author.html#969">[ 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-May/000970.html b/zarb-ml/mageia-webteam/2011-May/000970.html
new file mode 100644
index 000000000..f9a9cceec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000970.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526093804.7855642FD5%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="000969.html">
+ <LINK REL="Next" HREF="000971.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526093804.7855642FD5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 11:38:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000969.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000971.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#970">[ date ]</a>
+ <a href="thread.html#970">[ thread ]</a>
+ <a href="subject.html#970">[ subject ]</a>
+ <a href="author.html#970">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #16 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-26 13:38:03 CEST ---
+Ok, there is either no obvious configuration option in the db, or this is
+already enabled.
+
+--
+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="000969.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000971.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#970">[ date ]</a>
+ <a href="thread.html#970">[ thread ]</a>
+ <a href="subject.html#970">[ subject ]</a>
+ <a href="author.html#970">[ 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-May/000971.html b/zarb-ml/mageia-webteam/2011-May/000971.html
new file mode 100644
index 000000000..8fa979728
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000971.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526123004.7AE4E42FA8%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="000970.html">
+ <LINK REL="Next" HREF="000972.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526123004.7AE4E42FA8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 14:30:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000970.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000972.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#971">[ date ]</a>
+ <a href="thread.html#971">[ thread ]</a>
+ <a href="subject.html#971">[ subject ]</a>
+ <a href="author.html#971">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #17 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-26 14:30:04 CEST ---
+Well it's not enabled - I just created a new user to test and the Notify me....
+is still checked as &quot;no&quot; by default.
+
+--
+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="000970.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000972.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#971">[ date ]</a>
+ <a href="thread.html#971">[ thread ]</a>
+ <a href="subject.html#971">[ subject ]</a>
+ <a href="author.html#971">[ 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-May/000972.html b/zarb-ml/mageia-webteam/2011-May/000972.html
new file mode 100644
index 000000000..f63b3f2b5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000972.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526131021.5342842D8E%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="000971.html">
+ <LINK REL="Next" HREF="000973.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526131021.5342842D8E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 15:10:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000971.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000973.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#972">[ date ]</a>
+ <a href="thread.html#972">[ thread ]</a>
+ <a href="subject.html#972">[ subject ]</a>
+ <a href="author.html#972">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #18 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-26 15:10:19 CEST ---
+It seems from the following that this is not possible without hacking phpbb.
+<A HREF="http://www.phpbb.com/community/viewtopic.php?f=46&amp;t=2126972">http://www.phpbb.com/community/viewtopic.php?f=46&amp;t=2126972</A>
+I have added a post to that but it is being moderated :\
+
+--
+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="000971.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000973.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#972">[ date ]</a>
+ <a href="thread.html#972">[ thread ]</a>
+ <a href="subject.html#972">[ subject ]</a>
+ <a href="author.html#972">[ 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-May/000973.html b/zarb-ml/mageia-webteam/2011-May/000973.html
new file mode 100644
index 000000000..b832d63ba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000973.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526155757.1FE3342F24%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="000972.html">
+ <LINK REL="Next" HREF="000974.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526155757.1FE3342F24%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 17:57:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000972.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000974.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#973">[ date ]</a>
+ <a href="thread.html#973">[ thread ]</a>
+ <a href="subject.html#973">[ subject ]</a>
+ <a href="author.html#973">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #19 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-26 17:57:57 CEST ---
+&gt;<i>From #phpBB today :-
+</I>{
+[16:18] &lt;barjac&gt; Is there no board default setting to make &quot;Notify me upon
+replies by default:&quot; default to yes ?
+[16:33] &lt;Fire-Fox&gt; you mean PM ?
+[16:39] &lt;barjac&gt; Fire-Fox: I mean the normal email topic reply notifications -
+the phpBB default seems to be &quot;off&quot;
+[16:39] &lt;Dicky&gt; No, there is no default setting, because it is a user
+preference. It should be up to the user, not the board owner, if the user
+wants their email spammed with topic notifications.
+[16:41] &lt;barjac&gt; Dicky: Well surely that is for the board owner to decide - the
+user can always change it
+[16:42] &lt;Fire-Fox&gt; well if the user will be spammed then the user can change to
+yes
+[16:43] &lt;barjac&gt; May I ask you to read this
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+[16:43] *** ChanServ gives channel operator privileges to erikfrerejean.
+[16:49] &lt;barjac&gt; Fire-Fox: I really don't see how getting notification of a
+topic to which you are contributing could be regarded as spam by anyone.
+}
+Then it went quiet ....
+
+--
+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="000972.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000974.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#973">[ date ]</a>
+ <a href="thread.html#973">[ thread ]</a>
+ <a href="subject.html#973">[ subject ]</a>
+ <a href="author.html#973">[ 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-May/000974.html b/zarb-ml/mageia-webteam/2011-May/000974.html
new file mode 100644
index 000000000..6fb539c7b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000974.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526161251.33D6542FFA%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="000973.html">
+ <LINK REL="Next" HREF="000975.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526161251.33D6542FFA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 18:12:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000973.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000975.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#974">[ date ]</a>
+ <a href="thread.html#974">[ thread ]</a>
+ <a href="subject.html#974">[ subject ]</a>
+ <a href="author.html#974">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #20 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-05-26 20:12:51 CEST ---
+Ok, so I checked in the ACP (in the mandrivauser.de forum, phpbb3). As I set
+this up myself I know what I did there.
+
+There is a general setting in &quot;Board functionality&quot; which is &quot;Yes&quot; by default.
+I don't know which version of phpbb3 this Dicky in the chat referred to, I'm
+referring to phpbb3 standard installation.
+
+If the admin never touches this, the individual settings in the user profile is
+the same. If the admin sets this to &quot;No&quot; in the ACP the individual user setting
+will also be &quot;No&quot;. In both cases the user can change this for his individual
+profile.
+
+--
+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="000973.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000975.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#974">[ date ]</a>
+ <a href="thread.html#974">[ thread ]</a>
+ <a href="subject.html#974">[ subject ]</a>
+ <a href="author.html#974">[ 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-May/000975.html b/zarb-ml/mageia-webteam/2011-May/000975.html
new file mode 100644
index 000000000..ef39ad721
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000975.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526161523.530D442FFB%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="000974.html">
+ <LINK REL="Next" HREF="000976.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526161523.530D442FFB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 18:15:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000974.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000976.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#975">[ date ]</a>
+ <a href="thread.html#975">[ thread ]</a>
+ <a href="subject.html#975">[ subject ]</a>
+ <a href="author.html#975">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #21 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-05-26 20:15:23 CEST ---
+Sorry, adding this:
+
+All we have to do is look at the ACP setting at forums.mageia.org and either
+change the setting there or leave it as it is.
+
+Admins of other (future) forums will have to look at the settings anyway and it
+may be that different forums may need different settings in such matters.
+
+--
+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="000974.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000976.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#975">[ date ]</a>
+ <a href="thread.html#975">[ thread ]</a>
+ <a href="subject.html#975">[ subject ]</a>
+ <a href="author.html#975">[ 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-May/000976.html b/zarb-ml/mageia-webteam/2011-May/000976.html
new file mode 100644
index 000000000..7df39ac0a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000976.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526165205.AD61C42FE8%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="000975.html">
+ <LINK REL="Next" HREF="000977.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526165205.AD61C42FE8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 18:52:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000975.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000977.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#976">[ date ]</a>
+ <a href="thread.html#976">[ thread ]</a>
+ <a href="subject.html#976">[ subject ]</a>
+ <a href="author.html#976">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #22 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-26 18:52:05 CEST ---
+(In reply to comment #21)
+&gt;<i> Sorry, adding this:
+</I>&gt;<i>
+</I>&gt;<i> All we have to do is look at the ACP setting at forums.mageia.org and either
+</I>&gt;<i> change the setting there or leave it as it is.
+</I>&gt;<i>
+</I>&gt;<i> Admins of other (future) forums will have to look at the settings anyway and it
+</I>&gt;<i> may be that different forums may need different settings in such matters.
+</I>
+I just had a reply from the forum pointing at this which may help :-
+<A HREF="http://www.phpbb.com/community/viewtopic.php?f=71&amp;t=2105886">http://www.phpbb.com/community/viewtopic.php?f=71&amp;t=2105886</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="000975.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000977.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#976">[ date ]</a>
+ <a href="thread.html#976">[ thread ]</a>
+ <a href="subject.html#976">[ subject ]</a>
+ <a href="author.html#976">[ 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-May/000977.html b/zarb-ml/mageia-webteam/2011-May/000977.html
new file mode 100644
index 000000000..9f8fe49de
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000977.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526171255.73A2F42FFB%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="000976.html">
+ <LINK REL="Next" HREF="001019.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110526171255.73A2F42FFB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 26 19:12:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000976.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001019.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#977">[ date ]</a>
+ <a href="thread.html#977">[ thread ]</a>
+ <a href="subject.html#977">[ subject ]</a>
+ <a href="author.html#977">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #23 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-05-26 19:12:55 CEST ---
+Yes, in case this setting &quot;No&quot; is the default, the way to change it in the db
+(and in the configuration file) is correct. I did change some other things in
+our setup in the same way.
+
+Following user requests I did a lot of such modifications (like adding links to
+pages where they are not by default, 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000976.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="001019.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#977">[ date ]</a>
+ <a href="thread.html#977">[ thread ]</a>
+ <a href="subject.html#977">[ subject ]</a>
+ <a href="author.html#977">[ 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-May/000978.html b/zarb-ml/mageia-webteam/2011-May/000978.html
new file mode 100644
index 000000000..c18bb4d35
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000978.html
@@ -0,0 +1,69 @@
+<!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=%3C20110526200456.C6ADC42FFB%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="000968.html">
+ <LINK REL="Next" HREF="000979.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>Ahmad Samir</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=%3C20110526200456.C6ADC42FFB%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>Thu May 26 22:04:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000968.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000979.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#978">[ date ]</a>
+ <a href="thread.html#978">[ thread ]</a>
+ <a href="subject.html#978">[ subject ]</a>
+ <a href="author.html#978">[ 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>
+
+--- Comment #3 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-27 00:04:56 CEST ---
+A couple of drakxtools releases have been done since. Closing.
+
+--
+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="000968.html">[Mageia-webteam] Access to the web svn repository
+</A></li>
+ <LI>Next message: <A HREF="000979.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#978">[ date ]</a>
+ <a href="thread.html#978">[ thread ]</a>
+ <a href="subject.html#978">[ subject ]</a>
+ <a href="author.html#978">[ 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-May/000979.html b/zarb-ml/mageia-webteam/2011-May/000979.html
new file mode 100644
index 000000000..ad2f8d142
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000979.html
@@ -0,0 +1,72 @@
+<!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=%3C20110526200848.BA62D42FFC%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="000978.html">
+ <LINK REL="Next" HREF="000980.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=%3C20110526200848.BA62D42FFC%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>Thu May 26 22:08:48 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000978.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="000980.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#979">[ date ]</a>
+ <a href="thread.html#979">[ thread ]</a>
+ <a href="subject.html#979">[ subject ]</a>
+ <a href="author.html#979">[ 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>
+
+--- 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-05-27 00:08:48 CEST ---
+(In reply to comment #3)
+&gt;<i> A couple of drakxtools releases have been done since. Closing.
+</I>
+Try again! :)
+
+--
+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="000978.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="000980.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#979">[ date ]</a>
+ <a href="thread.html#979">[ thread ]</a>
+ <a href="subject.html#979">[ subject ]</a>
+ <a href="author.html#979">[ 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-May/000980.html b/zarb-ml/mageia-webteam/2011-May/000980.html
new file mode 100644
index 000000000..2d8b65583
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000980.html
@@ -0,0 +1,132 @@
+<!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=%3C20110526220002.9E1BF43017%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="000979.html">
+ <LINK REL="Next" HREF="000981.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=%3C20110526220002.9E1BF43017%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 27 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000979.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="000981.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#980">[ date ]</a>
+ <a href="thread.html#980">[ thread ]</a>
+ <a href="subject.html#980">[ subject ]</a>
+ <a href="author.html#980">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000979.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="000981.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#980">[ date ]</a>
+ <a href="thread.html#980">[ thread ]</a>
+ <a href="subject.html#980">[ subject ]</a>
+ <a href="author.html#980">[ 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-May/000981.html b/zarb-ml/mageia-webteam/2011-May/000981.html
new file mode 100644
index 000000000..c2cdd57ba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000981.html
@@ -0,0 +1,78 @@
+<!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=%3C20110527011555.6B48842FE8%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="000980.html">
+ <LINK REL="Next" HREF="001085.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>Ahmad Samir</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=%3C20110527011555.6B48842FE8%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>Fri May 27 03:15:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000980.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001085.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#981">[ date ]</a>
+ <a href="thread.html#981">[ thread ]</a>
+ <a href="subject.html#981">[ subject ]</a>
+ <a href="author.html#981">[ 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>
+
+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 #5 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-27 05:15:55 CEST ---
+My mental-bugzilla-control-powers don't seem to work during the summer... :)
+
+--
+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="000980.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001085.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#981">[ date ]</a>
+ <a href="thread.html#981">[ thread ]</a>
+ <a href="subject.html#981">[ subject ]</a>
+ <a href="author.html#981">[ 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-May/000982.html b/zarb-ml/mageia-webteam/2011-May/000982.html
new file mode 100644
index 000000000..697c7da66
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000982.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors
+ </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%201457%5D%20%5BNew%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3Cbug-1457-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="001084.html">
+ <LINK REL="Next" HREF="000983.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201457%5D%20%5BNew%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3Cbug-1457-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 28 14:21:33 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001084.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI>Next message: <A HREF="000983.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#982">[ date ]</a>
+ <a href="thread.html#982">[ thread ]</a>
+ <a href="subject.html#982">[ subject ]</a>
+ <a href="author.html#982">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1457">https://bugs.mageia.org/show_bug.cgi?id=1457</A>
+
+ Summary: Mirrors API mixes i586 and x86_64 mirrors
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://mirrors.mageia.org/">http://mirrors.mageia.org/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ Priority: Normal
+ Component: mirrors.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>
+
+
+See <A HREF="http://mirrors.mageia.org/api/cauldron.i586.list">http://mirrors.mageia.org/api/cauldron.i586.list</A> or
+<A HREF="http://mirrors.mageia.org/api/1.x86_64.list.">http://mirrors.mageia.org/api/1.x86_64.list.</A>
+
+These are listing both i586 and x86_64 mirrors. *.i586.list should list i586
+mirrors only and reciprocally for x86_64.
+
+--
+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="001084.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI>Next message: <A HREF="000983.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#982">[ date ]</a>
+ <a href="thread.html#982">[ thread ]</a>
+ <a href="subject.html#982">[ subject ]</a>
+ <a href="author.html#982">[ 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-May/000983.html b/zarb-ml/mageia-webteam/2011-May/000983.html
new file mode 100644
index 000000000..3a126376f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000983.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+ </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%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110528122152.69E2A42944%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="000982.html">
+ <LINK REL="Next" HREF="000986.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110528122152.69E2A42944%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 28 14:21:52 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000982.html">[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000986.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#983">[ date ]</a>
+ <a href="thread.html#983">[ thread ]</a>
+ <a href="subject.html#983">[ subject ]</a>
+ <a href="author.html#983">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1457">https://bugs.mageia.org/show_bug.cgi?id=1457</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
+----------------------------------------------------------------------------
+ Priority|Normal |release_blocker
+ Target Milestone|--- |Mageia 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000982.html">[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000986.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#983">[ date ]</a>
+ <a href="thread.html#983">[ thread ]</a>
+ <a href="subject.html#983">[ subject ]</a>
+ <a href="author.html#983">[ 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-May/000984.html b/zarb-ml/mageia-webteam/2011-May/000984.html
new file mode 100644
index 000000000..b951ffb20
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000984.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools
+ </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%201458%5D%20%5BNew%5D%20URL%20mismatch%20between%20mirrors/api%0A%09and%20system%20tools&In-Reply-To=%3Cbug-1458-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="001001.html">
+ <LINK REL="Next" HREF="000985.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201458%5D%20%5BNew%5D%20URL%20mismatch%20between%20mirrors/api%0A%09and%20system%20tools&In-Reply-To=%3Cbug-1458-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 28 14:24:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001001.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000985.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#984">[ date ]</a>
+ <a href="thread.html#984">[ thread ]</a>
+ <a href="subject.html#984">[ subject ]</a>
+ <a href="author.html#984">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1458">https://bugs.mageia.org/show_bug.cgi?id=1458</A>
+
+ Summary: URL mismatch between mirrors/api and system tools
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ Priority: Normal
+ Component: mirrors.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>
+
+
+stage1/2 and urpmi tools have this URL hardcoded at this time:
+
+ <A HREF="http://mirrors.mageia.org/api/mageia.{version">http://mirrors.mageia.org/api/mageia.{version</A>}.{arch}.list
+
+mirrors.mageia.org publishes at:
+
+ <A HREF="http://mirrors.mageia.org/api/{version">http://mirrors.mageia.org/api/{version</A>}.{arch}.list
+
+only.
+
+Provided we've passed the freeze stage, we should symlink (or answer as well)
+&quot;mageia.{version}.{arch}.list&quot; to &quot;{version}.{arch}.list&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="001001.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000985.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#984">[ date ]</a>
+ <a href="thread.html#984">[ thread ]</a>
+ <a href="subject.html#984">[ subject ]</a>
+ <a href="author.html#984">[ 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-May/000985.html b/zarb-ml/mageia-webteam/2011-May/000985.html
new file mode 100644
index 000000000..1cc1531e4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000985.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+ </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%201458%5D%20URL%20mismatch%20between%20mirrors/api%20and%0A%09system%20tools&In-Reply-To=%3C20110528122449.6292542937%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="000984.html">
+ <LINK REL="Next" HREF="000988.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201458%5D%20URL%20mismatch%20between%20mirrors/api%20and%0A%09system%20tools&In-Reply-To=%3C20110528122449.6292542937%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 28 14:24:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000984.html">[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI>Next message: <A HREF="000988.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#985">[ date ]</a>
+ <a href="thread.html#985">[ thread ]</a>
+ <a href="subject.html#985">[ subject ]</a>
+ <a href="author.html#985">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1458">https://bugs.mageia.org/show_bug.cgi?id=1458</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
+----------------------------------------------------------------------------
+ Priority|Normal |release_blocker
+ Blocks| |1153
+ Target Milestone|--- |Mageia 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000984.html">[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI>Next message: <A HREF="000988.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#985">[ date ]</a>
+ <a href="thread.html#985">[ thread ]</a>
+ <a href="subject.html#985">[ subject ]</a>
+ <a href="author.html#985">[ 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-May/000986.html b/zarb-ml/mageia-webteam/2011-May/000986.html
new file mode 100644
index 000000000..652621622
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000986.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+ </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%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110528122619.4F8BC4289A%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="000983.html">
+ <LINK REL="Next" HREF="000987.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110528122619.4F8BC4289A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 28 14:26:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000983.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000987.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#986">[ date ]</a>
+ <a href="thread.html#986">[ thread ]</a>
+ <a href="subject.html#986">[ subject ]</a>
+ <a href="author.html#986">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1457">https://bugs.mageia.org/show_bug.cgi?id=1457</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
+----------------------------------------------------------------------------
+ Blocks| |1153
+
+--
+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="000983.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000987.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#986">[ date ]</a>
+ <a href="thread.html#986">[ thread ]</a>
+ <a href="subject.html#986">[ subject ]</a>
+ <a href="author.html#986">[ 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-May/000987.html b/zarb-ml/mageia-webteam/2011-May/000987.html
new file mode 100644
index 000000000..297576a39
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000987.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+ </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%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110528123906.44F0442A84%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="000986.html">
+ <LINK REL="Next" HREF="000989.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors</H1>
+ <B>Thomas Backlund</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110528123906.44F0442A84%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 28 14:39:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000986.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000989.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#987">[ date ]</a>
+ <a href="thread.html#987">[ thread ]</a>
+ <a href="subject.html#987">[ subject ]</a>
+ <a href="author.html#987">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1457">https://bugs.mageia.org/show_bug.cgi?id=1457</A>
+
+Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>
+
+--- Comment #1 from Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; 2011-05-28 16:39:06 CEST ---
+
+It's also providing empty: version=,arch=,
+
+--
+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="000986.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000989.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#987">[ date ]</a>
+ <a href="thread.html#987">[ thread ]</a>
+ <a href="subject.html#987">[ subject ]</a>
+ <a href="author.html#987">[ 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-May/000988.html b/zarb-ml/mageia-webteam/2011-May/000988.html
new file mode 100644
index 000000000..e2ce2050a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000988.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+ </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%201458%5D%20URL%20mismatch%20between%20mirrors/api%20and%0A%09system%20tools&In-Reply-To=%3C20110528133028.09AE342A0E%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="000985.html">
+ <LINK REL="Next" HREF="001000.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools</H1>
+ <B>Thomas Backlund</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201458%5D%20URL%20mismatch%20between%20mirrors/api%20and%0A%09system%20tools&In-Reply-To=%3C20110528133028.09AE342A0E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 28 15:30:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000985.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI>Next message: <A HREF="001000.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#988">[ date ]</a>
+ <a href="thread.html#988">[ thread ]</a>
+ <a href="subject.html#988">[ subject ]</a>
+ <a href="author.html#988">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1458">https://bugs.mageia.org/show_bug.cgi?id=1458</A>
+
+Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>
+
+--- Comment #1 from Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; 2011-05-28 17:30:28 CEST ---
+
+Nanar have fixed
+
+<A HREF="http://mirrors.mageia.org/api/mageia.{version">http://mirrors.mageia.org/api/mageia.{version</A>}.{arch}.list
+
+so it works for version 1
+
+so it can be symlinked/duplicated to
+
+<A HREF="http://mirrors.mageia.org/api/{version">http://mirrors.mageia.org/api/{version</A>}.{arch}.list
+
+--
+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="000985.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI>Next message: <A HREF="001000.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#988">[ date ]</a>
+ <a href="thread.html#988">[ thread ]</a>
+ <a href="subject.html#988">[ subject ]</a>
+ <a href="author.html#988">[ 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-May/000989.html b/zarb-ml/mageia-webteam/2011-May/000989.html
new file mode 100644
index 000000000..5e00a8eb0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000989.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+ </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%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110528142102.9DC9142B93%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="000987.html">
+ <LINK REL="Next" HREF="001001.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors</H1>
+ <B>Thomas Backlund</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110528142102.9DC9142B93%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 28 16:21:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000987.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="001001.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#989">[ date ]</a>
+ <a href="thread.html#989">[ thread ]</a>
+ <a href="subject.html#989">[ subject ]</a>
+ <a href="author.html#989">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1457">https://bugs.mageia.org/show_bug.cgi?id=1457</A>
+
+--- Comment #2 from Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; 2011-05-28 18:21:02 CEST ---
+Nanar have fixed
+
+<A HREF="http://mirrors.mageia.org/api/mageia.{version">http://mirrors.mageia.org/api/mageia.{version</A>}.{arch}.list
+
+so it works for version 1
+
+so it can be symlinked/duplicated to
+
+<A HREF="http://mirrors.mageia.org/api/{version">http://mirrors.mageia.org/api/{version</A>}.{arch}.list
+
+--
+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="000987.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="001001.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#989">[ date ]</a>
+ <a href="thread.html#989">[ thread ]</a>
+ <a href="subject.html#989">[ subject ]</a>
+ <a href="author.html#989">[ 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-May/000990.html b/zarb-ml/mageia-webteam/2011-May/000990.html
new file mode 100644
index 000000000..821ba8be7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000990.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=%3C20110528220003.2E88D42C12%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="001000.html">
+ <LINK REL="Next" HREF="000991.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=%3C20110528220003.2E88D42C12%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001000.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI>Next message: <A HREF="000991.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#990">[ date ]</a>
+ <a href="thread.html#990">[ thread ]</a>
+ <a href="subject.html#990">[ subject ]</a>
+ <a href="author.html#990">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001000.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI>Next message: <A HREF="000991.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#990">[ date ]</a>
+ <a href="thread.html#990">[ thread ]</a>
+ <a href="subject.html#990">[ subject ]</a>
+ <a href="author.html#990">[ 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-May/000991.html b/zarb-ml/mageia-webteam/2011-May/000991.html
new file mode 100644
index 000000000..4000e15ff
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000991.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+ </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%201472%5D%20Subscribing%20to%20mageia%20feed%20with%20Liferea%0A%20gives%20%22%5B...%5D%20this%20is%20a%20web%20page%2C%20not%20a%20feed%22%20error&In-Reply-To=%3C20110529174546.ABB5242C24%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="000990.html">
+ <LINK REL="Next" HREF="000992.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Subscribing%20to%20mageia%20feed%20with%20Liferea%0A%20gives%20%22%5B...%5D%20this%20is%20a%20web%20page%2C%20not%20a%20feed%22%20error&In-Reply-To=%3C20110529174546.ABB5242C24%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 19:45:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000990.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000992.html">[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#991">[ date ]</a>
+ <a href="thread.html#991">[ thread ]</a>
+ <a href="subject.html#991">[ subject ]</a>
+ <a href="author.html#991">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Websites
+ Version|unspecified |trunk
+ Component|Others |Other
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="000990.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000992.html">[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#991">[ date ]</a>
+ <a href="thread.html#991">[ thread ]</a>
+ <a href="subject.html#991">[ subject ]</a>
+ <a href="author.html#991">[ 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-May/000992.html b/zarb-ml/mageia-webteam/2011-May/000992.html
new file mode 100644
index 000000000..0d8943384
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000992.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in 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%201474%5D%20%5BNew%5D%20Please%20add%20planent.mageia.org%20to%0A%20the%20components%20list%20of%20the%20Website%20Product%20in%20bugzilla&In-Reply-To=%3Cbug-1474-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="000991.html">
+ <LINK REL="Next" HREF="000994.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201474%5D%20%5BNew%5D%20Please%20add%20planent.mageia.org%20to%0A%20the%20components%20list%20of%20the%20Website%20Product%20in%20bugzilla&In-Reply-To=%3Cbug-1474-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 19:54:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000991.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI>Next message: <A HREF="000994.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#992">[ date ]</a>
+ <a href="thread.html#992">[ thread ]</a>
+ <a href="subject.html#992">[ subject ]</a>
+ <a href="author.html#992">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1474">https://bugs.mageia.org/show_bug.cgi?id=1474</A>
+
+ Summary: Please add planent.mageia.org to the components list
+ of the Website Product in bugzilla
+ 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>
+
+
+All in the summary:
+Please add planent.mageia.org to the components list of the Website Product in
+bugzilla
+<A HREF="https://bugs.mageia.org/enter_bug.cgi?product=Websites">https://bugs.mageia.org/enter_bug.cgi?product=Websites</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="000991.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI>Next message: <A HREF="000994.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#992">[ date ]</a>
+ <a href="thread.html#992">[ thread ]</a>
+ <a href="subject.html#992">[ subject ]</a>
+ <a href="author.html#992">[ 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-May/000993.html b/zarb-ml/mageia-webteam/2011-May/000993.html
new file mode 100644
index 000000000..9616d27fd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000993.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+ </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%201472%5D%20Subscribing%20to%20mageia%20feed%20with%20Liferea%0A%20gives%20%22%5B...%5D%20this%20is%20a%20web%20page%2C%20not%20a%20feed%22%20error&In-Reply-To=%3C20110529182101.C889842C23%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="001003.html">
+ <LINK REL="Next" HREF="000996.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Subscribing%20to%20mageia%20feed%20with%20Liferea%0A%20gives%20%22%5B...%5D%20this%20is%20a%20web%20page%2C%20not%20a%20feed%22%20error&In-Reply-To=%3C20110529182101.C889842C23%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 20:21:01 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001003.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000996.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#993">[ date ]</a>
+ <a href="thread.html#993">[ thread ]</a>
+ <a href="subject.html#993">[ subject ]</a>
+ <a href="author.html#993">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</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-05-29 20:21:01 CEST ---
+This url is incorrect, where is it written to use this one ?
+
+--
+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="001003.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000996.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#993">[ date ]</a>
+ <a href="thread.html#993">[ thread ]</a>
+ <a href="subject.html#993">[ subject ]</a>
+ <a href="author.html#993">[ 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-May/000994.html b/zarb-ml/mageia-webteam/2011-May/000994.html
new file mode 100644
index 000000000..de67de6da
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000994.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in 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%201474%5D%20Please%20add%20planet.mageia.org%20to%20the%0A%20components%20list%20of%20the%20Website%20Product%20in%20bugzilla&In-Reply-To=%3C20110529183911.18E8D42C23%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="000992.html">
+ <LINK REL="Next" HREF="000995.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201474%5D%20Please%20add%20planet.mageia.org%20to%20the%0A%20components%20list%20of%20the%20Website%20Product%20in%20bugzilla&In-Reply-To=%3C20110529183911.18E8D42C23%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 20:39:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000992.html">[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000995.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#994">[ date ]</a>
+ <a href="thread.html#994">[ thread ]</a>
+ <a href="subject.html#994">[ subject ]</a>
+ <a href="author.html#994">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1474">https://bugs.mageia.org/show_bug.cgi?id=1474</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Please add |Please add
+ |planent.mageia.org to the |planet.mageia.org to the
+ |components list of the |components list of the
+ |Website Product in bugzilla |Website Product in bugzilla
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</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="000992.html">[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000995.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#994">[ date ]</a>
+ <a href="thread.html#994">[ thread ]</a>
+ <a href="subject.html#994">[ subject ]</a>
+ <a href="author.html#994">[ 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-May/000995.html b/zarb-ml/mageia-webteam/2011-May/000995.html
new file mode 100644
index 000000000..bc583c6d8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000995.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in 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%201474%5D%20Please%20add%20planet.mageia.org%20to%20the%0A%20components%20list%20of%20the%20Website%20Product%20in%20bugzilla&In-Reply-To=%3C20110529184121.E5A9042C26%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="000994.html">
+ <LINK REL="Next" HREF="001003.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201474%5D%20Please%20add%20planet.mageia.org%20to%20the%0A%20components%20list%20of%20the%20Website%20Product%20in%20bugzilla&In-Reply-To=%3C20110529184121.E5A9042C26%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 20:41:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000994.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001003.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#995">[ date ]</a>
+ <a href="thread.html#995">[ thread ]</a>
+ <a href="subject.html#995">[ subject ]</a>
+ <a href="author.html#995">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1474">https://bugs.mageia.org/show_bug.cgi?id=1474</A>
+
+--- Comment #1 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-29 22:41:22 CEST ---
+Done.
+
+--
+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="000994.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001003.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#995">[ date ]</a>
+ <a href="thread.html#995">[ thread ]</a>
+ <a href="subject.html#995">[ subject ]</a>
+ <a href="author.html#995">[ 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-May/000996.html b/zarb-ml/mageia-webteam/2011-May/000996.html
new file mode 100644
index 000000000..4c2e95d34
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000996.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+ </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%201472%5D%20Subscribing%20to%20mageia%20feed%20with%20Liferea%0A%20gives%20%22%5B...%5D%20this%20is%20a%20web%20page%2C%20not%20a%20feed%22%20error&In-Reply-To=%3C20110529190216.AAFD942C26%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="000993.html">
+ <LINK REL="Next" HREF="000997.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Subscribing%20to%20mageia%20feed%20with%20Liferea%0A%20gives%20%22%5B...%5D%20this%20is%20a%20web%20page%2C%20not%20a%20feed%22%20error&In-Reply-To=%3C20110529190216.AAFD942C26%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 21:02:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000993.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI>Next message: <A HREF="000997.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#996">[ date ]</a>
+ <a href="thread.html#996">[ thread ]</a>
+ <a href="subject.html#996">[ subject ]</a>
+ <a href="author.html#996">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Component|Other |planet.mageia.org
+
+--
+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="000993.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI>Next message: <A HREF="000997.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#996">[ date ]</a>
+ <a href="thread.html#996">[ thread ]</a>
+ <a href="subject.html#996">[ subject ]</a>
+ <a href="author.html#996">[ 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-May/000997.html b/zarb-ml/mageia-webteam/2011-May/000997.html
new file mode 100644
index 000000000..9f06f9b9b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000997.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+ </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%201472%5D%20Subscribing%20to%20mageia%20feed%20with%20Liferea%0A%20gives%20%22%5B...%5D%20this%20is%20a%20web%20page%2C%20not%20a%20feed%22%20error&In-Reply-To=%3C20110529200456.E635F42C1F%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="000996.html">
+ <LINK REL="Next" HREF="000998.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error</H1>
+ <B>Palm Pre</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Subscribing%20to%20mageia%20feed%20with%20Liferea%0A%20gives%20%22%5B...%5D%20this%20is%20a%20web%20page%2C%20not%20a%20feed%22%20error&In-Reply-To=%3C20110529200456.E635F42C1F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 22:04:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000996.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI>Next message: <A HREF="000998.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#997">[ date ]</a>
+ <a href="thread.html#997">[ thread ]</a>
+ <a href="subject.html#997">[ subject ]</a>
+ <a href="author.html#997">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</A>
+
+--- Comment #2 from Palm Pre &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">palm_pre_stl at yahoo.com</A>&gt; 2011-05-29 22:04:57 CEST ---
+Originally Liferea had not working feed. There was a link to the page I
+mentioned.
+
+Several times Liferea was asking about adding url but there is no one
+specified.
+
+Oops - Feed (ATOM) link (<A HREF="http://planet.mageia.org/en/?type=atom10">http://planet.mageia.org/en/?type=atom10</A>) should be
+used as url.
+
+BTW, it doesn't start news aggregator. Firefox opens messy wep page instead.
+
+--
+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="000996.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI>Next message: <A HREF="000998.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#997">[ date ]</a>
+ <a href="thread.html#997">[ thread ]</a>
+ <a href="subject.html#997">[ subject ]</a>
+ <a href="author.html#997">[ 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-May/000998.html b/zarb-ml/mageia-webteam/2011-May/000998.html
new file mode 100644
index 000000000..785de67a5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000998.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+ </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%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110529202851.B889242C03%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="000997.html">
+ <LINK REL="Next" HREF="000999.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110529202851.B889242C03%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 22:28:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000997.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI>Next message: <A HREF="000999.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#998">[ date ]</a>
+ <a href="thread.html#998">[ thread ]</a>
+ <a href="subject.html#998">[ subject ]</a>
+ <a href="author.html#998">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Subscribing to mageia feed |Wrong content-type on atom
+ |with Liferea gives &quot;[...] |feed
+ |this is a web page, not a |
+ |feed&quot; error |
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-05-29 22:28:51 CEST ---
+The content type is wrong indeed it should be application/atom+xml , it is
+text/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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000997.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI>Next message: <A HREF="000999.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#998">[ date ]</a>
+ <a href="thread.html#998">[ thread ]</a>
+ <a href="subject.html#998">[ subject ]</a>
+ <a href="author.html#998">[ 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-May/000999.html b/zarb-ml/mageia-webteam/2011-May/000999.html
new file mode 100644
index 000000000..9c4871202
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/000999.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+ </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%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110529211221.B478F42C03%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="000998.html">
+ <LINK REL="Next" HREF="001002.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201472%5D%20Wrong%20content-type%20on%20atom%20feed&In-Reply-To=%3C20110529211221.B478F42C03%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 23:12:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000998.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001002.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#999">[ date ]</a>
+ <a href="thread.html#999">[ thread ]</a>
+ <a href="subject.html#999">[ subject ]</a>
+ <a href="author.html#999">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1472">https://bugs.mageia.org/show_bug.cgi?id=1472</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 #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-30 01:12:21 CEST ---
+Quick fix to integrate on our side:
+<A HREF="https://github.com/rdalverny/moonmoon/commit/2b96dacc19e65208e69dc32de64a863f53e7dc35">https://github.com/rdalverny/moonmoon/commit/2b96dacc19e65208e69dc32de64a863f53e7dc35</A>
+(waiting to be pushed upstream).
+
+--
+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="000998.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001002.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#999">[ date ]</a>
+ <a href="thread.html#999">[ thread ]</a>
+ <a href="subject.html#999">[ subject ]</a>
+ <a href="author.html#999">[ 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-May/001000.html b/zarb-ml/mageia-webteam/2011-May/001000.html
new file mode 100644
index 000000000..06548b0d0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001000.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+ </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%201458%5D%20URL%20mismatch%20between%20mirrors/api%20and%0A%09system%20tools&In-Reply-To=%3C20110529211918.AFB9A42BE9%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="000988.html">
+ <LINK REL="Next" HREF="000990.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201458%5D%20URL%20mismatch%20between%20mirrors/api%20and%0A%09system%20tools&In-Reply-To=%3C20110529211918.AFB9A42BE9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 23:19:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000988.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI>Next message: <A HREF="000990.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1000">[ date ]</a>
+ <a href="thread.html#1000">[ thread ]</a>
+ <a href="subject.html#1000">[ subject ]</a>
+ <a href="author.html#1000">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1458">https://bugs.mageia.org/show_bug.cgi?id=1458</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|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-30 01:19:18 CEST ---
+Excellent. 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="000988.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI>Next message: <A HREF="000990.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1000">[ date ]</a>
+ <a href="thread.html#1000">[ thread ]</a>
+ <a href="subject.html#1000">[ subject ]</a>
+ <a href="author.html#1000">[ 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-May/001001.html b/zarb-ml/mageia-webteam/2011-May/001001.html
new file mode 100644
index 000000000..eff062069
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001001.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+ </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%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110529211945.7F61F42A0E%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="000989.html">
+ <LINK REL="Next" HREF="000984.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201457%5D%20Mirrors%20API%20mixes%20i586%20and%20x86_64%0A%09mirrors&In-Reply-To=%3C20110529211945.7F61F42A0E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 29 23:19:45 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000989.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000984.html">[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1001">[ date ]</a>
+ <a href="thread.html#1001">[ thread ]</a>
+ <a href="subject.html#1001">[ subject ]</a>
+ <a href="author.html#1001">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1457">https://bugs.mageia.org/show_bug.cgi?id=1457</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|NEW |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-05-30 01:19:45 CEST ---
+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="000989.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI>Next message: <A HREF="000984.html">[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1001">[ date ]</a>
+ <a href="thread.html#1001">[ thread ]</a>
+ <a href="subject.html#1001">[ subject ]</a>
+ <a href="author.html#1001">[ 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-May/001002.html b/zarb-ml/mageia-webteam/2011-May/001002.html
new file mode 100644
index 000000000..c7cf134a8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001002.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=%3C20110529220002.7877242C2B%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="000999.html">
+ <LINK REL="Next" HREF="001004.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=%3C20110529220002.7877242C2B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 30 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000999.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001004.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1002">[ date ]</a>
+ <a href="thread.html#1002">[ thread ]</a>
+ <a href="subject.html#1002">[ subject ]</a>
+ <a href="author.html#1002">[ 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>
+ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000999.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A></li>
+ <LI>Next message: <A HREF="001004.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1002">[ date ]</a>
+ <a href="thread.html#1002">[ thread ]</a>
+ <a href="subject.html#1002">[ subject ]</a>
+ <a href="author.html#1002">[ 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-May/001003.html b/zarb-ml/mageia-webteam/2011-May/001003.html
new file mode 100644
index 000000000..16308741d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001003.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in 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%201474%5D%20Please%20add%20planet.mageia.org%20to%20the%0A%20components%20list%20of%20the%20Website%20Product%20in%20bugzilla&In-Reply-To=%3C20110530002755.6284942C25%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="000995.html">
+ <LINK REL="Next" HREF="000993.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201474%5D%20Please%20add%20planet.mageia.org%20to%20the%0A%20components%20list%20of%20the%20Website%20Product%20in%20bugzilla&In-Reply-To=%3C20110530002755.6284942C25%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 30 02:27:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000995.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000993.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1003">[ date ]</a>
+ <a href="thread.html#1003">[ thread ]</a>
+ <a href="subject.html#1003">[ subject ]</a>
+ <a href="author.html#1003">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1474">https://bugs.mageia.org/show_bug.cgi?id=1474</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 #2 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-05-30 04:27:55 CEST ---
+Thanks. Closing.
+
+--
+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="000995.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000993.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1003">[ date ]</a>
+ <a href="thread.html#1003">[ thread ]</a>
+ <a href="subject.html#1003">[ subject ]</a>
+ <a href="author.html#1003">[ 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-May/001004.html b/zarb-ml/mageia-webteam/2011-May/001004.html
new file mode 100644
index 000000000..ab02966a3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001004.html
@@ -0,0 +1,79 @@
+<!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=%3C20110530122726.2F19B42C2D%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="001002.html">
+ <LINK REL="Next" HREF="001005.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 656] 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%20Fix%20forum%20locales%20redirections&In-Reply-To=%3C20110530122726.2F19B42C2D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 656] Fix forum locales redirections">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 30 14:27:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001002.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001005.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1004">[ date ]</a>
+ <a href="thread.html#1004">[ thread ]</a>
+ <a href="subject.html#1004">[ subject ]</a>
+ <a href="author.html#1004">[ 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>
+
+Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Target Milestone|--- |Mageia 1
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-30 16:27:26 CEST ---
+Could we have redirection for forums already in
+<A HREF="https://forums.mageia.org/en/viewforum.php?f=20">https://forums.mageia.org/en/viewforum.php?f=20</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="001002.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="001005.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1004">[ date ]</a>
+ <a href="thread.html#1004">[ thread ]</a>
+ <a href="subject.html#1004">[ subject ]</a>
+ <a href="author.html#1004">[ 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-May/001005.html b/zarb-ml/mageia-webteam/2011-May/001005.html
new file mode 100644
index 000000000..4613e139e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001005.html
@@ -0,0 +1,82 @@
+<!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=%3C20110530133201.204FA42C2D%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="001004.html">
+ <LINK REL="Next" HREF="001006.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 656] Fix forum locales redirections</H1>
+ <B>Nicolas Vigier</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=%3C20110530133201.204FA42C2D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 656] Fix forum locales redirections">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 30 15:32:01 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001004.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="001006.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1005">[ date ]</a>
+ <a href="thread.html#1005">[ thread ]</a>
+ <a href="subject.html#1005">[ subject ]</a>
+ <a href="author.html#1005">[ 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>
+
+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">boklm at mars-attacks.org</A>
+
+--- Comment #3 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-05-30 17:32:01 CEST ---
+Redirections added for :
+<A HREF="https://forums.mageia.org/fr/">https://forums.mageia.org/fr/</A>
+<A HREF="https://forums.mageia.org/es/">https://forums.mageia.org/es/</A>
+<A HREF="https://forums.mageia.org/pt-br/">https://forums.mageia.org/pt-br/</A>
+<A HREF="https://forums.mageia.org/zh-cn/">https://forums.mageia.org/zh-cn/</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="001004.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="001006.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1005">[ date ]</a>
+ <a href="thread.html#1005">[ thread ]</a>
+ <a href="subject.html#1005">[ subject ]</a>
+ <a href="author.html#1005">[ 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-May/001006.html b/zarb-ml/mageia-webteam/2011-May/001006.html
new file mode 100644
index 000000000..81a80fd68
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001006.html
@@ -0,0 +1,79 @@
+<!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=%3C20110530144808.33D61429F4%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="001005.html">
+ <LINK REL="Next" HREF="001007.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 656] 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%20Fix%20forum%20locales%20redirections&In-Reply-To=%3C20110530144808.33D61429F4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 656] Fix forum locales redirections">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 30 16:48:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001005.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="001007.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1006">[ date ]</a>
+ <a href="thread.html#1006">[ thread ]</a>
+ <a href="subject.html#1006">[ subject ]</a>
+ <a href="author.html#1006">[ 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>
+
+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|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-05-30 18:48:08 CEST ---
+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="001005.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="001007.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1006">[ date ]</a>
+ <a href="thread.html#1006">[ thread ]</a>
+ <a href="subject.html#1006">[ subject ]</a>
+ <a href="author.html#1006">[ 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-May/001007.html b/zarb-ml/mageia-webteam/2011-May/001007.html
new file mode 100644
index 000000000..cacc879d1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001007.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTinC%3DVAbYyoDmd3SFC3ZSRyP3zUteg%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="001006.html">
+ <LINK REL="Next" HREF="001008.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTinC%3DVAbYyoDmd3SFC3ZSRyP3zUteg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">molch.b at googlemail.com
+ </A><BR>
+ <I>Mon May 30 20:12:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001006.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="001008.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1007">[ date ]</a>
+ <a href="thread.html#1007">[ thread ]</a>
+ <a href="subject.html#1007">[ subject ]</a>
+ <a href="author.html#1007">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>The direct link to the forums has been moved from 1st level (links in
+the header of the portal page) to a link inside the text on a second
+level page. I know that Mandriva followed the same policy for a long
+time, still does. That does not make it right.
+A fast and direct access to the forums is as vital for the users (and
+so for us) as the fast and direct link to the download.
+
+Pls think about that again and move the forum link back to the front page.
+
+(see also <A HREF="https://forums.mageia.org/en/viewtopic.php?f=29&amp;t=323">https://forums.mageia.org/en/viewtopic.php?f=29&amp;t=323</A> )
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001006.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="001008.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1007">[ date ]</a>
+ <a href="thread.html#1007">[ thread ]</a>
+ <a href="subject.html#1007">[ subject ]</a>
+ <a href="author.html#1007">[ 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-May/001008.html b/zarb-ml/mageia-webteam/2011-May/001008.html
new file mode 100644
index 000000000..0f9b96ff6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001008.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTikEYcbAYFnZjv59JzYJZ95R6had-Q%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="001007.html">
+ <LINK REL="Next" HREF="001011.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTikEYcbAYFnZjv59JzYJZ95R6had-Q%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">rda at mageia.org
+ </A><BR>
+ <I>Mon May 30 23:01:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001007.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001011.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1008">[ date ]</a>
+ <a href="thread.html#1008">[ thread ]</a>
+ <a href="subject.html#1008">[ subject ]</a>
+ <a href="author.html#1008">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, May 30, 2011 at 20:12, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> The direct link to the forums has been moved from 1st level (links in
+</I>&gt;<i> the header of the portal page) to a link inside the text on a second
+</I>&gt;<i> level page.
+</I>
+I'm trying to find a good balance for the global navigation. This is
+by no means frozen, lots of stuff are moving to prepare Wednesday
+release.
+
+If the forum direct link ought to be on the first level everywhere on
+mageia.org, so will other items: Wiki - which is nothing specific but
+as broad as possible, Bugzilla, donations, mailing-lists, code of
+conduct, values, why not svn, etc. and the global nav will be cludged
+pretty fast.
+
+Putting everything at the same level won't make things better focused
+and will only confuse visitors.
+
+So putting things organized by main zone is an option, with the
+first-level Community item hosting the second-level Forums item. Then,
+what would interest people in participating to the project would be to
+use the /community landing page as the main entry point.
+
+I understand this is not perfect neither pleases everyone; I asked for
+proposals for the global nav design weeks ago, had no answer.
+
+As, anyway, the global nav and the home page structure will change
+during the whole launch, I do welcome proposals again.
+
+&gt;<i> A fast and direct access to the forums is as vital for the users (and
+</I>&gt;<i> so for us) as the fast and direct link to the download.
+</I>
+Granted. But then we're back to square 1: what's the goal of the
+website, and what's the goal of the global navigation (unless one
+comes with a local nav scheme).
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001007.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001011.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1008">[ date ]</a>
+ <a href="thread.html#1008">[ thread ]</a>
+ <a href="subject.html#1008">[ subject ]</a>
+ <a href="author.html#1008">[ 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-May/001009.html b/zarb-ml/mageia-webteam/2011-May/001009.html
new file mode 100644
index 000000000..cce0d3009
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001009.html
@@ -0,0 +1,143 @@
+<!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=%3C20110530220002.77CB342C32%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="001018.html">
+ <LINK REL="Next" HREF="001088.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=%3C20110530220002.77CB342C32%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 31 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001018.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001088.html">[Mageia-webteam] release-notes.html edits
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1009">[ date ]</a>
+ <a href="thread.html#1009">[ thread ]</a>
+ <a href="subject.html#1009">[ subject ]</a>
+ <a href="author.html#1009">[ 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>
+ User details form is difficult to understand if you don't know LDAP attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</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>
+ Name check on identity should be more open
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+ Admin demoted to Mod or simple user
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+ User panel does not allow to add sshPublicKey attributes
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+ The Mageia forums should use the mageia favicon.ico
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1220">https://bugs.mageia.org/show_bug.cgi?id=1220</A>
+ Add distrib links to first page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001018.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001088.html">[Mageia-webteam] release-notes.html edits
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1009">[ date ]</a>
+ <a href="thread.html#1009">[ thread ]</a>
+ <a href="subject.html#1009">[ subject ]</a>
+ <a href="author.html#1009">[ 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-May/001010.html b/zarb-ml/mageia-webteam/2011-May/001010.html
new file mode 100644
index 000000000..7e767fac3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001010.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTimtBtDYTi1EkTufmP%3DM4HMfe%2BFZdw%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="000962.html">
+ <LINK REL="Next" HREF="001012.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>MacXi - Ideias Linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTimtBtDYTi1EkTufmP%3DM4HMfe%2BFZdw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">terraagua at gmail.com
+ </A><BR>
+ <I>Tue May 31 00:22:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000962.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001012.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1010">[ date ]</a>
+ <a href="thread.html#1010">[ thread ]</a>
+ <a href="subject.html#1010">[ subject ]</a>
+ <a href="author.html#1010">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Romain,
+
+Excuse me, but I don't know how.
+
+I already do the translation (to pt) of the blog/news, how do I translate for
+the site?
+
+Macxi
+
+
+2011/5/25 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;
+
+&gt;<i> Thanks, integrated some of it, but it would help some more if you
+</I>&gt;<i> translate the PHP array in trunk/downloads_locales.php file (there's a
+</I>&gt;<i> pt section now). Thanks.
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>&gt;<i>
+</I>&gt;<i> 2011/5/21 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+</I>&gt;<i> &gt; Rda,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I'm sending attached a translation of the download page &quot;Mageia RC&quot;, for
+</I>&gt;<i> the
+</I>&gt;<i> &gt; portuguese language.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; English: <A HREF="http://www.mageia.org/en/downloads/">http://www.mageia.org/en/downloads/</A>
+</I>&gt;<i> &gt; for
+</I>&gt;<i> &gt; Portuguese: <A HREF="http://www.mageia.org/pt/downloads/">http://www.mageia.org/pt/downloads/</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Note: page edited in &quot;KompoZer&quot; software, in Mageia Beta2
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Cheers! :)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; MacXi
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt;
+</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/20110530/3e845bcc/attachment-0001.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000962.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001012.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1010">[ date ]</a>
+ <a href="thread.html#1010">[ thread ]</a>
+ <a href="subject.html#1010">[ subject ]</a>
+ <a href="author.html#1010">[ 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-May/001011.html b/zarb-ml/mageia-webteam/2011-May/001011.html
new file mode 100644
index 000000000..3cb68343b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001011.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTimVR3mSSrf9%2BG5MqzmQN8bnCred_w%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="001008.html">
+ <LINK REL="Next" HREF="001086.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTimVR3mSSrf9%2BG5MqzmQN8bnCred_w%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue May 31 03:14:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001008.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001086.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1011">[ date ]</a>
+ <a href="thread.html#1011">[ thread ]</a>
+ <a href="subject.html#1011">[ subject ]</a>
+ <a href="author.html#1011">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/5/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+&gt;<i>
+</I>&gt;<i> Granted. But then we're back to square 1: what's the goal of the
+</I>&gt;<i> website, and what's the goal of the global navigation (unless one
+</I>&gt;<i> comes with a local nav scheme).
+</I>
+The goals of the website are simple:
+ - tell people what Mageia is in a few words (see introduction
+paragraph), then leading those who are interested to learn more to
+second level pages (About, Core values, people of Mageia, etc. etc.)
+ - tell the people what's going on at the moment they are reading the
+page (thats there with &quot;Happening right now&quot;)
+ - tell the people how they can join and help - this is already there
+in the lower left, where you could also place the &quot;Contribute&quot; link,
+it belongs into &quot;Join us&quot;.
+
+Then there are single main points which users will want to see and
+open with one click:
+ - News
+ - Downloads
+ - Forum
+&gt;<i>From my experience with users these are the 3 most wanted clicks on a
+</I>distribution home page. They do not want to search for any of these.
+That's why they do not belong in second level and should not be hidden
+in text links.
+
+Of course then there is one main point which **we** want the users to
+be able to reach with one click: &quot;Donations&quot;. We do not want them to
+have to search for that!
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001008.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001086.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1011">[ date ]</a>
+ <a href="thread.html#1011">[ thread ]</a>
+ <a href="subject.html#1011">[ subject ]</a>
+ <a href="author.html#1011">[ 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-May/001012.html b/zarb-ml/mageia-webteam/2011-May/001012.html
new file mode 100644
index 000000000..7702c8f5d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001012.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTinyfZ_ZKGZbcwW7cDdP8wAVoXHrgA%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="001010.html">
+ <LINK REL="Next" HREF="001013.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>R&#233;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTinyfZ_ZKGZbcwW7cDdP8wAVoXHrgA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">rverschelde at gmail.com
+ </A><BR>
+ <I>Tue May 31 09:04:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001010.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001013.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1012">[ date ]</a>
+ <a href="thread.html#1012">[ thread ]</a>
+ <a href="subject.html#1012">[ subject ]</a>
+ <a href="author.html#1012">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/5/31 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+&gt;<i> Romain,
+</I>&gt;<i>
+</I>&gt;<i> Excuse me, but I don't know how.
+</I>&gt;<i>
+</I>&gt;<i> I already do the translation (to pt)&#160; of the blog/news, how do I translate
+</I>&gt;<i> for the site?
+</I>&gt;<i>
+</I>&gt;<i> Macxi
+</I>&gt;<i>
+</I>&gt;<i>
+</I>
+You can find the php array here:
+<A HREF="http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup">http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup</A>
+You can copy in a new file the 'en' array, i.e. from &quot; 'en' =&gt; array(
+&quot; to &quot; ), &quot; before the 'de' array.
+Then you change 'en' to 'pt' and you can translate every paragraphs.
+If you send this file to Romain or Oliver it will be much easier for
+them to implement the translation (they will just have to copy-paste
+the contents of your file after the other translations).
+
+Regards,
+R&#233;mi / Akien
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001010.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="001013.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1012">[ date ]</a>
+ <a href="thread.html#1012">[ thread ]</a>
+ <a href="subject.html#1012">[ subject ]</a>
+ <a href="author.html#1012">[ 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-May/001013.html b/zarb-ml/mageia-webteam/2011-May/001013.html
new file mode 100644
index 000000000..394bab108
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001013.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTimqgv94PX0M8jTw%2BiWy3HQ5XSJ39w%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="001012.html">
+ <LINK REL="Next" HREF="000951.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTimqgv94PX0M8jTw%2BiWy3HQ5XSJ39w%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">rda at mageia.org
+ </A><BR>
+ <I>Tue May 31 09:18:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001012.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="000951.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1013">[ date ]</a>
+ <a href="thread.html#1013">[ thread ]</a>
+ <a href="subject.html#1013">[ subject ]</a>
+ <a href="author.html#1013">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/5/31 R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rverschelde at gmail.com</A>&gt;:
+&gt;<i> 2011/5/31 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
+</I>&gt;&gt;<i> I already do the translation (to pt)&#160; of the blog/news, how do I translate
+</I>&gt;&gt;<i> for the site?
+</I>&gt;<i>
+</I>&gt;<i> You can find the php array here:
+</I>&gt;<i> <A HREF="http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup">http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup</A>
+</I>&gt;<i> You can copy in a new file the 'en' array, i.e. from &quot; 'en' =&gt; array(
+</I>&gt;<i> &quot; to &quot; ), &quot; before the 'de' array.
+</I>&gt;<i> Then you change 'en' to 'pt' and you can translate every paragraphs.
+</I>&gt;<i> If you send this file to Romain or Oliver it will be much easier for
+</I>&gt;<i> them to implement the translation (they will just have to copy-paste
+</I>&gt;<i> the contents of your file after the other translations).
+</I>
+Yes.
+
+I just want to add that we (me, Oliver and certainly many others) do
+know/realize that this is a messy process/platform to manage
+translations. It could be much better than that, but at least we know
+why/how. Hopefully during the Summer we'll get to something better for
+both designing and translating pages.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001012.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A></li>
+ <LI>Next message: <A HREF="000951.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1013">[ date ]</a>
+ <a href="thread.html#1013">[ thread ]</a>
+ <a href="subject.html#1013">[ subject ]</a>
+ <a href="author.html#1013">[ 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-May/001014.html b/zarb-ml/mageia-webteam/2011-May/001014.html
new file mode 100644
index 000000000..51c574f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001014.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTikdcHBHaeddh%3D8eMVVLs-21c3vwVA%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="001086.html">
+ <LINK REL="Next" HREF="001015.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTikdcHBHaeddh%3D8eMVVLs-21c3vwVA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">rda at mageia.org
+ </A><BR>
+ <I>Tue May 31 09:56:47 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001086.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001015.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1014">[ date ]</a>
+ <a href="thread.html#1014">[ thread ]</a>
+ <a href="subject.html#1014">[ subject ]</a>
+ <a href="author.html#1014">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, May 31, 2011 at 03:14, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> 2011/5/30 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Granted. But then we're back to square 1: what's the goal of the
+</I>&gt;&gt;<i> website, and what's the goal of the global navigation (unless one
+</I>&gt;&gt;<i> comes with a local nav scheme).
+</I>&gt;<i>
+</I>&gt;<i> The goals of the website are simple:
+</I>&gt;<i> &#160;- tell people what Mageia is in a few words (see introduction
+</I>&gt;<i> paragraph), then leading those who are interested to learn more to
+</I>&gt;<i> second level pages (About, Core values, people of Mageia, etc. etc.)
+</I>&gt;<i> &#160;- tell the people what's going on at the moment they are reading the
+</I>&gt;<i> page (thats there with &quot;Happening right now&quot;)
+</I>&gt;<i> &#160;- tell the people how they can join and help - this is already there
+</I>&gt;<i> in the lower left, where you could also place the &quot;Contribute&quot; link,
+</I>&gt;<i> it belongs into &quot;Join us&quot;.
+</I>
+Reminds me I posted this months ago
+<A HREF="http://mageia.org/wiki/doku.php?id=web:website">http://mageia.org/wiki/doku.php?id=web:website</A> ... *sigh*
+
+Ok, reinstalled these in the nav bar before a wave rises; however,
+that doesn't make it less messy. Community is much more than just the
+forum, that's the whole project. So again, that depends on the full
+proposal for the navigation scheme (contents and design and spread
+around all mageia.org services and landing pages design).
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001086.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001015.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1014">[ date ]</a>
+ <a href="thread.html#1014">[ thread ]</a>
+ <a href="subject.html#1014">[ subject ]</a>
+ <a href="author.html#1014">[ 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-May/001015.html b/zarb-ml/mageia-webteam/2011-May/001015.html
new file mode 100644
index 000000000..a55f16201
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001015.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTinkuA%3DW5AKQWSXgjqzaC6c-69nXqQ%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="001014.html">
+ <LINK REL="Next" HREF="001016.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTinkuA%3DW5AKQWSXgjqzaC6c-69nXqQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue May 31 11:06:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001014.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001016.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1015">[ date ]</a>
+ <a href="thread.html#1015">[ thread ]</a>
+ <a href="subject.html#1015">[ subject ]</a>
+ <a href="author.html#1015">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+&gt;<i>
+</I>&gt;<i> Ok, reinstalled these in the nav bar before a wave rises; however,
+</I>&gt;<i> that doesn't make it less messy. Community is much more than just the
+</I>&gt;<i> forum, that's the whole project.
+</I>
+Romain, I know that, but you spelled it out nicely: &quot;before the wave rises&quot;.
+What does that mean? It means, that there is a demand, be it messy or
+whatever, we can not argue against the demand of users. I learned that
+at mandrivausers.de, I was against having a direct link to the forum
+because I wanted users to see all of the project, not just the forum
+(Oliver knows that, too). I even proposed a redirection to the portal
+page to log in, which resulted in massive complaints by the users.
+This direct link to the forum is for fresh users only - once they have
+been to the forum and decide to use it permanently they will put the
+direct forum link into their bookmarks bar, so you can't avoid people
+bypassing the whole rest of the website anyway.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001014.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001016.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1015">[ date ]</a>
+ <a href="thread.html#1015">[ thread ]</a>
+ <a href="subject.html#1015">[ subject ]</a>
+ <a href="author.html#1015">[ 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-May/001016.html b/zarb-ml/mageia-webteam/2011-May/001016.html
new file mode 100644
index 000000000..10505826f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001016.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTikiyfRZzQLRhOg-A7k1UO2VP_mjcA%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="001015.html">
+ <LINK REL="Next" HREF="001087.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTikiyfRZzQLRhOg-A7k1UO2VP_mjcA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">rda at mageia.org
+ </A><BR>
+ <I>Tue May 31 11:18:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001015.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001087.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1016">[ date ]</a>
+ <a href="thread.html#1016">[ thread ]</a>
+ <a href="subject.html#1016">[ subject ]</a>
+ <a href="author.html#1016">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, May 31, 2011 at 11:06, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> 2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Ok, reinstalled these in the nav bar before a wave rises; however,
+</I>&gt;&gt;<i> that doesn't make it less messy. Community is much more than just the
+</I>&gt;&gt;<i> forum, that's the whole project.
+</I>&gt;<i>
+</I>&gt;<i> Romain, I know that, but you spelled it out nicely: &quot;before the wave rises&quot;.
+</I>&gt;<i> What does that mean? It means, that there is a demand, be it messy or
+</I>&gt;<i> whatever, we can not argue against the demand of users.
+</I>
+Oh yes we can. :-p That's called finding a better solution. It's just
+that, at this very time, I have in no way the time and energy to
+handle a (heated or not) discussion about that. :-)
+
+What I am looking for is: experimenting, trying, finding something
+better. As it is, the global nav just sucks (I'm not saying I don't
+think a forum link is bad here, but that as it is, the global nav
+header does not feel right).
+
+I'll buy a whiteboard and come back with something during the Summer
+if no one proposes st before.
+
+&gt;<i> This direct link to the forum is for fresh users only
+</I>
+Right, then in this very case, it's not the global nav that counts,
+but the availability of the link on the very first front page. :-)
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001015.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001087.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1016">[ date ]</a>
+ <a href="thread.html#1016">[ thread ]</a>
+ <a href="subject.html#1016">[ subject ]</a>
+ <a href="author.html#1016">[ 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-May/001017.html b/zarb-ml/mageia-webteam/2011-May/001017.html
new file mode 100644
index 000000000..51b2f4df3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001017.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTi%3Do7p%3Ds_JQyV6MzcU%3Db%2BptPwOa8PQ%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="001087.html">
+ <LINK REL="Next" HREF="001018.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTi%3Do7p%3Ds_JQyV6MzcU%3Db%2BptPwOa8PQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">molch.b at googlemail.com
+ </A><BR>
+ <I>Tue May 31 11:46:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001087.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001018.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1017">[ date ]</a>
+ <a href="thread.html#1017">[ thread ]</a>
+ <a href="subject.html#1017">[ subject ]</a>
+ <a href="author.html#1017">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+&gt;<i> On Tue, May 31, 2011 at 11:06, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> 2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Ok, reinstalled these in the nav bar before a wave rises; however,
+</I>&gt;&gt;&gt;<i> that doesn't make it less messy. Community is much more than just the
+</I>&gt;&gt;&gt;<i> forum, that's the whole project.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Romain, I know that, but you spelled it out nicely: &quot;before the wave rises&quot;.
+</I>&gt;&gt;<i> What does that mean? It means, that there is a demand, be it messy or
+</I>&gt;&gt;<i> whatever, we can not argue against the demand of users.
+</I>&gt;<i>
+</I>&gt;<i> Oh yes we can. :-p That's called finding a better solution. It's just
+</I>&gt;<i> that, at this very time, I have in no way the time and energy to
+</I>&gt;<i> handle a (heated or not) discussion about that. :-)
+</I>
+No, you can't.
+Of course you may win any discussion and of course you can ignore
+everything and just do what you want. And you may also call it any
+name you want, in the end you have to listen to the user's demands.
+
+&gt;<i> Right, then in this very case, it's not the global nav that counts,
+</I>&gt;<i> but the availability of the link on the very first front page. :-)
+</I>
+Well, yes, that would be essential, but having it in global nav would be better.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001087.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001018.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1017">[ date ]</a>
+ <a href="thread.html#1017">[ thread ]</a>
+ <a href="subject.html#1017">[ subject ]</a>
+ <a href="author.html#1017">[ 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-May/001018.html b/zarb-ml/mageia-webteam/2011-May/001018.html
new file mode 100644
index 000000000..54b060141
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001018.html
@@ -0,0 +1,103 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTinfUWxMHun5q%3D4Fhjaj3eVH2oRjZg%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="001017.html">
+ <LINK REL="Next" HREF="001009.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3CBANLkTinfUWxMHun5q%3D4Fhjaj3eVH2oRjZg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">rda at mageia.org
+ </A><BR>
+ <I>Tue May 31 11:58:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001017.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001009.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1018">[ date ]</a>
+ <a href="thread.html#1018">[ thread ]</a>
+ <a href="subject.html#1018">[ subject ]</a>
+ <a href="author.html#1018">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, May 31, 2011 at 11:46, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> 2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+</I>&gt;&gt;<i> On Tue, May 31, 2011 at 11:06, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+</I>&gt;&gt;&gt;<i> 2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;:
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> Ok, reinstalled these in the nav bar before a wave rises; however,
+</I>&gt;&gt;&gt;&gt;<i> that doesn't make it less messy. Community is much more than just the
+</I>&gt;&gt;&gt;&gt;<i> forum, that's the whole project.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Romain, I know that, but you spelled it out nicely: &quot;before the wave rises&quot;.
+</I>&gt;&gt;&gt;<i> What does that mean? It means, that there is a demand, be it messy or
+</I>&gt;&gt;&gt;<i> whatever, we can not argue against the demand of users.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Oh yes we can. :-p That's called finding a better solution. It's just
+</I>&gt;&gt;<i> that, at this very time, I have in no way the time and energy to
+</I>&gt;&gt;<i> handle a (heated or not) discussion about that. :-)
+</I>&gt;<i>
+</I>&gt;<i> No, you can't.
+</I>&gt;<i> Of course you may win any discussion and of course you can ignore
+</I>&gt;<i> everything and just do what you want. And you may also call it any
+</I>&gt;<i> name you want, in the end you have to listen to the user's demands.
+</I>
+There are cases where there's a significant difference between what
+one demands and what one needs. And unless one doesn't challenge this
+difference, there's only incremental progress in sight; at best.
+
+&gt;&gt;<i> Right, then in this very case, it's not the global nav that counts,
+</I>&gt;&gt;<i> but the availability of the link on the very first front page. :-)
+</I>&gt;<i>
+</I>&gt;<i> Well, yes, that would be essential, but having it in global nav would be better.
+</I>
+The global nav (be it with one or two levels - and provided we still
+want one) is to appear on a large set of Web sites: blog, planet,
+forum, www, bugzilla, websvn, identity, ml archives, buildsystem
+dashboard, etc. - and that then, it must keep its relevance as a first
+level nav in all these contexts - and it needs a format/layout that
+works as well; our current layout aims for a concise nav.
+
+That's the point of the design/discussion doc I posted months ago and
+that I got no feedback about.
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001017.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001009.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1018">[ date ]</a>
+ <a href="thread.html#1018">[ thread ]</a>
+ <a href="subject.html#1018">[ subject ]</a>
+ <a href="author.html#1018">[ 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-May/001019.html b/zarb-ml/mageia-webteam/2011-May/001019.html
new file mode 100644
index 000000000..6d34fe439
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001019.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in 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%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110531103759.A8B3742C4E%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="000977.html">
+ <LINK REL="Next" HREF="000890.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201188%5D%20Topic%20subscription%20defaults%20wrong%20in%0A%09forum&In-Reply-To=%3C20110531103759.A8B3742C4E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 31 12:37:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000977.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000890.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1019">[ date ]</a>
+ <a href="thread.html#1019">[ thread ]</a>
+ <a href="subject.html#1019">[ subject ]</a>
+ <a href="author.html#1019">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1188">https://bugs.mageia.org/show_bug.cgi?id=1188</A>
+
+--- Comment #24 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2011-05-31 12:37:59 CEST ---
+Has this been fixed yet?
+
+I looks pretty simple from the link in #22.
+
+With the launch of mga1 many new users will be registering.
+
+--
+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="000977.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A></li>
+ <LI>Next message: <A HREF="000890.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1019">[ date ]</a>
+ <a href="thread.html#1019">[ thread ]</a>
+ <a href="subject.html#1019">[ subject ]</a>
+ <a href="author.html#1019">[ 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-May/001083.html b/zarb-ml/mageia-webteam/2011-May/001083.html
new file mode 100644
index 000000000..291b986d0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001083.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia-forum not reachable
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-forum%20not%20reachable&In-Reply-To=%3C3012.4de044c9%40mageia.linuxtech.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001085.html">
+ <LINK REL="Next" HREF="001084.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia-forum not reachable</H1>
+ <B>isadora</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-forum%20not%20reachable&In-Reply-To=%3C3012.4de044c9%40mageia.linuxtech.net%3E"
+ TITLE="[Mageia-webteam] Mageia-forum not reachable">isis2000 at gmail.com
+ </A><BR>
+ <I>Sat May 28 02:41:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001085.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI>Next message: <A HREF="001084.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1083">[ date ]</a>
+ <a href="thread.html#1083">[ thread ]</a>
+ <a href="subject.html#1083">[ subject ]</a>
+ <a href="author.html#1083">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+
+Also problems at:
+<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>
+
+
+[quote]
+Software error:
+
+Can't connect to the database.
+Error: could not connect to server: Connection refused
+ Is the server running on host &quot;pgsql.mageia.org&quot; and accepting
+ TCP/IP connections on port 5432?
+could not connect to server: Connection refused
+ Is the server running on host &quot;pgsql.mageia.org&quot; and accepting
+ TCP/IP connections on port 5432?
+ Is your database installed and up and running?
+ Do you have the correct username and password selected in localconfig?
+
+
+For help, please send mail to the webmaster (<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">root at localhost</A>), giving this
+error message and the time and date of the error. [/quote]
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001085.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI>Next message: <A HREF="001084.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1083">[ date ]</a>
+ <a href="thread.html#1083">[ thread ]</a>
+ <a href="subject.html#1083">[ subject ]</a>
+ <a href="author.html#1083">[ 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-May/001084.html b/zarb-ml/mageia-webteam/2011-May/001084.html
new file mode 100644
index 000000000..bc7b5b8bc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001084.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia-forum not reachable
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-forum%20not%20reachable&In-Reply-To=%3C3013.4de0494b%40mageia.linuxtech.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001083.html">
+ <LINK REL="Next" HREF="000982.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia-forum not reachable</H1>
+ <B>isadora</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-forum%20not%20reachable&In-Reply-To=%3C3013.4de0494b%40mageia.linuxtech.net%3E"
+ TITLE="[Mageia-webteam] Mageia-forum not reachable">isis2000 at gmail.com
+ </A><BR>
+ <I>Sat May 28 03:01:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001083.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI>Next message: <A HREF="000982.html">[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1084">[ date ]</a>
+ <a href="thread.html#1084">[ thread ]</a>
+ <a href="subject.html#1084">[ subject ]</a>
+ <a href="author.html#1084">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+
+And <A HREF="http://pkgsubmit.mageia.org/">http://pkgsubmit.mageia.org/</A>
+is replying:
+[code]The connection has timed out
+
+
+
+
+
+
+
+ The server at pkgsubmit.mageia.org is taking too long to
+respond.
+
+
+
+
+
+ The site could be temporarily unavailable or too busy. Try again in a
+few
+ moments.
+ If you are unable to load any pages, check your computer's network
+ connection.
+ If your computer or network is protected by a firewall or proxy, make
+sure
+ that Firefox is permitted to access the Web.[/code]
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001083.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI>Next message: <A HREF="000982.html">[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1084">[ date ]</a>
+ <a href="thread.html#1084">[ thread ]</a>
+ <a href="subject.html#1084">[ subject ]</a>
+ <a href="author.html#1084">[ 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-May/001085.html b/zarb-ml/mageia-webteam/2011-May/001085.html
new file mode 100644
index 000000000..419a95ce4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001085.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia-forum not reachable
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-forum%20not%20reachable&In-Reply-To=%3C3011.4de033f8%40mageia.linuxtech.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000981.html">
+ <LINK REL="Next" HREF="001083.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia-forum not reachable</H1>
+ <B>isadora</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-forum%20not%20reachable&In-Reply-To=%3C3011.4de033f8%40mageia.linuxtech.net%3E"
+ TITLE="[Mageia-webteam] Mageia-forum not reachable">isis2000 at gmail.com
+ </A><BR>
+ <I>Sat May 28 01:30:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000981.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="001083.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1085">[ date ]</a>
+ <a href="thread.html#1085">[ thread ]</a>
+ <a href="subject.html#1085">[ subject ]</a>
+ <a href="author.html#1085">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+
+<A HREF="https://forums.mageia.org/en/index.php">https://forums.mageia.org/en/index.php</A> is returning to me:
+
+Service Temporarily Unavailable
+
+The server is temporarily unable to service your request due to maintenance
+downtime or capacity problems. Please try again later.
+
+Additionally, a 503 Service Temporarily Unavailable error was encountered
+while trying to use an ErrorDocument to handle the request.
+Apache/2.2.15 (Mandriva Linux/PREFORK-3.2mdv2010.2) Server at
+forums.mageia.org Port 443
+
+isadora, amsterdam, the netherlands
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000981.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="001083.html">[Mageia-webteam] Mageia-forum not reachable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1085">[ date ]</a>
+ <a href="thread.html#1085">[ thread ]</a>
+ <a href="subject.html#1085">[ subject ]</a>
+ <a href="author.html#1085">[ 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-May/001086.html b/zarb-ml/mageia-webteam/2011-May/001086.html
new file mode 100644
index 000000000..02798faa0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001086.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3C309d.4de49898%40mageia.linuxtech.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001011.html">
+ <LINK REL="Next" HREF="001014.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>isadora</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3C309d.4de49898%40mageia.linuxtech.net%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">isis2000 at gmail.com
+ </A><BR>
+ <I>Tue May 31 09:28:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001011.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001014.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1086">[ date ]</a>
+ <a href="thread.html#1086">[ thread ]</a>
+ <a href="subject.html#1086">[ subject ]</a>
+ <a href="author.html#1086">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+
+The community must be able to one-step to the forum.
+That is their first place to meet. Now we have questions about it in the
+forum.
+That makes it clear, people are used to find the community as easy as
+possible.
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001011.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001014.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1086">[ date ]</a>
+ <a href="thread.html#1086">[ thread ]</a>
+ <a href="subject.html#1086">[ subject ]</a>
+ <a href="author.html#1086">[ 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-May/001087.html b/zarb-ml/mageia-webteam/2011-May/001087.html
new file mode 100644
index 000000000..e274e6c6e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001087.html
@@ -0,0 +1,60 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Missing link to forums
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3C30a2.4de4b616%40mageia.linuxtech.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001016.html">
+ <LINK REL="Next" HREF="001017.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Missing link to forums</H1>
+ <B>isadora</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Missing%20link%20to%20forums&In-Reply-To=%3C30a2.4de4b616%40mageia.linuxtech.net%3E"
+ TITLE="[Mageia-webteam] Missing link to forums">isis2000 at gmail.com
+ </A><BR>
+ <I>Tue May 31 11:34:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001016.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001017.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1087">[ date ]</a>
+ <a href="thread.html#1087">[ thread ]</a>
+ <a href="subject.html#1087">[ subject ]</a>
+ <a href="author.html#1087">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+
+Thank you Romain, i agree the community is more than only the forum.
+But, we want our Mageia-users to have easy access to the place where they
+can exchange their experiences, right?
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001016.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI>Next message: <A HREF="001017.html">[Mageia-webteam] Missing link to forums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1087">[ date ]</a>
+ <a href="thread.html#1087">[ thread ]</a>
+ <a href="subject.html#1087">[ subject ]</a>
+ <a href="author.html#1087">[ 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-May/001088.html b/zarb-ml/mageia-webteam/2011-May/001088.html
new file mode 100644
index 000000000..91a1d726d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/001088.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] release-notes.html edits
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20release-notes.html%20edits&In-Reply-To=%3CBANLkTin83KRcLDLqN4_UHEMQeuAKTXiixA%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="001009.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] release-notes.html edits</H1>
+ <B>Dennis Griffin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20release-notes.html%20edits&In-Reply-To=%3CBANLkTin83KRcLDLqN4_UHEMQeuAKTXiixA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] release-notes.html edits">dennisgrif at gmail.com
+ </A><BR>
+ <I>Tue May 31 18:19:33 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001009.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1088">[ date ]</a>
+ <a href="thread.html#1088">[ thread ]</a>
+ <a href="subject.html#1088">[ subject ]</a>
+ <a href="author.html#1088">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I am not sure who should get this message but I have a comment about the
+release-notes.html file. The particiular file I am looking at is:
+
+<A HREF="http://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/cauldron/x86_64/release-notes.html">http://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/cauldron/x86_64/release-notes.html</A>
+
+In the section &quot;Using Mageia Control Center :&quot; the contraction &quot;do'nt&quot; is
+misspelled. The apostrophe should be between the n and the t not between
+the o and the n. It appears twice in that paragraph. It is better style
+not to to use contractions...use &quot;do not&quot; instead.
+
+Also, the file contains:
+
+Mageia mirrors web application/a&gt;&lt;/div&gt;
+
+There needs to be a &quot;&lt;&quot; in front of the &quot;/a&gt;&quot;...
+
+Dennis Griffin
+541-479-3079
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dennisgrif at gmail.com</A>
+<A HREF="http://griffin.isa-geek.net">http://griffin.isa-geek.net</A>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110531/a239b1a8/attachment-0001.html&gt;
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001009.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1088">[ date ]</a>
+ <a href="thread.html#1088">[ thread ]</a>
+ <a href="subject.html#1088">[ subject ]</a>
+ <a href="author.html#1088">[ 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-May/author.html b/zarb-ml/mageia-webteam/2011-May/author.html
new file mode 100644
index 000000000..8c8144587
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/author.html
@@ -0,0 +1,1062 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam May 2011 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>May 2011 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>Sun May 1 00:00:02 CEST 2011</i><br>
+ <b>Ending:</b> <i>Tue May 31 18:19:33 CEST 2011</i><br>
+ <b>Messages:</b> 203<p>
+ <ul>
+
+<LI><A HREF="000845.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="845">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000893.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="893">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000894.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="894">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000901.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="901">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000903.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="903">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000906.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="906">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000914.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="914">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000960.html">[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="960">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000987.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="987">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="000988.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="988">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="000989.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="989">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="000913.html">[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)
+</A><A NAME="913">&nbsp;</A>
+<I>Alexis Bienven&#195;&#188;e
+</I>
+
+<LI><A HREF="000878.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="878">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000879.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="879">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000887.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="887">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000904.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="904">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000907.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="907">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000909.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="909">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000920.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="920">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000974.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="974">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000975.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="975">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000977.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="977">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001007.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1007">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001011.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1011">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001015.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1015">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001017.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1017">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000943.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="943">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000948.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="948">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000950.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="950">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000979.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="979">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000835.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="835">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000838.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="838">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000902.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="902">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000905.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="905">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000908.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="908">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000931.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A><A NAME="931">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000933.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="933">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000967.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="967">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000831.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="831">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000832.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="832">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000834.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="834">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000837.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="837">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000839.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="839">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000874.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="874">&nbsp;</A>
+<I>Dick Gevers
+</I>
+
+<LI><A HREF="001088.html">[Mageia-webteam] release-notes.html edits
+</A><A NAME="1088">&nbsp;</A>
+<I>Dennis Griffin
+</I>
+
+<LI><A HREF="000830.html">[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="830">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000841.html">[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="841">&nbsp;</A>
+<I>Dimitri J
+</I>
+
+<LI><A HREF="000867.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="867">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000875.html">[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum
+</A><A NAME="875">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000877.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="877">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000881.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="881">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000883.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="883">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000888.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="888">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000899.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="899">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000971.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="971">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000972.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="972">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000973.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="973">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000976.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="976">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001019.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1019">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000825.html">[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user
+</A><A NAME="825">&nbsp;</A>
+<I>Raphael Jadot
+</I>
+
+<LI><A HREF="000876.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="876">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="000880.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="880">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="000885.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="885">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="000833.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="833">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="000936.html">[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0
+</A><A NAME="936">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000937.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="937">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000952.html">[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page
+</A><A NAME="952">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="000953.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="953">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="000955.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="955">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="000947.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="947">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001010.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1010">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="000828.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="828">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="000928.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="928">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000997.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="997">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000930.html">[Mageia-webteam] Romanian download page not up to date!
+</A><A NAME="930">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<LI><A HREF="000965.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="965">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<LI><A HREF="000850.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="850">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000853.html">[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="853">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000865.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="865">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000869.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="869">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000882.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="882">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000884.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="884">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000886.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="886">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000889.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="889">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000891.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="891">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000896.html">[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="896">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000897.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="897">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000939.html">[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="939">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000940.html">[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports
+</A><A NAME="940">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000944.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="944">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000945.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="945">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000946.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="946">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000949.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="949">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000954.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="954">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000978.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="978">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000981.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="981">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000991.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="991">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000992.html">[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="992">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001003.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="1003">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000836.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="836">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000843.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="843">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000846.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="846">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000847.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="847">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000848.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="848">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000856.html">[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too
+</A><A NAME="856">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000860.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="860">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000863.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="863">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000864.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="864">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000919.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="919">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000922.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A><A NAME="922">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000924.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="924">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000958.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="958">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000964.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="964">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000969.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="969">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000970.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="970">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000993.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="993">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000994.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="994">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000995.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="995">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000996.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="996">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000998.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="998">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000915.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="915">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001012.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1012">&nbsp;</A>
+<I>R&#233;mi Verschelde
+</I>
+
+<LI><A HREF="000827.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="827">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000840.html">[Mageia-webteam] [Bug 1140] [New] Download page should not use https links
+</A><A NAME="840">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000854.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="854">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000859.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="859">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000862.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="862">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000866.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="866">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000941.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="941">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000942.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="942">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001005.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1005">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000855.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="855">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000925.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="925">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000935.html">[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0
+</A><A NAME="935">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000844.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="844">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000849.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="849">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000851.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="851">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000857.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="857">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000858.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="858">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000861.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="861">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000870.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="870">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000871.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="871">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000872.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="872">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000873.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="873">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000892.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="892">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000910.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="910">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000911.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="911">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000923.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A><A NAME="923">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000926.html">[Mageia-webteam] Mageia 1 release, some tasks
+</A><A NAME="926">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000956.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="956">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000962.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="962">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000966.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="966">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000982.html">[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="982">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000983.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="983">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000984.html">[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools
+</A><A NAME="984">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000985.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="985">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000986.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="986">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000999.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="999">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001000.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="1000">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001001.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="1001">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001004.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1004">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001006.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1006">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001008.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1008">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001013.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1013">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001014.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1014">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001016.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1016">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001018.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1018">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001085.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1085">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001083.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1083">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001084.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1084">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001086.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1086">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001087.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1087">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="000823.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="823">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000824.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="824">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000826.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="826">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000829.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="829">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000842.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="842">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000852.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="852">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000868.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="868">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000890.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="890">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000895.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="895">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000898.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="898">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000900.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="900">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000912.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="912">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000916.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="916">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000917.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="917">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000918.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="918">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000921.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="921">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000927.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="927">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000929.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="929">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000932.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="932">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000934.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="934">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000938.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="938">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000951.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="951">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000957.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="957">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000959.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="959">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000961.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="961">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000963.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="963">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000980.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="980">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000990.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="990">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001002.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1002">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001009.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1009">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000968.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="968">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue May 31 18:19:33 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Mon Jun 6 18:16:27 CEST 2011</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/2011-May/date.html b/zarb-ml/mageia-webteam/2011-May/date.html
new file mode 100644
index 000000000..00e1b26d2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/date.html
@@ -0,0 +1,1062 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam May 2011 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>May 2011 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>Sun May 1 00:00:02 CEST 2011</i><br>
+ <b>Ending:</b> <i>Tue May 31 18:19:33 CEST 2011</i><br>
+ <b>Messages:</b> 203<p>
+ <ul>
+
+<LI><A HREF="000823.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="823">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000824.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="824">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000825.html">[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user
+</A><A NAME="825">&nbsp;</A>
+<I>Raphael Jadot
+</I>
+
+<LI><A HREF="000826.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="826">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000827.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="827">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000828.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="828">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="000829.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="829">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000830.html">[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="830">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000831.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="831">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000832.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="832">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000833.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="833">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="000834.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="834">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000835.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="835">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000836.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="836">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000837.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="837">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000838.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="838">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000839.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="839">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000840.html">[Mageia-webteam] [Bug 1140] [New] Download page should not use https links
+</A><A NAME="840">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000841.html">[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="841">&nbsp;</A>
+<I>Dimitri J
+</I>
+
+<LI><A HREF="000842.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="842">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000843.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="843">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000844.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="844">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000845.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="845">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000846.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="846">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000847.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="847">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000848.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="848">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000849.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="849">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000850.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="850">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000851.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="851">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000852.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="852">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000853.html">[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="853">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000854.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="854">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000855.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="855">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000856.html">[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too
+</A><A NAME="856">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000857.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="857">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000858.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="858">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000859.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="859">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000860.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="860">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000861.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="861">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000862.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="862">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000863.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="863">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000864.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="864">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000865.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="865">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000866.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="866">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000867.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="867">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000868.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="868">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000869.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="869">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000870.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="870">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000871.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="871">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000872.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="872">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000873.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="873">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000874.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="874">&nbsp;</A>
+<I>Dick Gevers
+</I>
+
+<LI><A HREF="000875.html">[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum
+</A><A NAME="875">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000876.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="876">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="000877.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="877">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000878.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="878">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000879.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="879">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000880.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="880">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="000881.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="881">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000882.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="882">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000883.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="883">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000884.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="884">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000885.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="885">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="000886.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="886">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000887.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="887">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000888.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="888">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000889.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="889">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000890.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="890">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000891.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="891">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000892.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="892">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000893.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="893">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000894.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="894">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000895.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="895">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000896.html">[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="896">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000897.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="897">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000898.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="898">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000899.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="899">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000900.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="900">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000901.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="901">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000902.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="902">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000903.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="903">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000904.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="904">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000905.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="905">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000906.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="906">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000907.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="907">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000908.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="908">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000909.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="909">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000910.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="910">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000911.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="911">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000912.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="912">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000913.html">[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)
+</A><A NAME="913">&nbsp;</A>
+<I>Alexis Bienven&#195;&#188;e
+</I>
+
+<LI><A HREF="000914.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="914">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000915.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="915">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="000916.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="916">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000917.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="917">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000918.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="918">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000919.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="919">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000920.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="920">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000921.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="921">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000922.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A><A NAME="922">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000923.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A><A NAME="923">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000924.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="924">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000925.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="925">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000926.html">[Mageia-webteam] Mageia 1 release, some tasks
+</A><A NAME="926">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000927.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="927">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000928.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="928">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000929.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="929">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000930.html">[Mageia-webteam] Romanian download page not up to date!
+</A><A NAME="930">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<LI><A HREF="000931.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A><A NAME="931">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000932.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="932">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000933.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="933">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000934.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="934">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000935.html">[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0
+</A><A NAME="935">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000936.html">[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0
+</A><A NAME="936">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000937.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="937">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000938.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="938">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000939.html">[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="939">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000940.html">[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports
+</A><A NAME="940">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000941.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="941">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000942.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="942">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000943.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="943">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000944.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="944">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000945.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="945">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000946.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="946">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000947.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="947">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="000948.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="948">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000949.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="949">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000950.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="950">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000951.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="951">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000952.html">[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page
+</A><A NAME="952">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="000953.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="953">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="000954.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="954">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000955.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="955">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="000956.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="956">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000957.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="957">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000958.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="958">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000959.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="959">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000960.html">[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="960">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000961.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="961">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000962.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="962">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000963.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="963">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000964.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="964">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000965.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="965">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<LI><A HREF="000966.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="966">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000967.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="967">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000968.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="968">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000969.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="969">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000970.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="970">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000971.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="971">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000972.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="972">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000973.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="973">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000974.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="974">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000975.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="975">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000976.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="976">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000977.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="977">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000978.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="978">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000979.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="979">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000980.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="980">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000981.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="981">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001085.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1085">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001083.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1083">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001084.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1084">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="000982.html">[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="982">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000983.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="983">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000984.html">[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools
+</A><A NAME="984">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000985.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="985">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000986.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="986">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000987.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="987">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="000988.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="988">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="000989.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="989">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="000990.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="990">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000991.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="991">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000992.html">[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="992">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000993.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="993">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000994.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="994">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000995.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="995">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000996.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="996">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000997.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="997">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000998.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="998">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000999.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="999">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001000.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="1000">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001001.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="1001">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001002.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1002">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001003.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="1003">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="001004.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1004">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001005.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1005">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001006.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1006">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001007.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1007">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001008.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1008">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001009.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1009">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001010.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1010">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001011.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1011">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001012.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1012">&nbsp;</A>
+<I>R&#233;mi Verschelde
+</I>
+
+<LI><A HREF="001013.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1013">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001086.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1086">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001014.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1014">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001015.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1015">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001016.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1016">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001087.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1087">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001017.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1017">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001018.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1018">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001019.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1019">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001088.html">[Mageia-webteam] release-notes.html edits
+</A><A NAME="1088">&nbsp;</A>
+<I>Dennis Griffin
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue May 31 18:19:33 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Mon Jun 6 18:16:27 CEST 2011</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/2011-May/index.html b/zarb-ml/mageia-webteam/2011-May/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-May/subject.html b/zarb-ml/mageia-webteam/2011-May/subject.html
new file mode 100644
index 000000000..881af74e4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/subject.html
@@ -0,0 +1,1062 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam May 2011 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>May 2011 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>Sun May 1 00:00:02 CEST 2011</i><br>
+ <b>Ending:</b> <i>Tue May 31 18:19:33 CEST 2011</i><br>
+ <b>Messages:</b> 203<p>
+ <ul>
+
+<LI><A HREF="000869.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="869">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000870.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="870">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000871.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="871">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000872.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="872">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000873.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="873">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000874.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="874">&nbsp;</A>
+<I>Dick Gevers
+</I>
+
+<LI><A HREF="000891.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="891">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000892.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="892">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000893.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="893">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000894.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="894">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000924.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="924">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000925.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="925">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000825.html">[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user
+</A><A NAME="825">&nbsp;</A>
+<I>Raphael Jadot
+</I>
+
+<LI><A HREF="000827.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="827">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000828.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="828">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="000830.html">[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="830">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="000831.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="831">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000832.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="832">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000833.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="833">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="000834.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="834">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000835.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="835">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000836.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="836">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000837.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="837">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000838.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="838">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000839.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="839">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<LI><A HREF="000840.html">[Mageia-webteam] [Bug 1140] [New] Download page should not use https links
+</A><A NAME="840">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000843.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="843">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000844.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="844">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000845.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="845">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="000846.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="846">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000847.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="847">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000848.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="848">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000841.html">[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="841">&nbsp;</A>
+<I>Dimitri J
+</I>
+
+<LI><A HREF="000853.html">[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="853">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000854.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="854">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000855.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="855">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000865.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="865">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000866.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="866">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000867.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="867">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000897.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="897">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000856.html">[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too
+</A><A NAME="856">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000857.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="857">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000859.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="859">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000860.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="860">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000861.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="861">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000862.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="862">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000863.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="863">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000875.html">[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum
+</A><A NAME="875">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000878.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="878">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000876.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="876">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="000877.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="877">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000879.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="879">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000880.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="880">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="000881.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="881">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000882.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="882">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000883.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="883">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000884.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="884">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000885.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="885">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="000886.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="886">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000887.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="887">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000888.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="888">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000889.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="889">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000915.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="915">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="000969.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="969">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000970.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="970">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000971.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="971">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000972.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="972">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000973.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="973">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000974.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="974">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000975.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="975">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000976.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="976">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000977.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="977">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001019.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1019">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000896.html">[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="896">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000899.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="899">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="000913.html">[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)
+</A><A NAME="913">&nbsp;</A>
+<I>Alexis Bienven&#195;&#188;e
+</I>
+
+<LI><A HREF="000922.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A><A NAME="922">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000923.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A><A NAME="923">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000931.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A><A NAME="931">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000935.html">[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0
+</A><A NAME="935">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="000936.html">[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0
+</A><A NAME="936">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="000939.html">[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="939">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000941.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="941">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000942.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="942">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="000943.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="943">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000944.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="944">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000945.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="945">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000946.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="946">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000948.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="948">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000949.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="949">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000950.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="950">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000940.html">[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports
+</A><A NAME="940">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000952.html">[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page
+</A><A NAME="952">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="000953.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="953">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="000954.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="954">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000955.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="955">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="000956.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="956">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000958.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="958">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000960.html">[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="960">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000982.html">[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="982">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000983.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="983">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000986.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="986">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000987.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="987">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="000989.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="989">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001001.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="1001">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000984.html">[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools
+</A><A NAME="984">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000985.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="985">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000988.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="988">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001000.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="1000">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000991.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="991">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000993.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="993">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000996.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="996">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000997.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="997">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="000998.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="998">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000999.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="999">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000992.html">[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="992">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000994.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="994">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000995.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="995">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001003.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="1003">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000858.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="858">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000864.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="864">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000928.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="928">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="000937.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="937">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<LI><A HREF="001004.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1004">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001005.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1005">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001006.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1006">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000849.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="849">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000850.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="850">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000851.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="851">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000978.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="978">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000979.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="979">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="000981.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="981">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<LI><A HREF="000933.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="933">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000964.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="964">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000965.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="965">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<LI><A HREF="000966.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="966">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000967.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="967">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000968.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="968">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="000926.html">[Mageia-webteam] Mageia 1 release, some tasks
+</A><A NAME="926">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001085.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1085">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001083.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1083">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001084.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1084">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001007.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1007">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001008.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1008">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001011.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1011">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001086.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1086">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001014.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1014">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001015.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1015">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001016.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1016">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001087.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1087">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="001017.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1017">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001018.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1018">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001088.html">[Mageia-webteam] release-notes.html edits
+</A><A NAME="1088">&nbsp;</A>
+<I>Dennis Griffin
+</I>
+
+<LI><A HREF="000901.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="901">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000902.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="902">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000903.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="903">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000904.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="904">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000905.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="905">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000906.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="906">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000907.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="907">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000908.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="908">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000909.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="909">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000910.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="910">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000911.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="911">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000914.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="914">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="000919.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="919">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="000920.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="920">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="000930.html">[Mageia-webteam] Romanian download page not up to date!
+</A><A NAME="930">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<LI><A HREF="000947.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="947">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="000962.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="962">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001010.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1010">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<LI><A HREF="001012.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1012">&nbsp;</A>
+<I>R&#233;mi Verschelde
+</I>
+
+<LI><A HREF="001013.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1013">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000823.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="823">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000824.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="824">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000826.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="826">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000829.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="829">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000842.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="842">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000852.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="852">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000868.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="868">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000890.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="890">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000895.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="895">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000898.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="898">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000900.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="900">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000912.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="912">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000916.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="916">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000917.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="917">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000918.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="918">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000921.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="921">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000927.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="927">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000929.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="929">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000932.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="932">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000934.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="934">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000938.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="938">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000951.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="951">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000957.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="957">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000959.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="959">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000961.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="961">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000963.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="963">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000980.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="980">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="000990.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="990">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001002.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1002">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<LI><A HREF="001009.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1009">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue May 31 18:19:33 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Mon Jun 6 18:16:27 CEST 2011</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/2011-May/thread.html b/zarb-ml/mageia-webteam/2011-May/thread.html
new file mode 100644
index 000000000..9ee4384d6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-May/thread.html
@@ -0,0 +1,1329 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam May 2011 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>May 2011 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>Sun May 1 00:00:02 CEST 2011</i><br>
+ <b>Ending:</b> <i>Tue May 31 18:19:33 CEST 2011</i><br>
+ <b>Messages:</b> 203<p>
+ <ul>
+
+<!--0 01304200802- -->
+<LI><A HREF="000823.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="823">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304287203- -->
+<LI><A HREF="000824.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="824">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304358868- -->
+<LI><A HREF="000825.html">[Mageia-webteam] [Bug 1100] [New] Admin demoted to Mod or simple user
+</A><A NAME="825">&nbsp;</A>
+<I>Raphael Jadot
+</I>
+
+<UL>
+<!--1 01304358868-01304428373- -->
+<LI><A HREF="000827.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="827">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01304358868-01304429876- -->
+<LI><A HREF="000828.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="828">&nbsp;</A>
+<I>Maat
+</I>
+
+</UL>
+<!--0 01304373604- -->
+<LI><A HREF="000826.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="826">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304460002- -->
+<LI><A HREF="000829.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="829">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304470575- -->
+<LI><A HREF="000830.html">[Mageia-webteam] [Bug 1126] [New] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="830">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<UL>
+<!--1 01304470575-01304477260- -->
+<LI><A HREF="000831.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="831">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<!--1 01304470575-01304477429- -->
+<LI><A HREF="000832.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="832">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<!--1 01304470575-01304477495- -->
+<LI><A HREF="000833.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="833">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<!--1 01304470575-01304478029- -->
+<LI><A HREF="000834.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="834">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<!--1 01304470575-01304490687- -->
+<LI><A HREF="000835.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="835">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01304470575-01304508677- -->
+<LI><A HREF="000836.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="836">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01304470575-01304509349- -->
+<LI><A HREF="000837.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="837">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+<!--1 01304470575-01304510603- -->
+<LI><A HREF="000838.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="838">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01304470575-01304510882- -->
+<LI><A HREF="000839.html">[Mageia-webteam] [Bug 1126] Make a page similar to http://l10n.gnome.org/languages/sv/ for the Mageia SVN to help users keep track of what's translated &amp; how much it's translated.
+</A><A NAME="839">&nbsp;</A>
+<I>Olav Dahlum
+</I>
+
+</UL>
+<!--0 01304544628- -->
+<LI><A HREF="000840.html">[Mageia-webteam] [Bug 1140] [New] Download page should not use https links
+</A><A NAME="840">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<UL>
+<!--1 01304544628-01304546513- -->
+<LI><A HREF="000843.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="843">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01304544628-01304546940- -->
+<LI><A HREF="000844.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="844">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01304544628-01304547425- -->
+<LI><A HREF="000845.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="845">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--1 01304544628-01304547458- -->
+<LI><A HREF="000846.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="846">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01304544628-01304547483- -->
+<LI><A HREF="000847.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="847">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01304544628-01304547530- -->
+<LI><A HREF="000848.html">[Mageia-webteam] [Bug 1140] Download page should not use https links
+</A><A NAME="848">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01304546250- -->
+<LI><A HREF="000841.html">[Mageia-webteam] [Bug 1141] [New] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="841">&nbsp;</A>
+<I>Dimitri J
+</I>
+
+<!--0 01304546402- -->
+<LI><A HREF="000842.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="842">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304597437- -->
+<LI><A HREF="000849.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="849">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01304611765- -->
+<LI><A HREF="000850.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="850">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01304612251- -->
+<LI><A HREF="000851.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A><A NAME="851">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01304632802- -->
+<LI><A HREF="000852.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="852">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304649335- -->
+<LI><A HREF="000853.html">[Mageia-webteam] [Bug 1170] [New] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="853">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<UL>
+<!--1 01304649335-01304669393- -->
+<LI><A HREF="000854.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="854">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01304649335-01304676266- -->
+<LI><A HREF="000855.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="855">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--1 01304649335-01304686843- -->
+<LI><A HREF="000865.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="865">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01304649335-01304687197- -->
+<LI><A HREF="000866.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="866">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01304649335-01304688419- -->
+<LI><A HREF="000867.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="867">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01304649335-01304916918- -->
+<LI><A HREF="000897.html">[Mageia-webteam] [Bug 1170] Users select &quot;Installation&quot; component by mistake more than often
+</A><A NAME="897">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+</UL>
+<!--0 01304678275- -->
+<LI><A HREF="000856.html">[Mageia-webteam] [Bug 1171] [New] Bugzilla should let people use their email to login too
+</A><A NAME="856">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01304678275-01304678852- -->
+<LI><A HREF="000857.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="857">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01304678275-01304679184- -->
+<LI><A HREF="000859.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="859">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01304678275-01304679522- -->
+<LI><A HREF="000860.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="860">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01304678275-01304680317- -->
+<LI><A HREF="000861.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="861">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01304678275-01304680641- -->
+<LI><A HREF="000862.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="862">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01304678275-01304681225- -->
+<LI><A HREF="000863.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="863">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01304678853- -->
+<LI><A HREF="000858.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="858">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01304681892- -->
+<LI><A HREF="000864.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="864">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01304719202- -->
+<LI><A HREF="000868.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="868">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304735224- -->
+<LI><A HREF="000869.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="869">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01304758445- -->
+<LI><A HREF="000870.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="870">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01304758456- -->
+<LI><A HREF="000871.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="871">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01304762243- -->
+<LI><A HREF="000872.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="872">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01304762288- -->
+<LI><A HREF="000873.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="873">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01304763483- -->
+<LI><A HREF="000874.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="874">&nbsp;</A>
+<I>Dick Gevers
+</I>
+
+<!--0 01304769052- -->
+<LI><A HREF="000875.html">[Mageia-webteam] [Bug 1188] [New] Topic subscription defaults wrong in forum
+</A><A NAME="875">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<UL>
+<!--1 01304769052-01304775597- -->
+<LI><A HREF="000876.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="876">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<!--1 01304769052-01304776304- -->
+<LI><A HREF="000877.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="877">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<UL>
+<!--2 01304769052-01304776304-01304777412- -->
+<LI><A HREF="000878.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="878">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--1 01304769052-01304777525- -->
+<LI><A HREF="000879.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="879">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01304769052-01304780682- -->
+<LI><A HREF="000880.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="880">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<!--1 01304769052-01304781917- -->
+<LI><A HREF="000881.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="881">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01304769052-01304784760- -->
+<LI><A HREF="000882.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="882">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01304769052-01304788062- -->
+<LI><A HREF="000883.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="883">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01304769052-01304788656- -->
+<LI><A HREF="000884.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="884">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01304769052-01304789598- -->
+<LI><A HREF="000885.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="885">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<!--1 01304769052-01304789860- -->
+<LI><A HREF="000886.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="886">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01304769052-01304793514- -->
+<LI><A HREF="000887.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="887">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01304769052-01304801260- -->
+<LI><A HREF="000888.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="888">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01304769052-01304803242- -->
+<LI><A HREF="000889.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="889">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01304769052-01305221145- -->
+<LI><A HREF="000915.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="915">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--1 01304769052-01306402394- -->
+<LI><A HREF="000969.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="969">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01304769052-01306402684- -->
+<LI><A HREF="000970.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="970">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01304769052-01306413004- -->
+<LI><A HREF="000971.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="971">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01304769052-01306415421- -->
+<LI><A HREF="000972.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="972">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01304769052-01306425477- -->
+<LI><A HREF="000973.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="973">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01304769052-01306426371- -->
+<LI><A HREF="000974.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="974">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01304769052-01306426523- -->
+<LI><A HREF="000975.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="975">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01304769052-01306428725- -->
+<LI><A HREF="000976.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="976">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01304769052-01306429975- -->
+<LI><A HREF="000977.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="977">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01304769052-01306838279- -->
+<LI><A HREF="001019.html">[Mageia-webteam] [Bug 1188] Topic subscription defaults wrong in forum
+</A><A NAME="1019">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+</UL>
+<!--0 01304805602- -->
+<LI><A HREF="000890.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="890">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304824211- -->
+<LI><A HREF="000891.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="891">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01304852709- -->
+<LI><A HREF="000892.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="892">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01304855946- -->
+<LI><A HREF="000893.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="893">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01304857727- -->
+<LI><A HREF="000894.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="894">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01304892002- -->
+<LI><A HREF="000895.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="895">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01304915066- -->
+<LI><A HREF="000896.html">[Mageia-webteam] [Bug 1220] [New] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="896">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<UL>
+<!--1 01304915066-01305058010- -->
+<LI><A HREF="000899.html">[Mageia-webteam] [Bug 1220] The Mageia forums should use the mageia favicon.ico
+</A><A NAME="899">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+</UL>
+<!--0 01304978403- -->
+<LI><A HREF="000898.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="898">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305064802- -->
+<LI><A HREF="000900.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="900">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305126882- -->
+<LI><A HREF="000901.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="901">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<UL>
+<!--1 01305126882-01305134392- -->
+<LI><A HREF="000902.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="902">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--2 01305126882-01305134392-01305137052- -->
+<LI><A HREF="000903.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="903">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<UL>
+<!--3 01305126882-01305134392-01305137052-01305138409- -->
+<LI><A HREF="000905.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="905">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+</UL>
+<!--1 01305126882-01305137766- -->
+<LI><A HREF="000904.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="904">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--2 01305126882-01305137766-01305138626- -->
+<LI><A HREF="000906.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="906">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<UL>
+<!--3 01305126882-01305137766-01305138626-01305139239- -->
+<LI><A HREF="000907.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="907">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01305126882-01305137766-01305138626-01305139495- -->
+<LI><A HREF="000908.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="908">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--3 01305126882-01305137766-01305138626-01305140312- -->
+<LI><A HREF="000909.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="909">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--2 01305126882-01305137766-01305206991- -->
+<LI><A HREF="000914.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="914">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+</UL>
+<!--1 01305126882-01305142386- -->
+<LI><A HREF="000910.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="910">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01305126882-01305142386-01305143004- -->
+<LI><A HREF="000911.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="911">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--2 01305126882-01305142386-01305455867- -->
+<LI><A HREF="000919.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="919">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--3 01305126882-01305142386-01305455867-01305459007- -->
+<LI><A HREF="000920.html">[Mageia-webteam] Request of formal approval for mageiaitalia.org
+</A><A NAME="920">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01305151205- -->
+<LI><A HREF="000912.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="912">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305152084- -->
+<LI><A HREF="000913.html">[Mageia-webteam] [Bug 1249] [New] Broken link to download IBAN for a donation (FR)
+</A><A NAME="913">&nbsp;</A>
+<I>Alexis Bienven&#195;&#188;e
+</I>
+
+<UL>
+<!--1 01305152084-01305530707- -->
+<LI><A HREF="000922.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A><A NAME="922">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01305152084-01305535981- -->
+<LI><A HREF="000923.html">[Mageia-webteam] [Bug 1249] Broken link to download IBAN for a donation (FR)
+</A><A NAME="923">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01305237605- -->
+<LI><A HREF="000916.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="916">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305324003- -->
+<LI><A HREF="000917.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="917">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305410403- -->
+<LI><A HREF="000918.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="918">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305496803- -->
+<LI><A HREF="000921.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="921">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305543624- -->
+<LI><A HREF="000924.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="924">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01305546665- -->
+<LI><A HREF="000925.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="925">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--0 01305577843- -->
+<LI><A HREF="000926.html">[Mageia-webteam] Mageia 1 release, some tasks
+</A><A NAME="926">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01305583202- -->
+<LI><A HREF="000927.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="927">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305638786- -->
+<LI><A HREF="000928.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="928">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--0 01305669602- -->
+<LI><A HREF="000929.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="929">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305708561- -->
+<LI><A HREF="000930.html">[Mageia-webteam] Romanian download page not up to date!
+</A><A NAME="930">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<!--0 01305710248- -->
+<LI><A HREF="000931.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A><A NAME="931">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01305756003- -->
+<LI><A HREF="000932.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="932">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305789126- -->
+<LI><A HREF="000933.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="933">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01305842402- -->
+<LI><A HREF="000934.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="934">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305895817- -->
+<LI><A HREF="000935.html">[Mageia-webteam] [Bug 1356] [New] please update bugzilla to 4.0
+</A><A NAME="935">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<UL>
+<!--1 01305895817-01305896288- -->
+<LI><A HREF="000936.html">[Mageia-webteam] [Bug 1356] please update bugzilla to 4.0
+</A><A NAME="936">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+</UL>
+<!--0 01305896288- -->
+<LI><A HREF="000937.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
+</A><A NAME="937">&nbsp;</A>
+<I>Damien Lallement
+</I>
+
+<!--0 01305928802- -->
+<LI><A HREF="000938.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="938">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01305930413- -->
+<LI><A HREF="000939.html">[Mageia-webteam] [Bug 1364] [New] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="939">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<UL>
+<!--1 01305930413-01305931287- -->
+<LI><A HREF="000941.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="941">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01305930413-01305931693- -->
+<LI><A HREF="000942.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="942">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01305930413-01305935520- -->
+<LI><A HREF="000943.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="943">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01305930413-01305935608- -->
+<LI><A HREF="000944.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="944">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01305930413-01305935634- -->
+<LI><A HREF="000945.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="945">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01305930413-01305935714- -->
+<LI><A HREF="000946.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="946">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01305930413-01306010183- -->
+<LI><A HREF="000948.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="948">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01305930413-01306010688- -->
+<LI><A HREF="000949.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="949">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01305930413-01306011377- -->
+<LI><A HREF="000950.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="950">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+</UL>
+<!--0 01305930639- -->
+<LI><A HREF="000940.html">[Mageia-webteam] [Bug 1365] [New] URL field isn't shown in bug reports
+</A><A NAME="940">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01305982613- -->
+<LI><A HREF="000947.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="947">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<UL>
+<!--1 01305982613-01306331069- -->
+<LI><A HREF="000962.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="962">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01305982613-01306331069-01306794142- -->
+<LI><A HREF="001010.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1010">&nbsp;</A>
+<I>MacXi - Ideias Linux
+</I>
+
+<UL>
+<!--3 01305982613-01306331069-01306794142-01306825445- -->
+<LI><A HREF="001012.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1012">&nbsp;</A>
+<I>R&#233;mi Verschelde
+</I>
+
+<!--3 01305982613-01306331069-01306794142-01306825445-01306826314- -->
+<LI><A HREF="001013.html">[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
+</A><A NAME="1013">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01306015203- -->
+<LI><A HREF="000951.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="951">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306073919- -->
+<LI><A HREF="000952.html">[Mageia-webteam] [Bug 1386] [New] Add distrib links to first page
+</A><A NAME="952">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<UL>
+<!--1 01306073919-01306079517- -->
+<LI><A HREF="000953.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="953">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<!--1 01306073919-01306081484- -->
+<LI><A HREF="000954.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="954">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--1 01306073919-01306084561- -->
+<LI><A HREF="000955.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="955">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<!--1 01306073919-01306100158- -->
+<LI><A HREF="000956.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="956">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01306073919-01306104985- -->
+<LI><A HREF="000958.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="958">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+</UL>
+<!--0 01306101602- -->
+<LI><A HREF="000957.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="957">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306188005- -->
+<LI><A HREF="000959.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="959">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306252987- -->
+<LI><A HREF="000960.html">[Mageia-webteam] [Bug 1411] [New] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="960">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01306274403- -->
+<LI><A HREF="000961.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="961">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306360802- -->
+<LI><A HREF="000963.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="963">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306399127- -->
+<LI><A HREF="000964.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="964">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<UL>
+<!--1 01306399127-01306399879- -->
+<LI><A HREF="000965.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="965">&nbsp;</A>
+<I>Catalin Florin RUSSEN
+</I>
+
+<UL>
+<!--2 01306399127-01306399879-01306400206- -->
+<LI><A HREF="000966.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="966">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--1 01306399127-01306400318- -->
+<LI><A HREF="000967.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="967">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--2 01306399127-01306400318-01306401821- -->
+<LI><A HREF="000968.html">[Mageia-webteam] Access to the web svn repository
+</A><A NAME="968">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+</UL>
+</UL>
+<!--0 01306440296- -->
+<LI><A HREF="000978.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="978">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01306440528- -->
+<LI><A HREF="000979.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="979">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01306447202- -->
+<LI><A HREF="000980.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="980">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306458955- -->
+<LI><A HREF="000981.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A><A NAME="981">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01306539003- -->
+<LI><A HREF="001085.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1085">&nbsp;</A>
+<I>isadora
+</I>
+
+<!--0 01306543306- -->
+<LI><A HREF="001083.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1083">&nbsp;</A>
+<I>isadora
+</I>
+
+<UL>
+<!--1 01306543306-01306544460- -->
+<LI><A HREF="001084.html">[Mageia-webteam] Mageia-forum not reachable
+</A><A NAME="1084">&nbsp;</A>
+<I>isadora
+</I>
+
+</UL>
+<!--0 01306585293- -->
+<LI><A HREF="000982.html">[Mageia-webteam] [Bug 1457] [New] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="982">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01306585293-01306585312- -->
+<LI><A HREF="000983.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="983">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01306585293-01306585579- -->
+<LI><A HREF="000986.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="986">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01306585293-01306586346- -->
+<LI><A HREF="000987.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="987">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<!--1 01306585293-01306592462- -->
+<LI><A HREF="000989.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="989">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<!--1 01306585293-01306703985- -->
+<LI><A HREF="001001.html">[Mageia-webteam] [Bug 1457] Mirrors API mixes i586 and x86_64 mirrors
+</A><A NAME="1001">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01306585471- -->
+<LI><A HREF="000984.html">[Mageia-webteam] [Bug 1458] [New] URL mismatch between mirrors/api and system tools
+</A><A NAME="984">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01306585471-01306585489- -->
+<LI><A HREF="000985.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="985">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01306585471-01306589428- -->
+<LI><A HREF="000988.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="988">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<!--1 01306585471-01306703958- -->
+<LI><A HREF="001000.html">[Mageia-webteam] [Bug 1458] URL mismatch between mirrors/api and system tools
+</A><A NAME="1000">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01306620003- -->
+<LI><A HREF="000990.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="990">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306691146- -->
+<LI><A HREF="000991.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="991">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<!--0 01306691671- -->
+<LI><A HREF="000992.html">[Mageia-webteam] [Bug 1474] [New] Please add planent.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="992">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+<UL>
+<!--1 01306691671-01306694351- -->
+<LI><A HREF="000994.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="994">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01306691671-01306694481- -->
+<LI><A HREF="000995.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="995">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--1 01306691671-01306715275- -->
+<LI><A HREF="001003.html">[Mageia-webteam] [Bug 1474] Please add planet.mageia.org to the components list of the Website Product in bugzilla
+</A><A NAME="1003">&nbsp;</A>
+<I>Ahmad Samir
+</I>
+
+</UL>
+<!--0 01306693261- -->
+<LI><A HREF="000993.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="993">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01306695736- -->
+<LI><A HREF="000996.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="996">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01306699496- -->
+<LI><A HREF="000997.html">[Mageia-webteam] [Bug 1472] Subscribing to mageia feed with Liferea gives &quot;[...] this is a web page, not a feed&quot; error
+</A><A NAME="997">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<!--0 01306700931- -->
+<LI><A HREF="000998.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="998">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01306703541- -->
+<LI><A HREF="000999.html">[Mageia-webteam] [Bug 1472] Wrong content-type on atom feed
+</A><A NAME="999">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01306706402- -->
+<LI><A HREF="001002.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1002">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306758446- -->
+<LI><A HREF="001004.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1004">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01306762321- -->
+<LI><A HREF="001005.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1005">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01306766888- -->
+<LI><A HREF="001006.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A><A NAME="1006">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01306779150- -->
+<LI><A HREF="001007.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1007">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--1 01306779150-01306789288- -->
+<LI><A HREF="001008.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1008">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01306779150-01306789288-01306804474- -->
+<LI><A HREF="001011.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1011">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--3 01306779150-01306789288-01306804474-01306826905- -->
+<LI><A HREF="001086.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1086">&nbsp;</A>
+<I>isadora
+</I>
+
+<!--3 01306779150-01306789288-01306804474-01306828607- -->
+<LI><A HREF="001014.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1014">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01306779150-01306789288-01306804474-01306828607-01306832772- -->
+<LI><A HREF="001015.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1015">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01306779150-01306789288-01306804474-01306828607-01306832772-01306833535- -->
+<LI><A HREF="001016.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1016">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01306779150-01306789288-01306804474-01306828607-01306832772-01306833535-01306834456- -->
+<LI><A HREF="001087.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1087">&nbsp;</A>
+<I>isadora
+</I>
+
+<!--3 01306779150-01306789288-01306804474-01306828607-01306832772-01306833535-01306835206- -->
+<LI><A HREF="001017.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1017">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--3 01306779150-01306789288-01306804474-01306828607-01306832772-01306833535-01306835206-01306835939- -->
+<LI><A HREF="001018.html">[Mageia-webteam] Missing link to forums
+</A><A NAME="1018">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01306792802- -->
+<LI><A HREF="001009.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A><A NAME="1009">&nbsp;</A>
+<I>bugzilla-daemon at mageia.org
+</I>
+
+<!--0 01306858773- -->
+<LI><A HREF="001088.html">[Mageia-webteam] release-notes.html edits
+</A><A NAME="1088">&nbsp;</A>
+<I>Dennis Griffin
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue May 31 18:19:33 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Mon Jun 6 18:16:27 CEST 2011</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-November.txt.gz b/zarb-ml/mageia-webteam/2011-November.txt.gz
new file mode 100644
index 000000000..5a9b00088
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-November/001504.html b/zarb-ml/mageia-webteam/2011-November/001504.html
new file mode 100644
index 000000000..38c33718d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001504.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 966] Name check on identity should be more open
+ </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%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20111101210807.87CB247321%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="001505.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 966] Name check on identity should be more open</H1>
+ <B>JeanMichel DYDAK</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20111101210807.87CB247321%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 966] Name check on identity should be more open">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 1 22:08:07 CET 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001505.html">[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1504">[ date ]</a>
+ <a href="thread.html#1504">[ thread ]</a>
+ <a href="subject.html#1504">[ subject ]</a>
+ <a href="author.html#1504">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+
+JeanMichel DYDAK &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jean-michel at happy-tux.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jean-michel at happy-tux.com</A>
+
+--- Comment #3 from JeanMichel DYDAK &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jean-michel at happy-tux.com</A>&gt; 2011-11-01 22:08:06 CET ---
+Hi,
+
+Area [first name] completed with Jean-Michel
+Message: &quot;The first name supplied contains illegal characters&quot;.
+
+Area [surname] blank
+Message: &quot;The surname supplied contains illegal characters&quot;.
+
+Look like the bug is not solved.
+Second message does not correspond to the fact.
+
+--
+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>Next message: <A HREF="001505.html">[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1504">[ date ]</a>
+ <a href="thread.html#1504">[ thread ]</a>
+ <a href="subject.html#1504">[ subject ]</a>
+ <a href="author.html#1504">[ 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-November/001505.html b/zarb-ml/mageia-webteam/2011-November/001505.html
new file mode 100644
index 000000000..484994b73
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001505.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+ </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%203267%5D%20%5BNew%5D%20gdm%20fails%20to%20start%20in%2032%20bit%0A%20Mageia%20on%20old%20Pentium%204%20PCs%20%28Cauldron%20Mageia%202%29&In-Reply-To=%3Cbug-3267-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="001504.html">
+ <LINK REL="Next" HREF="001506.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)</H1>
+ <B>Ezequiel Partida</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203267%5D%20%5BNew%5D%20gdm%20fails%20to%20start%20in%2032%20bit%0A%20Mageia%20on%20old%20Pentium%204%20PCs%20%28Cauldron%20Mageia%202%29&In-Reply-To=%3Cbug-3267-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 4 16:17:13 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001504.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="001506.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1505">[ date ]</a>
+ <a href="thread.html#1505">[ thread ]</a>
+ <a href="subject.html#1505">[ subject ]</a>
+ <a href="author.html#1505">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3267">https://bugs.mageia.org/show_bug.cgi?id=3267</A>
+
+ Summary: gdm fails to start in 32 bit Mageia on old Pentium 4
+ PCs (Cauldron Mageia 2)
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">ezequiel_partida at hotmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ RPM Package: gdm-3.2.1.1-1.mga2.i586
+
+
+Description of problem:
+
+
+Mageia Cauldron GDM won't start, a sad face will appears &amp; sometime not even
+the sad face will start.
+
+Sometimes mageia does log in if autologin is enabled, but it won't work if
+autologin is disabled.
+
+If KDM is istalled, Mageia works just fine.,
+
+Version-Release number of selected component (if applicable):
+
+gdm-3.2.1.1-1.mga2.i586
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+
+1. Proceed with normal installation using Mageia 1 final CD with 32bit Mageia
+with GNOME 2.
+
+2. Updated Mageia 1 with Gnome2 to the latest updates using &quot; urpmi
+--auto-update -v &quot;
+
+3. Changed the repository to
+<A HREF="http://mageia.webconquest.com/distrib/cauldron/i586">http://mageia.webconquest.com/distrib/cauldron/i586</A>
+
+updated to the lates cauldron using &quot; urpmi --auto-update -v &quot;
+
+Once everything is updated restart.
+
+Sometimes mageia does log in if autologin is enabled, but it won't work if
+autologin is disabled.
+
+--
+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="001504.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="001506.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1505">[ date ]</a>
+ <a href="thread.html#1505">[ thread ]</a>
+ <a href="subject.html#1505">[ subject ]</a>
+ <a href="author.html#1505">[ 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-November/001506.html b/zarb-ml/mageia-webteam/2011-November/001506.html
new file mode 100644
index 000000000..26823314c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001506.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+ </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%203267%5D%20gdm%20fails%20to%20start%20in%2032%20bit%20Mageia%20on%0A%20old%20Pentium%204%20PCs%20%28Cauldron%20Mageia%202%29&In-Reply-To=%3C20111104152325.0A80147380%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="001505.html">
+ <LINK REL="Next" HREF="001507.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203267%5D%20gdm%20fails%20to%20start%20in%2032%20bit%20Mageia%20on%0A%20old%20Pentium%204%20PCs%20%28Cauldron%20Mageia%202%29&In-Reply-To=%3C20111104152325.0A80147380%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 4 16:23:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001505.html">[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI>Next message: <A HREF="001507.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1506">[ date ]</a>
+ <a href="thread.html#1506">[ thread ]</a>
+ <a href="subject.html#1506">[ subject ]</a>
+ <a href="author.html#1506">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3267">https://bugs.mageia.org/show_bug.cgi?id=3267</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
+----------------------------------------------------------------------------
+ Product|Infrastructure |Mageia
+ Version|unspecified |Cauldron
+ Component|Bugzilla |RPM Packages
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</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="001505.html">[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI>Next message: <A HREF="001507.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1506">[ date ]</a>
+ <a href="thread.html#1506">[ thread ]</a>
+ <a href="subject.html#1506">[ subject ]</a>
+ <a href="author.html#1506">[ 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-November/001507.html b/zarb-ml/mageia-webteam/2011-November/001507.html
new file mode 100644
index 000000000..e24728987
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001507.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+ </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%203267%5D%20gdm%20fails%20to%20start%20in%2032%20bit%20Mageia%20on%0A%20old%20Pentium%204%20PCs%20%28Cauldron%20Mageia%202%29&In-Reply-To=%3C20111104152356.B8A834737C%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="001506.html">
+ <LINK REL="Next" HREF="001508.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203267%5D%20gdm%20fails%20to%20start%20in%2032%20bit%20Mageia%20on%0A%20old%20Pentium%204%20PCs%20%28Cauldron%20Mageia%202%29&In-Reply-To=%3C20111104152356.B8A834737C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 4 16:23:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001506.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI>Next message: <A HREF="001508.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1507">[ date ]</a>
+ <a href="thread.html#1507">[ thread ]</a>
+ <a href="subject.html#1507">[ subject ]</a>
+ <a href="author.html#1507">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3267">https://bugs.mageia.org/show_bug.cgi?id=3267</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">mageia-webteam at mageia.org</A>, |
+ |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</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="001506.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI>Next message: <A HREF="001508.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1507">[ date ]</a>
+ <a href="thread.html#1507">[ thread ]</a>
+ <a href="subject.html#1507">[ subject ]</a>
+ <a href="author.html#1507">[ 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-November/001508.html b/zarb-ml/mageia-webteam/2011-November/001508.html
new file mode 100644
index 000000000..9d9d1f999
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001508.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111105213821.34626472A2%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="001507.html">
+ <LINK REL="Next" HREF="001509.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111105213821.34626472A2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Nov 5 22:38:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001507.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI>Next message: <A HREF="001509.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1508">[ date ]</a>
+ <a href="thread.html#1508">[ thread ]</a>
+ <a href="subject.html#1508">[ subject ]</a>
+ <a href="author.html#1508">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |WONTFIX
+
+--- Comment #17 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-11-05 22:38:21 CET ---
+All of the current triagers who commented here or on the ml, think it is good
+to add a comment.
+
+Leuhmanu is improving a script to add a good comment,that'll say something
+like: &quot;This particular issue has already been reported in our bug tracking
+system, but please feel free to report any further bugs you find. In general it
+is welcome to search for existing reports first to avoid filing duplicates.&quot;
+
+Closing this bug report
+
+--
+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="001507.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A></li>
+ <LI>Next message: <A HREF="001509.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1508">[ date ]</a>
+ <a href="thread.html#1508">[ thread ]</a>
+ <a href="subject.html#1508">[ subject ]</a>
+ <a href="author.html#1508">[ 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-November/001509.html b/zarb-ml/mageia-webteam/2011-November/001509.html
new file mode 100644
index 000000000..75230d2cb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001509.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+ </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%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111107230538.93FF147473%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="001508.html">
+ <LINK REL="Next" HREF="001510.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111107230538.93FF147473%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 8 00:05:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001508.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001510.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1509">[ date ]</a>
+ <a href="thread.html#1509">[ thread ]</a>
+ <a href="subject.html#1509">[ subject ]</a>
+ <a href="author.html#1509">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2360">https://bugs.mageia.org/show_bug.cgi?id=2360</A>
+
+--- Comment #6 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-11-08 01:05:37 CET ---
+thanks I close this one.
+
+--
+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="001508.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001510.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1509">[ date ]</a>
+ <a href="thread.html#1509">[ thread ]</a>
+ <a href="subject.html#1509">[ subject ]</a>
+ <a href="author.html#1509">[ 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-November/001510.html b/zarb-ml/mageia-webteam/2011-November/001510.html
new file mode 100644
index 000000000..a8fd9bcda
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001510.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+ </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%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111107230608.9FB2447476%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="001509.html">
+ <LINK REL="Next" HREF="001511.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111107230608.9FB2447476%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 8 00:06:08 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001509.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001511.html">[Mageia-webteam] [Bug 3287] [New] Add header on the guided template
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1510">[ date ]</a>
+ <a href="thread.html#1510">[ thread ]</a>
+ <a href="subject.html#1510">[ subject ]</a>
+ <a href="author.html#1510">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2360">https://bugs.mageia.org/show_bug.cgi?id=2360</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |WORKSFORME
+
+--- Comment #7 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-11-08 01:06:08 CET ---
+arg
+
+--
+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="001509.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001511.html">[Mageia-webteam] [Bug 3287] [New] Add header on the guided template
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1510">[ date ]</a>
+ <a href="thread.html#1510">[ thread ]</a>
+ <a href="subject.html#1510">[ subject ]</a>
+ <a href="author.html#1510">[ 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-November/001511.html b/zarb-ml/mageia-webteam/2011-November/001511.html
new file mode 100644
index 000000000..1d9f36fc0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001511.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3287] [New] Add header on the guided template
+ </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%203287%5D%20%5BNew%5D%20Add%20header%20on%20the%20guided%20template&In-Reply-To=%3Cbug-3287-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="001510.html">
+ <LINK REL="Next" HREF="001551.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3287] [New] Add header on the guided template</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203287%5D%20%5BNew%5D%20Add%20header%20on%20the%20guided%20template&In-Reply-To=%3Cbug-3287-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3287] [New] Add header on the guided template">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 8 00:11:20 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001510.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001551.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1511">[ date ]</a>
+ <a href="thread.html#1511">[ thread ]</a>
+ <a href="subject.html#1511">[ subject ]</a>
+ <a href="author.html#1511">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3287">https://bugs.mageia.org/show_bug.cgi?id=3287</A>
+
+ Summary: Add header on the guided template
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ 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">manuel at hiebel.eu</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+If you go here: <A HREF="https://bugs.mageia.org/enter_bug.cgi?product=Infrastructure">https://bugs.mageia.org/enter_bug.cgi?product=Infrastructure</A>
+you see &quot;Before reporting a bug, please read the bug writing guidelines, please
+look at the list of most frequently reported bugs, and please search for the
+bug. &quot;
+
+Seems it was remove from the guided format.
+
+--
+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="001510.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001551.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1511">[ date ]</a>
+ <a href="thread.html#1511">[ thread ]</a>
+ <a href="subject.html#1511">[ subject ]</a>
+ <a href="author.html#1511">[ 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-November/001512.html b/zarb-ml/mageia-webteam/2011-November/001512.html
new file mode 100644
index 000000000..ddd1f87fc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001512.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl
+ </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%203288%5D%20%5BNew%5D%20Add%20an%20cronjob%20for%20collectstats.pl&In-Reply-To=%3Cbug-3288-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="001551.html">
+ <LINK REL="Next" HREF="001513.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203288%5D%20%5BNew%5D%20Add%20an%20cronjob%20for%20collectstats.pl&In-Reply-To=%3Cbug-3288-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 8 00:29:25 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001551.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A></li>
+ <LI>Next message: <A HREF="001513.html">[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1512">[ date ]</a>
+ <a href="thread.html#1512">[ thread ]</a>
+ <a href="subject.html#1512">[ subject ]</a>
+ <a href="author.html#1512">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3288">https://bugs.mageia.org/show_bug.cgi?id=3288</A>
+
+ Summary: Add an cronjob for collectstats.pl
+ 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">manuel at hiebel.eu</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>,
+ <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Hi, it could be useful to enable this one script:
+/usr/share/bugzilla/bin/collectstats.pl
+
+So Bugsquad/QA/Packagers/other can do some great charts an see the activity.
+
+<A HREF="http://www.bugzilla.org/docs/tip/en/html/api/collectstats.html">http://www.bugzilla.org/docs/tip/en/html/api/collectstats.html</A>
+<A HREF="http://www.bugzilla.org/docs/tip/en/html/extraconfig.html">http://www.bugzilla.org/docs/tip/en/html/extraconfig.html</A>
+
+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 on the CC list for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001551.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A></li>
+ <LI>Next message: <A HREF="001513.html">[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1512">[ date ]</a>
+ <a href="thread.html#1512">[ thread ]</a>
+ <a href="subject.html#1512">[ subject ]</a>
+ <a href="author.html#1512">[ 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-November/001513.html b/zarb-ml/mageia-webteam/2011-November/001513.html
new file mode 100644
index 000000000..90455dead
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001513.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php
+ </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%203299%5D%20%5BNew%5D%20undefined%20wsDomain%20in%0A%09LdapAuthentication.php&In-Reply-To=%3Cbug-3299-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="001512.html">
+ <LINK REL="Next" HREF="001514.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203299%5D%20%5BNew%5D%20undefined%20wsDomain%20in%0A%09LdapAuthentication.php&In-Reply-To=%3Cbug-3299-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 8 19:19:07 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001512.html">[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl
+</A></li>
+ <LI>Next message: <A HREF="001514.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1513">[ date ]</a>
+ <a href="thread.html#1513">[ thread ]</a>
+ <a href="subject.html#1513">[ subject ]</a>
+ <a href="author.html#1513">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3299">https://bugs.mageia.org/show_bug.cgi?id=3299</A>
+
+ Summary: undefined wsDomain in LdapAuthentication.php
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="https://wiki.mageia.org/en/Special:Preferences">https://wiki.mageia.org/en/Special:Preferences</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">rdalverny at gmail.com</A>
+
+
+Description of problem:
+The following appears in the wiki when going to one's preferences page:
+
+Notice: Undefined index: wsDomain in
+/usr/share/mediawiki/extensions/LdapAuthentication/LdapAuthentication.php on
+line 614
+Notice: Undefined index: wsDomain in
+/usr/share/mediawiki/extensions/LdapAuthentication/LdapAuthentication.php on
+line 618
+
+Steps to Reproduce:
+1. Log in the wiki
+2. Go to <A HREF="https://wiki.mageia.org/en/Special:Preferences">https://wiki.mageia.org/en/Special:Preferences</A>
+3. Error message appears at the top
+
+--
+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="001512.html">[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl
+</A></li>
+ <LI>Next message: <A HREF="001514.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1513">[ date ]</a>
+ <a href="thread.html#1513">[ thread ]</a>
+ <a href="subject.html#1513">[ subject ]</a>
+ <a href="author.html#1513">[ 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-November/001514.html b/zarb-ml/mageia-webteam/2011-November/001514.html
new file mode 100644
index 000000000..37a4cc573
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001514.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+ </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%203299%5D%20undefined%20wsDomain%20in%0A%09LdapAuthentication.php&In-Reply-To=%3C20111108183936.E79F147425%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="001513.html">
+ <LINK REL="Next" HREF="001515.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203299%5D%20undefined%20wsDomain%20in%0A%09LdapAuthentication.php&In-Reply-To=%3C20111108183936.E79F147425%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 8 19:39:36 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001513.html">[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI>Next message: <A HREF="001515.html">[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1514">[ date ]</a>
+ <a href="thread.html#1514">[ thread ]</a>
+ <a href="subject.html#1514">[ subject ]</a>
+ <a href="author.html#1514">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3299">https://bugs.mageia.org/show_bug.cgi?id=3299</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-11-08 20:39:35 CET ---
+It seems this is not even resolved upstream:
+<A HREF="http://www.mediawiki.org/wiki/Extension_talk:LDAP_Authentication#Undefined_Index:_ws_Domain_error.3F_7706">http://www.mediawiki.org/wiki/Extension_talk:LDAP_Authentication#Undefined_Index:_ws_Domain_error.3F_7706</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="001513.html">[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI>Next message: <A HREF="001515.html">[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1514">[ date ]</a>
+ <a href="thread.html#1514">[ thread ]</a>
+ <a href="subject.html#1514">[ subject ]</a>
+ <a href="author.html#1514">[ 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-November/001515.html b/zarb-ml/mageia-webteam/2011-November/001515.html
new file mode 100644
index 000000000..37af30c9b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001515.html
@@ -0,0 +1,118 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar
+ </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%203305%5D%20%5BNew%5D%20Windows%20Decorations%20Get%20Streched%0A%20and%20looses%20buttons%20and%20titlebar&In-Reply-To=%3Cbug-3305-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="001514.html">
+ <LINK REL="Next" HREF="001516.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar</H1>
+ <B>Ezequiel Partida</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203305%5D%20%5BNew%5D%20Windows%20Decorations%20Get%20Streched%0A%20and%20looses%20buttons%20and%20titlebar&In-Reply-To=%3Cbug-3305-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 9 21:08:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001514.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI>Next message: <A HREF="001516.html">[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1515">[ date ]</a>
+ <a href="thread.html#1515">[ thread ]</a>
+ <a href="subject.html#1515">[ subject ]</a>
+ <a href="author.html#1515">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3305">https://bugs.mageia.org/show_bug.cgi?id=3305</A>
+
+ Summary: Windows Decorations Get Streched and looses buttons
+ and titlebar
+ Product: Infrastructure
+ Version: unspecified
+ Platform: x86_64
+ 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">ezequiel_partida at hotmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem:
+
+Many Windows decorations don't work correctly with compiz installed, I haven't
+tried it with KDE4 coposition yet. Not all windows themes fail.
+
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+Open System Settings, Workspace Appearance, Windows Decorations.
+
+Choose another Windows decoration theme. I Chosed oxigen and click apply.
+
+3.Move the window using windows wobbling a little bit, then click maximize to
+maximize the window.. I loose the buttons and title bar, the window also get's
+larger than the screen.
+
+This happens with with most windows Decorations I downloaded by pressing Get
+New Decorations.
+
+All Default Decorations work fine except Oxygen.
+
+I will try and see if KDE4 effects also cause this problem.
+
+
+Steps to Reproduce:
+
+1.Open System Settings, Workspace Appearance, Windows Decorations.
+
+2.Choose another Windows decoration theme. I Chosed oxigen and click apply.
+
+3.Move the window using windows wobbling a little bit, then click maximize to
+maximize the window.. I loose the buttons and title bar, the window also get's
+larger than the screen.
+
+4. This happens only with Oxigen Decoration and many downloaded. All other
+default windows decorations seem to work fine.
+
+--
+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="001514.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI>Next message: <A HREF="001516.html">[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1515">[ date ]</a>
+ <a href="thread.html#1515">[ thread ]</a>
+ <a href="subject.html#1515">[ subject ]</a>
+ <a href="author.html#1515">[ 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-November/001516.html b/zarb-ml/mageia-webteam/2011-November/001516.html
new file mode 100644
index 000000000..149c2e53e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001516.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar
+ </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%203305%5D%20Windows%20Decorations%20Get%20Streched%20and%0A%20looses%20buttons%20and%20titlebar&In-Reply-To=%3C20111109201251.89517474DA%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="001515.html">
+ <LINK REL="Next" HREF="001517.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203305%5D%20Windows%20Decorations%20Get%20Streched%20and%0A%20looses%20buttons%20and%20titlebar&In-Reply-To=%3C20111109201251.89517474DA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 9 21:12:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001515.html">[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar
+</A></li>
+ <LI>Next message: <A HREF="001517.html">[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1516">[ date ]</a>
+ <a href="thread.html#1516">[ thread ]</a>
+ <a href="subject.html#1516">[ subject ]</a>
+ <a href="author.html#1516">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3305">https://bugs.mageia.org/show_bug.cgi?id=3305</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.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> |
+
+--
+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="001515.html">[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar
+</A></li>
+ <LI>Next message: <A HREF="001517.html">[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1516">[ date ]</a>
+ <a href="thread.html#1516">[ thread ]</a>
+ <a href="subject.html#1516">[ subject ]</a>
+ <a href="author.html#1516">[ 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-November/001517.html b/zarb-ml/mageia-webteam/2011-November/001517.html
new file mode 100644
index 000000000..14d2b015e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001517.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+ </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%203333%5D%20%5BNew%5D%20Test%20bug%20to%20see%20whether%20Bugzilla%0A%20finally%20learned%20to%20find%20all%20persons%20by%20nick%20only&In-Reply-To=%3Cbug-3333-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="001516.html">
+ <LINK REL="Next" HREF="001518.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203333%5D%20%5BNew%5D%20Test%20bug%20to%20see%20whether%20Bugzilla%0A%20finally%20learned%20to%20find%20all%20persons%20by%20nick%20only&In-Reply-To=%3Cbug-3333-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 13 19:01:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001516.html">[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar
+</A></li>
+ <LI>Next message: <A HREF="001518.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1517">[ date ]</a>
+ <a href="thread.html#1517">[ thread ]</a>
+ <a href="subject.html#1517">[ subject ]</a>
+ <a href="author.html#1517">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3333">https://bugs.mageia.org/show_bug.cgi?id=3333</A>
+
+ Summary: Test bug to see whether Bugzilla finally learned to
+ find all persons by nick only
+ 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">marja11 at xs4all.nl</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>,
+ <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+When I started working with Bugzilla, it was impossible to put somebody's nick
+in the cc of a bug, or to assign it to the nick of a packager, if that nick
+wasn't also part of the e-mail address. Bugzilla just wouldn't find the right
+person.
+
+Just now I heard that the list of e-mail addresses of packagers that I use to
+find the e-mail address of packagers who don't have their nicks in their
+addresses will probably be removed.
+
+Trying to cc tv, blino and wally, because their nicks didn't work in Bugzilla
+before
+
+Also cc'ing Florian, because he thinks the nicks alone are enough (and I hope
+he is right!)
+
+
+blino matched Olivier Blin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia at blino.org</A>&gt;
+doktor5000 matched Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt;
+tv was too short for substring match (minimum 3 characters)
+wally did not match anything
+
+Well, for blino it works now, maybe that was my mistake before.
+
+*tv and wally still don't match anything*
+
+I now resubmit, but with only Florian in the cc
+
+--
+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="001516.html">[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar
+</A></li>
+ <LI>Next message: <A HREF="001518.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1517">[ date ]</a>
+ <a href="thread.html#1517">[ thread ]</a>
+ <a href="subject.html#1517">[ subject ]</a>
+ <a href="author.html#1517">[ 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-November/001518.html b/zarb-ml/mageia-webteam/2011-November/001518.html
new file mode 100644
index 000000000..b8e706964
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001518.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+ </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%203333%5D%20Test%20bug%20to%20see%20whether%20Bugzilla%0A%20finally%20learned%20to%20find%20all%20persons%20by%20nick%20only&In-Reply-To=%3C20111113194238.2F974473EB%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="001517.html">
+ <LINK REL="Next" HREF="001519.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203333%5D%20Test%20bug%20to%20see%20whether%20Bugzilla%0A%20finally%20learned%20to%20find%20all%20persons%20by%20nick%20only&In-Reply-To=%3C20111113194238.2F974473EB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 13 20:42:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001517.html">[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI>Next message: <A HREF="001519.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1518">[ date ]</a>
+ <a href="thread.html#1518">[ thread ]</a>
+ <a href="subject.html#1518">[ subject ]</a>
+ <a href="author.html#1518">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3333">https://bugs.mageia.org/show_bug.cgi?id=3333</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>
+
+--- Comment #1 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2011-11-13 21:42:37 CET ---
+Take a look at the error message for tv's nick ;)
+tvignaud would have worked, or even Thierry ( you get a list then to select
+from if there are more accounts which match that name)
+
+--
+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="001517.html">[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI>Next message: <A HREF="001519.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1518">[ date ]</a>
+ <a href="thread.html#1518">[ thread ]</a>
+ <a href="subject.html#1518">[ subject ]</a>
+ <a href="author.html#1518">[ 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-November/001519.html b/zarb-ml/mageia-webteam/2011-November/001519.html
new file mode 100644
index 000000000..44e182a2c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001519.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+ </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%203333%5D%20Test%20bug%20to%20see%20whether%20Bugzilla%0A%20finally%20learned%20to%20find%20all%20persons%20by%20nick%20only&In-Reply-To=%3C20111113195917.05696472DE%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="001518.html">
+ <LINK REL="Next" HREF="001520.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203333%5D%20Test%20bug%20to%20see%20whether%20Bugzilla%0A%20finally%20learned%20to%20find%20all%20persons%20by%20nick%20only&In-Reply-To=%3C20111113195917.05696472DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 13 20:59:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001518.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI>Next message: <A HREF="001520.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1519">[ date ]</a>
+ <a href="thread.html#1519">[ thread ]</a>
+ <a href="subject.html#1519">[ subject ]</a>
+ <a href="author.html#1519">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3333">https://bugs.mageia.org/show_bug.cgi?id=3333</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-11-13 21:59:16 CET ---
+You're right, that was about my only giving 2 characters, still, where would I
+have found a 3rd character?
+
+How does <A HREF="http://pkgsubmit.mageia.org/data/maintdb.txt">http://pkgsubmit.mageia.org/data/maintdb.txt</A> tell me that tv = thierry
+= vignaud?
+
+I would never have known, hadn't I be able to look that up in the list you want
+to remove.
+
+End of last week, in the same maintdb, I found wally was the maintainer I
+needed. Without your list, I wouldn't have managed to assign or cc to him.
+
+--
+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="001518.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI>Next message: <A HREF="001520.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1519">[ date ]</a>
+ <a href="thread.html#1519">[ thread ]</a>
+ <a href="subject.html#1519">[ subject ]</a>
+ <a href="author.html#1519">[ 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-November/001520.html b/zarb-ml/mageia-webteam/2011-November/001520.html
new file mode 100644
index 000000000..f6b45f230
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001520.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+ </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%203333%5D%20Test%20bug%20to%20see%20whether%20Bugzilla%0A%20finally%20learned%20to%20find%20all%20persons%20by%20nick%20only&In-Reply-To=%3C20111113200643.6C9B046D75%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="001519.html">
+ <LINK REL="Next" HREF="001521.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203333%5D%20Test%20bug%20to%20see%20whether%20Bugzilla%0A%20finally%20learned%20to%20find%20all%20persons%20by%20nick%20only&In-Reply-To=%3C20111113200643.6C9B046D75%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 13 21:06:43 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001519.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI>Next message: <A HREF="001521.html">[Mageia-webteam] New wiki finally online
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1520">[ date ]</a>
+ <a href="thread.html#1520">[ thread ]</a>
+ <a href="subject.html#1520">[ subject ]</a>
+ <a href="author.html#1520">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3333">https://bugs.mageia.org/show_bug.cgi?id=3333</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.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> |
+ |, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A> |
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-11-13 21:06:43 CET ---
+Well I you want I can make a list (but not public as requested by some people)
+
+(be careful when you write a real mail address in a comment... )
+
+--
+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="001519.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI>Next message: <A HREF="001521.html">[Mageia-webteam] New wiki finally online
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1520">[ date ]</a>
+ <a href="thread.html#1520">[ thread ]</a>
+ <a href="subject.html#1520">[ subject ]</a>
+ <a href="author.html#1520">[ 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-November/001521.html b/zarb-ml/mageia-webteam/2011-November/001521.html
new file mode 100644
index 000000000..bece7762b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001521.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New wiki finally online
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20wiki%20finally%20online&In-Reply-To=%3C41297859.2nCOgo1cJr%40beteigeuze.oli-home%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001520.html">
+ <LINK REL="Next" HREF="001522.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New wiki finally online</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20wiki%20finally%20online&In-Reply-To=%3C41297859.2nCOgo1cJr%40beteigeuze.oli-home%3E"
+ TITLE="[Mageia-webteam] New wiki finally online">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Mon Nov 14 18:35:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001520.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI>Next message: <A HREF="001522.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1521">[ date ]</a>
+ <a href="thread.html#1521">[ thread ]</a>
+ <a href="subject.html#1521">[ subject ]</a>
+ <a href="author.html#1521">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>After quite some work in the last weeks the new wiki is finally available!
+
+Check it out at <A HREF="https://wiki.mageia.org">https://wiki.mageia.org</A>
+
+Until now only the English wiki is online, other will follow soon.
+
+We did import all (or most) of the contents from the old wiki and tried to
+bring some structure into it.
+
+As you can see, there is almost no documentation for the end user till now but
+the documentation team will start changing that.
+If you would like to help us on that, just join the doc team in its meeting
+tommorow at 19.00 UTC in #mageia-doc on the Freenode irc netwoork.
+
+And please have a look at
+<A HREF="https://wiki.mageia.org/en/Wiki_and_Documentation#Page_naming">https://wiki.mageia.org/en/Wiki_and_Documentation#Page_naming</A>
+before starting to create pages on the new wiki.
+We do want to keep some kind of order in it...
+
+ee also the blog post about it on <A HREF="http://blog.mageia.org/en/">http://blog.mageia.org/en/</A>
+
+
+Cheers,
+
+Oliver
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001520.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A></li>
+ <LI>Next message: <A HREF="001522.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1521">[ date ]</a>
+ <a href="thread.html#1521">[ thread ]</a>
+ <a href="subject.html#1521">[ subject ]</a>
+ <a href="author.html#1521">[ 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-November/001522.html b/zarb-ml/mageia-webteam/2011-November/001522.html
new file mode 100644
index 000000000..96a844253
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001522.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in 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%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111116165355.1528444270%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="001521.html">
+ <LINK REL="Next" HREF="001523.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111116165355.1528444270%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 16 17:53:55 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001521.html">[Mageia-webteam] New wiki finally online
+</A></li>
+ <LI>Next message: <A HREF="001523.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1522">[ date ]</a>
+ <a href="thread.html#1522">[ thread ]</a>
+ <a href="subject.html#1522">[ subject ]</a>
+ <a href="author.html#1522">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1118">https://bugs.mageia.org/show_bug.cgi?id=1118</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Component|Others |Bugzilla
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="001521.html">[Mageia-webteam] New wiki finally online
+</A></li>
+ <LI>Next message: <A HREF="001523.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1522">[ date ]</a>
+ <a href="thread.html#1522">[ thread ]</a>
+ <a href="subject.html#1522">[ subject ]</a>
+ <a href="author.html#1522">[ 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-November/001523.html b/zarb-ml/mageia-webteam/2011-November/001523.html
new file mode 100644
index 000000000..0dac8a0fe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001523.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in 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%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111116171429.B0E81474DE%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="001522.html">
+ <LINK REL="Next" HREF="001524.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla</H1>
+ <B>Dimitrios Glentadakis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111116171429.B0E81474DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 16 18:14:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001522.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001524.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1523">[ date ]</a>
+ <a href="thread.html#1523">[ thread ]</a>
+ <a href="subject.html#1523">[ subject ]</a>
+ <a href="author.html#1523">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1118">https://bugs.mageia.org/show_bug.cgi?id=1118</A>
+
+Dimitrios Glentadakis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dglent at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dglent at gmail.com</A>
+
+--- Comment #4 from Dimitrios Glentadakis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dglent at gmail.com</A>&gt; 2011-11-16 18:14:29 CET ---
+I would like to use this to cc bugs to the ml of my language (el) .
+
+--
+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="001522.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001524.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1523">[ date ]</a>
+ <a href="thread.html#1523">[ thread ]</a>
+ <a href="subject.html#1523">[ subject ]</a>
+ <a href="author.html#1523">[ 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-November/001524.html b/zarb-ml/mageia-webteam/2011-November/001524.html
new file mode 100644
index 000000000..0ed53a66d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001524.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in 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%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111116224502.3D9A54757E%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="001523.html">
+ <LINK REL="Next" HREF="001525.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111116224502.3D9A54757E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 16 23:45:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001523.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001525.html">[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1524">[ date ]</a>
+ <a href="thread.html#1524">[ thread ]</a>
+ <a href="subject.html#1524">[ subject ]</a>
+ <a href="author.html#1524">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1118">https://bugs.mageia.org/show_bug.cgi?id=1118</A>
+
+andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>
+
+--- Comment #5 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2011-11-16 23:45:01 CET ---
+maybe add [languge-code] in the bug summary
+e.g. [el] for Greek
+
+Then filter the i18n-ml messages received by the language code in the subject
+
+--
+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="001523.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001525.html">[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1524">[ date ]</a>
+ <a href="thread.html#1524">[ thread ]</a>
+ <a href="subject.html#1524">[ subject ]</a>
+ <a href="author.html#1524">[ 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-November/001525.html b/zarb-ml/mageia-webteam/2011-November/001525.html
new file mode 100644
index 000000000..356eb7992
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001525.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3378] [New] new wiki graphical problems
+ </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%203378%5D%20%5BNew%5D%20new%20wiki%20graphical%20problems&In-Reply-To=%3Cbug-3378-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="001524.html">
+ <LINK REL="Next" HREF="001533.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems</H1>
+ <B>Claire Revillet</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203378%5D%20%5BNew%5D%20new%20wiki%20graphical%20problems&In-Reply-To=%3Cbug-3378-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Nov 17 12:49:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001524.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001533.html">[Mageia-webteam] [Bug 3378] new wiki graphical problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1525">[ date ]</a>
+ <a href="thread.html#1525">[ thread ]</a>
+ <a href="subject.html#1525">[ subject ]</a>
+ <a href="author.html#1525">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3378">https://bugs.mageia.org/show_bug.cgi?id=3378</A>
+
+ Summary: new wiki graphical problems
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">grenoya at zarb.org</A>
+
+
+I find 2 little problems in the &quot;graphical&quot; part of the new wiki.
+I create here just 1 ticket bug if you wwant, I'll split.
+
+1. There is no favicon
+
+2. Maybe we could have the mageia top bar as on the web site and the bugzilla
+(or maybe it is not technically possible) ?
+
+--
+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="001524.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001533.html">[Mageia-webteam] [Bug 3378] new wiki graphical problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1525">[ date ]</a>
+ <a href="thread.html#1525">[ thread ]</a>
+ <a href="subject.html#1525">[ subject ]</a>
+ <a href="author.html#1525">[ 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-November/001526.html b/zarb-ml/mageia-webteam/2011-November/001526.html
new file mode 100644
index 000000000..d76f9370b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001526.html
@@ -0,0 +1,114 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BNew%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3Cbug-3381-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="001533.html">
+ <LINK REL="Next" HREF="001527.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BNew%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3Cbug-3381-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 01:54:15 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001533.html">[Mageia-webteam] [Bug 3378] new wiki graphical problems
+</A></li>
+ <LI>Next message: <A HREF="001527.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1526">[ date ]</a>
+ <a href="thread.html#1526">[ thread ]</a>
+ <a href="subject.html#1526">[ subject ]</a>
+ <a href="author.html#1526">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+ Summary: [WISH] At least have this under consideration as this
+ is a great idea how to let experienced people create
+ their own iso &amp; then boot it with much less issues
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://en.opensuse.org/Portal:SUSE_Studio">http://en.opensuse.org/Portal:SUSE_Studio</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">kristoffer.grundstrom1983 at gmail.com</A>
+
+
+I saw this when I googled OpenSuSe &amp; went to their site to see what OpenSuses
+Studio is offering new people &amp; I think that this is a brilliant idea in the
+future.
+
+Here are the steps on what I suggest:
+
+1. Just to make sure that my idea works in theory, check if your Java &amp;
+Flash-plugins are working in your desired web-browser.
+2. Now, as an example go to <A HREF="http://mageiatudio.org/appliance/create_new">http://mageiatudio.org/appliance/create_new</A> with
+your desired web-browser.
+3. Choose a base template as displayed here in the OpenSUSE-version.
+4. Select your architecture.
+5. Name your appliance [I named it Kristoffer's Gnome-desktop as an example]
+(that could be changed later if wanted).
+6. Click the button called &quot;Create appliance&quot; or whatever it would be called in
+Mageia.
+7. Wait for the appliance to be created.
+8. The example-result is shown in the attached picture.
+9. Click the link that says &quot;Switch to the Software tab to continue &#187;&quot; to
+continue.
+10. Add any repositories if wished for.
+11. Upload any RPM's if needed.
+12. If you need some more official RPM's go ahead and add those as well from
+the search-hits.
+13. Click on the upper link called Configuration.
+14. Choose language, keyboard layout, region, timezone.
+15. Choose what Network-setting you'd like.
+16. Click Personalize &amp; change to whatever logo &amp; background you'd like.
+17. Click Startup &amp; choose which runlevel to start with as default.
+18. I hope you'll get the picture of my idea now......
+19. If we'll take in consideration that you're done creating the iso, let's
+download it &amp; burn it using unetbootin or dd-method.
+20. Burn the iso &amp; boot 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 the assignee for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001533.html">[Mageia-webteam] [Bug 3378] new wiki graphical problems
+</A></li>
+ <LI>Next message: <A HREF="001527.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1526">[ date ]</a>
+ <a href="thread.html#1526">[ thread ]</a>
+ <a href="subject.html#1526">[ subject ]</a>
+ <a href="author.html#1526">[ 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-November/001527.html b/zarb-ml/mageia-webteam/2011-November/001527.html
new file mode 100644
index 000000000..5984913eb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001527.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118005457.333EB474F2%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="001526.html">
+ <LINK REL="Next" HREF="001528.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118005457.333EB474F2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 01:54:57 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001526.html">[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001528.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1527">[ date ]</a>
+ <a href="thread.html#1527">[ thread ]</a>
+ <a href="subject.html#1527">[ subject ]</a>
+ <a href="author.html#1527">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #1 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2011-11-18 02:54:57 CET ---
+Created attachment 1078
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=1078">https://bugs.mageia.org/attachment.cgi?id=1078</A>
+Here's my created appliance
+
+--
+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="001526.html">[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001528.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1527">[ date ]</a>
+ <a href="thread.html#1527">[ thread ]</a>
+ <a href="subject.html#1527">[ subject ]</a>
+ <a href="author.html#1527">[ 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-November/001528.html b/zarb-ml/mageia-webteam/2011-November/001528.html
new file mode 100644
index 000000000..a7875ec2a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001528.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118005617.440A3474F4%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="001527.html">
+ <LINK REL="Next" HREF="001529.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118005617.440A3474F4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 01:56:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001527.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001529.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1528">[ date ]</a>
+ <a href="thread.html#1528">[ thread ]</a>
+ <a href="subject.html#1528">[ subject ]</a>
+ <a href="author.html#1528">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #2 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2011-11-18 01:56:17 CET ---
+Here's a Youtube-video to show you how OpenSUSE does this:
+
+<A HREF="http://www.youtube.com/watch?v=PPBpPmiBY1o">http://www.youtube.com/watch?v=PPBpPmiBY1o</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="001527.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001529.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1528">[ date ]</a>
+ <a href="thread.html#1528">[ thread ]</a>
+ <a href="subject.html#1528">[ subject ]</a>
+ <a href="author.html#1528">[ 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-November/001529.html b/zarb-ml/mageia-webteam/2011-November/001529.html
new file mode 100644
index 000000000..96ee4f650
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001529.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118010750.99E6B4750E%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="001528.html">
+ <LINK REL="Next" HREF="001530.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118010750.99E6B4750E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 02:07:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001528.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001530.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1529">[ date ]</a>
+ <a href="thread.html#1529">[ thread ]</a>
+ <a href="subject.html#1529">[ subject ]</a>
+ <a href="author.html#1529">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Attachment #1078|Here's my created appliance |Here's a picture of my
+ description| |created appliance
+
+--
+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="001528.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001530.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1529">[ date ]</a>
+ <a href="thread.html#1529">[ thread ]</a>
+ <a href="subject.html#1529">[ subject ]</a>
+ <a href="author.html#1529">[ 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-November/001530.html b/zarb-ml/mageia-webteam/2011-November/001530.html
new file mode 100644
index 000000000..73a98a933
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001530.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118014901.08333474F0%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="001529.html">
+ <LINK REL="Next" HREF="001531.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Kamil R</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118014901.08333474F0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 02:49:01 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001529.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001531.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1530">[ date ]</a>
+ <a href="thread.html#1530">[ thread ]</a>
+ <a href="subject.html#1530">[ subject ]</a>
+ <a href="author.html#1530">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+Kamil R &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">krytarowski at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">krytarowski at gmail.com</A>
+
+--- Comment #3 from Kamil R &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">krytarowski at gmail.com</A>&gt; 2011-11-18 03:48:59 CET ---
+I love this idea! We could try!
+
+--
+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="001529.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001531.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1530">[ date ]</a>
+ <a href="thread.html#1530">[ thread ]</a>
+ <a href="subject.html#1530">[ subject ]</a>
+ <a href="author.html#1530">[ 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-November/001531.html b/zarb-ml/mageia-webteam/2011-November/001531.html
new file mode 100644
index 000000000..97ac36d6d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001531.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118074139.8D5DC474F0%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="001530.html">
+ <LINK REL="Next" HREF="001532.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118074139.8D5DC474F0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 08:41:39 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001530.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001532.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1531">[ date ]</a>
+ <a href="thread.html#1531">[ thread ]</a>
+ <a href="subject.html#1531">[ subject ]</a>
+ <a href="author.html#1531">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |Low
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #4 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-11-18 08:41:39 CET ---
+As this needs quite some resources on the server doing this (that we don't
+have) and it is something &quot;nice to have for some future&quot; I lowered the
+priority.
+
+--
+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="001530.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001532.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1531">[ date ]</a>
+ <a href="thread.html#1531">[ thread ]</a>
+ <a href="subject.html#1531">[ subject ]</a>
+ <a href="author.html#1531">[ 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-November/001532.html b/zarb-ml/mageia-webteam/2011-November/001532.html
new file mode 100644
index 000000000..95bee1de8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001532.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118081258.A46684759D%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="001531.html">
+ <LINK REL="Next" HREF="001552.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111118081258.A46684759D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 09:12:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001531.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001552.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1532">[ date ]</a>
+ <a href="thread.html#1532">[ thread ]</a>
+ <a href="subject.html#1532">[ subject ]</a>
+ <a href="author.html#1532">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</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 #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-11-18 09:12:58 CET ---
+The auto_inst config file + a basic minimal ISO can help doing that, if done
+right. It's more a matter of gluing all the pieces together and work a few
+rough edges out.
+
+--
+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="001531.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001552.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1532">[ date ]</a>
+ <a href="thread.html#1532">[ thread ]</a>
+ <a href="subject.html#1532">[ subject ]</a>
+ <a href="author.html#1532">[ 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-November/001533.html b/zarb-ml/mageia-webteam/2011-November/001533.html
new file mode 100644
index 000000000..2fc19e706
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001533.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3378] new wiki graphical problems
+ </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%203378%5D%20new%20wiki%20graphical%20problems&In-Reply-To=%3C20111118151524.61F2C47446%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="001525.html">
+ <LINK REL="Next" HREF="001526.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3378] new wiki graphical problems</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203378%5D%20new%20wiki%20graphical%20problems&In-Reply-To=%3C20111118151524.61F2C47446%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3378] new wiki graphical problems">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 16:15:24 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001525.html">[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems
+</A></li>
+ <LI>Next message: <A HREF="001526.html">[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1533">[ date ]</a>
+ <a href="thread.html#1533">[ thread ]</a>
+ <a href="subject.html#1533">[ subject ]</a>
+ <a href="author.html#1533">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3378">https://bugs.mageia.org/show_bug.cgi?id=3378</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ 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-11-18 16:15:21 CET ---
+(In reply to comment #0)
+&gt;<i> 1. There is no favicon
+</I>
+Still pending but coming soon.
+
+&gt;<i> 2. Maybe we could have the mageia top bar as on the web site and the bugzilla
+</I>&gt;<i> (or maybe it is not technically possible) ?
+</I>
+Navbar is here (slightly different but here nonetheless).
+
+--
+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="001525.html">[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems
+</A></li>
+ <LI>Next message: <A HREF="001526.html">[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1533">[ date ]</a>
+ <a href="thread.html#1533">[ thread ]</a>
+ <a href="subject.html#1533">[ subject ]</a>
+ <a href="author.html#1533">[ 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-November/001534.html b/zarb-ml/mageia-webteam/2011-November/001534.html
new file mode 100644
index 000000000..c2817fe27
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001534.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3383] [New] Navbar only on en blog
+ </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%203383%5D%20%5BNew%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3Cbug-3383-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="001552.html">
+ <LINK REL="Next" HREF="001535.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203383%5D%20%5BNew%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3Cbug-3383-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 16:57:30 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001552.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001535.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1534">[ date ]</a>
+ <a href="thread.html#1534">[ thread ]</a>
+ <a href="subject.html#1534">[ subject ]</a>
+ <a href="author.html#1534">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3383">https://bugs.mageia.org/show_bug.cgi?id=3383</A>
+
+ Summary: Navbar only on en blog
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: blog.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">oliver.bgr at googlemail.com</A>
+
+
+I noticed there is no navbar on all blog pages, but the en one.
+
+--
+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="001552.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001535.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1534">[ date ]</a>
+ <a href="thread.html#1534">[ thread ]</a>
+ <a href="subject.html#1534">[ subject ]</a>
+ <a href="author.html#1534">[ 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-November/001535.html b/zarb-ml/mageia-webteam/2011-November/001535.html
new file mode 100644
index 000000000..5ce2f248e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001535.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3383] Navbar only on en blog
+ </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%203383%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3C20111118162226.DFC53474E4%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="001534.html">
+ <LINK REL="Next" HREF="001536.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3383] Navbar only on en blog</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203383%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3C20111118162226.DFC53474E4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3383] Navbar only on en blog">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 17:22:26 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001534.html">[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog
+</A></li>
+ <LI>Next message: <A HREF="001536.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1535">[ date ]</a>
+ <a href="thread.html#1535">[ thread ]</a>
+ <a href="subject.html#1535">[ subject ]</a>
+ <a href="author.html#1535">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3383">https://bugs.mageia.org/show_bug.cgi?id=3383</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-11-18 18:22:27 CET ---
+Yes. That was a quick hack.
+
+The solution is to put a navbar publishing service somewhere, and have all
+sites source their navbar from this one (I did that before, and that's the most
+efficient to ease update and deployment of new top bars, unless it is static).
+
+--
+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="001534.html">[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog
+</A></li>
+ <LI>Next message: <A HREF="001536.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1535">[ date ]</a>
+ <a href="thread.html#1535">[ thread ]</a>
+ <a href="subject.html#1535">[ subject ]</a>
+ <a href="author.html#1535">[ 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-November/001536.html b/zarb-ml/mageia-webteam/2011-November/001536.html
new file mode 100644
index 000000000..6c8a4db5b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001536.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in 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%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111118194951.B2FF747459%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="001535.html">
+ <LINK REL="Next" HREF="001537.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla</H1>
+ <B>Dimitrios Glentadakis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111118194951.B2FF747459%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 20:49:51 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001535.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI>Next message: <A HREF="001537.html">[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1536">[ date ]</a>
+ <a href="thread.html#1536">[ thread ]</a>
+ <a href="subject.html#1536">[ subject ]</a>
+ <a href="author.html#1536">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1118">https://bugs.mageia.org/show_bug.cgi?id=1118</A>
+
+--- Comment #6 from Dimitrios Glentadakis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dglent at gmail.com</A>&gt; 2011-11-18 20:49:51 CET ---
+(In reply to comment #5)
+&gt;<i> maybe add [languge-code] in the bug summary
+</I>&gt;<i> e.g. [el] for Greek
+</I>&gt;<i>
+</I>&gt;<i> Then filter the i18n-ml messages received by the language code in the subject
+</I>
+I cannot understand what you mean
+
+The goal is when i reply in a bug report that concerns the translation, then
+the reply will be cc to the mailing list of the language team.
+
+--
+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="001535.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI>Next message: <A HREF="001537.html">[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1536">[ date ]</a>
+ <a href="thread.html#1536">[ thread ]</a>
+ <a href="subject.html#1536">[ subject ]</a>
+ <a href="author.html#1536">[ 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-November/001537.html b/zarb-ml/mageia-webteam/2011-November/001537.html
new file mode 100644
index 000000000..f5e93d0fd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001537.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar
+ </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%203384%5D%20%5BNew%5D%20Rethinking%20the%20global%20navigation%0A%09bar&In-Reply-To=%3Cbug-3384-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="001536.html">
+ <LINK REL="Next" HREF="001538.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203384%5D%20%5BNew%5D%20Rethinking%20the%20global%20navigation%0A%09bar&In-Reply-To=%3Cbug-3384-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 20:53:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001536.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001538.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1537">[ date ]</a>
+ <a href="thread.html#1537">[ thread ]</a>
+ <a href="subject.html#1537">[ subject ]</a>
+ <a href="author.html#1537">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3384">https://bugs.mageia.org/show_bug.cgi?id=3384</A>
+
+ Summary: Rethinking the global navigation bar
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Normal
+ Component: All
+ 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>
+
+
+Description of problem:
+We have a global navigation bar for mageia.org domain. Its goal is, with a
+consistent design charter, to help visitors/users to direct themselves through
+the whole domain.
+
+In its current form, it provide a permanent set of links to several
+categories/apps. However it could be made better/different:
+ - linking to specific subapps (current form)
+ - linking to spaces (somehow as mandriva.com or apple.com do)
+ - linking to a single home site through a single badge (see mozilla.org
+several sites), leaving each local domain/zone/app to its own sub-navigation
+scheme
+ - something else.
+
+This bug is open to discuss (with actual mockups) a redesign of this nav bar
+for 2012.
+
+ - if using text, the nav bar should be translatable and take into account the
+current locale of the website;
+ - the navbar should accomodate being used in a fixed, fluid, dynamic, whatever
+layouts;
+ - it must not consist of too many items
+ - it should accomodate touch devices (not too large, but large enough action
+items)
+
+--
+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="001536.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001538.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1537">[ date ]</a>
+ <a href="thread.html#1537">[ thread ]</a>
+ <a href="subject.html#1537">[ subject ]</a>
+ <a href="author.html#1537">[ 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-November/001538.html b/zarb-ml/mageia-webteam/2011-November/001538.html
new file mode 100644
index 000000000..7a2dc19f3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001538.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in 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%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111118221828.06F4547596%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="001537.html">
+ <LINK REL="Next" HREF="001539.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20111118221828.06F4547596%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 18 23:18:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001537.html">[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar
+</A></li>
+ <LI>Next message: <A HREF="001539.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1538">[ date ]</a>
+ <a href="thread.html#1538">[ thread ]</a>
+ <a href="subject.html#1538">[ subject ]</a>
+ <a href="author.html#1538">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1118">https://bugs.mageia.org/show_bug.cgi?id=1118</A>
+
+--- Comment #7 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2011-11-18 23:18:27 CET ---
+As I understand it, the goal is that you (or whoever) be notified when there is
+a bug report concerning your language.
+
+Comment 5 suggests putting the language code as [...] in the subject/title of
+the bug report, so that when a notice is sent the the global
+internationalisation list, those interested in the language would filter the
+list (to a separate folder) so as to be notified of the bug report.
+Filtering email (by the title or whatever) is readily done by many mail agents
+(such as seamonkey/thunderbird), and by email services such as google.
+Note that text such as [el] or [es] or [fr] would not be confused with anything
+else, thus a reliable tag for filtering.
+
+It is only another way to solve the problem, assuming that you are already
+subscribed to the general l10n mailing list.
+
+--
+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="001537.html">[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar
+</A></li>
+ <LI>Next message: <A HREF="001539.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1538">[ date ]</a>
+ <a href="thread.html#1538">[ thread ]</a>
+ <a href="subject.html#1538">[ subject ]</a>
+ <a href="author.html#1538">[ 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-November/001539.html b/zarb-ml/mageia-webteam/2011-November/001539.html
new file mode 100644
index 000000000..2b939d3c8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001539.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+ </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%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111119225334.339B5475F0%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="001538.html">
+ <LINK REL="Next" HREF="001540.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111119225334.339B5475F0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Nov 19 23:53:34 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001538.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001540.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1539">[ date ]</a>
+ <a href="thread.html#1539">[ thread ]</a>
+ <a href="subject.html#1539">[ subject ]</a>
+ <a href="author.html#1539">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #6 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-11-20 00:53:33 CET ---
+(In reply to comment #5)
+&gt;<i> (In reply to comment #4)
+</I>&gt;<i> &gt; The website should give this command :
+</I>&gt;<i> &gt; # urpmi.addmedia --distrib --mirrorlist
+</I>&gt;<i> &gt; '<A HREF="http://mirrors.mageia.org/api/mageia.1.$ARCH.list">http://mirrors.mageia.org/api/mageia.1.$ARCH.list</A>'
+</I>&gt;<i>
+</I>&gt;<i> This is now fixed on the website.
+</I>
+closing
+
+--
+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="001538.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001540.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1539">[ date ]</a>
+ <a href="thread.html#1539">[ thread ]</a>
+ <a href="subject.html#1539">[ subject ]</a>
+ <a href="author.html#1539">[ 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-November/001540.html b/zarb-ml/mageia-webteam/2011-November/001540.html
new file mode 100644
index 000000000..d3ea9e59b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001540.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+ </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%201054%5D%20Live%20CD%27s%20only%20for%2032%20bit%20install%3F&In-Reply-To=%3C20111120003138.77A3F475D8%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="001539.html">
+ <LINK REL="Next" HREF="001541.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20Live%20CD%27s%20only%20for%2032%20bit%20install%3F&In-Reply-To=%3C20111120003138.77A3F475D8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 20 01:31:38 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001539.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001541.html">[Mageia-webteam] alpha 1 release info preparation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1540">[ date ]</a>
+ <a href="thread.html#1540">[ thread ]</a>
+ <a href="subject.html#1540">[ subject ]</a>
+ <a href="author.html#1540">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|[ Beta 2 ] Live CD's only |Live CD's only for 32 bit
+ |for 32 bit install? |install?
+
+--
+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="001539.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001541.html">[Mageia-webteam] alpha 1 release info preparation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1540">[ date ]</a>
+ <a href="thread.html#1540">[ thread ]</a>
+ <a href="subject.html#1540">[ subject ]</a>
+ <a href="author.html#1540">[ 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-November/001541.html b/zarb-ml/mageia-webteam/2011-November/001541.html
new file mode 100644
index 000000000..e1fd17520
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001541.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] alpha 1 release info preparation
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20alpha%201%20release%20info%20preparation&In-Reply-To=%3CCANa9xwtiZtpqazPrZuJbZ50oNRWYmLaqknS1sV8Xs_zFVPxdag%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="001540.html">
+ <LINK REL="Next" HREF="001542.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] alpha 1 release info preparation</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20alpha%201%20release%20info%20preparation&In-Reply-To=%3CCANa9xwtiZtpqazPrZuJbZ50oNRWYmLaqknS1sV8Xs_zFVPxdag%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] alpha 1 release info preparation">rdalverny at gmail.com
+ </A><BR>
+ <I>Mon Nov 21 17:50:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001540.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="001542.html">[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1541">[ date ]</a>
+ <a href="thread.html#1541">[ thread ]</a>
+ <a href="subject.html#1541">[ subject ]</a>
+ <a href="author.html#1541">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi! (x-posting to web and marcom),
+
+as said to -dev
+(<A HREF="https://mageia.org/pipermail/mageia-dev/2011-November/009690.html">https://mageia.org/pipermail/mageia-dev/2011-November/009690.html</A>),
+alpha 1 release is in the next days (Friday).
+
+So it's time to prepare the alpha release page and announcement (kind
+of a last minute notice again, but we'll prepare for alpha2 as well!)
+
+ * the wiki page will be: <A HREF="https://wiki.mageia.org/en/Mageia_2_alpha1">https://wiki.mageia.org/en/Mageia_2_alpha1</A> -
+feeded first from packaging and QA teams)
+ * the main announcement landing page could be
+<A HREF="http://www.mageia.org/2/">http://www.mageia.org/2/</A> (redirecting to the right locale if
+translated) with links to actual ISOs and the release notes, but this
+being technical still, maybe the Wiki page directly is good enough;
+ * a blog post should be pushed
+ * something else?
+
+Romain
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001540.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="001542.html">[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1541">[ date ]</a>
+ <a href="thread.html#1541">[ thread ]</a>
+ <a href="subject.html#1541">[ subject ]</a>
+ <a href="author.html#1541">[ 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-November/001542.html b/zarb-ml/mageia-webteam/2011-November/001542.html
new file mode 100644
index 000000000..0336b5113
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001542.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum
+ </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%203411%5D%20%5BNew%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3Cbug-3411-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="001541.html">
+ <LINK REL="Next" HREF="001544.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203411%5D%20%5BNew%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3Cbug-3411-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 22 03:26:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001541.html">[Mageia-webteam] alpha 1 release info preparation
+</A></li>
+ <LI>Next message: <A HREF="001544.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1542">[ date ]</a>
+ <a href="thread.html#1542">[ thread ]</a>
+ <a href="subject.html#1542">[ subject ]</a>
+ <a href="author.html#1542">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3411">https://bugs.mageia.org/show_bug.cgi?id=3411</A>
+
+ Summary: boot.iso no md5sum
+ 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">kbergen at telus.net</A>
+
+
+On the download page all the iso's display checksum in the next page when
+clicked on except for the boot.iso's
+
+--
+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="001541.html">[Mageia-webteam] alpha 1 release info preparation
+</A></li>
+ <LI>Next message: <A HREF="001544.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1542">[ date ]</a>
+ <a href="thread.html#1542">[ thread ]</a>
+ <a href="subject.html#1542">[ subject ]</a>
+ <a href="author.html#1542">[ 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-November/001543.html b/zarb-ml/mageia-webteam/2011-November/001543.html
new file mode 100644
index 000000000..470f4e735
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001543.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+ </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%203412%5D%20%5BNew%5D%20Differences%20%28namely%20free%20vs.%0A%20non-free%20contents%29%20between%20isos%20only%20visible%20in%20the%20fine%20print&In-Reply-To=%3Cbug-3412-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="001550.html">
+ <LINK REL="Next" HREF="001545.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203412%5D%20%5BNew%5D%20Differences%20%28namely%20free%20vs.%0A%20non-free%20contents%29%20between%20isos%20only%20visible%20in%20the%20fine%20print&In-Reply-To=%3Cbug-3412-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 22 05:33:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001550.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001545.html">[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1543">[ date ]</a>
+ <a href="thread.html#1543">[ thread ]</a>
+ <a href="subject.html#1543">[ subject ]</a>
+ <a href="author.html#1543">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3412">https://bugs.mageia.org/show_bug.cgi?id=3412</A>
+
+ Summary: Differences (namely free vs. non-free contents)
+ between isos only visible in the fine print
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/en/downloads/">http://www.mageia.org/en/downloads/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">molch.b at googlemail.com</A>
+
+
+Description of problem:
+
+Which iso contains only free packages and which contains non-free is not
+visible on the download page, to see it you have to read the fine print at the
+bottom of the page and follow the link to another page.
+
+But to know this difference is essential for selecting the iso, especially for
+owners of machines with wifi. For a new to Mageia user and even more for a
+migrator to Linux (who may not even know about &quot;free / non-free&quot;) we should
+give a hint to this difference in the top part - before people select their
+flavor.
+
+Better even to decorate that hint with a fat red exclamation mark. This way we
+may avoid numerous postings like &quot;I installed everything but [my wifi|my 3d]
+does not work!&quot; - not counting those who turn away silently.
+
+Example see thread in the forum:
+<A HREF="https://forums.mageia.org/en/viewtopic.php?f=25&amp;t=1455">https://forums.mageia.org/en/viewtopic.php?f=25&amp;t=1455</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="001550.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001545.html">[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1543">[ date ]</a>
+ <a href="thread.html#1543">[ thread ]</a>
+ <a href="subject.html#1543">[ subject ]</a>
+ <a href="author.html#1543">[ 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-November/001544.html b/zarb-ml/mageia-webteam/2011-November/001544.html
new file mode 100644
index 000000000..be105886d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001544.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3411] boot.iso no md5sum
+ </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%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111122044912.7096B47449%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="001542.html">
+ <LINK REL="Next" HREF="001546.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3411] boot.iso no md5sum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111122044912.7096B47449%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3411] boot.iso no md5sum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 22 05:49:12 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001542.html">[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001546.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1544">[ date ]</a>
+ <a href="thread.html#1544">[ thread ]</a>
+ <a href="subject.html#1544">[ subject ]</a>
+ <a href="author.html#1544">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3411">https://bugs.mageia.org/show_bug.cgi?id=3411</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-11-22 06:49:12 CET ---
+Confirmed.
+Would be nice if the click on the boot.iso would lead to a similar page.
+
+--
+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="001542.html">[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001546.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1544">[ date ]</a>
+ <a href="thread.html#1544">[ thread ]</a>
+ <a href="subject.html#1544">[ subject ]</a>
+ <a href="author.html#1544">[ 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-November/001545.html b/zarb-ml/mageia-webteam/2011-November/001545.html
new file mode 100644
index 000000000..364b90727
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001545.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+ </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%203412%5D%20Differences%20%28namely%20free%20vs.%20non-free%0A%20contents%29%20between%20isos%20only%20visible%20in%20the%20fine%20print&In-Reply-To=%3C20111122080505.2462F47406%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="001543.html">
+ <LINK REL="Next" HREF="001553.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203412%5D%20Differences%20%28namely%20free%20vs.%20non-free%0A%20contents%29%20between%20isos%20only%20visible%20in%20the%20fine%20print&In-Reply-To=%3C20111122080505.2462F47406%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 22 09:05:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001543.html">[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A></li>
+ <LI>Next message: <A HREF="001553.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1545">[ date ]</a>
+ <a href="thread.html#1545">[ thread ]</a>
+ <a href="subject.html#1545">[ subject ]</a>
+ <a href="author.html#1545">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3412">https://bugs.mageia.org/show_bug.cgi?id=3412</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ 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-11-22 09:05:02 CET ---
+See <A HREF="http://www.mageia.org/en/downloads/">http://www.mageia.org/en/downloads/</A> :
+ - rewritten headline for DVDs,
+ - added warning text,
+ - rewritten headline for boot.iso as well.
+
+But nonetheless, we need to decide how we present ISOs to download - more and
+more ISOs to choose from rebutes the novice user; choice is good; too much
+choice kills choice. But that's a separate problem.
+
+--
+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="001543.html">[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A></li>
+ <LI>Next message: <A HREF="001553.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1545">[ date ]</a>
+ <a href="thread.html#1545">[ thread ]</a>
+ <a href="subject.html#1545">[ subject ]</a>
+ <a href="author.html#1545">[ 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-November/001546.html b/zarb-ml/mageia-webteam/2011-November/001546.html
new file mode 100644
index 000000000..94ef22353
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001546.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3411] boot.iso no md5sum
+ </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%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111122080805.25FAC47624%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="001544.html">
+ <LINK REL="Next" HREF="001547.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3411] boot.iso no md5sum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111122080805.25FAC47624%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3411] boot.iso no md5sum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 22 09:08:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001544.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001547.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1546">[ date ]</a>
+ <a href="thread.html#1546">[ thread ]</a>
+ <a href="subject.html#1546">[ subject ]</a>
+ <a href="author.html#1546">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3411">https://bugs.mageia.org/show_bug.cgi?id=3411</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 #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-11-22 09:08:04 CET ---
+boot.iso release process is very distinct from the one for LiveCD and DVD at
+this time (moreover, it gets regenerated each time there's a kernel update I
+believe).
+
+So grabbing checksums for this image is a bit more complicated. But indeed, it
+would really be nice, so let's keep this open.
+
+If we get to setup a MirrorBrain(-like) infra (see bug 3166), this would be
+just done in a snap (because checksums will be managed in a centralized way and
+available through the service).
+
+--
+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="001544.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001547.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1546">[ date ]</a>
+ <a href="thread.html#1546">[ thread ]</a>
+ <a href="subject.html#1546">[ subject ]</a>
+ <a href="author.html#1546">[ 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-November/001547.html b/zarb-ml/mageia-webteam/2011-November/001547.html
new file mode 100644
index 000000000..299eaeb88
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001547.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3411] boot.iso no md5sum
+ </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%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111122180618.13B5B47668%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="001546.html">
+ <LINK REL="Next" HREF="001548.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3411] boot.iso no md5sum</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111122180618.13B5B47668%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3411] boot.iso no md5sum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 22 19:06:18 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001546.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001548.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1547">[ date ]</a>
+ <a href="thread.html#1547">[ thread ]</a>
+ <a href="subject.html#1547">[ subject ]</a>
+ <a href="author.html#1547">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3411">https://bugs.mageia.org/show_bug.cgi?id=3411</A>
+
+--- Comment #3 from Ken Bergen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>&gt; 2011-11-22 19:06:15 CET ---
+(In reply to comment #2)
+&gt;<i> boot.iso release process is very distinct from the one for LiveCD and DVD at
+</I>&gt;<i> this time (moreover, it gets regenerated each time there's a kernel update I
+</I>&gt;<i> believe).
+</I>&gt;<i>
+</I>
+That is likely true for Cauldron but the links on the download page to Mageia/1
+boot.iso's are to files created 30/05/11 the day 1 was released and there have
+been several kernel updates since then.
+
+&gt;<i>So grabbing checksums for this image is a bit more complicated. But indeed, it
+</I>&gt;<i>would really be nice, so let's keep this open.
+</I>
+&gt;<i>If we get to setup a MirrorBrain(-like) infra (see bug 3166), this would be
+</I>&gt;<i>just done in a snap (because checksums will be managed in a centralized way and
+</I>&gt;<i>available through the service).
+</I>
+As the iso's in the release tree appear to be static there would be no Voodoo
+involved.
+
+--
+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="001546.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001548.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1547">[ date ]</a>
+ <a href="thread.html#1547">[ thread ]</a>
+ <a href="subject.html#1547">[ subject ]</a>
+ <a href="author.html#1547">[ 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-November/001548.html b/zarb-ml/mageia-webteam/2011-November/001548.html
new file mode 100644
index 000000000..71e05f182
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001548.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3411] boot.iso no md5sum
+ </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%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111123105703.DB64E4768D%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="001547.html">
+ <LINK REL="Next" HREF="001549.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3411] boot.iso no md5sum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111123105703.DB64E4768D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3411] boot.iso no md5sum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 23 11:57:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001547.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001549.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1548">[ date ]</a>
+ <a href="thread.html#1548">[ thread ]</a>
+ <a href="subject.html#1548">[ subject ]</a>
+ <a href="author.html#1548">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3411">https://bugs.mageia.org/show_bug.cgi?id=3411</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-11-23 12:57:02 CET ---
+(In reply to comment #3)
+&gt;<i> That is likely true for Cauldron but the links on the download page to Mageia/1
+</I>&gt;<i> boot.iso's are to files created 30/05/11 the day 1 was released and there have
+</I>&gt;<i> been several kernel updates since then.
+</I>
+Ha right. Misled by past discussions about regenerating those.
+
+&gt;<i> &gt;If we get to setup a MirrorBrain(-like) infra (see bug 3166), this would be
+</I>&gt;<i> &gt;just done in a snap (because checksums will be managed in a centralized way and
+</I>&gt;<i> &gt;available through the service).
+</I>&gt;<i>
+</I>&gt;<i> As the iso's in the release tree appear to be static there would be no Voodoo
+</I>&gt;<i> involved.
+</I>
+No Voodoo, except these checksums were not provided on release time and no one
+bothered at the time. Will work something out for Mageia 2. Or I can fix it if
+you or a sysadmin can paste me the checksums here.
+
+--
+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="001547.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001549.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1548">[ date ]</a>
+ <a href="thread.html#1548">[ thread ]</a>
+ <a href="subject.html#1548">[ subject ]</a>
+ <a href="author.html#1548">[ 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-November/001549.html b/zarb-ml/mageia-webteam/2011-November/001549.html
new file mode 100644
index 000000000..7b3994bb9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001549.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3411] boot.iso no md5sum
+ </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%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111123114533.F2FCF47699%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="001548.html">
+ <LINK REL="Next" HREF="001550.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3411] boot.iso no md5sum</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111123114533.F2FCF47699%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3411] boot.iso no md5sum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 23 12:45:33 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001548.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001550.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1549">[ date ]</a>
+ <a href="thread.html#1549">[ thread ]</a>
+ <a href="subject.html#1549">[ subject ]</a>
+ <a href="author.html#1549">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3411">https://bugs.mageia.org/show_bug.cgi?id=3411</A>
+
+--- Comment #5 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-11-23 13:45:31 CET ---
+[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">wobo at marvin</A> Downloads]$ md5sum boot.iso
+a82ae1a364b5f3bf3d2b783c881c726d boot.iso (Mageia 1, 32-bit)
+
+[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">wobo at marvin</A> ISO64]$ md5sum boot.iso
+7de996b937b5e5d650514e7b3d6f2f15 boot.iso (Mageia 1, 64-bit)
+
+Both isos downloaded by clicking on the link on the official download page.
+
+--
+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="001548.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001550.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1549">[ date ]</a>
+ <a href="thread.html#1549">[ thread ]</a>
+ <a href="subject.html#1549">[ subject ]</a>
+ <a href="author.html#1549">[ 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-November/001550.html b/zarb-ml/mageia-webteam/2011-November/001550.html
new file mode 100644
index 000000000..44ff0919d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001550.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3411] boot.iso no md5sum
+ </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%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111123122600.AA57B4768D%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="001549.html">
+ <LINK REL="Next" HREF="001543.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3411] boot.iso no md5sum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203411%5D%20boot.iso%20no%20md5sum&In-Reply-To=%3C20111123122600.AA57B4768D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3411] boot.iso no md5sum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 23 13:26:00 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001549.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001543.html">[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1550">[ date ]</a>
+ <a href="thread.html#1550">[ thread ]</a>
+ <a href="subject.html#1550">[ subject ]</a>
+ <a href="author.html#1550">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3411">https://bugs.mageia.org/show_bug.cgi?id=3411</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|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #6 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-11-23 14:25:59 CET ---
+Thanks. Added.
+
+--
+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="001549.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A></li>
+ <LI>Next message: <A HREF="001543.html">[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1550">[ date ]</a>
+ <a href="thread.html#1550">[ thread ]</a>
+ <a href="subject.html#1550">[ subject ]</a>
+ <a href="author.html#1550">[ 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-November/001551.html b/zarb-ml/mageia-webteam/2011-November/001551.html
new file mode 100644
index 000000000..ba4fe10d6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001551.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3287] Add header on the guided template
+ </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%203287%5D%20Add%20header%20on%20the%20guided%20template&In-Reply-To=%3C20111123123844.13B6C4768E%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="001511.html">
+ <LINK REL="Next" HREF="001512.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3287] Add header on the guided template</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%203287%5D%20Add%20header%20on%20the%20guided%20template&In-Reply-To=%3C20111123123844.13B6C4768E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3287] Add header on the guided template">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 23 13:38:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001511.html">[Mageia-webteam] [Bug 3287] [New] Add header on the guided template
+</A></li>
+ <LI>Next message: <A HREF="001512.html">[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1551">[ date ]</a>
+ <a href="thread.html#1551">[ thread ]</a>
+ <a href="subject.html#1551">[ subject ]</a>
+ <a href="author.html#1551">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3287">https://bugs.mageia.org/show_bug.cgi?id=3287</A>
+
+--- 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-11-23 14:38:42 CET ---
+The vanilla guided page never had it, FYI.
+
+--
+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="001511.html">[Mageia-webteam] [Bug 3287] [New] Add header on the guided template
+</A></li>
+ <LI>Next message: <A HREF="001512.html">[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1551">[ date ]</a>
+ <a href="thread.html#1551">[ thread ]</a>
+ <a href="subject.html#1551">[ subject ]</a>
+ <a href="author.html#1551">[ 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-November/001552.html b/zarb-ml/mageia-webteam/2011-November/001552.html
new file mode 100644
index 000000000..64505f8db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001552.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111123143954.624AB4760D%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="001532.html">
+ <LINK REL="Next" HREF="001534.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20111123143954.624AB4760D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 23 15:39:54 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001532.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001534.html">[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1552">[ date ]</a>
+ <a href="thread.html#1552">[ thread ]</a>
+ <a href="subject.html#1552">[ subject ]</a>
+ <a href="author.html#1552">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #6 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2011-11-23 16:39:51 CET ---
+I found out that many bugs related to hardware may be solved during the
+creation of the iso.
+
+If the stable DVD-version of Mageia doesn't provide a newer kernel that
+contains a module that works (because you checked this in any other distro
+before installing or if it's working during the test-session) you can then add
+any rpms that you may have rebuilt from SRPM or built from git. The result will
+be that all your hardwares are working fine. ;)
+
+--
+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="001532.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001534.html">[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1552">[ date ]</a>
+ <a href="thread.html#1552">[ thread ]</a>
+ <a href="subject.html#1552">[ subject ]</a>
+ <a href="author.html#1552">[ 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-November/001553.html b/zarb-ml/mageia-webteam/2011-November/001553.html
new file mode 100644
index 000000000..117bc4876
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001553.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+ </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.2&In-Reply-To=%3C20111123213306.63CAD47623%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="001545.html">
+ <LINK REL="Next" HREF="001554.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0.2&In-Reply-To=%3C20111123213306.63CAD47623%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 23 22:33:06 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001545.html">[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A></li>
+ <LI>Next message: <A HREF="001554.html">[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1553">[ date ]</a>
+ <a href="thread.html#1553">[ thread ]</a>
+ <a href="subject.html#1553">[ subject ]</a>
+ <a href="author.html#1553">[ 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 #17 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-11-23 22:33:05 CET ---
+Dear D Morgan
+
+We can't find old bugs that were never seen by anybody else than the reporter,
+if the reporter comments once in a while, like in bug 1598
+
+In Bugzilla 4.x it is possible to find those bugs by using the following search
+string (kindly provided by LpSolit):
+
+<A HREF="https://bugs.mageia.org/buglist.cgi?negate0=1&amp;field0-0-0=commenter&amp;resolution=---&amp;query_format=advanced&amp;type0-0-0=notequals&amp;value0-0-0=%25reporter%25">https://bugs.mageia.org/buglist.cgi?negate0=1&amp;field0-0-0=commenter&amp;resolution=---&amp;query_format=advanced&amp;type0-0-0=notequals&amp;value0-0-0=%25reporter%25</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="001545.html">[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A></li>
+ <LI>Next message: <A HREF="001554.html">[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1553">[ date ]</a>
+ <a href="thread.html#1553">[ thread ]</a>
+ <a href="subject.html#1553">[ subject ]</a>
+ <a href="author.html#1553">[ 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-November/001554.html b/zarb-ml/mageia-webteam/2011-November/001554.html
new file mode 100644
index 000000000..ab0b89046
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001554.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20%5BNew%5D%20Setup%20Bugzilla%20and%20download%0A%09interwiki%20links&In-Reply-To=%3Cbug-3451-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="001553.html">
+ <LINK REL="Next" HREF="001555.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20%5BNew%5D%20Setup%20Bugzilla%20and%20download%0A%09interwiki%20links&In-Reply-To=%3Cbug-3451-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 25 17:29:41 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001553.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001555.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1554">[ date ]</a>
+ <a href="thread.html#1554">[ thread ]</a>
+ <a href="subject.html#1554">[ subject ]</a>
+ <a href="author.html#1554">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+ Summary: Setup Bugzilla and download interwiki links
+ 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">rdalverny at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+It would be cool to have [[bug:1234]] and [[download:filename]] in place in the
+wiki to avoid writing long URLs to point to such resources.
+
+Both can be setup through the following SQL queries (there's no native UI for
+that in MediaWiki at this point):
+
+ REPLACE INTO interwiki (iw_prefix,iw_url,iw_local)
+ VALUES('bug', '<A HREF="https://bugs.mageia.org/show_bug.cgi?id=$1">https://bugs.mageia.org/show_bug.cgi?id=$1</A>', 0)
+
+and
+
+ REPLACE INTO interwiki (iw_prefix,iw_url,iw_local)
+ VALUES('download', '<A HREF="http://www.mageia.org/downloads/get/?q=$1">http://www.mageia.org/downloads/get/?q=$1</A>', 0)
+
+--
+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="001553.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001555.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1554">[ date ]</a>
+ <a href="thread.html#1554">[ thread ]</a>
+ <a href="subject.html#1554">[ subject ]</a>
+ <a href="author.html#1554">[ 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-November/001555.html b/zarb-ml/mageia-webteam/2011-November/001555.html
new file mode 100644
index 000000000..5d49aa755
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001555.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111125223419.9427B4773A%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="001554.html">
+ <LINK REL="Next" HREF="001561.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111125223419.9427B4773A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 25 23:34:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001554.html">[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001561.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1555">[ date ]</a>
+ <a href="thread.html#1555">[ thread ]</a>
+ <a href="subject.html#1555">[ subject ]</a>
+ <a href="author.html#1555">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-11-25 23:34:19 CET ---
+this is more useful I guess:
+<A HREF="http://www.mediawiki.org/wiki/Extension:BugSquish">http://www.mediawiki.org/wiki/Extension:BugSquish</A>
+
+<A HREF="http://www.mediawiki.org/wiki/Category:Bugzilla_extensions">http://www.mediawiki.org/wiki/Category:Bugzilla_extensions</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="001554.html">[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001561.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1555">[ date ]</a>
+ <a href="thread.html#1555">[ thread ]</a>
+ <a href="subject.html#1555">[ subject ]</a>
+ <a href="author.html#1555">[ 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-November/001556.html b/zarb-ml/mageia-webteam/2011-November/001556.html
new file mode 100644
index 000000000..2e9b852ad
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001556.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+ </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%203464%5D%20%5BNew%5D%20DVD%20mirror%20is%20not%20working%20of%0A%20Mageia%202%20through%20http%3A//www.mageia.org/en/2/&In-Reply-To=%3Cbug-3464-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="001561.html">
+ <LINK REL="Next" HREF="001557.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/</H1>
+ <B>Ashiqur Rahman</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203464%5D%20%5BNew%5D%20DVD%20mirror%20is%20not%20working%20of%0A%20Mageia%202%20through%20http%3A//www.mageia.org/en/2/&In-Reply-To=%3Cbug-3464-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Nov 26 12:59:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001561.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001557.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1556">[ date ]</a>
+ <a href="thread.html#1556">[ thread ]</a>
+ <a href="subject.html#1556">[ subject ]</a>
+ <a href="author.html#1556">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3464">https://bugs.mageia.org/show_bug.cgi?id=3464</A>
+
+ Summary: DVD mirror is not working of Mageia 2 through
+ <A HREF="http://www.mageia.org/en/2/">http://www.mageia.org/en/2/</A>
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/en/2/">http://www.mageia.org/en/2/</A>
+ 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">angel271737 at gmail.com</A>
+
+
+Description of problem:
+DVD mirror is not working of Mageia 2 through <A HREF="http://www.mageia.org/en/2/.">http://www.mageia.org/en/2/.</A>
+
+Version-Release number of selected component (if applicable):
+Mageia 2.
+
+How reproducible:
+Go to <A HREF="http://www.mageia.org/en/2/.">http://www.mageia.org/en/2/.</A> Try to download the Full, Free Software
+exclusive DVDs, torrent or ISO. It redirects to
+<A HREF="http://ftp.yz.yamagata-u.ac.jp/pub/linux/mageia/iso/cauldron/torrents/Mageia-2-alpha1-x86_64-DVD.torrent">http://ftp.yz.yamagata-u.ac.jp/pub/linux/mageia/iso/cauldron/torrents/Mageia-2-alpha1-x86_64-DVD.torrent</A>
+<A HREF="http://ftp.yz.yamagata-u.ac.jp/pub/linux/mageia/iso/cauldron/Mageia-2-alpha1-x86_64/Mageia-2-alpha1-x86_64-DVD.iso">http://ftp.yz.yamagata-u.ac.jp/pub/linux/mageia/iso/cauldron/Mageia-2-alpha1-x86_64/Mageia-2-alpha1-x86_64-DVD.iso</A>
+etc, and shows 404 Not Found error. Please fix the link.
+
+--
+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="001561.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001557.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1556">[ date ]</a>
+ <a href="thread.html#1556">[ thread ]</a>
+ <a href="subject.html#1556">[ subject ]</a>
+ <a href="author.html#1556">[ 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-November/001557.html b/zarb-ml/mageia-webteam/2011-November/001557.html
new file mode 100644
index 000000000..9af9bd4bc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001557.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+ </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%203464%5D%20DVD%20mirror%20is%20not%20working%20of%20Mageia%202%0A%20through%20http%3A//www.mageia.org/en/2/&In-Reply-To=%3C20111126120528.A303C476EA%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="001556.html">
+ <LINK REL="Next" HREF="001558.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203464%5D%20DVD%20mirror%20is%20not%20working%20of%20Mageia%202%0A%20through%20http%3A//www.mageia.org/en/2/&In-Reply-To=%3C20111126120528.A303C476EA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Nov 26 13:05:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001556.html">[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI>Next message: <A HREF="001558.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1557">[ date ]</a>
+ <a href="thread.html#1557">[ thread ]</a>
+ <a href="subject.html#1557">[ subject ]</a>
+ <a href="author.html#1557">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3464">https://bugs.mageia.org/show_bug.cgi?id=3464</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-11-26 13:05:28 CET ---
+Pls be patient, ISOs were uploaded to the Mageia server only late yesterday.
+Mirrors worldwide must sync and maybe this mirror will only sync tonight.
+
+Try another mirror or wait.
+
+--
+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="001556.html">[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI>Next message: <A HREF="001558.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1557">[ date ]</a>
+ <a href="thread.html#1557">[ thread ]</a>
+ <a href="subject.html#1557">[ subject ]</a>
+ <a href="author.html#1557">[ 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-November/001558.html b/zarb-ml/mageia-webteam/2011-November/001558.html
new file mode 100644
index 000000000..23a60f10e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001558.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+ </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%203464%5D%20DVD%20mirror%20is%20not%20working%20of%20Mageia%202%0A%20through%20http%3A//www.mageia.org/en/2/&In-Reply-To=%3C20111126120819.7C89E476E9%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="001557.html">
+ <LINK REL="Next" HREF="001559.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203464%5D%20DVD%20mirror%20is%20not%20working%20of%20Mageia%202%0A%20through%20http%3A//www.mageia.org/en/2/&In-Reply-To=%3C20111126120819.7C89E476E9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Nov 26 13:08:19 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001557.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI>Next message: <A HREF="001559.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1558">[ date ]</a>
+ <a href="thread.html#1558">[ thread ]</a>
+ <a href="subject.html#1558">[ subject ]</a>
+ <a href="author.html#1558">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3464">https://bugs.mageia.org/show_bug.cgi?id=3464</A>
+
+--- Comment #2 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-11-26 14:08:18 CET ---
+See this address for other mirrors:
+<A HREF="http://www.mageia.org/en/downloads/get/?q=Mageia-2-alpha1-x86_64-DVD.iso#om">http://www.mageia.org/en/downloads/get/?q=Mageia-2-alpha1-x86_64-DVD.iso#om</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="001557.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI>Next message: <A HREF="001559.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1558">[ date ]</a>
+ <a href="thread.html#1558">[ thread ]</a>
+ <a href="subject.html#1558">[ subject ]</a>
+ <a href="author.html#1558">[ 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-November/001559.html b/zarb-ml/mageia-webteam/2011-November/001559.html
new file mode 100644
index 000000000..3a698b8c6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001559.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+ </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%203464%5D%20DVD%20mirror%20is%20not%20working%20of%20Mageia%202%0A%20through%20http%3A//www.mageia.org/en/2/&In-Reply-To=%3C20111126174716.29405476BD%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="001558.html">
+ <LINK REL="Next" HREF="001560.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203464%5D%20DVD%20mirror%20is%20not%20working%20of%20Mageia%202%0A%20through%20http%3A//www.mageia.org/en/2/&In-Reply-To=%3C20111126174716.29405476BD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Nov 26 18:47:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001558.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI>Next message: <A HREF="001560.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1559">[ date ]</a>
+ <a href="thread.html#1559">[ thread ]</a>
+ <a href="subject.html#1559">[ subject ]</a>
+ <a href="author.html#1559">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3464">https://bugs.mageia.org/show_bug.cgi?id=3464</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| |INVALID
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>
+
+--- Comment #3 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-11-26 18:47:16 CET ---
+Link is correct, but the mirror did not finish synchronizing yet.
+
+--
+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="001558.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI>Next message: <A HREF="001560.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1559">[ date ]</a>
+ <a href="thread.html#1559">[ thread ]</a>
+ <a href="subject.html#1559">[ subject ]</a>
+ <a href="author.html#1559">[ 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-November/001560.html b/zarb-ml/mageia-webteam/2011-November/001560.html
new file mode 100644
index 000000000..976264c31
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001560.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+ </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%201054%5D%20Live%20CD%27s%20only%20for%2032%20bit%20install%3F&In-Reply-To=%3C20111127150221.A455B47659%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="001559.html">
+ <LINK REL="Next" HREF="001562.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?</H1>
+ <B>Thomas Backlund</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20Live%20CD%27s%20only%20for%2032%20bit%20install%3F&In-Reply-To=%3C20111127150221.A455B47659%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 27 16:02:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001559.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI>Next message: <A HREF="001562.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1560">[ date ]</a>
+ <a href="thread.html#1560">[ thread ]</a>
+ <a href="subject.html#1560">[ subject ]</a>
+ <a href="author.html#1560">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>
+
+--- Comment #12 from Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; 2011-11-27 17:02:21 CET ---
+
+Well,
+we now have initial x86_64 test isos available for Mageia 2 Alpha 1.
+(only one KDE4 and one Gnome for now)
+
+But we still need more people in QA if we are going 64-bit for livecds
+
+--
+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="001559.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI>Next message: <A HREF="001562.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1560">[ date ]</a>
+ <a href="thread.html#1560">[ thread ]</a>
+ <a href="subject.html#1560">[ subject ]</a>
+ <a href="author.html#1560">[ 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-November/001561.html b/zarb-ml/mageia-webteam/2011-November/001561.html
new file mode 100644
index 000000000..f69746c3c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001561.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111127152329.583774762E%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="001555.html">
+ <LINK REL="Next" HREF="001556.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20111127152329.583774762E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 27 16:23:29 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001555.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001556.html">[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1561">[ date ]</a>
+ <a href="thread.html#1561">[ thread ]</a>
+ <a href="subject.html#1561">[ subject ]</a>
+ <a href="author.html#1561">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-11-27 16:23:29 CET ---
+Indeed, these extensions are very interesting. Would need to be tested; but
+these are complements to the above suggestion.
+
+--
+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="001555.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="001556.html">[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1561">[ date ]</a>
+ <a href="thread.html#1561">[ thread ]</a>
+ <a href="subject.html#1561">[ subject ]</a>
+ <a href="author.html#1561">[ 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-November/001562.html b/zarb-ml/mageia-webteam/2011-November/001562.html
new file mode 100644
index 000000000..a0dffb59d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001562.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ </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%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20111127165628.1043A4763B%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="001560.html">
+ <LINK REL="Next" HREF="001563.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20111127165628.1043A4763B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 27 17:56:28 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001560.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="001563.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1562">[ date ]</a>
+ <a href="thread.html#1562">[ thread ]</a>
+ <a href="subject.html#1562">[ subject ]</a>
+ <a href="author.html#1562">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+
+--- Comment #3 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2011-11-27 18:56:28 CET ---
+And what has happened?
+
+--
+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="001560.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="001563.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1562">[ date ]</a>
+ <a href="thread.html#1562">[ thread ]</a>
+ <a href="subject.html#1562">[ subject ]</a>
+ <a href="author.html#1562">[ 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-November/001563.html b/zarb-ml/mageia-webteam/2011-November/001563.html
new file mode 100644
index 000000000..a846aa5b8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001563.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ </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%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20111127171035.2ED8647272%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="001562.html">
+ <LINK REL="Next" HREF="001564.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20111127171035.2ED8647272%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 27 18:10:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001562.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="001564.html">[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1563">[ date ]</a>
+ <a href="thread.html#1563">[ thread ]</a>
+ <a href="subject.html#1563">[ subject ]</a>
+ <a href="author.html#1563">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</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 #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-11-27 18:10:35 CET ---
+No one volunteered to do 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001562.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="001564.html">[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1563">[ date ]</a>
+ <a href="thread.html#1563">[ thread ]</a>
+ <a href="subject.html#1563">[ subject ]</a>
+ <a href="author.html#1563">[ 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-November/001564.html b/zarb-ml/mageia-webteam/2011-November/001564.html
new file mode 100644
index 000000000..b96225a8e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001564.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate
+ </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%203515%5D%20%5BNew%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3Cbug-3515-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="001563.html">
+ <LINK REL="Next" HREF="001565.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate</H1>
+ <B>Bill Wilkinson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203515%5D%20%5BNew%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3Cbug-3515-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Nov 28 03:17:42 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001563.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="001565.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1564">[ date ]</a>
+ <a href="thread.html#1564">[ thread ]</a>
+ <a href="subject.html#1564">[ subject ]</a>
+ <a href="author.html#1564">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3515">https://bugs.mageia.org/show_bug.cgi?id=3515</A>
+
+ Summary: Wiki returns invalid certificate
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">wrw105 at yahoo.com</A>
+
+
+Attempting to access wiki through firefox 8 gives invalid certificate error.
+
+--
+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="001563.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="001565.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1564">[ date ]</a>
+ <a href="thread.html#1564">[ thread ]</a>
+ <a href="subject.html#1564">[ subject ]</a>
+ <a href="author.html#1564">[ 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-November/001565.html b/zarb-ml/mageia-webteam/2011-November/001565.html
new file mode 100644
index 000000000..1e2779e05
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001565.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+ </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%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128022140.25D734766E%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="001564.html">
+ <LINK REL="Next" HREF="001566.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate</H1>
+ <B>Bill Wilkinson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128022140.25D734766E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Nov 28 03:21:40 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001564.html">[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001566.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1565">[ date ]</a>
+ <a href="thread.html#1565">[ thread ]</a>
+ <a href="subject.html#1565">[ subject ]</a>
+ <a href="author.html#1565">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3515">https://bugs.mageia.org/show_bug.cgi?id=3515</A>
+
+--- Comment #1 from Bill Wilkinson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">wrw105 at yahoo.com</A>&gt; 2011-11-28 03:21:40 CET ---
+Created attachment 1147
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=1147">https://bugs.mageia.org/attachment.cgi?id=1147</A>
+snapshot of certificate error from clicking on &quot;wiki&quot; from www.mageia.org
+
+--
+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="001564.html">[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001566.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1565">[ date ]</a>
+ <a href="thread.html#1565">[ thread ]</a>
+ <a href="subject.html#1565">[ subject ]</a>
+ <a href="author.html#1565">[ 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-November/001566.html b/zarb-ml/mageia-webteam/2011-November/001566.html
new file mode 100644
index 000000000..362709681
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001566.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+ </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%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128100717.631BF4765F%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="001565.html">
+ <LINK REL="Next" HREF="001567.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128100717.631BF4765F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Nov 28 11:07:17 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001565.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001567.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1566">[ date ]</a>
+ <a href="thread.html#1566">[ thread ]</a>
+ <a href="subject.html#1566">[ subject ]</a>
+ <a href="author.html#1566">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3515">https://bugs.mageia.org/show_bug.cgi?id=3515</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|NEW |RESOLVED
+ Resolution| |WONTFIX
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-11-28 11:07:17 CET ---
+This is the old wiki, hosted on www. The SSL certificate there is self-signed,
+not invalid.
+
+This however will not be fixed for this wiki (being deprecated in favor of
+<A HREF="http://wiki.mageia.org/">http://wiki.mageia.org/</A> now) but will for www as soon as we migrate www to a
+separate host (that is not planned precisely yet).
+
+--
+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="001565.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001567.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1566">[ date ]</a>
+ <a href="thread.html#1566">[ thread ]</a>
+ <a href="subject.html#1566">[ subject ]</a>
+ <a href="author.html#1566">[ 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-November/001567.html b/zarb-ml/mageia-webteam/2011-November/001567.html
new file mode 100644
index 000000000..5ce061ef9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001567.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+ </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%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128144405.616AA46606%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="001566.html">
+ <LINK REL="Next" HREF="001568.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate</H1>
+ <B>qchmqs qchmqs</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128144405.616AA46606%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Nov 28 15:44:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001566.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001568.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1567">[ date ]</a>
+ <a href="thread.html#1567">[ thread ]</a>
+ <a href="subject.html#1567">[ subject ]</a>
+ <a href="author.html#1567">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3515">https://bugs.mageia.org/show_bug.cgi?id=3515</A>
+
+qchmqs qchmqs &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">achmas at live.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|RESOLVED |UNCONFIRMED
+ Resolution|WONTFIX |
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">achmas at live.fr</A>
+ Ever Confirmed|1 |0
+
+--- Comment #3 from qchmqs qchmqs &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">achmas at live.fr</A>&gt; 2011-11-28 15:44:05 CET ---
+(In reply to comment #0)
+&gt;<i> Attempting to access wiki through firefox 8 gives invalid certificate error.
+</I>
+not only FF 8 , Every Browser is doing this the certificate is self signed wich
+is invalid, for any browser and will make people(silly people) think that they
+are getting hacked by the mageia team :)
+
+--
+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="001566.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001568.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1567">[ date ]</a>
+ <a href="thread.html#1567">[ thread ]</a>
+ <a href="subject.html#1567">[ subject ]</a>
+ <a href="author.html#1567">[ 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-November/001568.html b/zarb-ml/mageia-webteam/2011-November/001568.html
new file mode 100644
index 000000000..8254ba707
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001568.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+ </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%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128145921.05B784772B%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="001567.html">
+ <LINK REL="Next" HREF="001569.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128145921.05B784772B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Nov 28 15:59:21 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001567.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001569.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1568">[ date ]</a>
+ <a href="thread.html#1568">[ thread ]</a>
+ <a href="subject.html#1568">[ subject ]</a>
+ <a href="author.html#1568">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3515">https://bugs.mageia.org/show_bug.cgi?id=3515</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #4 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-11-28 15:59:20 CET ---
+As I see it, the problem is the top menu bar, that is part of www, which does
+use a self signed certificate (since it is only a temporary site, hosted on
+zarb, not on mageia servers).
+
+Romain: Is that a problem we can solve? Or do we live with that (which is quite
+easy)?
+
+--
+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="001567.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001569.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1568">[ date ]</a>
+ <a href="thread.html#1568">[ thread ]</a>
+ <a href="subject.html#1568">[ subject ]</a>
+ <a href="author.html#1568">[ 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-November/001569.html b/zarb-ml/mageia-webteam/2011-November/001569.html
new file mode 100644
index 000000000..1f5bfce64
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001569.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+ </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%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128151536.430914773E%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="001568.html">
+ <LINK REL="Next" HREF="001570.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20111128151536.430914773E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Nov 28 16:15:36 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001568.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001570.html">[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1569">[ date ]</a>
+ <a href="thread.html#1569">[ thread ]</a>
+ <a href="subject.html#1569">[ subject ]</a>
+ <a href="author.html#1569">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3515">https://bugs.mageia.org/show_bug.cgi?id=3515</A>
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-11-28 16:15:35 CET ---
+(In reply to comment #4)
+&gt;<i> Romain: Is that a problem we can solve? Or do we live with that (which is quite
+</I>&gt;<i> easy)?
+</I>
+It's only the favicon that is referencing www.mageia.org. Checking.
+
+--
+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="001568.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001570.html">[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1569">[ date ]</a>
+ <a href="thread.html#1569">[ thread ]</a>
+ <a href="subject.html#1569">[ subject ]</a>
+ <a href="author.html#1569">[ 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-November/001570.html b/zarb-ml/mageia-webteam/2011-November/001570.html
new file mode 100644
index 000000000..f74aeb911
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001570.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.
+ </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%203526%5D%20%5BNew%5D%20Due%20to%20css%20errors%20opera%20displays%0A%20blank%20page%20in%20author%20mode.&In-Reply-To=%3Cbug-3526-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="001569.html">
+ <LINK REL="Next" HREF="001571.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203526%5D%20%5BNew%5D%20Due%20to%20css%20errors%20opera%20displays%0A%20blank%20page%20in%20author%20mode.&In-Reply-To=%3Cbug-3526-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Nov 28 23:17:05 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001569.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001571.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1570">[ date ]</a>
+ <a href="thread.html#1570">[ thread ]</a>
+ <a href="subject.html#1570">[ subject ]</a>
+ <a href="author.html#1570">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3526">https://bugs.mageia.org/show_bug.cgi?id=3526</A>
+
+ Summary: Due to css errors opera displays blank page in author
+ mode.
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="https://wiki.mageia.org/en/Mageia1_Release_Notes">https://wiki.mageia.org/en/Mageia1_Release_Notes</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">davidwhodgins at gmail.com</A>
+ RPM Package: ?
+
+
+Opening the url in opera just displays a blank page.
+
+It can be viewed without styling using View/Style/User mode, or
+by selecting the opera icon, then page/style/user mode, depending
+on whether the menu bar is shown or not.
+
+Right clicking on the blank page, and selecting validate will
+open <A HREF="http://validator.w3.org/check#">http://validator.w3.org/check#</A> which shows a number of
+errors, most of which are the use of &lt;script&gt; instead of
+&lt;script type=&quot;text/javascript&quot;&gt;, but also the use of &lt;style&gt;
+in the body section, while the style should be in the head
+section.
+
+Go to <A HREF="http://jigsaw.w3.org/css-validator/">http://jigsaw.w3.org/css-validator/</A> , paste in the url,
+expand the &quot;More options&quot; section, and select CSS level 3, then
+select the check button. It shows 12 errors and 73 warnings.
+
+I don't know which error opera fails to handle that stops the
+page from being displayed.
+
+--
+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="001569.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001571.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1570">[ date ]</a>
+ <a href="thread.html#1570">[ thread ]</a>
+ <a href="subject.html#1570">[ subject ]</a>
+ <a href="author.html#1570">[ 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-November/001571.html b/zarb-ml/mageia-webteam/2011-November/001571.html
new file mode 100644
index 000000000..83a67894b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001571.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+ </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%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111129095045.EE28D47630%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="001570.html">
+ <LINK REL="Next" HREF="001572.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111129095045.EE28D47630%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 29 10:50:45 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001570.html">[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001572.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1571">[ date ]</a>
+ <a href="thread.html#1571">[ thread ]</a>
+ <a href="subject.html#1571">[ subject ]</a>
+ <a href="author.html#1571">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3526">https://bugs.mageia.org/show_bug.cgi?id=3526</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #1 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-11-29 10:50:45 CET ---
+I can see the validator errors and warnings you mention, and surely they should
+be fixed somewhen, but I can't reproduce the problem.
+
+I just did install opera to test and have no problems whatsoever in displaying
+the page.
+
+--
+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="001570.html">[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001572.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1571">[ date ]</a>
+ <a href="thread.html#1571">[ thread ]</a>
+ <a href="subject.html#1571">[ subject ]</a>
+ <a href="author.html#1571">[ 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-November/001572.html b/zarb-ml/mageia-webteam/2011-November/001572.html
new file mode 100644
index 000000000..8e26e1ef7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001572.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+ </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%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111129191902.4C8C747765%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="001571.html">
+ <LINK REL="Next" HREF="001573.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111129191902.4C8C747765%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 29 20:19:02 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001571.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001573.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1572">[ date ]</a>
+ <a href="thread.html#1572">[ thread ]</a>
+ <a href="subject.html#1572">[ subject ]</a>
+ <a href="author.html#1572">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3526">https://bugs.mageia.org/show_bug.cgi?id=3526</A>
+
+--- Comment #2 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2011-11-29 20:19:02 CET ---
+Thanks. I've now realized that the problem is ad blocking that I use
+with a custom bind setupk, based on the mvps hosts list. I'll have to
+dig a bit to figure out which entries to remove.
+
+Now that I have loaded the site, I've noticed that the site is marked
+as insecure.
+
+I think this is due to the use of two css entries
+<A HREF="http://fonts.googleapis.com/css?family=Ubuntu:regular,italic,bold">http://fonts.googleapis.com/css?family=Ubuntu:regular,italic,bold</A> and
+<A HREF="http://fonts.googleapis.com/css?family=Droid+Sans+Mono">http://fonts.googleapis.com/css?family=Droid+Sans+Mono</A>
+
+Those http links should be replaced with https entries.
+
+--
+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="001571.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001573.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1572">[ date ]</a>
+ <a href="thread.html#1572">[ thread ]</a>
+ <a href="subject.html#1572">[ subject ]</a>
+ <a href="author.html#1572">[ 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-November/001573.html b/zarb-ml/mageia-webteam/2011-November/001573.html
new file mode 100644
index 000000000..a633c6154
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001573.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+ </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%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111129193816.2ECBF47675%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="001572.html">
+ <LINK REL="Next" HREF="001574.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111129193816.2ECBF47675%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 29 20:38:16 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001572.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001574.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1573">[ date ]</a>
+ <a href="thread.html#1573">[ thread ]</a>
+ <a href="subject.html#1573">[ subject ]</a>
+ <a href="author.html#1573">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3526">https://bugs.mageia.org/show_bug.cgi?id=3526</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-11-29 20:38:16 CET ---
+Well, it's not even obvious these fonts are used at all. I think the Cavendish
+skin is good for a thorough code review...
+
+--
+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="001572.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001574.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1573">[ date ]</a>
+ <a href="thread.html#1573">[ thread ]</a>
+ <a href="subject.html#1573">[ subject ]</a>
+ <a href="author.html#1573">[ 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-November/001574.html b/zarb-ml/mageia-webteam/2011-November/001574.html
new file mode 100644
index 000000000..c50082f75
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001574.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+ </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%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111129195844.168E747622%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="001573.html">
+ <LINK REL="Next" HREF="001575.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111129195844.168E747622%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 29 20:58:44 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001573.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001575.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1574">[ date ]</a>
+ <a href="thread.html#1574">[ thread ]</a>
+ <a href="subject.html#1574">[ subject ]</a>
+ <a href="author.html#1574">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3526">https://bugs.mageia.org/show_bug.cgi?id=3526</A>
+
+--- Comment #4 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-11-29 21:58:39 CET ---
+I removed the usage of those fonts but must have been a bit careless.
+
+--
+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="001573.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001575.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1574">[ date ]</a>
+ <a href="thread.html#1574">[ thread ]</a>
+ <a href="subject.html#1574">[ subject ]</a>
+ <a href="author.html#1574">[ 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-November/001575.html b/zarb-ml/mageia-webteam/2011-November/001575.html
new file mode 100644
index 000000000..4dc7fa32b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001575.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+ </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%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111130000435.27FC2476A9%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="001574.html">
+ <LINK REL="Next" HREF="001576.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111130000435.27FC2476A9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 30 01:04:35 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001574.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001576.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1575">[ date ]</a>
+ <a href="thread.html#1575">[ thread ]</a>
+ <a href="subject.html#1575">[ subject ]</a>
+ <a href="author.html#1575">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3526">https://bugs.mageia.org/show_bug.cgi?id=3526</A>
+
+--- Comment #5 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2011-11-30 02:04:33 CET ---
+(In reply to comment #4)
+&gt;<i> I removed the usage of those fonts but must have been a bit careless.
+</I>
+Is that an update that needs to be pushed?
+
+I'm still seeing the import of the fonts from the http site in
+<A HREF="https://wiki.mageia.org/mw-en/skins/cavendish/main.css?270">https://wiki.mageia.org/mw-en/skins/cavendish/main.css?270</A>
+
+The http entries could be removed, if not used, or changed to https entries.
+
+--
+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="001574.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001576.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1575">[ date ]</a>
+ <a href="thread.html#1575">[ thread ]</a>
+ <a href="subject.html#1575">[ subject ]</a>
+ <a href="author.html#1575">[ 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-November/001576.html b/zarb-ml/mageia-webteam/2011-November/001576.html
new file mode 100644
index 000000000..25c523f9d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001576.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+ </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%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111130000803.3934D476A1%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="001575.html">
+ <LINK REL="Next" HREF="001577.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111130000803.3934D476A1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 30 01:08:03 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001575.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001577.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1576">[ date ]</a>
+ <a href="thread.html#1576">[ thread ]</a>
+ <a href="subject.html#1576">[ subject ]</a>
+ <a href="author.html#1576">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3526">https://bugs.mageia.org/show_bug.cgi?id=3526</A>
+
+--- Comment #6 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-11-30 01:08:03 CET ---
+No, I removed the usage of the fonts, when initially importing the theme. I
+have to look into it.
+But since this is no really urgent bug, it has to wait a few days.
+
+--
+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="001575.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001577.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1576">[ date ]</a>
+ <a href="thread.html#1576">[ thread ]</a>
+ <a href="subject.html#1576">[ subject ]</a>
+ <a href="author.html#1576">[ 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-November/001577.html b/zarb-ml/mageia-webteam/2011-November/001577.html
new file mode 100644
index 000000000..3994cacac
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001577.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+ </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%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111130155856.D74FB4772A%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="001576.html">
+ <LINK REL="Next" HREF="001578.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111130155856.D74FB4772A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 30 16:58:56 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001576.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001578.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1577">[ date ]</a>
+ <a href="thread.html#1577">[ thread ]</a>
+ <a href="subject.html#1577">[ subject ]</a>
+ <a href="author.html#1577">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3526">https://bugs.mageia.org/show_bug.cgi?id=3526</A>
+
+--- Comment #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-11-30 16:58:56 CET ---
+I removed the Ubuntu font definition (not needed) and imported/rewrote the
+Droid Sans Mono definition (so it uses a font file served by the wiki).
+
+Favicon, as well as two graphic resources called from www.m.o have been fixed
+as well.
+
+There are still 1 resource to check: the CC icon that sources from
+<A HREF="http://i.creativecommons.org/l/by-sa/3.0/88x31.png">http://i.creativecommons.org/l/by-sa/3.0/88x31.png</A> - although this might be
+deeper in wiki configuration (does not appear to be in the skin); it can be
+rewritten witih https directly;
+<A HREF="https://i.creativecommons.org/l/by-sa/3.0/88x31.png">https://i.creativecommons.org/l/by-sa/3.0/88x31.png</A> works.
+
+Looking into 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001576.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI>Next message: <A HREF="001578.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1577">[ date ]</a>
+ <a href="thread.html#1577">[ thread ]</a>
+ <a href="subject.html#1577">[ subject ]</a>
+ <a href="author.html#1577">[ 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-November/001578.html b/zarb-ml/mageia-webteam/2011-November/001578.html
new file mode 100644
index 000000000..44802415a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/001578.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+ </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%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111130155918.8B2F847730%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="001577.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203526%5D%20Due%20to%20css%20errors%20opera%20displays%20blank%0A%20page%20in%20author%20mode.&In-Reply-To=%3C20111130155918.8B2F847730%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Nov 30 16:59:18 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001577.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1578">[ date ]</a>
+ <a href="thread.html#1578">[ thread ]</a>
+ <a href="subject.html#1578">[ subject ]</a>
+ <a href="author.html#1578">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3526">https://bugs.mageia.org/show_bug.cgi?id=3526</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</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="001577.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1578">[ date ]</a>
+ <a href="thread.html#1578">[ thread ]</a>
+ <a href="subject.html#1578">[ subject ]</a>
+ <a href="author.html#1578">[ 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-November/author.html b/zarb-ml/mageia-webteam/2011-November/author.html
new file mode 100644
index 000000000..b5b14554d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/author.html
@@ -0,0 +1,422 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2011 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 2011 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>Tue Nov 1 22:08:07 CET 2011</i><br>
+ <b>Ending:</b> <i>Wed Nov 30 16:59:18 CET 2011</i><br>
+ <b>Messages:</b> 75<p>
+ <ul>
+
+<LI><A HREF="001560.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1560">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001542.html">[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum
+</A><A NAME="1542">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001547.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1547">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001543.html">[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A><A NAME="1543">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001544.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1544">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001549.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1549">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001557.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1557">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001558.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1558">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001551.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A><A NAME="1551">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001516.html">[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar
+</A><A NAME="1516">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001521.html">[Mageia-webteam] New wiki finally online
+</A><A NAME="1521">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001531.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1531">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001534.html">[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog
+</A><A NAME="1534">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001568.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1568">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001571.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1571">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001574.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1574">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001576.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1576">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001504.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1504">&nbsp;</A>
+<I>JeanMichel DYDAK
+</I>
+
+<LI><A HREF="001523.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1523">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001536.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1536">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001526.html">[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1526">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001527.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1527">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001528.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1528">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001529.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1529">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001552.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1552">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001562.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1562">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001509.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1509">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001510.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1510">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001511.html">[Mageia-webteam] [Bug 3287] [New] Add header on the guided template
+</A><A NAME="1511">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001512.html">[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl
+</A><A NAME="1512">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001520.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1520">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001522.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1522">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001539.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1539">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001540.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1540">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001555.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1555">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001570.html">[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1570">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001572.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1572">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001575.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1575">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001518.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1518">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001505.html">[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1505">&nbsp;</A>
+<I>Ezequiel Partida
+</I>
+
+<LI><A HREF="001515.html">[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar
+</A><A NAME="1515">&nbsp;</A>
+<I>Ezequiel Partida
+</I>
+
+<LI><A HREF="001530.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1530">&nbsp;</A>
+<I>Kamil R
+</I>
+
+<LI><A HREF="001556.html">[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1556">&nbsp;</A>
+<I>Ashiqur Rahman
+</I>
+
+<LI><A HREF="001525.html">[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems
+</A><A NAME="1525">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="001506.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1506">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001507.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1507">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001559.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1559">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001508.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1508">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001517.html">[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1517">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001519.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1519">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001553.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1553">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001564.html">[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate
+</A><A NAME="1564">&nbsp;</A>
+<I>Bill Wilkinson
+</I>
+
+<LI><A HREF="001565.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1565">&nbsp;</A>
+<I>Bill Wilkinson
+</I>
+
+<LI><A HREF="001524.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1524">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001538.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1538">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001513.html">[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1513">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001514.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1514">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001532.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1532">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001533.html">[Mageia-webteam] [Bug 3378] new wiki graphical problems
+</A><A NAME="1533">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001535.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1535">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001537.html">[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar
+</A><A NAME="1537">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001541.html">[Mageia-webteam] alpha 1 release info preparation
+</A><A NAME="1541">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001545.html">[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A><A NAME="1545">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001546.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1546">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001548.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1548">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001550.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1550">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001554.html">[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links
+</A><A NAME="1554">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001561.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1561">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001563.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1563">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001566.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1566">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001569.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1569">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001573.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1573">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001577.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1577">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001578.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1578">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001567.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1567">&nbsp;</A>
+<I>qchmqs qchmqs
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Nov 30 16:59:18 CET 2011</i><br>
+ <b>Archived on:</b> <i>Wed Nov 30 16:59:23 CET 2011</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/2011-November/date.html b/zarb-ml/mageia-webteam/2011-November/date.html
new file mode 100644
index 000000000..7c43cc881
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/date.html
@@ -0,0 +1,422 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2011 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 2011 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>Tue Nov 1 22:08:07 CET 2011</i><br>
+ <b>Ending:</b> <i>Wed Nov 30 16:59:18 CET 2011</i><br>
+ <b>Messages:</b> 75<p>
+ <ul>
+
+<LI><A HREF="001504.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1504">&nbsp;</A>
+<I>JeanMichel DYDAK
+</I>
+
+<LI><A HREF="001505.html">[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1505">&nbsp;</A>
+<I>Ezequiel Partida
+</I>
+
+<LI><A HREF="001506.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1506">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001507.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1507">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001508.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1508">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001509.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1509">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001510.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1510">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001511.html">[Mageia-webteam] [Bug 3287] [New] Add header on the guided template
+</A><A NAME="1511">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001512.html">[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl
+</A><A NAME="1512">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001513.html">[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1513">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001514.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1514">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001515.html">[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar
+</A><A NAME="1515">&nbsp;</A>
+<I>Ezequiel Partida
+</I>
+
+<LI><A HREF="001516.html">[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar
+</A><A NAME="1516">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001517.html">[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1517">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001518.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1518">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001519.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1519">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001520.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1520">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001521.html">[Mageia-webteam] New wiki finally online
+</A><A NAME="1521">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001522.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1522">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001523.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1523">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001524.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1524">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001525.html">[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems
+</A><A NAME="1525">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="001526.html">[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1526">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001527.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1527">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001528.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1528">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001529.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1529">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001530.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1530">&nbsp;</A>
+<I>Kamil R
+</I>
+
+<LI><A HREF="001531.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1531">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001532.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1532">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001533.html">[Mageia-webteam] [Bug 3378] new wiki graphical problems
+</A><A NAME="1533">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001534.html">[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog
+</A><A NAME="1534">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001535.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1535">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001536.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1536">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001537.html">[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar
+</A><A NAME="1537">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001538.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1538">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001539.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1539">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001540.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1540">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001541.html">[Mageia-webteam] alpha 1 release info preparation
+</A><A NAME="1541">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001542.html">[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum
+</A><A NAME="1542">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001543.html">[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A><A NAME="1543">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001544.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1544">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001545.html">[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A><A NAME="1545">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001546.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1546">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001547.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1547">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001548.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1548">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001549.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1549">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001550.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1550">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001551.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A><A NAME="1551">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001552.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1552">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001553.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1553">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001554.html">[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links
+</A><A NAME="1554">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001555.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1555">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001556.html">[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1556">&nbsp;</A>
+<I>Ashiqur Rahman
+</I>
+
+<LI><A HREF="001557.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1557">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001558.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1558">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001559.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1559">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001560.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1560">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001561.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1561">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001562.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1562">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001563.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1563">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001564.html">[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate
+</A><A NAME="1564">&nbsp;</A>
+<I>Bill Wilkinson
+</I>
+
+<LI><A HREF="001565.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1565">&nbsp;</A>
+<I>Bill Wilkinson
+</I>
+
+<LI><A HREF="001566.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1566">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001567.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1567">&nbsp;</A>
+<I>qchmqs qchmqs
+</I>
+
+<LI><A HREF="001568.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1568">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001569.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1569">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001570.html">[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1570">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001571.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1571">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001572.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1572">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001573.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1573">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001574.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1574">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001575.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1575">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001576.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1576">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001577.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1577">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001578.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1578">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Nov 30 16:59:18 CET 2011</i><br>
+ <b>Archived on:</b> <i>Wed Nov 30 16:59:23 CET 2011</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/2011-November/index.html b/zarb-ml/mageia-webteam/2011-November/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-November/subject.html b/zarb-ml/mageia-webteam/2011-November/subject.html
new file mode 100644
index 000000000..99772b5e9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/subject.html
@@ -0,0 +1,422 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2011 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 2011 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>Tue Nov 1 22:08:07 CET 2011</i><br>
+ <b>Ending:</b> <i>Wed Nov 30 16:59:18 CET 2011</i><br>
+ <b>Messages:</b> 75<p>
+ <ul>
+
+<LI><A HREF="001562.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1562">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001563.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1563">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001540.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1540">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001560.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1560">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001522.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1522">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001523.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1523">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001524.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1524">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001536.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1536">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001538.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1538">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001508.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1508">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001539.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1539">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001509.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1509">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001510.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1510">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001505.html">[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1505">&nbsp;</A>
+<I>Ezequiel Partida
+</I>
+
+<LI><A HREF="001506.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1506">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001507.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1507">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001511.html">[Mageia-webteam] [Bug 3287] [New] Add header on the guided template
+</A><A NAME="1511">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001551.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A><A NAME="1551">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001512.html">[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl
+</A><A NAME="1512">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001513.html">[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1513">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001514.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1514">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001515.html">[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar
+</A><A NAME="1515">&nbsp;</A>
+<I>Ezequiel Partida
+</I>
+
+<LI><A HREF="001516.html">[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar
+</A><A NAME="1516">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001517.html">[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1517">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001518.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1518">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001519.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1519">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001520.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1520">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001525.html">[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems
+</A><A NAME="1525">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="001533.html">[Mageia-webteam] [Bug 3378] new wiki graphical problems
+</A><A NAME="1533">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001526.html">[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1526">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001527.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1527">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001528.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1528">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001529.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1529">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001530.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1530">&nbsp;</A>
+<I>Kamil R
+</I>
+
+<LI><A HREF="001531.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1531">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001532.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1532">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001552.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1552">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001534.html">[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog
+</A><A NAME="1534">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001535.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1535">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001537.html">[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar
+</A><A NAME="1537">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001542.html">[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum
+</A><A NAME="1542">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001544.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1544">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001546.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1546">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001547.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1547">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001548.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1548">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001549.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1549">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001550.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1550">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001543.html">[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A><A NAME="1543">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001545.html">[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A><A NAME="1545">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001554.html">[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links
+</A><A NAME="1554">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001555.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1555">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001561.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1561">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001556.html">[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1556">&nbsp;</A>
+<I>Ashiqur Rahman
+</I>
+
+<LI><A HREF="001557.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1557">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001558.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1558">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001559.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1559">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001564.html">[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate
+</A><A NAME="1564">&nbsp;</A>
+<I>Bill Wilkinson
+</I>
+
+<LI><A HREF="001565.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1565">&nbsp;</A>
+<I>Bill Wilkinson
+</I>
+
+<LI><A HREF="001566.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1566">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001567.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1567">&nbsp;</A>
+<I>qchmqs qchmqs
+</I>
+
+<LI><A HREF="001568.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1568">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001569.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1569">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001570.html">[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1570">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001571.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1571">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001572.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1572">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001573.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1573">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001574.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1574">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001575.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1575">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001576.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1576">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001577.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1577">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001578.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1578">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001553.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1553">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001504.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1504">&nbsp;</A>
+<I>JeanMichel DYDAK
+</I>
+
+<LI><A HREF="001541.html">[Mageia-webteam] alpha 1 release info preparation
+</A><A NAME="1541">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001521.html">[Mageia-webteam] New wiki finally online
+</A><A NAME="1521">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Nov 30 16:59:18 CET 2011</i><br>
+ <b>Archived on:</b> <i>Wed Nov 30 16:59:23 CET 2011</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/2011-November/thread.html b/zarb-ml/mageia-webteam/2011-November/thread.html
new file mode 100644
index 000000000..d7dc6cdf4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-November/thread.html
@@ -0,0 +1,525 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2011 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 2011 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>Tue Nov 1 22:08:07 CET 2011</i><br>
+ <b>Ending:</b> <i>Wed Nov 30 16:59:18 CET 2011</i><br>
+ <b>Messages:</b> 75<p>
+ <ul>
+
+<!--0 01320181687- -->
+<LI><A HREF="001504.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1504">&nbsp;</A>
+<I>JeanMichel DYDAK
+</I>
+
+<!--0 01320419833- -->
+<LI><A HREF="001505.html">[Mageia-webteam] [Bug 3267] [New] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1505">&nbsp;</A>
+<I>Ezequiel Partida
+</I>
+
+<UL>
+<!--1 01320419833-01320420205- -->
+<LI><A HREF="001506.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1506">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01320419833-01320420236- -->
+<LI><A HREF="001507.html">[Mageia-webteam] [Bug 3267] gdm fails to start in 32 bit Mageia on old Pentium 4 PCs (Cauldron Mageia 2)
+</A><A NAME="1507">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+</UL>
+<!--0 01320529101- -->
+<LI><A HREF="001508.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1508">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01320707138- -->
+<LI><A HREF="001509.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1509">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01320707168- -->
+<LI><A HREF="001510.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1510">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01320707480- -->
+<LI><A HREF="001511.html">[Mageia-webteam] [Bug 3287] [New] Add header on the guided template
+</A><A NAME="1511">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01320707480-01322051924- -->
+<LI><A HREF="001551.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A><A NAME="1551">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+</UL>
+<!--0 01320708565- -->
+<LI><A HREF="001512.html">[Mageia-webteam] [Bug 3288] [New] Add an cronjob for collectstats.pl
+</A><A NAME="1512">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01320776347- -->
+<LI><A HREF="001513.html">[Mageia-webteam] [Bug 3299] [New] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1513">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01320776347-01320777576- -->
+<LI><A HREF="001514.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1514">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01320869309- -->
+<LI><A HREF="001515.html">[Mageia-webteam] [Bug 3305] [New] Windows Decorations Get Streched and looses buttons and titlebar
+</A><A NAME="1515">&nbsp;</A>
+<I>Ezequiel Partida
+</I>
+
+<UL>
+<!--1 01320869309-01320869571- -->
+<LI><A HREF="001516.html">[Mageia-webteam] [Bug 3305] Windows Decorations Get Streched and looses buttons and titlebar
+</A><A NAME="1516">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+<!--0 01321207295- -->
+<LI><A HREF="001517.html">[Mageia-webteam] [Bug 3333] [New] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1517">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<UL>
+<!--1 01321207295-01321213358- -->
+<LI><A HREF="001518.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1518">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--1 01321207295-01321214357- -->
+<LI><A HREF="001519.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1519">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01321207295-01321214803- -->
+<LI><A HREF="001520.html">[Mageia-webteam] [Bug 3333] Test bug to see whether Bugzilla finally learned to find all persons by nick only
+</A><A NAME="1520">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01321292158- -->
+<LI><A HREF="001521.html">[Mageia-webteam] New wiki finally online
+</A><A NAME="1521">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01321462435- -->
+<LI><A HREF="001522.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1522">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01321463669- -->
+<LI><A HREF="001523.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1523">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<!--0 01321483502- -->
+<LI><A HREF="001524.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1524">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--0 01321530557- -->
+<LI><A HREF="001525.html">[Mageia-webteam] [Bug 3378] [New] new wiki graphical problems
+</A><A NAME="1525">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<UL>
+<!--1 01321530557-01321629324- -->
+<LI><A HREF="001533.html">[Mageia-webteam] [Bug 3378] new wiki graphical problems
+</A><A NAME="1533">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01321577655- -->
+<LI><A HREF="001526.html">[Mageia-webteam] [Bug 3381] [New] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1526">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<UL>
+<!--1 01321577655-01321577697- -->
+<LI><A HREF="001527.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1527">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01321577655-01321577777- -->
+<LI><A HREF="001528.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1528">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01321577655-01321578470- -->
+<LI><A HREF="001529.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1529">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01321577655-01321580941- -->
+<LI><A HREF="001530.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1530">&nbsp;</A>
+<I>Kamil R
+</I>
+
+<!--1 01321577655-01321602099- -->
+<LI><A HREF="001531.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1531">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01321577655-01321603978- -->
+<LI><A HREF="001532.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1532">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01321577655-01322059194- -->
+<LI><A HREF="001552.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1552">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+</UL>
+<!--0 01321631850- -->
+<LI><A HREF="001534.html">[Mageia-webteam] [Bug 3383] [New] Navbar only on en blog
+</A><A NAME="1534">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01321631850-01321633346- -->
+<LI><A HREF="001535.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1535">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01321645791- -->
+<LI><A HREF="001536.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1536">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<!--0 01321645996- -->
+<LI><A HREF="001537.html">[Mageia-webteam] [Bug 3384] [New] Rethinking the global navigation bar
+</A><A NAME="1537">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01321654708- -->
+<LI><A HREF="001538.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1538">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--0 01321743214- -->
+<LI><A HREF="001539.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1539">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01321749098- -->
+<LI><A HREF="001540.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1540">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01321894244- -->
+<LI><A HREF="001541.html">[Mageia-webteam] alpha 1 release info preparation
+</A><A NAME="1541">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01321928804- -->
+<LI><A HREF="001542.html">[Mageia-webteam] [Bug 3411] [New] boot.iso no md5sum
+</A><A NAME="1542">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<UL>
+<!--1 01321928804-01321937352- -->
+<LI><A HREF="001544.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1544">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01321928804-01321949285- -->
+<LI><A HREF="001546.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1546">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01321928804-01321985178- -->
+<LI><A HREF="001547.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1547">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<!--1 01321928804-01322045823- -->
+<LI><A HREF="001548.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1548">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01321928804-01322048733- -->
+<LI><A HREF="001549.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1549">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01321928804-01322051160- -->
+<LI><A HREF="001550.html">[Mageia-webteam] [Bug 3411] boot.iso no md5sum
+</A><A NAME="1550">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01321936380- -->
+<LI><A HREF="001543.html">[Mageia-webteam] [Bug 3412] [New] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A><A NAME="1543">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--1 01321936380-01321949105- -->
+<LI><A HREF="001545.html">[Mageia-webteam] [Bug 3412] Differences (namely free vs. non-free contents) between isos only visible in the fine print
+</A><A NAME="1545">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01322083986- -->
+<LI><A HREF="001553.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1553">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01322238581- -->
+<LI><A HREF="001554.html">[Mageia-webteam] [Bug 3451] [New] Setup Bugzilla and download interwiki links
+</A><A NAME="1554">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01322238581-01322260459- -->
+<LI><A HREF="001555.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1555">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01322238581-01322407409- -->
+<LI><A HREF="001561.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="1561">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01322308743- -->
+<LI><A HREF="001556.html">[Mageia-webteam] [Bug 3464] [New] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1556">&nbsp;</A>
+<I>Ashiqur Rahman
+</I>
+
+<UL>
+<!--1 01322308743-01322309128- -->
+<LI><A HREF="001557.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1557">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01322308743-01322309299- -->
+<LI><A HREF="001558.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1558">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01322308743-01322329636- -->
+<LI><A HREF="001559.html">[Mageia-webteam] [Bug 3464] DVD mirror is not working of Mageia 2 through http://www.mageia.org/en/2/
+</A><A NAME="1559">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+</UL>
+<!--0 01322406141- -->
+<LI><A HREF="001560.html">[Mageia-webteam] [Bug 1054] Live CD's only for 32 bit install?
+</A><A NAME="1560">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<!--0 01322412988- -->
+<LI><A HREF="001562.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1562">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01322413835- -->
+<LI><A HREF="001563.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1563">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01322446662- -->
+<LI><A HREF="001564.html">[Mageia-webteam] [Bug 3515] [New] Wiki returns invalid certificate
+</A><A NAME="1564">&nbsp;</A>
+<I>Bill Wilkinson
+</I>
+
+<UL>
+<!--1 01322446662-01322446900- -->
+<LI><A HREF="001565.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1565">&nbsp;</A>
+<I>Bill Wilkinson
+</I>
+
+<!--1 01322446662-01322474837- -->
+<LI><A HREF="001566.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1566">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01322446662-01322491445- -->
+<LI><A HREF="001567.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1567">&nbsp;</A>
+<I>qchmqs qchmqs
+</I>
+
+<!--1 01322446662-01322492361- -->
+<LI><A HREF="001568.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1568">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01322446662-01322493336- -->
+<LI><A HREF="001569.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1569">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01322518625- -->
+<LI><A HREF="001570.html">[Mageia-webteam] [Bug 3526] [New] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1570">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<UL>
+<!--1 01322518625-01322560245- -->
+<LI><A HREF="001571.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1571">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01322518625-01322594342- -->
+<LI><A HREF="001572.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1572">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--1 01322518625-01322595496- -->
+<LI><A HREF="001573.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1573">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01322518625-01322596724- -->
+<LI><A HREF="001574.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1574">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01322518625-01322611475- -->
+<LI><A HREF="001575.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1575">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--1 01322518625-01322611683- -->
+<LI><A HREF="001576.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1576">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01322518625-01322668736- -->
+<LI><A HREF="001577.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1577">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01322518625-01322668758- -->
+<LI><A HREF="001578.html">[Mageia-webteam] [Bug 3526] Due to css errors opera displays blank page in author mode.
+</A><A NAME="1578">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Nov 30 16:59:18 CET 2011</i><br>
+ <b>Archived on:</b> <i>Wed Nov 30 16:59:23 CET 2011</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-October.txt.gz b/zarb-ml/mageia-webteam/2011-October.txt.gz
new file mode 100644
index 000000000..cbd6ae6d3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-October/001373.html b/zarb-ml/mageia-webteam/2011-October/001373.html
new file mode 100644
index 000000000..b95df4bc3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001373.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20111004042805.32CBB44627%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="001374.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20111004042805.32CBB44627%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 4 06:28:05 CEST 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001374.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1373">[ date ]</a>
+ <a href="thread.html#1373">[ thread ]</a>
+ <a href="subject.html#1373">[ subject ]</a>
+ <a href="author.html#1373">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; 2011-10-04 08:28:05 CEST ---
+Can't see in the history when this bug got assigned, must have been very long
+ago. Changing status to &quot;assigned&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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="001374.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1373">[ date ]</a>
+ <a href="thread.html#1373">[ thread ]</a>
+ <a href="subject.html#1373">[ subject ]</a>
+ <a href="author.html#1373">[ 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-October/001374.html b/zarb-ml/mageia-webteam/2011-October/001374.html
new file mode 100644
index 000000000..08b1e1210
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001374.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20111004051155.7119B4456E%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="001373.html">
+ <LINK REL="Next" HREF="001375.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20111004051155.7119B4456E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 4 07:11:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001373.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001375.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1374">[ date ]</a>
+ <a href="thread.html#1374">[ thread ]</a>
+ <a href="subject.html#1374">[ subject ]</a>
+ <a href="author.html#1374">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+--- Comment #5 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2011-10-04 09:11:54 CEST ---
+Using the search from Fr&#233;d&#233;ric in comment 1, I've saved this search and shared
+it as &quot;Bugs reported today&quot;. Feel free to use. I think this provides an
+adequate resolution to this report?
+
+--
+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="001373.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001375.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1374">[ date ]</a>
+ <a href="thread.html#1374">[ thread ]</a>
+ <a href="subject.html#1374">[ subject ]</a>
+ <a href="author.html#1374">[ 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-October/001375.html b/zarb-ml/mageia-webteam/2011-October/001375.html
new file mode 100644
index 000000000..1ba098494
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001375.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111004092957.416EA44643%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="001374.html">
+ <LINK REL="Next" HREF="001376.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111004092957.416EA44643%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 4 11:29:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001374.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001376.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1375">[ date ]</a>
+ <a href="thread.html#1375">[ thread ]</a>
+ <a href="subject.html#1375">[ subject ]</a>
+ <a href="author.html#1375">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #9 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-10-04 13:29:56 CEST ---
+See a similar initiative: <A HREF="https://mozillians.org/">https://mozillians.org/</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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001374.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001376.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1375">[ date ]</a>
+ <a href="thread.html#1375">[ thread ]</a>
+ <a href="subject.html#1375">[ subject ]</a>
+ <a href="author.html#1375">[ 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-October/001376.html b/zarb-ml/mageia-webteam/2011-October/001376.html
new file mode 100644
index 000000000..9ee94f02e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001376.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+ </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%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20111004093723.31CFB4464B%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="001375.html">
+ <LINK REL="Next" HREF="001377.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2042%5D%20Possibility%20to%20see%20bugs%20reported%20today%20is%0A%09wanted&In-Reply-To=%3C20111004093723.31CFB4464B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 4 11:37:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001375.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001377.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1376">[ date ]</a>
+ <a href="thread.html#1376">[ thread ]</a>
+ <a href="subject.html#1376">[ subject ]</a>
+ <a href="author.html#1376">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=42">https://bugs.mageia.org/show_bug.cgi?id=42</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|ASSIGNED |NEW
+
+--- Comment #6 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; 2011-10-04 13:37:23 CEST ---
+Just learned status ASSIGNED doesn't mean assigned, but WORKING ON SOLUTION, so
+reverting status to NEW
+
+--
+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="001375.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001377.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1376">[ date ]</a>
+ <a href="thread.html#1376">[ thread ]</a>
+ <a href="subject.html#1376">[ subject ]</a>
+ <a href="author.html#1376">[ 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-October/001377.html b/zarb-ml/mageia-webteam/2011-October/001377.html
new file mode 100644
index 000000000..ece8cec7c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001377.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ </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%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20111004121917.6C26444656%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="001376.html">
+ <LINK REL="Next" HREF="001378.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20104%5D%20%5BWISH%5D%20Start%20an%20online%20torrent-tracker%0A%20with%20the%20torrent-releases%20like%20Ubuntu%20does%20to%20keep%20track%20of%20how%20many%20that%0A%20are%20downloading%20it&In-Reply-To=%3C20111004121917.6C26444656%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 4 14:19:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001376.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001378.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1377">[ date ]</a>
+ <a href="thread.html#1377">[ thread ]</a>
+ <a href="subject.html#1377">[ subject ]</a>
+ <a href="author.html#1377">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; 2011-10-04 14:19:17 CEST ---
+(In reply to comment #1)
+&gt;<i> This is already planned :
+</I>&gt;<i> <A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2011-February/002750.html">https://www.mageia.org/pipermail/mageia-sysadm/2011-February/002750.html</A>
+</I>
+@ webteam
+
+And what happened since then?
+
+--
+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="001376.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A></li>
+ <LI>Next message: <A HREF="001378.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1377">[ date ]</a>
+ <a href="thread.html#1377">[ thread ]</a>
+ <a href="subject.html#1377">[ subject ]</a>
+ <a href="author.html#1377">[ 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-October/001378.html b/zarb-ml/mageia-webteam/2011-October/001378.html
new file mode 100644
index 000000000..130a26b63
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001378.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 252] Authentication does not work with email address
+ </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%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20111004130842.DAE7C446D1%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="001377.html">
+ <LINK REL="Next" HREF="001379.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 252] Authentication does not work with email address</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20252%5D%20Authentication%20does%20not%20work%20with%20email%0A%09address&In-Reply-To=%3C20111004130842.DAE7C446D1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 252] Authentication does not work with email address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 4 15:08:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001377.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="001379.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1378">[ date ]</a>
+ <a href="thread.html#1378">[ thread ]</a>
+ <a href="subject.html#1378">[ subject ]</a>
+ <a href="author.html#1378">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; 2011-10-04 15:08:42 CEST ---
+@ Mageia Web Team
+
+Any news on this bug?
+
+--
+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="001377.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A></li>
+ <LI>Next message: <A HREF="001379.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1378">[ date ]</a>
+ <a href="thread.html#1378">[ thread ]</a>
+ <a href="subject.html#1378">[ subject ]</a>
+ <a href="author.html#1378">[ 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-October/001379.html b/zarb-ml/mageia-webteam/2011-October/001379.html
new file mode 100644
index 000000000..1e7b6e358
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001379.html
@@ -0,0 +1,111 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111005114649.7C3BD44926%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="001378.html">
+ <LINK REL="Next" HREF="001380.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Buchan Milne</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111005114649.7C3BD44926%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 5 13:46:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001378.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="001380.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1379">[ date ]</a>
+ <a href="thread.html#1379">[ thread ]</a>
+ <a href="subject.html#1379">[ subject ]</a>
+ <a href="author.html#1379">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at zarb.org</A>
+
+--- Comment #10 from Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at zarb.org</A>&gt; 2011-10-05 15:46:48 CEST ---
+&gt;<i> Country/city can already be done with localityName and countryName, but no
+</I>&gt;<i> schema seems to use it so far.
+</I>
+'l' is an alias for 'localityName', and organisationalPerson-&gt;inetOrgPerson has
+it. They also have 'st' for 'state' and 'postalCode'
+
+It would be relatively easy to add support for additional attributes to hold
+locality data (e.g. adding contryName or 'c' is relatively trivial).
+
+To do it properly, we should request an enterprise number from IANA so we can
+have viable schema definitions (that can be published).
+
+The biggest issue is how to store coordinates, e.g. as as plain string, or as
+attributes dedicated for longitude or latitude (which impacts whether you can
+easily store multiple values).
+
+&gt;<i> Otherwise, yes, having a dedicated small db for this would make it. Do we need
+</I>&gt;<i> more than these two relationships?
+</I>&gt;<i> * user lives in place (or even places but that makes it out of LDAP I think,
+</I>let's keep it simple)
+
+Easy if we don't consider coordinates, we use a multi-valued attribute.
+
+'l' or 'localityName' is multi-valued.
+
+[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at tiger</A> bgmilne]$ ldapsearch -LLL uid=bgmilne l 2&gt;/dev/null
+dn: uid=bgmilne,ou=People,dc=ranger,dc=dnsalias,dc=com
+l: Cullinan
+l: Centurion
+l: Lagos
+l: Cape Town
+
+&gt;<i> * place has coordinates
+</I>
+If you want to store one, no problem. Many options open, format being the
+biggest issue to worry about (decimal or not).
+
+If you want multiple ones, easy if latitude and longitude stored together as a
+single string, or using any other coding that results in unique strings.
+
+If you want to associate to localityName's, more difficult.
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001378.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A></li>
+ <LI>Next message: <A HREF="001380.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1379">[ date ]</a>
+ <a href="thread.html#1379">[ thread ]</a>
+ <a href="subject.html#1379">[ subject ]</a>
+ <a href="author.html#1379">[ 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-October/001380.html b/zarb-ml/mageia-webteam/2011-October/001380.html
new file mode 100644
index 000000000..e6d9b5d86
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001380.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111005130906.AB76D44937%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="001379.html">
+ <LINK REL="Next" HREF="001381.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111005130906.AB76D44937%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 5 15:09:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001379.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001381.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1380">[ date ]</a>
+ <a href="thread.html#1380">[ thread ]</a>
+ <a href="subject.html#1380">[ subject ]</a>
+ <a href="author.html#1380">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #11 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-10-05 17:09:06 CEST ---
+(In reply to comment #10)
+&gt;<i> 'l' is an alias for 'localityName', and organisationalPerson-&gt;inetOrgPerson has
+</I>&gt;<i> it. They also have 'st' for 'state' and 'postalCode'
+</I>&gt;<i>
+</I>&gt;<i> It would be relatively easy to add support for additional attributes to hold
+</I>&gt;<i> locality data (e.g. adding contryName or 'c' is relatively trivial).
+</I>
+Cool.
+
+&gt;<i> To do it properly, we should request an enterprise number from IANA so we can
+</I>&gt;<i> have viable schema definitions (that can be published).
+</I>
+Yep, I can do that. Go for it?
+
+&gt;<i> The biggest issue is how to store coordinates, e.g. as as plain string, or as
+</I>&gt;<i> attributes dedicated for longitude or latitude (which impacts whether you can
+</I>&gt;<i> easily store multiple values).
+</I>
+I am not sure we should store coordinates in LDAP:
+ - we would ask only for country and locality name to people, for their
+account,
+ - a separate app will use that as a reference and make the geocoding (for
+mapping, matching, etc.).
+
+&gt;<i> &gt; Otherwise, yes, having a dedicated small db for this would make it. Do we need
+</I>&gt;<i> &gt; more than these two relationships?
+</I>&gt;<i> &gt; * user lives in place (or even places but that makes it out of LDAP I think,
+</I>&gt;<i> let's keep it simple)
+</I>&gt;<i>
+</I>&gt;<i> Easy if we don't consider coordinates, we use a multi-valued attribute.
+</I>&gt;<i>
+</I>&gt;<i> 'l' or 'localityName' is multi-valued.
+</I>
+Excellent.
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001379.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001381.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1380">[ date ]</a>
+ <a href="thread.html#1380">[ thread ]</a>
+ <a href="subject.html#1380">[ subject ]</a>
+ <a href="author.html#1380">[ 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-October/001381.html b/zarb-ml/mageia-webteam/2011-October/001381.html
new file mode 100644
index 000000000..1fbead983
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001381.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111005151036.D8B8C44954%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="001380.html">
+ <LINK REL="Next" HREF="001382.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Buchan Milne</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111005151036.D8B8C44954%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 5 17:10:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001380.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001382.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1381">[ date ]</a>
+ <a href="thread.html#1381">[ thread ]</a>
+ <a href="subject.html#1381">[ subject ]</a>
+ <a href="author.html#1381">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #12 from Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at zarb.org</A>&gt; 2011-10-05 19:10:36 CEST ---
+&gt;<i> &gt; To do it properly, we should request an enterprise number from IANA so we can
+</I>&gt;<i> &gt; have viable schema definitions (that can be published).
+</I>&gt;<i>
+</I>&gt;<i> Yep, I can do that. Go for it?
+</I>
+Please.
+
+We will need to discuss how we maintain the OID space, but we could just have a
+project in svn to maintain the schema.
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001380.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001382.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1381">[ date ]</a>
+ <a href="thread.html#1381">[ thread ]</a>
+ <a href="subject.html#1381">[ subject ]</a>
+ <a href="author.html#1381">[ 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-October/001382.html b/zarb-ml/mageia-webteam/2011-October/001382.html
new file mode 100644
index 000000000..02f41e28f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001382.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+ </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%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20111005153413.88FF84493A%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="001381.html">
+ <LINK REL="Next" HREF="001383.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2013%5D%20Add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20111005153413.88FF84493A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 5 17:34:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001381.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001383.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1382">[ date ]</a>
+ <a href="thread.html#1382">[ thread ]</a>
+ <a href="subject.html#1382">[ subject ]</a>
+ <a href="author.html#1382">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=13">https://bugs.mageia.org/show_bug.cgi?id=13</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-05 17:34:11 CEST ---
+@ dmorgan
+
+Any news?
+
+--
+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="001381.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001383.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1382">[ date ]</a>
+ <a href="thread.html#1382">[ thread ]</a>
+ <a href="subject.html#1382">[ subject ]</a>
+ <a href="author.html#1382">[ 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-October/001383.html b/zarb-ml/mageia-webteam/2011-October/001383.html
new file mode 100644
index 000000000..f6d51443a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001383.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+ </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%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20111005153950.DFC0B4495D%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="001382.html">
+ <LINK REL="Next" HREF="001384.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20166%5D%20add%20a%20link%20in%20Home%20to%20monitor%20all%20the%0A%20bugs%20which%20a%20person%20is%20CC%27ed%20to&In-Reply-To=%3C20111005153950.DFC0B4495D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 5 17:39:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001382.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="001384.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1383">[ date ]</a>
+ <a href="thread.html#1383">[ thread ]</a>
+ <a href="subject.html#1383">[ subject ]</a>
+ <a href="author.html#1383">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=166">https://bugs.mageia.org/show_bug.cgi?id=166</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #12 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-05 19:39:50 CEST ---
+(In reply to comment #11)
+&gt;<i> will be done when using bugzilla 4.0.1
+</I>
+@ dmorgan
+
+When is that planned to happen?
+
+--
+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="001382.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="001384.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1383">[ date ]</a>
+ <a href="thread.html#1383">[ thread ]</a>
+ <a href="subject.html#1383">[ subject ]</a>
+ <a href="author.html#1383">[ 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-October/001384.html b/zarb-ml/mageia-webteam/2011-October/001384.html
new file mode 100644
index 000000000..fa1dc748b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001384.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111005170007.39F264497E%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="001383.html">
+ <LINK REL="Next" HREF="001385.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111005170007.39F264497E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 5 19:00:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001383.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001385.html">[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1384">[ date ]</a>
+ <a href="thread.html#1384">[ thread ]</a>
+ <a href="subject.html#1384">[ subject ]</a>
+ <a href="author.html#1384">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #13 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-10-05 19:00:07 CEST ---
+Request sent to IANA.
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001383.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A></li>
+ <LI>Next message: <A HREF="001385.html">[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1384">[ date ]</a>
+ <a href="thread.html#1384">[ thread ]</a>
+ <a href="subject.html#1384">[ subject ]</a>
+ <a href="author.html#1384">[ 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-October/001385.html b/zarb-ml/mageia-webteam/2011-October/001385.html
new file mode 100644
index 000000000..8f60eb2d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001385.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected
+ </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%202951%5D%20%5BNew%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%0A%09device%20is%20connected&In-Reply-To=%3Cbug-2951-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="001384.html">
+ <LINK REL="Next" HREF="001386.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected</H1>
+ <B>aodren gomez</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202951%5D%20%5BNew%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%0A%09device%20is%20connected&In-Reply-To=%3Cbug-2951-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 04:19:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001384.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001386.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1385">[ date ]</a>
+ <a href="thread.html#1385">[ thread ]</a>
+ <a href="subject.html#1385">[ subject ]</a>
+ <a href="author.html#1385">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2951">https://bugs.mageia.org/show_bug.cgi?id=2951</A>
+
+ Summary: HDD change /dev/sd* when a USB device is connected
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: critical
+ 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">sspam at sfr.fr</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>
+
+
+Mageia 1 i586
+
+Description of problem:
+/// sorry my english is very bad \\\
+
+when a bluetooth adaptator or a usb key (32Go NTFS) is connected and
+disconnected, /dev/sda change to /dev/sde and after (2/3 hours) /dev/sde back
+to /dev/sda
+the usb key use /dev/sdf everytime and the bluetooth not use /dev/sd*
+every time I mount the hard drive
+
+--
+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="001384.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001386.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1385">[ date ]</a>
+ <a href="thread.html#1385">[ thread ]</a>
+ <a href="subject.html#1385">[ subject ]</a>
+ <a href="author.html#1385">[ 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-October/001386.html b/zarb-ml/mageia-webteam/2011-October/001386.html
new file mode 100644
index 000000000..ddcad4521
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001386.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+ </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%202951%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%20device%0A%09is%20connected&In-Reply-To=%3C20111006022101.E766344A29%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="001385.html">
+ <LINK REL="Next" HREF="001393.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected</H1>
+ <B>aodren gomez</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202951%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%20device%0A%09is%20connected&In-Reply-To=%3C20111006022101.E766344A29%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 04:21:01 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001385.html">[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001393.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1386">[ date ]</a>
+ <a href="thread.html#1386">[ thread ]</a>
+ <a href="subject.html#1386">[ subject ]</a>
+ <a href="author.html#1386">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2951">https://bugs.mageia.org/show_bug.cgi?id=2951</A>
+
+aodren gomez &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sspam at sfr.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+
+--- Comment #1 from aodren gomez &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sspam at sfr.fr</A>&gt; 2011-10-06 04:21:02 CEST ---
+PS : when /dev/sda change to /dev/sde, /dev/sda is missing on /dev list
+the first is /dev/sdb
+
+--
+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="001385.html">[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001393.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1386">[ date ]</a>
+ <a href="thread.html#1386">[ thread ]</a>
+ <a href="subject.html#1386">[ subject ]</a>
+ <a href="author.html#1386">[ 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-October/001387.html b/zarb-ml/mageia-webteam/2011-October/001387.html
new file mode 100644
index 000000000..0fd2b95ab
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001387.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+ </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%20386%5D%20Cannot%20reset%20password%20if%20the%20user%20didn%27t%0A%20set%20preferedLanguage&In-Reply-To=%3C20111006045824.601BC44A36%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="001397.html">
+ <LINK REL="Next" HREF="001388.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20386%5D%20Cannot%20reset%20password%20if%20the%20user%20didn%27t%0A%20set%20preferedLanguage&In-Reply-To=%3C20111006045824.601BC44A36%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 06:58:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001397.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001388.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1387">[ date ]</a>
+ <a href="thread.html#1387">[ thread ]</a>
+ <a href="subject.html#1387">[ subject ]</a>
+ <a href="author.html#1387">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-06 08:58:24 CEST ---
+@ misc
+@ webteam
+
+Bug still there?
+
+--
+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="001397.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001388.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1387">[ date ]</a>
+ <a href="thread.html#1387">[ thread ]</a>
+ <a href="subject.html#1387">[ subject ]</a>
+ <a href="author.html#1387">[ 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-October/001388.html b/zarb-ml/mageia-webteam/2011-October/001388.html
new file mode 100644
index 000000000..4ec74e85d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001388.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+ </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%20387%5D%20Setting%20the%20preferedLanguage%20of%20a%20user%0A%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3C20111006045925.DB01044A39%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="001387.html">
+ <LINK REL="Next" HREF="001389.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20387%5D%20Setting%20the%20preferedLanguage%20of%20a%20user%0A%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3C20111006045925.DB01044A39%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 06:59:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001387.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI>Next message: <A HREF="001389.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1388">[ date ]</a>
+ <a href="thread.html#1388">[ thread ]</a>
+ <a href="subject.html#1388">[ subject ]</a>
+ <a href="author.html#1388">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-06 06:59:26 CEST ---
+@ misc
+@ webteam
+
+any updates on this bug?
+
+--
+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="001387.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI>Next message: <A HREF="001389.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1388">[ date ]</a>
+ <a href="thread.html#1388">[ thread ]</a>
+ <a href="subject.html#1388">[ subject ]</a>
+ <a href="author.html#1388">[ 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-October/001389.html b/zarb-ml/mageia-webteam/2011-October/001389.html
new file mode 100644
index 000000000..0489a2b21
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001389.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+ </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%20386%5D%20Cannot%20reset%20password%20if%20the%20user%20didn%27t%0A%20set%20preferedLanguage&In-Reply-To=%3C20111006050719.C62EA44A41%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="001388.html">
+ <LINK REL="Next" HREF="001390.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20386%5D%20Cannot%20reset%20password%20if%20the%20user%20didn%27t%0A%20set%20preferedLanguage&In-Reply-To=%3C20111006050719.C62EA44A41%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 07:07:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001388.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="001390.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1389">[ date ]</a>
+ <a href="thread.html#1389">[ thread ]</a>
+ <a href="subject.html#1389">[ subject ]</a>
+ <a href="author.html#1389">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+
+--- Comment #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-10-06 09:07:19 CEST ---
+Likely, I do not remember fixing it and the code still has the issue from what
+I see, but this could be quick ( just add a default value in the 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001388.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="001390.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1389">[ date ]</a>
+ <a href="thread.html#1389">[ thread ]</a>
+ <a href="subject.html#1389">[ subject ]</a>
+ <a href="author.html#1389">[ 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-October/001390.html b/zarb-ml/mageia-webteam/2011-October/001390.html
new file mode 100644
index 000000000..baf1412f2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001390.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+ </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%20387%5D%20Setting%20the%20preferedLanguage%20of%20a%20user%0A%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3C20111006050810.4540F44A43%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="001389.html">
+ <LINK REL="Next" HREF="001391.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20387%5D%20Setting%20the%20preferedLanguage%20of%20a%20user%0A%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3C20111006050810.4540F44A43%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 07:08:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001389.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI>Next message: <A HREF="001391.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1390">[ date ]</a>
+ <a href="thread.html#1390">[ thread ]</a>
+ <a href="subject.html#1390">[ subject ]</a>
+ <a href="author.html#1390">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+
+--- Comment #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-10-06 09:08:10 CEST ---
+No news, and I didn't investigate more, but it is likely still here.
+
+--
+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="001389.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI>Next message: <A HREF="001391.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1390">[ date ]</a>
+ <a href="thread.html#1390">[ thread ]</a>
+ <a href="subject.html#1390">[ subject ]</a>
+ <a href="author.html#1390">[ 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-October/001391.html b/zarb-ml/mageia-webteam/2011-October/001391.html
new file mode 100644
index 000000000..82ff6038c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001391.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20111006050858.A331D44A45%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="001390.html">
+ <LINK REL="Next" HREF="001392.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20111006050858.A331D44A45%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 07:08:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001390.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="001392.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1391">[ date ]</a>
+ <a href="thread.html#1391">[ thread ]</a>
+ <a href="subject.html#1391">[ subject ]</a>
+ <a href="author.html#1391">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-06 09:08:58 CEST ---
+Did this get solved?
+
+--
+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="001390.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="001392.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1391">[ date ]</a>
+ <a href="thread.html#1391">[ thread ]</a>
+ <a href="subject.html#1391">[ subject ]</a>
+ <a href="author.html#1391">[ 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-October/001392.html b/zarb-ml/mageia-webteam/2011-October/001392.html
new file mode 100644
index 000000000..aef243cb7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001392.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+ </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%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20111006052020.8AE1844A49%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="001391.html">
+ <LINK REL="Next" HREF="001395.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20111006052020.8AE1844A49%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 07:20:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001391.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001395.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1392">[ date ]</a>
+ <a href="thread.html#1392">[ thread ]</a>
+ <a href="subject.html#1392">[ subject ]</a>
+ <a href="author.html#1392">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-06 07:20:20 CEST ---
+
+&gt;<i> (this bug is open
+</I>&gt;<i> for other bugs to reference it - should be closed by Mageia 1 stable release,
+</I>&gt;<i> hopefully).
+</I>&gt;<i>
+</I>
+@ Romain
+
+Mageia 1 is here and the list in the link hasn't changed since 2011-03-29, can
+that list be updated or this bug closed?
+
+--
+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="001391.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001395.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1392">[ date ]</a>
+ <a href="thread.html#1392">[ thread ]</a>
+ <a href="subject.html#1392">[ subject ]</a>
+ <a href="author.html#1392">[ 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-October/001393.html b/zarb-ml/mageia-webteam/2011-October/001393.html
new file mode 100644
index 000000000..6f740ad40
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001393.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+ </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%202951%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%20device%0A%09is%20connected&In-Reply-To=%3C20111006063243.1ED8744A0E%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="001386.html">
+ <LINK REL="Next" HREF="001394.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202951%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%20device%0A%09is%20connected&In-Reply-To=%3C20111006063243.1ED8744A0E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 08:32:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001386.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001394.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1393">[ date ]</a>
+ <a href="thread.html#1393">[ thread ]</a>
+ <a href="subject.html#1393">[ subject ]</a>
+ <a href="author.html#1393">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2951">https://bugs.mageia.org/show_bug.cgi?id=2951</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
+----------------------------------------------------------------------------
+ Product|Infrastructure |Mageia
+ Version|unspecified |1
+ Component|Bugzilla |RPM Packages
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</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="001386.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001394.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1393">[ date ]</a>
+ <a href="thread.html#1393">[ thread ]</a>
+ <a href="subject.html#1393">[ subject ]</a>
+ <a href="author.html#1393">[ 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-October/001394.html b/zarb-ml/mageia-webteam/2011-October/001394.html
new file mode 100644
index 000000000..c0e0de5e0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001394.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+ </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%202951%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%20device%0A%09is%20connected&In-Reply-To=%3C20111006063346.836C844A63%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="001393.html">
+ <LINK REL="Next" HREF="001397.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202951%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%20device%0A%09is%20connected&In-Reply-To=%3C20111006063346.836C844A63%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 08:33:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001393.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001397.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1394">[ date ]</a>
+ <a href="thread.html#1394">[ thread ]</a>
+ <a href="subject.html#1394">[ subject ]</a>
+ <a href="author.html#1394">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2951">https://bugs.mageia.org/show_bug.cgi?id=2951</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
+----------------------------------------------------------------------------
+ Keywords| |NEEDINFO
+ RPM Package| |udev
+
+--- Comment #2 from Thierry Vignaud &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>&gt; 2011-10-06 10:33:46 CEST ---
+Please attach the dmesg.txt file resulting from running the following command:
+dmesg&gt;dmesg.txt
+
+--
+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="001393.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001397.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1394">[ date ]</a>
+ <a href="thread.html#1394">[ thread ]</a>
+ <a href="subject.html#1394">[ subject ]</a>
+ <a href="author.html#1394">[ 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-October/001395.html b/zarb-ml/mageia-webteam/2011-October/001395.html
new file mode 100644
index 000000000..76c1d784f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001395.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+ </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%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20111006075259.738E044A7B%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="001392.html">
+ <LINK REL="Next" HREF="001396.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20111006075259.738E044A7B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 09:52:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001392.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001396.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1395">[ date ]</a>
+ <a href="thread.html#1395">[ thread ]</a>
+ <a href="subject.html#1395">[ subject ]</a>
+ <a href="author.html#1395">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-10-06 09:52:59 CEST ---
+Our Web site in its whole is far from over, so this bug is still pending.
+
+--
+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="001392.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001396.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1395">[ date ]</a>
+ <a href="thread.html#1395">[ thread ]</a>
+ <a href="subject.html#1395">[ subject ]</a>
+ <a href="author.html#1395">[ 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-October/001396.html b/zarb-ml/mageia-webteam/2011-October/001396.html
new file mode 100644
index 000000000..42f223251
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001396.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20111006075316.C1D5F44A7B%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="001395.html">
+ <LINK REL="Next" HREF="001398.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20111006075316.C1D5F44A7B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 09:53:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001395.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001398.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1396">[ date ]</a>
+ <a href="thread.html#1396">[ thread ]</a>
+ <a href="subject.html#1396">[ subject ]</a>
+ <a href="author.html#1396">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</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-10-06 11:53:17 CEST ---
+Not that I know of.
+
+--
+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="001395.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001398.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1396">[ date ]</a>
+ <a href="thread.html#1396">[ thread ]</a>
+ <a href="subject.html#1396">[ subject ]</a>
+ <a href="author.html#1396">[ 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-October/001397.html b/zarb-ml/mageia-webteam/2011-October/001397.html
new file mode 100644
index 000000000..4ec66b2ba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001397.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+ </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%202951%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%20device%0A%09is%20connected&In-Reply-To=%3C20111006075927.08A9244A80%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="001394.html">
+ <LINK REL="Next" HREF="001387.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202951%5D%20HDD%20change%20/dev/sd%2A%20when%20a%20USB%20device%0A%09is%20connected&In-Reply-To=%3C20111006075927.08A9244A80%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 09:59:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001394.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001387.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1397">[ date ]</a>
+ <a href="thread.html#1397">[ thread ]</a>
+ <a href="subject.html#1397">[ subject ]</a>
+ <a href="author.html#1397">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2951">https://bugs.mageia.org/show_bug.cgi?id=2951</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ 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">oliver.bgr at googlemail.com</A>
+ |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</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="001394.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A></li>
+ <LI>Next message: <A HREF="001387.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1397">[ date ]</a>
+ <a href="thread.html#1397">[ thread ]</a>
+ <a href="subject.html#1397">[ subject ]</a>
+ <a href="author.html#1397">[ 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-October/001398.html b/zarb-ml/mageia-webteam/2011-October/001398.html
new file mode 100644
index 000000000..63d8d5f3c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001398.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+ </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%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20111006195737.D3EB044B49%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="001396.html">
+ <LINK REL="Next" HREF="001399.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20111006195737.D3EB044B49%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 6 21:57:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001396.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001399.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1398">[ date ]</a>
+ <a href="thread.html#1398">[ thread ]</a>
+ <a href="subject.html#1398">[ subject ]</a>
+ <a href="author.html#1398">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Keywords| |TRACKER
+
+--
+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="001396.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001399.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1398">[ date ]</a>
+ <a href="thread.html#1398">[ thread ]</a>
+ <a href="subject.html#1398">[ subject ]</a>
+ <a href="author.html#1398">[ 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-October/001399.html b/zarb-ml/mageia-webteam/2011-October/001399.html
new file mode 100644
index 000000000..48fb7745e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001399.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 451] FAQ should be refreshed
+ </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%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20111007194119.1316F44CC8%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="001398.html">
+ <LINK REL="Next" HREF="001400.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 451] FAQ should be refreshed</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20111007194119.1316F44CC8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 451] FAQ should be refreshed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 7 21:41:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001398.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001400.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1399">[ date ]</a>
+ <a href="thread.html#1399">[ thread ]</a>
+ <a href="subject.html#1399">[ subject ]</a>
+ <a href="author.html#1399">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-07 21:41:18 CEST ---
+Any news? Is the FAQ going to be in the mediawiki?
+
+--
+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="001398.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001400.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1399">[ date ]</a>
+ <a href="thread.html#1399">[ thread ]</a>
+ <a href="subject.html#1399">[ subject ]</a>
+ <a href="author.html#1399">[ 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-October/001400.html b/zarb-ml/mageia-webteam/2011-October/001400.html
new file mode 100644
index 000000000..5e4b9bcf5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001400.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 465] captcha is annoying
+ </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%20465%5D%20captcha%20is%20annoying&In-Reply-To=%3C20111007201443.867EE44CE0%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="001399.html">
+ <LINK REL="Next" HREF="001401.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 465] captcha is annoying</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20465%5D%20captcha%20is%20annoying&In-Reply-To=%3C20111007201443.867EE44CE0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 465] captcha is annoying">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 7 22:14:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001399.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001401.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1400">[ date ]</a>
+ <a href="thread.html#1400">[ thread ]</a>
+ <a href="subject.html#1400">[ subject ]</a>
+ <a href="author.html#1400">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-08 00:14:43 CEST ---
+Any news on this bug?
+
+--
+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="001399.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001401.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1400">[ date ]</a>
+ <a href="thread.html#1400">[ thread ]</a>
+ <a href="subject.html#1400">[ subject ]</a>
+ <a href="author.html#1400">[ 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-October/001401.html b/zarb-ml/mageia-webteam/2011-October/001401.html
new file mode 100644
index 000000000..bcd922799
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001401.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition 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%20543%5D%20Allow%20to%20promote%20a%20user%20directly%20from%0A%20the%20user%20edition%20page&In-Reply-To=%3C20111007211429.A28FC44D10%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="001400.html">
+ <LINK REL="Next" HREF="001402.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20543%5D%20Allow%20to%20promote%20a%20user%20directly%20from%0A%20the%20user%20edition%20page&In-Reply-To=%3C20111007211429.A28FC44D10%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 7 23:14:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001400.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI>Next message: <A HREF="001402.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1401">[ date ]</a>
+ <a href="thread.html#1401">[ thread ]</a>
+ <a href="subject.html#1401">[ subject ]</a>
+ <a href="author.html#1401">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-07 23:14:29 CEST ---
+@ misc
+
+This enhancement still needed, or 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="001400.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI>Next message: <A HREF="001402.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1401">[ date ]</a>
+ <a href="thread.html#1401">[ thread ]</a>
+ <a href="subject.html#1401">[ subject ]</a>
+ <a href="author.html#1401">[ 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-October/001402.html b/zarb-ml/mageia-webteam/2011-October/001402.html
new file mode 100644
index 000000000..d3b92fb21
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001402.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 544] Cannot modify group
+ </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%20544%5D%20Cannot%20modify%20group&In-Reply-To=%3C20111007211532.2DAE344D12%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="001401.html">
+ <LINK REL="Next" HREF="001403.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 544] Cannot modify group</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20544%5D%20Cannot%20modify%20group&In-Reply-To=%3C20111007211532.2DAE344D12%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 544] Cannot modify group">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 7 23:15:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001401.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI>Next message: <A HREF="001403.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#1402">[ date ]</a>
+ <a href="thread.html#1402">[ thread ]</a>
+ <a href="subject.html#1402">[ subject ]</a>
+ <a href="author.html#1402">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-08 01:15:32 CEST ---
+(In reply to comment #1)
+&gt;<i> Fixed in rev 740 on trunk.
+</I>
+Does that mean it is now fixed completely and this bug can be closed?
+
+--
+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="001401.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI>Next message: <A HREF="001403.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#1402">[ date ]</a>
+ <a href="thread.html#1402">[ thread ]</a>
+ <a href="subject.html#1402">[ subject ]</a>
+ <a href="author.html#1402">[ 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-October/001403.html b/zarb-ml/mageia-webteam/2011-October/001403.html
new file mode 100644
index 000000000..7e625849d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001403.html
@@ -0,0 +1,71 @@
+<!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=%3C20111008191745.D527C44EDB%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="001402.html">
+ <LINK REL="Next" HREF="001404.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>Marja van Waes</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=%3C20111008191745.D527C44EDB%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>Sat Oct 8 21:17:45 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001402.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="001404.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1403">[ date ]</a>
+ <a href="thread.html#1403">[ thread ]</a>
+ <a href="subject.html#1403">[ subject ]</a>
+ <a href="author.html#1403">[ 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>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #5 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-08 21:17:45 CEST ---
+Any news/ changes since 2011-04-18 ?
+
+--
+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="001402.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="001404.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1403">[ date ]</a>
+ <a href="thread.html#1403">[ thread ]</a>
+ <a href="subject.html#1403">[ subject ]</a>
+ <a href="author.html#1403">[ 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-October/001404.html b/zarb-ml/mageia-webteam/2011-October/001404.html
new file mode 100644
index 000000000..976669c2a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001404.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be 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%20can%0A%09be%20wrong&In-Reply-To=%3C20111008203639.A9FF944F02%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="001403.html">
+ <LINK REL="Next" HREF="001405.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20can%0A%09be%20wrong&In-Reply-To=%3C20111008203639.A9FF944F02%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 8 22:36:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001403.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="001405.html">[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1404">[ date ]</a>
+ <a href="thread.html#1404">[ thread ]</a>
+ <a href="subject.html#1404">[ subject ]</a>
+ <a href="author.html#1404">[ 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>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|The timestamp in Bugzilla |The timestamp in Bugzilla
+ |comments is wrong |comments can be wrong
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #21 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-09 00:36:39 CEST ---
+At the moment I don't see a wrong timestamp, but I've seen it so recently that
+I don't think this got fixed.
+
+Changing the summary to &quot;The timestamp in Bugzilla comments can be wrong&quot;,
+because it is often 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="001403.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="001405.html">[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1404">[ date ]</a>
+ <a href="thread.html#1404">[ thread ]</a>
+ <a href="subject.html#1404">[ subject ]</a>
+ <a href="author.html#1404">[ 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-October/001405.html b/zarb-ml/mageia-webteam/2011-October/001405.html
new file mode 100644
index 000000000..1f3b94d53
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001405.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages
+ </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%202997%5D%20%5BNew%5D%20Top%20banner%20in%20blog%20page%20not%0A%20complete%20in%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3Cbug-2997-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="001404.html">
+ <LINK REL="Next" HREF="001406.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages</H1>
+ <B>Philippe Didier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202997%5D%20%5BNew%5D%20Top%20banner%20in%20blog%20page%20not%0A%20complete%20in%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3Cbug-2997-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 12:45:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001404.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI>Next message: <A HREF="001406.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1405">[ date ]</a>
+ <a href="thread.html#1405">[ thread ]</a>
+ <a href="subject.html#1405">[ subject ]</a>
+ <a href="author.html#1405">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2997">https://bugs.mageia.org/show_bug.cgi?id=2997</A>
+
+ Summary: Top banner in blog page not complete in english, and
+ totally missing for all other languages
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">philippedidier at laposte.net</A>
+
+
+When you open the blog page, coming from <A HREF="http://www.mageia.org/en/">http://www.mageia.org/en/</A>
+you get this <A HREF="http://blog.mageia.org/en/">http://blog.mageia.org/en/</A> :
+the top bar misses the lang choice button :
+
+need to add in the source code ( in &lt;div class=&quot;nav&quot;&gt; after line 73
+ie after &lt;p class=&quot;loc&quot;&gt; )
+
+&lt;form id=&quot;lang_form&quot; dir=&quot;ltr&quot; method=&quot;get&quot; action=&quot;/&quot;&gt;
+ &lt;!--&lt;label for=&quot;flang&quot;&gt;Autres langues&amp;nbsp;:&lt;/label&gt;--&gt;
+ &lt;input type=&quot;hidden&quot; name=&quot;furl&quot; value=&quot;/en/&quot; /&gt;
+ &lt;select id=&quot;flang&quot; name=&quot;flang&quot; dir=&quot;ltr&quot; onchange=&quot;this.form.submit()&quot;&gt;
+ &lt;option value=&quot;cs&quot;&gt;&#268;e&#353;tina&lt;/option&gt;&lt;option
+value=&quot;de&quot;&gt;Deutsch&lt;/option&gt;&lt;option value=&quot;el&quot;&gt;&#917;&#955;&#955;&#951;&#957;&#953;&#954;&#940;&lt;/option&gt;&lt;option
+value=&quot;en&quot; selected=&quot;selected&quot;&gt;English&lt;/option&gt;&lt;option
+value=&quot;es&quot;&gt;Espa&#241;ol&lt;/option&gt;&lt;option value=&quot;et&quot;&gt;Eesti&lt;/option&gt;&lt;option
+value=&quot;fi&quot;&gt;Suomeksi&lt;/option&gt;&lt;option value=&quot;fr&quot;&gt;Fran&#231;ais&lt;/option&gt;&lt;option
+value=&quot;it&quot;&gt;Italiano&lt;/option&gt;&lt;option value=&quot;lv&quot;&gt;Latvie&#353;u&lt;/option&gt;&lt;option
+value=&quot;nb&quot;&gt;Bokm&#229;l&lt;/option&gt;&lt;option value=&quot;nl&quot;&gt;Nederlands&lt;/option&gt;&lt;option
+value=&quot;pl&quot;&gt;Polski&lt;/option&gt;&lt;option value=&quot;pt&quot;&gt;Portugu&#234;s&lt;/option&gt;&lt;option
+value=&quot;pt-br&quot;&gt;Portugu&#234;s do Brasil&lt;/option&gt;&lt;option
+value=&quot;ro&quot;&gt;Rom&#226;n&#259;&lt;/option&gt;&lt;option value=&quot;ru&quot;&gt;&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;&lt;/option&gt;&lt;option
+value=&quot;sl&quot;&gt;Sloven&#353;&#269;ina&lt;/option&gt;&lt;option value=&quot;tr&quot;&gt;T&#252;rk&#231;e&lt;/option&gt;&lt;option
+value=&quot;uk&quot;&gt;&#1091;&#1082;&#1088;&#1072;&#1111;&#769;&#1085;&#1089;&#1100;&#1082;&#1072; &#1084;&#1086;&#769;&#1074;&#1072;&lt;/option&gt;&lt;option value=&quot;zh-cn&quot;&gt;&#31616;&#20307;&#20013;&#25991;&lt;/option&gt;&lt;option
+value=&quot;zh-tw&quot;&gt;&#27491;&#39636;&#20013;&#25991;&lt;/option&gt;
+
+ &lt;/select&gt;
+ &lt;noscript&gt;&lt;div&gt;&lt;input type=&quot;submit&quot; id=&quot;lang_submit&quot; value=&quot;Hop!&quot;
+/&gt;&lt;/div&gt;&lt;/noscript&gt;
+&lt;/form&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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001404.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI>Next message: <A HREF="001406.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1405">[ date ]</a>
+ <a href="thread.html#1405">[ thread ]</a>
+ <a href="subject.html#1405">[ subject ]</a>
+ <a href="author.html#1405">[ 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-October/001406.html b/zarb-ml/mageia-webteam/2011-October/001406.html
new file mode 100644
index 000000000..fcf777313
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001406.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+ </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%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009105107.6B66545073%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="001405.html">
+ <LINK REL="Next" HREF="001407.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009105107.6B66545073%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 12:51:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001405.html">[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001407.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1406">[ date ]</a>
+ <a href="thread.html#1406">[ thread ]</a>
+ <a href="subject.html#1406">[ subject ]</a>
+ <a href="author.html#1406">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2997">https://bugs.mageia.org/show_bug.cgi?id=2997</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-10-09 14:51:07 CEST ---
+In the blog page you do not need a button to change language - the available
+language pages of the blog can be reached via &quot;Language Bar&quot; below the title.
+
+--
+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="001405.html">[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001407.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1406">[ date ]</a>
+ <a href="thread.html#1406">[ thread ]</a>
+ <a href="subject.html#1406">[ subject ]</a>
+ <a href="author.html#1406">[ 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-October/001407.html b/zarb-ml/mageia-webteam/2011-October/001407.html
new file mode 100644
index 000000000..c8dd7207a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001407.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+ </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%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009111628.A822A45075%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="001406.html">
+ <LINK REL="Next" HREF="001408.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages</H1>
+ <B>Philippe Didier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009111628.A822A45075%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 13:16:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001406.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001408.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1407">[ date ]</a>
+ <a href="thread.html#1407">[ thread ]</a>
+ <a href="subject.html#1407">[ subject ]</a>
+ <a href="author.html#1407">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2997">https://bugs.mageia.org/show_bug.cgi?id=2997</A>
+
+--- Comment #2 from Philippe Didier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">philippedidier at laposte.net</A>&gt; 2011-10-09 13:16:28 CEST ---
+Description was only for correcting english blog page...
+
+For other languages the &lt;div class=&quot;nav&quot;&gt; is missing in the beginning of the
+&lt;body class=&quot;home blog&quot;&gt;
+
+look at : <A HREF="http://blog.mageia.org/de/">http://blog.mageia.org/de/</A>
+
+need to copy this whole class from a working page for each language
+(<A HREF="http://www.mageia.org/de/">http://www.mageia.org/de/</A> for german for instance)
+in the beginning of &lt;body class=&quot;release&quot;&gt;
+
+and paste it to the beginning of the
+&lt;body class=&quot;home blog&quot;&gt; for the same language
+
+beware !!!
+you need to remove class=&quot;sel&quot; from the first item ( &lt;a href=&quot;/xx/&quot;
+accesskey=&quot;1&quot;&gt;Mageia&lt;/a&gt;) and to add it into the blog item :
+ (&lt;a href=&quot;<A HREF="http://blog.mageia.org/xx/">http://blog.mageia.org/xx/</A>&quot;&gt;Blog&lt;/a&gt;)
+xx being the language (de, fr, el, it and so on)
+
+
+If this report is not clear enough, ask for better explanations !
+
+--
+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="001406.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001408.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1407">[ date ]</a>
+ <a href="thread.html#1407">[ thread ]</a>
+ <a href="subject.html#1407">[ subject ]</a>
+ <a href="author.html#1407">[ 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-October/001408.html b/zarb-ml/mageia-webteam/2011-October/001408.html
new file mode 100644
index 000000000..787d51342
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001408.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+ </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%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009111825.4D2D64507B%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="001407.html">
+ <LINK REL="Next" HREF="001409.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages</H1>
+ <B>Philippe Didier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009111825.4D2D64507B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 13:18:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001407.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001409.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1408">[ date ]</a>
+ <a href="thread.html#1408">[ thread ]</a>
+ <a href="subject.html#1408">[ subject ]</a>
+ <a href="author.html#1408">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2997">https://bugs.mageia.org/show_bug.cgi?id=2997</A>
+
+--- Comment #3 from Philippe Didier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">philippedidier at laposte.net</A>&gt; 2011-10-09 13:18:25 CEST ---
+(In reply to comment #1)
+&gt;<i> In the blog page you do not need a button to change language - the available
+</I>&gt;<i> language pages of the blog can be reached via &quot;Language Bar&quot; below the title.
+</I>
+You are right ! I had a focus on the whole top bar and didn't even thought that
+the language button was useless ...
+
+--
+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="001407.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001409.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1408">[ date ]</a>
+ <a href="thread.html#1408">[ thread ]</a>
+ <a href="subject.html#1408">[ subject ]</a>
+ <a href="author.html#1408">[ 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-October/001409.html b/zarb-ml/mageia-webteam/2011-October/001409.html
new file mode 100644
index 000000000..ff02a843c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001409.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+ </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%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009112210.2A33D4507F%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="001408.html">
+ <LINK REL="Next" HREF="001410.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages</H1>
+ <B>Philippe Didier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009112210.2A33D4507F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 13:22:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001408.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001410.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1409">[ date ]</a>
+ <a href="thread.html#1409">[ thread ]</a>
+ <a href="subject.html#1409">[ subject ]</a>
+ <a href="author.html#1409">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2997">https://bugs.mageia.org/show_bug.cgi?id=2997</A>
+
+--- Comment #4 from Philippe Didier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">philippedidier at laposte.net</A>&gt; 2011-10-09 15:22:10 CEST ---
+That means that you have only to copy and paste the beginning of the
+ &lt;div class=&quot;nav&quot;&gt;
+without the part concerning language choice
+
+--
+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="001408.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001410.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1409">[ date ]</a>
+ <a href="thread.html#1409">[ thread ]</a>
+ <a href="subject.html#1409">[ subject ]</a>
+ <a href="author.html#1409">[ 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-October/001410.html b/zarb-ml/mageia-webteam/2011-October/001410.html
new file mode 100644
index 000000000..992af9696
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001410.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+ </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%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009121534.E9C7D4508C%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="001409.html">
+ <LINK REL="Next" HREF="001411.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20111009121534.E9C7D4508C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 14:15:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001409.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001411.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1410">[ date ]</a>
+ <a href="thread.html#1410">[ thread ]</a>
+ <a href="subject.html#1410">[ subject ]</a>
+ <a href="author.html#1410">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2997">https://bugs.mageia.org/show_bug.cgi?id=2997</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 #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-10-09 14:15:34 CEST ---
+(In reply to comment #0)
+&gt;<i> When you open the blog page, coming from <A HREF="http://www.mageia.org/en/">http://www.mageia.org/en/</A>
+</I>&gt;<i> you get this <A HREF="http://blog.mageia.org/en/">http://blog.mageia.org/en/</A> :
+</I>&gt;<i> the top bar misses the lang choice button :
+</I>
+Known issue, the top bar is still experimental, and mostly in English blog only
+(not other languages), waiting for a top navbar web service to publish the
+correct code for each part of the site.
+
+--
+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="001409.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001411.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1410">[ date ]</a>
+ <a href="thread.html#1410">[ thread ]</a>
+ <a href="subject.html#1410">[ subject ]</a>
+ <a href="author.html#1410">[ 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-October/001411.html b/zarb-ml/mageia-webteam/2011-October/001411.html
new file mode 100644
index 000000000..0968f6d9c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001411.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1967] Link to torrent download crashes
+ </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%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20111009205328.6BC594517C%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="001410.html">
+ <LINK REL="Next" HREF="001412.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1967] Link to torrent download crashes</H1>
+ <B>Jos&#195;&#169; Jorge</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201967%5D%20Link%20to%20torrent%20download%20crashes&In-Reply-To=%3C20111009205328.6BC594517C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1967] Link to torrent download crashes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 22:53:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001410.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001412.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1411">[ date ]</a>
+ <a href="thread.html#1411">[ thread ]</a>
+ <a href="subject.html#1411">[ subject ]</a>
+ <a href="author.html#1411">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1967">https://bugs.mageia.org/show_bug.cgi?id=1967</A>
+
+Jos&#233; Jorge &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">lists.jjorge at free.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |OLD
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">lists.jjorge at free.fr</A>
+
+--- Comment #9 from Jos&#233; Jorge &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">lists.jjorge at free.fr</A>&gt; 2011-10-09 22:53:28 CEST ---
+Should be on sync now, a few months later. Please re-open if not.
+
+--
+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="001410.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001412.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1411">[ date ]</a>
+ <a href="thread.html#1411">[ thread ]</a>
+ <a href="subject.html#1411">[ subject ]</a>
+ <a href="author.html#1411">[ 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-October/001412.html b/zarb-ml/mageia-webteam/2011-October/001412.html
new file mode 100644
index 000000000..39fd943c7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001412.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=%3C20111009205842.579A545183%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="001411.html">
+ <LINK REL="Next" HREF="001413.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Marja van Waes</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=%3C20111009205842.579A545183%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 22:58:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001411.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001413.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#1412">[ date ]</a>
+ <a href="thread.html#1412">[ thread ]</a>
+ <a href="subject.html#1412">[ subject ]</a>
+ <a href="author.html#1412">[ 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>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #13 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-09 22:58:42 CEST ---
+(In reply to comment #11)
+&gt;<i> I thought we had methods to edit user
+</I>&gt;<i> membership, but we haven't yet. I will implement them upstream (I just assigned
+</I>&gt;<i> <A HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=442013">https://bugzilla.mozilla.org/show_bug.cgi?id=442013</A> to me).
+</I>
+Wow, that's the true spirit! Great, Fr&#233;d&#233;ric!
+Hope you find/found enough time to work on it. Can you give any feedback?
+
+--
+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="001411.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A></li>
+ <LI>Next message: <A HREF="001413.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#1412">[ date ]</a>
+ <a href="thread.html#1412">[ thread ]</a>
+ <a href="subject.html#1412">[ subject ]</a>
+ <a href="author.html#1412">[ 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-October/001413.html b/zarb-ml/mageia-webteam/2011-October/001413.html
new file mode 100644
index 000000000..4b7ae816e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001413.html
@@ -0,0 +1,76 @@
+<!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=%3C20111009211226.85C8345184%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="001412.html">
+ <LINK REL="Next" HREF="001414.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain</H1>
+ <B>Marja van Waes</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=%3C20111009211226.85C8345184%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>Sun Oct 9 23:12:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001412.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="001414.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1413">[ date ]</a>
+ <a href="thread.html#1413">[ thread ]</a>
+ <a href="subject.html#1413">[ subject ]</a>
+ <a href="author.html#1413">[ 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>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-09 23:12:26 CEST ---
+(In reply to comment #2)
+&gt;<i> Note that the extension would need to be modified a bit, but it's trivial to
+</I>&gt;<i> do.
+</I>
+Having enough time to do it is less trivial, I guess. This wasn't done yet, was
+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="001412.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="001414.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1413">[ date ]</a>
+ <a href="thread.html#1413">[ thread ]</a>
+ <a href="subject.html#1413">[ subject ]</a>
+ <a href="author.html#1413">[ 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-October/001414.html b/zarb-ml/mageia-webteam/2011-October/001414.html
new file mode 100644
index 000000000..1a993a384
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001414.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 910] Add a check box for security issue
+ </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%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20111009211749.5E0E845192%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="001413.html">
+ <LINK REL="Next" HREF="001415.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 910] Add a check box for security issue</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20111009211749.5E0E845192%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 910] Add a check box for security issue">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 23:17:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001413.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001415.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1414">[ date ]</a>
+ <a href="thread.html#1414">[ thread ]</a>
+ <a href="subject.html#1414">[ subject ]</a>
+ <a href="author.html#1414">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=910">https://bugs.mageia.org/show_bug.cgi?id=910</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-09 23:17:49 CEST ---
+(In reply to comment #0)
+&gt;<i> We should have a way to restrict bug to security officer, based on a group
+</I>&gt;<i> member ship
+</I>
+ping
+
+--
+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="001413.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001415.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1414">[ date ]</a>
+ <a href="thread.html#1414">[ thread ]</a>
+ <a href="subject.html#1414">[ subject ]</a>
+ <a href="author.html#1414">[ 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-October/001415.html b/zarb-ml/mageia-webteam/2011-October/001415.html
new file mode 100644
index 000000000..e3850eba1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001415.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 912] Custom field for CVE
+ </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%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20111009212258.A77CF45193%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="001414.html">
+ <LINK REL="Next" HREF="001416.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 912] Custom field for CVE</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20111009212258.A77CF45193%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 912] Custom field for CVE">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 9 23:22:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001414.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="001416.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1415">[ date ]</a>
+ <a href="thread.html#1415">[ thread ]</a>
+ <a href="subject.html#1415">[ subject ]</a>
+ <a href="author.html#1415">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=912">https://bugs.mageia.org/show_bug.cgi?id=912</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #5 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-09 23:22:58 CEST ---
+(In reply to comment #4)
+&gt;<i> i really need to push this on the top of my todo.
+</I>
+What happened since?
+
+--
+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="001414.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="001416.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1415">[ date ]</a>
+ <a href="thread.html#1415">[ thread ]</a>
+ <a href="subject.html#1415">[ subject ]</a>
+ <a href="author.html#1415">[ 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-October/001416.html b/zarb-ml/mageia-webteam/2011-October/001416.html
new file mode 100644
index 000000000..67f090c17
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001416.html
@@ -0,0 +1,66 @@
+<!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=%3C20111009221032.7EBBA451AC%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="001415.html">
+ <LINK REL="Next" HREF="001417.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=%3C20111009221032.7EBBA451AC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 10 00:10:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001415.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="001417.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1416">[ date ]</a>
+ <a href="thread.html#1416">[ thread ]</a>
+ <a href="subject.html#1416">[ subject ]</a>
+ <a href="author.html#1416">[ 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 #14 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at aim.com</A>&gt; 2011-10-10 00:10:32 CEST ---
+I'm focused on bugs blocking the release of Bugzilla 4.2. So I didn't start
+implementing it yet.
+
+--
+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="001415.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="001417.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1416">[ date ]</a>
+ <a href="thread.html#1416">[ thread ]</a>
+ <a href="subject.html#1416">[ subject ]</a>
+ <a href="author.html#1416">[ 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-October/001417.html b/zarb-ml/mageia-webteam/2011-October/001417.html
new file mode 100644
index 000000000..549c6ddbb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001417.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 966] Name check on identity should be more open
+ </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%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20111010051125.33D5E451F7%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="001416.html">
+ <LINK REL="Next" HREF="001418.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 966] Name check on identity should be more open</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20111010051125.33D5E451F7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 966] Name check on identity should be more open">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 10 07:11:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001416.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="001418.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1417">[ date ]</a>
+ <a href="thread.html#1417">[ thread ]</a>
+ <a href="subject.html#1417">[ subject ]</a>
+ <a href="author.html#1417">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-10 09:11:25 CEST ---
+(In reply to comment #1)
+&gt;<i> I releaxed the check in trunk.
+</I>
+So this bug is solved?
+
+--
+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="001416.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="001418.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1417">[ date ]</a>
+ <a href="thread.html#1417">[ thread ]</a>
+ <a href="subject.html#1417">[ subject ]</a>
+ <a href="author.html#1417">[ 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-October/001418.html b/zarb-ml/mageia-webteam/2011-October/001418.html
new file mode 100644
index 000000000..7a762cbf9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001418.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+ </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.2&In-Reply-To=%3C20111010175222.85132452C8%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="001417.html">
+ <LINK REL="Next" HREF="001419.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0.2&In-Reply-To=%3C20111010175222.85132452C8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 10 19:52:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001417.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="001419.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1418">[ date ]</a>
+ <a href="thread.html#1418">[ thread ]</a>
+ <a href="subject.html#1418">[ subject ]</a>
+ <a href="author.html#1418">[ 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>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #16 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-10 19:52:22 CEST ---
+Fr&#233;d&#233;ric said today that he is focused on bugs blocking the release of Bugzilla
+4.2.
+
+@ D Morgan
+Any news about the upgrade of Mageia Bugzilla?
+
+--
+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="001417.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="001419.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1418">[ date ]</a>
+ <a href="thread.html#1418">[ thread ]</a>
+ <a href="subject.html#1418">[ subject ]</a>
+ <a href="author.html#1418">[ 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-October/001419.html b/zarb-ml/mageia-webteam/2011-October/001419.html
new file mode 100644
index 000000000..088108069
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001419.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111011192813.32EB1454C7%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="001418.html">
+ <LINK REL="Next" HREF="001420.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20111011192813.32EB1454C7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 11 21:28:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001418.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001420.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1419">[ date ]</a>
+ <a href="thread.html#1419">[ thread ]</a>
+ <a href="subject.html#1419">[ subject ]</a>
+ <a href="author.html#1419">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A>
+
+--- Comment #14 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-10-11 23:28:13 CEST ---
+&quot;The Private Enterprise Number 38772 has been assigned to your organization.&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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001418.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A></li>
+ <LI>Next message: <A HREF="001420.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1419">[ date ]</a>
+ <a href="thread.html#1419">[ thread ]</a>
+ <a href="subject.html#1419">[ subject ]</a>
+ <a href="author.html#1419">[ 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-October/001420.html b/zarb-ml/mageia-webteam/2011-October/001420.html
new file mode 100644
index 000000000..8a685053f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001420.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+ </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%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20111011201646.68FF3454D0%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="001419.html">
+ <LINK REL="Next" HREF="001421.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201054%5D%20%5B%20Beta%202%20%5D%20Live%20CD%27s%20only%20for%2032%20bit%0A%09install%3F&In-Reply-To=%3C20111011201646.68FF3454D0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 11 22:16:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001419.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001421.html">[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1420">[ date ]</a>
+ <a href="thread.html#1420">[ thread ]</a>
+ <a href="subject.html#1420">[ subject ]</a>
+ <a href="author.html#1420">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1054">https://bugs.mageia.org/show_bug.cgi?id=1054</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #11 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-11 22:16:46 CEST ---
+When is a decision due?
+
+--
+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="001419.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="001421.html">[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1420">[ date ]</a>
+ <a href="thread.html#1420">[ thread ]</a>
+ <a href="subject.html#1420">[ subject ]</a>
+ <a href="author.html#1420">[ 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-October/001421.html b/zarb-ml/mageia-webteam/2011-October/001421.html
new file mode 100644
index 000000000..5b69f00b3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001421.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions
+ </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%203025%5D%20%5BNew%5D%20English%20page%20has%20different%0A%20donated%20amount%20than%20other%20localised%20versions&In-Reply-To=%3Cbug-3025-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="001420.html">
+ <LINK REL="Next" HREF="001422.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203025%5D%20%5BNew%5D%20English%20page%20has%20different%0A%20donated%20amount%20than%20other%20localised%20versions&In-Reply-To=%3Cbug-3025-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 12 17:55:47 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001420.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="001422.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1421">[ date ]</a>
+ <a href="thread.html#1421">[ thread ]</a>
+ <a href="subject.html#1421">[ subject ]</a>
+ <a href="author.html#1421">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3025">https://bugs.mageia.org/show_bug.cgi?id=3025</A>
+
+ Summary: English page has different donated amount than other
+ localised versions
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/en/donate/">http://www.mageia.org/en/donate/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">remco at webconquest.com</A>
+
+
+Description of problem:
+The English page shows:
+Currently, we received a lot of generous donations (remains EUR 9 676.31)
+
+The page in other languages however shows a different amount of EUR 12 181.52.
+
+I'm unsure where this difference comes from as I'd think all pages take their
+input from the same files / scripts for showing the amounts.
+
+--
+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="001420.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A></li>
+ <LI>Next message: <A HREF="001422.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1421">[ date ]</a>
+ <a href="thread.html#1421">[ thread ]</a>
+ <a href="subject.html#1421">[ subject ]</a>
+ <a href="author.html#1421">[ 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-October/001422.html b/zarb-ml/mageia-webteam/2011-October/001422.html
new file mode 100644
index 000000000..6c5093184
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001422.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 544] Cannot modify group
+ </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%20544%5D%20Cannot%20modify%20group&In-Reply-To=%3C20111012170244.C591A45598%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="001421.html">
+ <LINK REL="Next" HREF="001423.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 544] Cannot modify group</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20544%5D%20Cannot%20modify%20group&In-Reply-To=%3C20111012170244.C591A45598%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 544] Cannot modify group">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 12 19:02:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001421.html">[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions
+</A></li>
+ <LI>Next message: <A HREF="001423.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1422">[ date ]</a>
+ <a href="thread.html#1422">[ thread ]</a>
+ <a href="subject.html#1422">[ subject ]</a>
+ <a href="author.html#1422">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #3 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2011-10-12 21:02:44 CEST ---
+I think so. Thanks Marja for checking:)
+
+--
+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="001421.html">[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions
+</A></li>
+ <LI>Next message: <A HREF="001423.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1422">[ date ]</a>
+ <a href="thread.html#1422">[ thread ]</a>
+ <a href="subject.html#1422">[ subject ]</a>
+ <a href="author.html#1422">[ 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-October/001423.html b/zarb-ml/mageia-webteam/2011-October/001423.html
new file mode 100644
index 000000000..a018388f0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001423.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 544] Cannot modify group
+ </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%20544%5D%20Cannot%20modify%20group&In-Reply-To=%3C20111012171000.217D945599%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="001422.html">
+ <LINK REL="Next" HREF="001424.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 544] Cannot modify group</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20544%5D%20Cannot%20modify%20group&In-Reply-To=%3C20111012171000.217D945599%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 544] Cannot modify group">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 12 19:10:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001422.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="001424.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1423">[ date ]</a>
+ <a href="thread.html#1423">[ thread ]</a>
+ <a href="subject.html#1423">[ subject ]</a>
+ <a href="author.html#1423">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-12 19:10:00 CEST ---
+yw :)
+
+--
+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="001422.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="001424.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1423">[ date ]</a>
+ <a href="thread.html#1423">[ thread ]</a>
+ <a href="subject.html#1423">[ subject ]</a>
+ <a href="author.html#1423">[ 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-October/001424.html b/zarb-ml/mageia-webteam/2011-October/001424.html
new file mode 100644
index 000000000..759c9f4d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001424.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+ </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%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20111012172400.6B046455A2%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="001423.html">
+ <LINK REL="Next" HREF="001425.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20111012172400.6B046455A2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 12 19:24:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001423.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="001425.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1424">[ date ]</a>
+ <a href="thread.html#1424">[ thread ]</a>
+ <a href="subject.html#1424">[ subject ]</a>
+ <a href="author.html#1424">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |INVALID
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #5 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-12 21:24:00 CEST ---
+(In reply to comment #4)
+&gt;<i> Well in fact I asked this but Maat need some help and rda told me i have no
+</I>&gt;<i> need to be demoted, so I think this ticket can be closed if you agree
+</I>
+So closing.
+Please reopen if 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001423.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A></li>
+ <LI>Next message: <A HREF="001425.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1424">[ date ]</a>
+ <a href="thread.html#1424">[ thread ]</a>
+ <a href="subject.html#1424">[ subject ]</a>
+ <a href="author.html#1424">[ 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-October/001425.html b/zarb-ml/mageia-webteam/2011-October/001425.html
new file mode 100644
index 000000000..d63db5807
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001425.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey 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%201141%5D%20User%20panel%20does%20not%20allow%20to%20add%0A%09sshPublicKey%20attributes&In-Reply-To=%3C20111012181712.32A77455DA%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="001424.html">
+ <LINK REL="Next" HREF="001426.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201141%5D%20User%20panel%20does%20not%20allow%20to%20add%0A%09sshPublicKey%20attributes&In-Reply-To=%3C20111012181712.32A77455DA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 12 20:17:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001424.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="001426.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1425">[ date ]</a>
+ <a href="thread.html#1425">[ thread ]</a>
+ <a href="subject.html#1425">[ subject ]</a>
+ <a href="author.html#1425">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-12 20:17:12 CEST ---
+@ webteam
+
+Any news on this request?
+
+--
+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="001424.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI>Next message: <A HREF="001426.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1425">[ date ]</a>
+ <a href="thread.html#1425">[ thread ]</a>
+ <a href="subject.html#1425">[ subject ]</a>
+ <a href="author.html#1425">[ 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-October/001426.html b/zarb-ml/mageia-webteam/2011-October/001426.html
new file mode 100644
index 000000000..e2b250bb4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001426.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey 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%201141%5D%20User%20panel%20does%20not%20allow%20to%20add%0A%09sshPublicKey%20attributes&In-Reply-To=%3C20111012181858.BB772455FA%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="001425.html">
+ <LINK REL="Next" HREF="001427.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201141%5D%20User%20panel%20does%20not%20allow%20to%20add%0A%09sshPublicKey%20attributes&In-Reply-To=%3C20111012181858.BB772455FA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 12 20:18:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001425.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI>Next message: <A HREF="001427.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1426">[ date ]</a>
+ <a href="thread.html#1426">[ thread ]</a>
+ <a href="subject.html#1426">[ subject ]</a>
+ <a href="author.html#1426">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1141">https://bugs.mageia.org/show_bug.cgi?id=1141</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-10-12 22:18:58 CEST ---
+Closing as it's now possible to add ssh keys on <A HREF="https://identity.mageia.org/.">https://identity.mageia.org/.</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="001425.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI>Next message: <A HREF="001427.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1426">[ date ]</a>
+ <a href="thread.html#1426">[ thread ]</a>
+ <a href="subject.html#1426">[ subject ]</a>
+ <a href="author.html#1426">[ 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-October/001427.html b/zarb-ml/mageia-webteam/2011-October/001427.html
new file mode 100644
index 000000000..d12d6727a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001427.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+ </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%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20111012183019.6F5C045603%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="001426.html">
+ <LINK REL="Next" HREF="001428.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20111012183019.6F5C045603%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 12 20:30:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001426.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI>Next message: <A HREF="001428.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1427">[ date ]</a>
+ <a href="thread.html#1427">[ thread ]</a>
+ <a href="subject.html#1427">[ subject ]</a>
+ <a href="author.html#1427">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1171">https://bugs.mageia.org/show_bug.cgi?id=1171</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #7 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-12 20:30:19 CEST ---
+(In reply to comment #6)
+&gt;<i> I agree to do it globally, but I know for sure there is case ( sympa ) where it
+</I>&gt;<i> would be difficult. So let's deploy service by service first, and to keep track
+</I>&gt;<i> of progress, open 1 bug per component :) .
+</I>
+If those bugs were opened, this one would depend on them, but this bug depends
+on no bugs at all.
+And maybe I don't search well, but I can't find those other 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="001426.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A></li>
+ <LI>Next message: <A HREF="001428.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1427">[ date ]</a>
+ <a href="thread.html#1427">[ thread ]</a>
+ <a href="subject.html#1427">[ subject ]</a>
+ <a href="author.html#1427">[ 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-October/001428.html b/zarb-ml/mageia-webteam/2011-October/001428.html
new file mode 100644
index 000000000..1f408225d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001428.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111013185619.809854580C%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="001427.html">
+ <LINK REL="Next" HREF="001429.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111013185619.809854580C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 13 20:56:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001427.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="001429.html">[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1428">[ date ]</a>
+ <a href="thread.html#1428">[ thread ]</a>
+ <a href="subject.html#1428">[ subject ]</a>
+ <a href="author.html#1428">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #12 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-13 20:56:19 CEST ---
+
+&gt;<i> It shouldn't be very hard to customize this for Mageia Bugzilla.
+</I>
+Be my guest :D
+
+Nothing changed upstream
+
+--
+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="001427.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="001429.html">[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1428">[ date ]</a>
+ <a href="thread.html#1428">[ thread ]</a>
+ <a href="subject.html#1428">[ subject ]</a>
+ <a href="author.html#1428">[ 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-October/001429.html b/zarb-ml/mageia-webteam/2011-October/001429.html
new file mode 100644
index 000000000..f084060aa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001429.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3039] [New] mageia-tr.org down
+ </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%203039%5D%20%5BNew%5D%20mageia-tr.org%20down&In-Reply-To=%3Cbug-3039-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="001428.html">
+ <LINK REL="Next" HREF="001430.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down</H1>
+ <B>Fabian Wannenmacher</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203039%5D%20%5BNew%5D%20mageia-tr.org%20down&In-Reply-To=%3Cbug-3039-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 02:40:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001428.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001430.html">[Mageia-webteam] [Bug 3039] mageia-tr.org down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1429">[ date ]</a>
+ <a href="thread.html#1429">[ thread ]</a>
+ <a href="subject.html#1429">[ subject ]</a>
+ <a href="author.html#1429">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3039">https://bugs.mageia.org/show_bug.cgi?id=3039</A>
+
+ Summary: mageia-tr.org down
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="https://forums.mageia.org/en/viewforum.php?f=20">https://forums.mageia.org/en/viewforum.php?f=20</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">f.wanne at googlemail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">forums-discuss at ml.mageia.org</A>
+
+
+Description of problem:
+The Turkish site dosn't exist anymore. (<A HREF="http://mageia-tr.org/forum/index.php">http://mageia-tr.org/forum/index.php</A>
+should be removed from <A HREF="https://forums.mageia.org/en/viewforum.php?f=20.">https://forums.mageia.org/en/viewforum.php?f=20.</A>)
+
+Steps to Reproduce:
+1. Go to <A HREF="https://forums.mageia.org/en/viewforum.php?f=20">https://forums.mageia.org/en/viewforum.php?f=20</A>
+2. Try to open the Turkish site
+3. You only get Adds
+
+--
+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="001428.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001430.html">[Mageia-webteam] [Bug 3039] mageia-tr.org down
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1429">[ date ]</a>
+ <a href="thread.html#1429">[ thread ]</a>
+ <a href="subject.html#1429">[ subject ]</a>
+ <a href="author.html#1429">[ 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-October/001430.html b/zarb-ml/mageia-webteam/2011-October/001430.html
new file mode 100644
index 000000000..3963582c2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001430.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3039] mageia-tr.org down
+ </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%203039%5D%20mageia-tr.org%20down&In-Reply-To=%3C20111014083028.8BEED45888%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="001429.html">
+ <LINK REL="Next" HREF="001431.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3039] mageia-tr.org down</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203039%5D%20mageia-tr.org%20down&In-Reply-To=%3C20111014083028.8BEED45888%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3039] mageia-tr.org down">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 10:30:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001429.html">[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down
+</A></li>
+ <LI>Next message: <A HREF="001431.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1430">[ date ]</a>
+ <a href="thread.html#1430">[ thread ]</a>
+ <a href="subject.html#1430">[ subject ]</a>
+ <a href="author.html#1430">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3039">https://bugs.mageia.org/show_bug.cgi?id=3039</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">maat-ml at vilarem.net</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</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="001429.html">[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down
+</A></li>
+ <LI>Next message: <A HREF="001431.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1430">[ date ]</a>
+ <a href="thread.html#1430">[ thread ]</a>
+ <a href="subject.html#1430">[ subject ]</a>
+ <a href="author.html#1430">[ 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-October/001431.html b/zarb-ml/mageia-webteam/2011-October/001431.html
new file mode 100644
index 000000000..b06fe5aa9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001431.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111014094822.2C1014586C%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="001430.html">
+ <LINK REL="Next" HREF="001432.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111014094822.2C1014586C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 11:48:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001430.html">[Mageia-webteam] [Bug 3039] mageia-tr.org down
+</A></li>
+ <LI>Next message: <A HREF="001432.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1431">[ date ]</a>
+ <a href="thread.html#1431">[ thread ]</a>
+ <a href="subject.html#1431">[ subject ]</a>
+ <a href="author.html#1431">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>
+
+--- Comment #13 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-10-14 11:48:21 CEST ---
+I don't think this is a big problem. It's always good to write a few words for
+the bug reporter, who didn't notice there already was a bug report for his/her
+problem, but all the same took the time to report it. &quot;Thanks to have reported
+this bug. There's already an open bug report for it, I invite you to add
+yourself in the CC list and comment on it if you have useful information to add
+to it.&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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001430.html">[Mageia-webteam] [Bug 3039] mageia-tr.org down
+</A></li>
+ <LI>Next message: <A HREF="001432.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1431">[ date ]</a>
+ <a href="thread.html#1431">[ thread ]</a>
+ <a href="subject.html#1431">[ subject ]</a>
+ <a href="author.html#1431">[ 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-October/001432.html b/zarb-ml/mageia-webteam/2011-October/001432.html
new file mode 100644
index 000000000..b7699e198
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001432.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111014101051.5DB2445560%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="001431.html">
+ <LINK REL="Next" HREF="001433.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Dimitrios Glentadakis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111014101051.5DB2445560%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 12:10:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001431.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001433.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1432">[ date ]</a>
+ <a href="thread.html#1432">[ thread ]</a>
+ <a href="subject.html#1432">[ subject ]</a>
+ <a href="author.html#1432">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+Dimitrios Glentadakis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dglent at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dglent at gmail.com</A>
+
+--- Comment #14 from Dimitrios Glentadakis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dglent at gmail.com</A>&gt; 2011-10-14 14:10:51 CEST ---
+When a bug is marked as duplicated of another one, the bug reporter is not
+automatically added in the CC list of the other bug report ?
+This is what happens in other bug track systems (like in kde)
+
+--
+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="001431.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001433.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1432">[ date ]</a>
+ <a href="thread.html#1432">[ thread ]</a>
+ <a href="subject.html#1432">[ subject ]</a>
+ <a href="author.html#1432">[ 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-October/001433.html b/zarb-ml/mageia-webteam/2011-October/001433.html
new file mode 100644
index 000000000..ab5ccd961
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001433.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111014115514.2080D45889%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="001432.html">
+ <LINK REL="Next" HREF="001434.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111014115514.2080D45889%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 13:55:14 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001432.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001434.html">[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1433">[ date ]</a>
+ <a href="thread.html#1433">[ thread ]</a>
+ <a href="subject.html#1433">[ subject ]</a>
+ <a href="author.html#1433">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+--- Comment #15 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at aim.com</A>&gt; 2011-10-14 15:55:14 CEST ---
+(In reply to comment #14)
+&gt;<i> When a bug is marked as duplicated of another one, the bug reporter is not
+</I>&gt;<i> automatically added in the CC list of the other bug report ?
+</I>
+Yes, that's automatic.
+
+--
+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="001432.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001434.html">[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1433">[ date ]</a>
+ <a href="thread.html#1433">[ thread ]</a>
+ <a href="subject.html#1433">[ subject ]</a>
+ <a href="author.html#1433">[ 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-October/001434.html b/zarb-ml/mageia-webteam/2011-October/001434.html
new file mode 100644
index 000000000..469b4f92e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001434.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items
+ </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%203046%5D%20%5BNew%5D%20Tracker%20for%20Bug%20Squad%27s%0A%09Need_discuss%20items&In-Reply-To=%3Cbug-3046-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="001433.html">
+ <LINK REL="Next" HREF="001435.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203046%5D%20%5BNew%5D%20Tracker%20for%20Bug%20Squad%27s%0A%09Need_discuss%20items&In-Reply-To=%3Cbug-3046-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 17:28:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001433.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001435.html">[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1434">[ date ]</a>
+ <a href="thread.html#1434">[ thread ]</a>
+ <a href="subject.html#1434">[ subject ]</a>
+ <a href="author.html#1434">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3046">https://bugs.mageia.org/show_bug.cgi?id=3046</A>
+
+ Summary: Tracker for Bug Squad's Need_discuss items
+ Product: Infrastructure
+ Version: unspecified
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/wiki/doku.php?id=triage_guide">http://www.mageia.org/wiki/doku.php?id=triage_guide</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+This is a tracker bug for all the Need_discuss items at the end of the Triage
+guide (see link in URL field)
+
+All Bug Squad members are welcome to add their e-mailaddresses to the cc fields
+of this tracker bug and of the bug reports for the seperate items
+
+--
+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="001433.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001435.html">[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1434">[ date ]</a>
+ <a href="thread.html#1434">[ thread ]</a>
+ <a href="subject.html#1434">[ subject ]</a>
+ <a href="author.html#1434">[ 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-October/001435.html b/zarb-ml/mageia-webteam/2011-October/001435.html
new file mode 100644
index 000000000..2f2b982e4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001435.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items
+ </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%203046%5D%20Tracker%20for%20Bug%20Squad%27s%20Need_discuss%0A%09items&In-Reply-To=%3C20111014152905.F3A6F458F8%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="001434.html">
+ <LINK REL="Next" HREF="001436.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203046%5D%20Tracker%20for%20Bug%20Squad%27s%20Need_discuss%0A%09items&In-Reply-To=%3C20111014152905.F3A6F458F8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 17:29:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001434.html">[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items
+</A></li>
+ <LI>Next message: <A HREF="001436.html">[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1435">[ date ]</a>
+ <a href="thread.html#1435">[ thread ]</a>
+ <a href="subject.html#1435">[ subject ]</a>
+ <a href="author.html#1435">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3046">https://bugs.mageia.org/show_bug.cgi?id=3046</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ 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> |
+
+--
+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="001434.html">[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items
+</A></li>
+ <LI>Next message: <A HREF="001436.html">[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1435">[ date ]</a>
+ <a href="thread.html#1435">[ thread ]</a>
+ <a href="subject.html#1435">[ subject ]</a>
+ <a href="author.html#1435">[ 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-October/001436.html b/zarb-ml/mageia-webteam/2011-October/001436.html
new file mode 100644
index 000000000..193c68ae6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001436.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] [New] ASSIGNED status means
+ </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%203047%5D%20%5BNew%5D%20ASSIGNED%20status%20means&In-Reply-To=%3Cbug-3047-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="001435.html">
+ <LINK REL="Next" HREF="001437.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20%5BNew%5D%20ASSIGNED%20status%20means&In-Reply-To=%3Cbug-3047-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 17:39:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001435.html">[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items
+</A></li>
+ <LI>Next message: <A HREF="001437.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1436">[ date ]</a>
+ <a href="thread.html#1436">[ thread ]</a>
+ <a href="subject.html#1436">[ subject ]</a>
+ <a href="author.html#1436">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+ Summary: ASSIGNED status means
+ 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">bugsquad at mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+According to Bugzilla, the ASSIGNED status means the assignee accepted the bug
+as being correctly assigned to him/her.
+
+However, with us it means that the assignee has started working on a bug
+
+That means the Bug Squad doesn't get any confirmation that the assignment was
+correct, before the assignee starts fixing the bug.
+
+That is a huge problem, we are very short on triagers and are happy with any
+help we can get, even inexperienced people (like me!) who are more likely to
+assign wrongly
+
+--
+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="001435.html">[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items
+</A></li>
+ <LI>Next message: <A HREF="001437.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1436">[ date ]</a>
+ <a href="thread.html#1436">[ thread ]</a>
+ <a href="subject.html#1436">[ subject ]</a>
+ <a href="author.html#1436">[ 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-October/001437.html b/zarb-ml/mageia-webteam/2011-October/001437.html
new file mode 100644
index 000000000..28a1448b5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001437.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014153936.D618B45902%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="001436.html">
+ <LINK REL="Next" HREF="001442.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014153936.D618B45902%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 17:39:36 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001436.html">[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001442.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1437">[ date ]</a>
+ <a href="thread.html#1437">[ thread ]</a>
+ <a href="subject.html#1437">[ subject ]</a>
+ <a href="author.html#1437">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |3046
+
+--
+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="001436.html">[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001442.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1437">[ date ]</a>
+ <a href="thread.html#1437">[ thread ]</a>
+ <a href="subject.html#1437">[ subject ]</a>
+ <a href="author.html#1437">[ 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-October/001438.html b/zarb-ml/mageia-webteam/2011-October/001438.html
new file mode 100644
index 000000000..1048ed1bb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001438.html
@@ -0,0 +1,111 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+ </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%203049%5D%20%5BNew%5D%20%22simple%22%20bug-entry%20form%20doesn%27t%0A%20allow%20direct%20attachment%20%28and%20shows%20URL%20entry%2C%0A%20while%20it%20is%20an%20%22advanced%22%20field%20in%20the%20expert%27s%20version%29&In-Reply-To=%3Cbug-3049-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="001476.html">
+ <LINK REL="Next" HREF="001475.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)</H1>
+ <B>Christian Lohmaier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203049%5D%20%5BNew%5D%20%22simple%22%20bug-entry%20form%20doesn%27t%0A%20allow%20direct%20attachment%20%28and%20shows%20URL%20entry%2C%0A%20while%20it%20is%20an%20%22advanced%22%20field%20in%20the%20expert%27s%20version%29&In-Reply-To=%3Cbug-3049-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 18:10:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001476.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001475.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1438">[ date ]</a>
+ <a href="thread.html#1438">[ thread ]</a>
+ <a href="subject.html#1438">[ subject ]</a>
+ <a href="author.html#1438">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3049">https://bugs.mageia.org/show_bug.cgi?id=3049</A>
+
+ Summary: &quot;simple&quot; bug-entry form doesn't allow direct
+ attachment (and shows URL entry, while it is an
+ &quot;advanced&quot; field in the expert's version)
+ Product: Infrastructure
+ Version: unspecified
+ Platform: All
+ 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">lohmaier+mageia at googlemail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem:
+file a bug using the simple form.
+
+You got the URL-box that is useless in most cases, but it doesn't offer to
+directly add an attachment.
+
+switch to expert mode
+
+URL-box is hidden in the advanced fields, but it offers to add an attachment
+right away.
+
+--
+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="001476.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001475.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1438">[ date ]</a>
+ <a href="thread.html#1438">[ thread ]</a>
+ <a href="subject.html#1438">[ subject ]</a>
+ <a href="author.html#1438">[ 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-October/001439.html b/zarb-ml/mageia-webteam/2011-October/001439.html
new file mode 100644
index 000000000..b83800d88
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001439.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111014161258.5DD3345908%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="001481.html">
+ <LINK REL="Next" HREF="001440.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20111014161258.5DD3345908%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 18:12:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001481.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI>Next message: <A HREF="001440.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1439">[ date ]</a>
+ <a href="thread.html#1439">[ thread ]</a>
+ <a href="subject.html#1439">[ subject ]</a>
+ <a href="author.html#1439">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |3046
+
+--- Comment #16 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-14 20:12:58 CEST ---
+(In reply to comment #13)
+&gt;<i> I don't think this is a big problem. It's always good to write a few words for
+</I>&gt;<i> the bug reporter, who didn't notice there already was a bug report for his/her
+</I>&gt;<i> problem, but all the same took the time to report it.
+</I>
+I don't see the problem, either. I'll add this bug to the Bug Squad tracker. If
+any current triagers feel the same as Ahmad, they can speak up and else this
+bug can be closed.
+
+--
+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="001481.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI>Next message: <A HREF="001440.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1439">[ date ]</a>
+ <a href="thread.html#1439">[ thread ]</a>
+ <a href="subject.html#1439">[ subject ]</a>
+ <a href="author.html#1439">[ 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-October/001440.html b/zarb-ml/mageia-webteam/2011-October/001440.html
new file mode 100644
index 000000000..09160fc57
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001440.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] Add distrib links to first 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%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20111014180441.1847F45929%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="001439.html">
+ <LINK REL="Next" HREF="001441.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] Add distrib links to first page</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20111014180441.1847F45929%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] Add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 20:04:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001439.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001441.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1440">[ date ]</a>
+ <a href="thread.html#1440">[ thread ]</a>
+ <a href="subject.html#1440">[ subject ]</a>
+ <a href="author.html#1440">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #6 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-14 20:04:41 CEST ---
+@ webteam
+
+any news?
+
+--
+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="001439.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="001441.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1440">[ date ]</a>
+ <a href="thread.html#1440">[ thread ]</a>
+ <a href="subject.html#1440">[ subject ]</a>
+ <a href="author.html#1440">[ 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-October/001441.html b/zarb-ml/mageia-webteam/2011-October/001441.html
new file mode 100644
index 000000000..cd64c8a9b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001441.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ </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%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111014181749.A384C45931%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="001440.html">
+ <LINK REL="Next" HREF="001459.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20111014181749.A384C45931%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 20:17:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001440.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="001459.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1441">[ date ]</a>
+ <a href="thread.html#1441">[ thread ]</a>
+ <a href="subject.html#1441">[ subject ]</a>
+ <a href="author.html#1441">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-14 20:17:48 CEST ---
+ping?
+
+--
+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="001440.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="001459.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1441">[ date ]</a>
+ <a href="thread.html#1441">[ thread ]</a>
+ <a href="subject.html#1441">[ subject ]</a>
+ <a href="author.html#1441">[ 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-October/001442.html b/zarb-ml/mageia-webteam/2011-October/001442.html
new file mode 100644
index 000000000..0c9a4eb42
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001442.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014184734.075F445959%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="001437.html">
+ <LINK REL="Next" HREF="001443.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014184734.075F445959%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 20:47:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001437.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001443.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1442">[ date ]</a>
+ <a href="thread.html#1442">[ thread ]</a>
+ <a href="subject.html#1442">[ subject ]</a>
+ <a href="author.html#1442">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>
+
+--- Comment #1 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-10-14 22:47:33 CEST ---
+We could try to have packagers put the ASSIGNED status as a means to confirm
+that the bug was rightly assigned, indeed (not sure if they would do it, but
+why not).
+
+However, this will prevent them from differentiating bugs they are working on
+and bugs that are for later.
+
+As packagers can still assign back to triage team when we're wrong (there
+should be an easy way to do it, by the way, currently the only way I found is
+put the exact e-mail adress in the Assignee field), I'm not sure that in the
+end this would improve the situation.
+
+I think we'd better ping maintainers when the bugs assigned to them have been
+waiting for too long.
+
+--
+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="001437.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001443.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1442">[ date ]</a>
+ <a href="thread.html#1442">[ thread ]</a>
+ <a href="subject.html#1442">[ subject ]</a>
+ <a href="author.html#1442">[ 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-October/001443.html b/zarb-ml/mageia-webteam/2011-October/001443.html
new file mode 100644
index 000000000..e0570658c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001443.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014185310.82A4D45961%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="001442.html">
+ <LINK REL="Next" HREF="001444.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014185310.82A4D45961%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 20:53:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001442.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001444.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1443">[ date ]</a>
+ <a href="thread.html#1443">[ thread ]</a>
+ <a href="subject.html#1443">[ subject ]</a>
+ <a href="author.html#1443">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-14 22:53:10 CEST ---
+Or when assigning, add a comment: &quot;please confirm assignment was right&quot; and put
+the weeknumber in the whiteboard field. At the start of week (weeknumber +2) we
+could start nagging those who did nor confirm, nor assign back
+
+--
+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="001442.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001444.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1443">[ date ]</a>
+ <a href="thread.html#1443">[ thread ]</a>
+ <a href="subject.html#1443">[ subject ]</a>
+ <a href="author.html#1443">[ 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-October/001444.html b/zarb-ml/mageia-webteam/2011-October/001444.html
new file mode 100644
index 000000000..6296018a7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001444.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014185508.5950345961%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="001443.html">
+ <LINK REL="Next" HREF="001445.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014185508.5950345961%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 20:55:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001443.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001445.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1444">[ date ]</a>
+ <a href="thread.html#1444">[ thread ]</a>
+ <a href="subject.html#1444">[ subject ]</a>
+ <a href="author.html#1444">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-14 22:55:08 CEST ---
+(In reply to comment #1)
+&gt;<i> We could try to have packagers put the ASSIGNED status as a means to confirm
+</I>&gt;<i> that the bug was rightly assigned, indeed (not sure if they would do it, but
+</I>&gt;<i> why not).
+</I>&gt;<i>
+</I>
+Why don't we ask them?
+
+
+&gt;<i> However, this will prevent them from differentiating bugs they are working on
+</I>&gt;<i> and bugs that are for later.
+</I>&gt;<i>
+</I>
+Can they use the whiteboard, too?
+
+--
+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="001443.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001445.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1444">[ date ]</a>
+ <a href="thread.html#1444">[ thread ]</a>
+ <a href="subject.html#1444">[ subject ]</a>
+ <a href="author.html#1444">[ 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-October/001445.html b/zarb-ml/mageia-webteam/2011-October/001445.html
new file mode 100644
index 000000000..bad820aba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001445.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014192749.E14034595A%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="001444.html">
+ <LINK REL="Next" HREF="001446.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Juan Luis Baptiste</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014192749.E14034595A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 21:27:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001444.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001446.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1445">[ date ]</a>
+ <a href="thread.html#1445">[ thread ]</a>
+ <a href="subject.html#1445">[ subject ]</a>
+ <a href="author.html#1445">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+Juan Luis Baptiste &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">juan.baptiste at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">juan.baptiste at gmail.com</A>
+
+--- Comment #4 from Juan Luis Baptiste &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">juan.baptiste at gmail.com</A>&gt; 2011-10-14 21:27:49 CEST ---
+What about introducing another state, say &quot;ON_WORK&quot;, so when a bug is correctly
+assigned to the maintainer he can change it to ASSIGNED and then when he really
+starts to work on it can change it to ON_WORK or whatever it's named.
+
+That way both cases are filled, 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="001444.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001446.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1445">[ date ]</a>
+ <a href="thread.html#1445">[ thread ]</a>
+ <a href="subject.html#1445">[ subject ]</a>
+ <a href="author.html#1445">[ 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-October/001446.html b/zarb-ml/mageia-webteam/2011-October/001446.html
new file mode 100644
index 000000000..98538d5a8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001446.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014194432.0D6C745991%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="001445.html">
+ <LINK REL="Next" HREF="001447.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014194432.0D6C745991%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 21:44:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001445.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001447.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1446">[ date ]</a>
+ <a href="thread.html#1446">[ thread ]</a>
+ <a href="subject.html#1446">[ subject ]</a>
+ <a href="author.html#1446">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</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">boklm at mars-attacks.org</A>
+
+--- Comment #5 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-10-14 21:44:31 CEST ---
+(In reply to comment #4)
+&gt;<i> What about introducing another state, say &quot;ON_WORK&quot;, so when a bug is correctly
+</I>&gt;<i> assigned to the maintainer he can change it to ASSIGNED and then when he really
+</I>&gt;<i> starts to work on it can change it to ON_WORK or whatever it's named.
+</I>
+Do we really need a special status to say someone is working on it ?
+If the maintainer is working on it and can fix it quickly, he'll close the bug
+as resolved. If it cannot be fixed quickly he'll post a comment to explain why,
+showing that he's working on 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="001445.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001447.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1446">[ date ]</a>
+ <a href="thread.html#1446">[ thread ]</a>
+ <a href="subject.html#1446">[ subject ]</a>
+ <a href="author.html#1446">[ 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-October/001447.html b/zarb-ml/mageia-webteam/2011-October/001447.html
new file mode 100644
index 000000000..15bb7fe4a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001447.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014195135.B916D45991%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="001446.html">
+ <LINK REL="Next" HREF="001448.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014195135.B916D45991%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 21:51:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001446.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001448.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1447">[ date ]</a>
+ <a href="thread.html#1447">[ thread ]</a>
+ <a href="subject.html#1447">[ subject ]</a>
+ <a href="author.html#1447">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #6 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-14 23:51:35 CEST ---
+If it is needed Juan's idea would be nice
+
+If it is not needed, than why do assignees wait to set the status to &quot;ASSIGNED&quot;
+until they start working on 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="001446.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001448.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1447">[ date ]</a>
+ <a href="thread.html#1447">[ thread ]</a>
+ <a href="subject.html#1447">[ subject ]</a>
+ <a href="author.html#1447">[ 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-October/001448.html b/zarb-ml/mageia-webteam/2011-October/001448.html
new file mode 100644
index 000000000..846a8c3e7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001448.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014200827.A4BB14599D%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="001447.html">
+ <LINK REL="Next" HREF="001449.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014200827.A4BB14599D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 22:08:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001447.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001449.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1448">[ date ]</a>
+ <a href="thread.html#1448">[ thread ]</a>
+ <a href="subject.html#1448">[ subject ]</a>
+ <a href="author.html#1448">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</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-10-14 22:08:27 CEST ---
+I think we could have the following meanings for NEW and ASSIGNED :
+
+- NEW: it is not yet clear if the bug is valid, and who will be working on it.
+Triage team keep a search on NEW bugs, and try to find the right maintainer for
+those bugs.
+- ASSIGNED: bug has been assigned to the known maintainer of the package, or
+there is no known maintainer but someone took the bug and plans to work on it.
+Triage team can forget about this bug.
+
+I don't think we should have a status to say &quot;I'm working on it&quot; or &quot;I'm not
+working on it&quot;, because I don't really see what would be the use of this
+status.
+
+--
+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="001447.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001449.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1448">[ date ]</a>
+ <a href="thread.html#1448">[ thread ]</a>
+ <a href="subject.html#1448">[ subject ]</a>
+ <a href="author.html#1448">[ 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-October/001449.html b/zarb-ml/mageia-webteam/2011-October/001449.html
new file mode 100644
index 000000000..3496e4769
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001449.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014202907.87CD44599A%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="001448.html">
+ <LINK REL="Next" HREF="001450.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014202907.87CD44599A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 22:29:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001448.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001450.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1449">[ date ]</a>
+ <a href="thread.html#1449">[ thread ]</a>
+ <a href="subject.html#1449">[ subject ]</a>
+ <a href="author.html#1449">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+
+--- Comment #8 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-15 00:29:07 CEST ---
+@ Nicolas
+
+Great, if everybody agrees. I'll add D.Morgan to the cc, IIRC his point of view
+is different.
+
+--
+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="001448.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001450.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1449">[ date ]</a>
+ <a href="thread.html#1449">[ thread ]</a>
+ <a href="subject.html#1449">[ subject ]</a>
+ <a href="author.html#1449">[ 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-October/001450.html b/zarb-ml/mageia-webteam/2011-October/001450.html
new file mode 100644
index 000000000..5f1ad3009
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001450.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014204934.219CD459A0%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="001449.html">
+ <LINK REL="Next" HREF="001451.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014204934.219CD459A0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 22:49:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001449.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001451.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1450">[ date ]</a>
+ <a href="thread.html#1450">[ thread ]</a>
+ <a href="subject.html#1450">[ subject ]</a>
+ <a href="author.html#1450">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #9 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-10-14 22:49:34 CEST ---
+(In reply to comment #7)
+&gt;<i> I think we could have the following meanings for NEW and ASSIGNED :
+</I>&gt;<i>
+</I>&gt;<i> - NEW: it is not yet clear if the bug is valid, and who will be working on it.
+</I>&gt;<i> Triage team keep a search on NEW bugs, and try to find the right maintainer for
+</I>&gt;<i> those bugs.
+</I>&gt;<i> - ASSIGNED: bug has been assigned to the known maintainer of the package, or
+</I>&gt;<i> there is no known maintainer but someone took the bug and plans to work on it.
+</I>&gt;<i> Triage team can forget about this bug.
+</I>&gt;<i>
+</I>
+Then we don't need 2 different status, triage team already makes a difference
+between bugs assigned to <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> and those assigned to someone
+else. Changing the status to ASSIGNED would be tedious.
+
+I don't think triage team needs to care about the ASSIGNED status. The
+maintainer can choose to use it or not to show he/she is working on the
+problem. A simple comment can do also.
+
+For triage team, who cares not only about bug assignment but also about having
+bugs fixed, I think that the fact that many bugs assigned to a maintainer never
+get a &quot;ok, I'll handle it&quot; confirmation from the maintainer is a bigger
+problem, which is what the ASSIGNED status could be used for. Then triage team
+could ping maintainers who didn't show that they are going to handle the bug,
+after some time. However, we can do it without an ASSIGNED status too, provided
+we have a means to measure the delay since the day the bug was assigned and
+have reports about it in bugzilla.
+
+--
+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="001449.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001451.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1450">[ date ]</a>
+ <a href="thread.html#1450">[ thread ]</a>
+ <a href="subject.html#1450">[ subject ]</a>
+ <a href="author.html#1450">[ 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-October/001451.html b/zarb-ml/mageia-webteam/2011-October/001451.html
new file mode 100644
index 000000000..be5b020b7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001451.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014212625.107A74596D%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="001450.html">
+ <LINK REL="Next" HREF="001452.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014212625.107A74596D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 23:26:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001450.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001452.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1451">[ date ]</a>
+ <a href="thread.html#1451">[ thread ]</a>
+ <a href="subject.html#1451">[ subject ]</a>
+ <a href="author.html#1451">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #10 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-15 01:26:25 CEST ---
+(In reply to comment #9)
+
+&gt;<i>
+</I>&gt;<i> For triage team, who cares not only about bug assignment but also about having
+</I>&gt;<i> bugs fixed, I think that the fact that many bugs assigned to a maintainer never
+</I>&gt;<i> get a &quot;ok, I'll handle it&quot; confirmation from the maintainer is a bigger
+</I>&gt;<i> problem, which is what the ASSIGNED status could be used for. Then triage team
+</I>&gt;<i> could ping maintainers who didn't show that they are going to handle the bug,
+</I>&gt;<i> after some time.
+</I>
+That's how I understood Nicolas' comment, although I admit he left a few words
+out ;)
+
+&gt;<i> However, we can do it without an ASSIGNED status too, provided
+</I>&gt;<i> we have a means to measure the delay since the day the bug was assigned and
+</I>&gt;<i> have reports about it in bugzilla.
+</I>
+Don't be fooled by our long list of triagers. In fact, we are very, very short
+on triagers.
+A week ago, from the people on that list, only Manuel, Thierry, Remco and me
+were in the cc of more than 50 bugs reports.
+
+PLease give us an easy way to know fast whether we assigned correctly or not.
+If it can't be the ASSIGNED status, maybe an ACCEPTED status would be OK?
+
+--
+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="001450.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001452.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1451">[ date ]</a>
+ <a href="thread.html#1451">[ thread ]</a>
+ <a href="subject.html#1451">[ subject ]</a>
+ <a href="author.html#1451">[ 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-October/001452.html b/zarb-ml/mageia-webteam/2011-October/001452.html
new file mode 100644
index 000000000..5603afffb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001452.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014214646.DFBA3459A6%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="001451.html">
+ <LINK REL="Next" HREF="001453.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014214646.DFBA3459A6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 14 23:46:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001451.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001453.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1452">[ date ]</a>
+ <a href="thread.html#1452">[ thread ]</a>
+ <a href="subject.html#1452">[ subject ]</a>
+ <a href="author.html#1452">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #11 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-10-14 23:46:47 CEST ---
+(In reply to comment #10)
+&gt;<i>
+</I>&gt;<i> PLease give us an easy way to know fast whether we assigned correctly or not.
+</I>&gt;<i> If it can't be the ASSIGNED status, maybe an ACCEPTED status would be OK?
+</I>
+Maybe we can say that no answer means the bug is correctly assigned, and if you
+get a bug incorrectly assigned to you, you should reassign it to bugsquad (with
+a comment to explain).
+
+--
+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="001451.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001453.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1452">[ date ]</a>
+ <a href="thread.html#1452">[ thread ]</a>
+ <a href="subject.html#1452">[ subject ]</a>
+ <a href="author.html#1452">[ 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-October/001453.html b/zarb-ml/mageia-webteam/2011-October/001453.html
new file mode 100644
index 000000000..30eae17a1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001453.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014221220.776A0459BA%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="001452.html">
+ <LINK REL="Next" HREF="001454.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111014221220.776A0459BA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 15 00:12:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001452.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001454.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1453">[ date ]</a>
+ <a href="thread.html#1453">[ thread ]</a>
+ <a href="subject.html#1453">[ subject ]</a>
+ <a href="author.html#1453">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #12 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-15 00:12:19 CEST ---
+(In reply to comment #11)
+
+&gt;<i> Maybe we can say that no answer means the bug is correctly assigned, and if you
+</I>&gt;<i> get a bug incorrectly assigned to you, you should reassign it to bugsquad (with
+</I>&gt;<i> a comment to explain).
+</I>
+:<i>D
+</I>No answer means it is correctly assigned, even if it isn't.
+Thanks for you pragmatism.
+
+Do all (new) maintainers know they can reassign?
+
+--
+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="001452.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001454.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1453">[ date ]</a>
+ <a href="thread.html#1453">[ thread ]</a>
+ <a href="subject.html#1453">[ subject ]</a>
+ <a href="author.html#1453">[ 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-October/001454.html b/zarb-ml/mageia-webteam/2011-October/001454.html
new file mode 100644
index 000000000..cace586a5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001454.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015075640.2E02945A14%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="001453.html">
+ <LINK REL="Next" HREF="001455.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015075640.2E02945A14%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 15 09:56:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001453.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001455.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1454">[ date ]</a>
+ <a href="thread.html#1454">[ thread ]</a>
+ <a href="subject.html#1454">[ subject ]</a>
+ <a href="author.html#1454">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #13 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-15 11:56:40 CEST ---
+For now, Nicolas' pragmatic solution seems the best.
+
+I know there are maintainers who use the &quot;ASSIGNED&quot; status to control their own
+workflow. Everybody's workload is so big atm, it would not be good to take away
+this tool from them now.
+
+I would like to discuss this issue again later, when workloads have decreased
+to a comfortable level. If it were possible, I would now set the milestone for
+this bug to Mageia 3, but that isn't possible yet.
+
+If no more comments are added, I'll close this bug as WONTFIX (and maybe reopen
+after Mageia 2 is released :p)
+
+--
+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="001453.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001455.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1454">[ date ]</a>
+ <a href="thread.html#1454">[ thread ]</a>
+ <a href="subject.html#1454">[ subject ]</a>
+ <a href="author.html#1454">[ 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-October/001455.html b/zarb-ml/mageia-webteam/2011-October/001455.html
new file mode 100644
index 000000000..7d81ee8b0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001455.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015093831.2380F45A2A%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="001454.html">
+ <LINK REL="Next" HREF="001456.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015093831.2380F45A2A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 15 11:38:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001454.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001456.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1455">[ date ]</a>
+ <a href="thread.html#1455">[ thread ]</a>
+ <a href="subject.html#1455">[ subject ]</a>
+ <a href="author.html#1455">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>
+
+--- Comment #14 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2011-10-15 11:38:30 CEST ---
+I commented on IRC before reading up on this bugreport... but I'll repeat some
+comments I made there:
+
+
+&lt;remmy&gt; Maybe ASSIGNED should be called SELF ASSIGNED
+&lt;remmy&gt; Then all ambiguity is gone
+&lt;remmy&gt; Or have TRIAGED as a status instead as a keyword that's not used
+
+In that latter case, a bug goes from NEW to TRIAGED to possibly (SELF) ASSIGNED
+when the maintainer accepts being the assignee. That way bugsquad can also see
+what bugs have been TRIAGED and assigned to someone but to which no further
+action was taken since.
+
+--
+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="001454.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001456.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1455">[ date ]</a>
+ <a href="thread.html#1455">[ thread ]</a>
+ <a href="subject.html#1455">[ subject ]</a>
+ <a href="author.html#1455">[ 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-October/001456.html b/zarb-ml/mageia-webteam/2011-October/001456.html
new file mode 100644
index 000000000..24efb4565
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001456.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015113805.BC99245A4F%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="001455.html">
+ <LINK REL="Next" HREF="001457.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015113805.BC99245A4F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 15 13:38:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001455.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001457.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1456">[ date ]</a>
+ <a href="thread.html#1456">[ thread ]</a>
+ <a href="subject.html#1456">[ subject ]</a>
+ <a href="author.html#1456">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>
+
+--- Comment #15 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2011-10-15 15:38:05 CEST ---
+I like the idea of adding the TRIAGED status as Remmy suggests.
+Then the ASSIGNED status would mean that it has been accepted, or that it is
+being actively worked on, depending on the preferences of the assignee.
+That way, something classified as TRIAGED could be taken by someone else if it
+is an urgent bug.
+
+But Nicolas' approach is ok for me.
+Except I will try to make a point of responding to bugs assigned to me, to
+remove possible ambiguity as to whether I'm aware of the assignment.
+The assignee could be temporarily unavailable for whatever reason.
+
+--
+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="001455.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001457.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1456">[ date ]</a>
+ <a href="thread.html#1456">[ thread ]</a>
+ <a href="subject.html#1456">[ subject ]</a>
+ <a href="author.html#1456">[ 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-October/001457.html b/zarb-ml/mageia-webteam/2011-October/001457.html
new file mode 100644
index 000000000..a8cc6d026
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001457.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015134326.9217145A83%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="001456.html">
+ <LINK REL="Next" HREF="001458.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015134326.9217145A83%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 15 15:43:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001456.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001458.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1457">[ date ]</a>
+ <a href="thread.html#1457">[ thread ]</a>
+ <a href="subject.html#1457">[ subject ]</a>
+ <a href="author.html#1457">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #16 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-10-15 17:43:26 CEST ---
+My position here will be: do nothing for now, ie keep *not* putting the
+ASSIGNED status when assigning to the maintainer (and let the maintainer use it
+if needed), and include the future decision in a broader worflow definition.
+
+That of fedora looks good, for example:
+
+<A HREF="https://fedoraproject.org/wiki/BugZappers/BugStatusWorkFlow">https://fedoraproject.org/wiki/BugZappers/BugStatusWorkFlow</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="001456.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001458.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1457">[ date ]</a>
+ <a href="thread.html#1457">[ thread ]</a>
+ <a href="subject.html#1457">[ subject ]</a>
+ <a href="author.html#1457">[ 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-October/001458.html b/zarb-ml/mageia-webteam/2011-October/001458.html
new file mode 100644
index 000000000..cfbd42800
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001458.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015145227.6928245A82%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="001457.html">
+ <LINK REL="Next" HREF="001471.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111015145227.6928245A82%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 15 16:52:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001457.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001471.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1458">[ date ]</a>
+ <a href="thread.html#1458">[ thread ]</a>
+ <a href="subject.html#1458">[ subject ]</a>
+ <a href="author.html#1458">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #17 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2011-10-15 18:52:27 CEST ---
+(In reply to comment #16)
+Waiting for the moment sounds good to me. Leaves time for reflection on the
+bigger picture.
+
+The fedora policy looks really comprehensive. They cover all the bases, even
+letting the maintainer(s) decide whether or not to use certain statuses.
+
+--
+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="001457.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001471.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1458">[ date ]</a>
+ <a href="thread.html#1458">[ thread ]</a>
+ <a href="subject.html#1458">[ subject ]</a>
+ <a href="author.html#1458">[ 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-October/001459.html b/zarb-ml/mageia-webteam/2011-October/001459.html
new file mode 100644
index 000000000..705ddc5c2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001459.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+ </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%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20111015224746.98F5145AFD%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="001441.html">
+ <LINK REL="Next" HREF="001460.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20111015224746.98F5145AFD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 16 00:47:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001441.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001460.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1459">[ date ]</a>
+ <a href="thread.html#1459">[ thread ]</a>
+ <a href="subject.html#1459">[ subject ]</a>
+ <a href="author.html#1459">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1568">https://bugs.mageia.org/show_bug.cgi?id=1568</A>
+
+--- Comment #9 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-10-16 00:47:46 CEST ---
+hello, what is the status of this bug ?
+
+--
+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="001441.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="001460.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1459">[ date ]</a>
+ <a href="thread.html#1459">[ thread ]</a>
+ <a href="subject.html#1459">[ subject ]</a>
+ <a href="author.html#1459">[ 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-October/001460.html b/zarb-ml/mageia-webteam/2011-October/001460.html
new file mode 100644
index 000000000..1679cd058
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001460.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+ </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%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111016143935.DDA7345BB2%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="001459.html">
+ <LINK REL="Next" HREF="001461.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work</H1>
+ <B>Marianne Lombard</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111016143935.DDA7345BB2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 16 16:39:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001459.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001461.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1460">[ date ]</a>
+ <a href="thread.html#1460">[ thread ]</a>
+ <a href="subject.html#1460">[ subject ]</a>
+ <a href="author.html#1460">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+
+Marianne Lombard &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marianne at tuxette.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marianne at tuxette.fr</A>
+
+--- Comment #2 from Marianne Lombard &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marianne at tuxette.fr</A>&gt; 2011-10-16 18:39:35 CEST ---
+Manual migration fails because of a bad selection of mirror
+
+urpmi.addmedia --distrib --mirrorlist
+<A HREF="http://mirrors.mageia.org/api/mageia.1.$ARCH.list">http://mirrors.mageia.org/api/mageia.1.$ARCH.list</A>
+
+install mirror for cauldron version of mageia instead of mageia 1
+This behavior looks not be present with all mirror
+
+--
+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="001459.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001461.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1460">[ date ]</a>
+ <a href="thread.html#1460">[ thread ]</a>
+ <a href="subject.html#1460">[ subject ]</a>
+ <a href="author.html#1460">[ 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-October/001461.html b/zarb-ml/mageia-webteam/2011-October/001461.html
new file mode 100644
index 000000000..250295ca2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001461.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+ </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%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111016163346.A637245BCD%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="001460.html">
+ <LINK REL="Next" HREF="001462.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111016163346.A637245BCD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 16 18:33:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001460.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001462.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1461">[ date ]</a>
+ <a href="thread.html#1461">[ thread ]</a>
+ <a href="subject.html#1461">[ subject ]</a>
+ <a href="author.html#1461">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</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">boklm at mars-attacks.org</A>
+
+--- Comment #3 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-10-16 18:33:46 CEST ---
+(In reply to comment #2)
+&gt;<i> Manual migration fails because of a bad selection of mirror
+</I>&gt;<i>
+</I>&gt;<i> urpmi.addmedia --distrib --mirrorlist
+</I>&gt;<i> <A HREF="http://mirrors.mageia.org/api/mageia.1.$ARCH.list">http://mirrors.mageia.org/api/mageia.1.$ARCH.list</A>
+</I>&gt;<i>
+</I>&gt;<i> install mirror for cauldron version of mageia instead of mageia 1
+</I>&gt;<i> This behavior looks not be present with all mirror
+</I>
+the mirrorlist file for mageia 1 doesn't contain any cauldron url.
+
+--
+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="001460.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001462.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1461">[ date ]</a>
+ <a href="thread.html#1461">[ thread ]</a>
+ <a href="subject.html#1461">[ subject ]</a>
+ <a href="author.html#1461">[ 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-October/001462.html b/zarb-ml/mageia-webteam/2011-October/001462.html
new file mode 100644
index 000000000..c9b87512a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001462.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+ </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%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111016170459.1542245BD6%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="001461.html">
+ <LINK REL="Next" HREF="001463.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111016170459.1542245BD6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 16 19:04:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001461.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001463.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1462">[ date ]</a>
+ <a href="thread.html#1462">[ thread ]</a>
+ <a href="subject.html#1462">[ subject ]</a>
+ <a href="author.html#1462">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+
+--- Comment #4 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-10-16 21:04:59 CEST ---
+So the problem, noticed by misc, is that single quotes are missing around the
+mirrorlist URL.
+
+The website should give this command :
+# urpmi.addmedia --distrib --mirrorlist
+'<A HREF="http://mirrors.mageia.org/api/mageia.1.$ARCH.list">http://mirrors.mageia.org/api/mageia.1.$ARCH.list</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="001461.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001463.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1462">[ date ]</a>
+ <a href="thread.html#1462">[ thread ]</a>
+ <a href="subject.html#1462">[ subject ]</a>
+ <a href="author.html#1462">[ 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-October/001463.html b/zarb-ml/mageia-webteam/2011-October/001463.html
new file mode 100644
index 000000000..81b64d359
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001463.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+ </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%201529%5D%20bad%20encoding%20for%20ru%20and%20ua&In-Reply-To=%3C20111016195009.A761E45C05%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="001462.html">
+ <LINK REL="Next" HREF="001464.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1529] bad encoding for ru and ua</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201529%5D%20bad%20encoding%20for%20ru%20and%20ua&In-Reply-To=%3C20111016195009.A761E45C05%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1529] bad encoding for ru and ua">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 16 21:50:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001462.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001464.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1463">[ date ]</a>
+ <a href="thread.html#1463">[ thread ]</a>
+ <a href="subject.html#1463">[ subject ]</a>
+ <a href="author.html#1463">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-16 23:50:09 CEST ---
+ping?
+
+--
+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="001462.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001464.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1463">[ date ]</a>
+ <a href="thread.html#1463">[ thread ]</a>
+ <a href="subject.html#1463">[ subject ]</a>
+ <a href="author.html#1463">[ 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-October/001464.html b/zarb-ml/mageia-webteam/2011-October/001464.html
new file mode 100644
index 000000000..9f450e199
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001464.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+ </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%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111016224728.BF7E745C2A%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="001463.html">
+ <LINK REL="Next" HREF="001465.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201589%5D%20Manual%20mirrorlist%20command%20in%20migration%0A%09guide%20doesn%27t%20work&In-Reply-To=%3C20111016224728.BF7E745C2A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 17 00:47:28 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001463.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI>Next message: <A HREF="001465.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1464">[ date ]</a>
+ <a href="thread.html#1464">[ thread ]</a>
+ <a href="subject.html#1464">[ subject ]</a>
+ <a href="author.html#1464">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1589">https://bugs.mageia.org/show_bug.cgi?id=1589</A>
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-10-17 02:47:28 CEST ---
+(In reply to comment #4)
+&gt;<i> The website should give this command :
+</I>&gt;<i> # urpmi.addmedia --distrib --mirrorlist
+</I>&gt;<i> '<A HREF="http://mirrors.mageia.org/api/mageia.1.$ARCH.list">http://mirrors.mageia.org/api/mageia.1.$ARCH.list</A>'
+</I>
+This is now fixed on the website.
+
+--
+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="001463.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI>Next message: <A HREF="001465.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1464">[ date ]</a>
+ <a href="thread.html#1464">[ thread ]</a>
+ <a href="subject.html#1464">[ subject ]</a>
+ <a href="author.html#1464">[ 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-October/001465.html b/zarb-ml/mageia-webteam/2011-October/001465.html
new file mode 100644
index 000000000..e4d20f3e2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001465.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] SSL for checksums
+ </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%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20111017054504.D0F6145C46%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="001464.html">
+ <LINK REL="Next" HREF="001466.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] SSL for checksums</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20111017054504.D0F6145C46%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 17 07:45:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001464.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001466.html">[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1465">[ date ]</a>
+ <a href="thread.html#1465">[ thread ]</a>
+ <a href="subject.html#1465">[ subject ]</a>
+ <a href="author.html#1465">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-17 09:45:04 CEST ---
+(In reply to comment #3)
+&gt;<i> Mhh since the website is on zarb, we cannot place our wildcart cert there. So
+</I>&gt;<i> this will have to wait until we move to our servers.
+</I>
+I understand moving is still in progress
+
+--
+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="001464.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A></li>
+ <LI>Next message: <A HREF="001466.html">[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1465">[ date ]</a>
+ <a href="thread.html#1465">[ thread ]</a>
+ <a href="subject.html#1465">[ subject ]</a>
+ <a href="author.html#1465">[ 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-October/001466.html b/zarb-ml/mageia-webteam/2011-October/001466.html
new file mode 100644
index 000000000..2384cba80
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001466.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.
+ </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%203085%5D%20%5BNew%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3Cbug-3085-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="001465.html">
+ <LINK REL="Next" HREF="001467.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203085%5D%20%5BNew%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3Cbug-3085-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 17 09:36:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001465.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001467.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1466">[ date ]</a>
+ <a href="thread.html#1466">[ thread ]</a>
+ <a href="subject.html#1466">[ subject ]</a>
+ <a href="author.html#1466">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3085">https://bugs.mageia.org/show_bug.cgi?id=3085</A>
+
+ Summary: Make it possible to change bug-description after it's
+ made by adding a edit-link.
+ 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">kristoffer.grundstrom1983 at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem: I wish too see a possibility to change the content of
+an already posted bug if I've written something wrong so it looks more correct.
+
+Steps to Reproduce:
+1. Open your webbrowser.
+2. Go <A HREF="http://bugs.mageia.org">http://bugs.mageia.org</A>
+3. Post a bugreport &amp; see if you made some typos or anything else that seems
+wrong.
+4. Click on a link next to the Description of problem just like the [-] to
+colapse.
+5. Then go ahead and edit your description &amp; save the new changes.
+
+--
+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="001465.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001467.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1466">[ date ]</a>
+ <a href="thread.html#1466">[ thread ]</a>
+ <a href="subject.html#1466">[ subject ]</a>
+ <a href="author.html#1466">[ 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-October/001467.html b/zarb-ml/mageia-webteam/2011-October/001467.html
new file mode 100644
index 000000000..ab02126b3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001467.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+ </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%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111017093324.C9B1045CBB%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="001466.html">
+ <LINK REL="Next" HREF="001468.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111017093324.C9B1045CBB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 17 11:33:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001466.html">[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001468.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1467">[ date ]</a>
+ <a href="thread.html#1467">[ thread ]</a>
+ <a href="subject.html#1467">[ subject ]</a>
+ <a href="author.html#1467">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3085">https://bugs.mageia.org/show_bug.cgi?id=3085</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| |WONTFIX
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>
+
+--- Comment #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-10-17 11:33:24 CEST ---
+Editing comments is not possible on bugzilla. If you want this to change,
+you'll need to submit a bug upstream.
+
+--
+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="001466.html">[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001468.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1467">[ date ]</a>
+ <a href="thread.html#1467">[ thread ]</a>
+ <a href="subject.html#1467">[ subject ]</a>
+ <a href="author.html#1467">[ 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-October/001468.html b/zarb-ml/mageia-webteam/2011-October/001468.html
new file mode 100644
index 000000000..4c046cbe8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001468.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+ </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%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111017135358.7031145D35%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="001467.html">
+ <LINK REL="Next" HREF="001469.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111017135358.7031145D35%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 17 15:53:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001467.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001469.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1468">[ date ]</a>
+ <a href="thread.html#1468">[ thread ]</a>
+ <a href="subject.html#1468">[ subject ]</a>
+ <a href="author.html#1468">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3085">https://bugs.mageia.org/show_bug.cgi?id=3085</A>
+
+--- Comment #2 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2011-10-17 15:53:58 CEST ---
+On which site do I report upstream?
+
+--
+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="001467.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001469.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1468">[ date ]</a>
+ <a href="thread.html#1468">[ thread ]</a>
+ <a href="subject.html#1468">[ subject ]</a>
+ <a href="author.html#1468">[ 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-October/001469.html b/zarb-ml/mageia-webteam/2011-October/001469.html
new file mode 100644
index 000000000..b21e295e1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001469.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+ </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%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111017151505.12E5045D65%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="001468.html">
+ <LINK REL="Next" HREF="001487.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111017151505.12E5045D65%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 17 17:15:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001468.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001487.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1469">[ date ]</a>
+ <a href="thread.html#1469">[ thread ]</a>
+ <a href="subject.html#1469">[ subject ]</a>
+ <a href="author.html#1469">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3085">https://bugs.mageia.org/show_bug.cgi?id=3085</A>
+
+--- Comment #3 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2011-10-17 19:15:05 CEST ---
+Kristoffer: See <A HREF="http://www.bugzilla.org/developers/reporting_bugs.html">http://www.bugzilla.org/developers/reporting_bugs.html</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="001468.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001487.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1469">[ date ]</a>
+ <a href="thread.html#1469">[ thread ]</a>
+ <a href="subject.html#1469">[ subject ]</a>
+ <a href="author.html#1469">[ 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-October/001470.html b/zarb-ml/mageia-webteam/2011-October/001470.html
new file mode 100644
index 000000000..ab21de67d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001470.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20111017182344.4D32A45DC3%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="001489.html">
+ <LINK REL="Next" HREF="001474.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20111017182344.4D32A45DC3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 17 20:23:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001489.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001474.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1470">[ date ]</a>
+ <a href="thread.html#1470">[ thread ]</a>
+ <a href="subject.html#1470">[ subject ]</a>
+ <a href="author.html#1470">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #9 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-17 20:23:44 CEST ---
+@ webteam
+
+ping?
+
+--
+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="001489.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001474.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1470">[ date ]</a>
+ <a href="thread.html#1470">[ thread ]</a>
+ <a href="subject.html#1470">[ subject ]</a>
+ <a href="author.html#1470">[ 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-October/001471.html b/zarb-ml/mageia-webteam/2011-October/001471.html
new file mode 100644
index 000000000..be2d26ba6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001471.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111017194721.76F6045E0A%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="001458.html">
+ <LINK REL="Next" HREF="001472.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111017194721.76F6045E0A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 17 21:47:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001458.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001472.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1471">[ date ]</a>
+ <a href="thread.html#1471">[ thread ]</a>
+ <a href="subject.html#1471">[ subject ]</a>
+ <a href="author.html#1471">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #18 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-10-17 23:47:21 CEST ---
+On the french forum I have see that the 'new' status means for them, that
+nothing was done for the bug.
+
+(and maybe that's why ahmad add the keyword 'triaged' but personally I don't
+like that)
+
+So I am agree with comment 14, 15, 16.
+
+--
+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="001458.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001472.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1471">[ date ]</a>
+ <a href="thread.html#1471">[ thread ]</a>
+ <a href="subject.html#1471">[ subject ]</a>
+ <a href="author.html#1471">[ 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-October/001472.html b/zarb-ml/mageia-webteam/2011-October/001472.html
new file mode 100644
index 000000000..052e9349e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001472.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111018043227.36C1645E6A%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="001471.html">
+ <LINK REL="Next" HREF="001473.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111018043227.36C1645E6A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 18 06:32:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001471.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001473.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1472">[ date ]</a>
+ <a href="thread.html#1472">[ thread ]</a>
+ <a href="subject.html#1472">[ subject ]</a>
+ <a href="author.html#1472">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #19 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-18 08:32:24 CEST ---
+(In reply to comment #18)
+&gt;<i> On the french forum I have see that the 'new' status means for them, that
+</I>&gt;<i> nothing was done for the bug.
+</I>
+&gt;<i>
+</I>&gt;<i> So I am agree with comment 14, 15, 16.
+</I>
+It would be really good, if we could have a TRIAGED status, to show we finished
+triaging and are now (or asap) assigning it to someone to solve the issue
+
+Are we allowed to use the ASSIGNED status for ourselves, for the Bug Squad, to
+set when, at first sight of a bug, we can't dismiss it as a duplicate or user
+error and we think it should be further triaged by the bug squad?
+
+Like bug 1537:
+It was filed on 2011-06-03
+No one ever commented on it.
+It isn't a duplicate of a bug.
+I can't (yet) try to reproduce the bug because I'm totally unfamiliar with
+DocBook.
+
+I think it looks like a genuine bug that should be further triaged. It would be
+nice to show that to the reporter by setting the status to ASSIGNED, so he
+won't feel we ignore his report.
+
+--
+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="001471.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001473.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1472">[ date ]</a>
+ <a href="thread.html#1472">[ thread ]</a>
+ <a href="subject.html#1472">[ subject ]</a>
+ <a href="author.html#1472">[ 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-October/001473.html b/zarb-ml/mageia-webteam/2011-October/001473.html
new file mode 100644
index 000000000..1295d36fd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001473.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111019185224.5B5B8460A4%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="001472.html">
+ <LINK REL="Next" HREF="001476.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111019185224.5B5B8460A4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 19 20:52:24 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001472.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001476.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1473">[ date ]</a>
+ <a href="thread.html#1473">[ thread ]</a>
+ <a href="subject.html#1473">[ subject ]</a>
+ <a href="author.html#1473">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at aim.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at aim.com</A>
+
+--- Comment #20 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at aim.com</A>&gt; 2011-10-19 22:52:24 CEST ---
+Adding a new bug status doesn't necessarily help maintainers fix their bugs
+faster. :) If assignees do not use the new bug status as you wish, this just
+make things harder to manage. For you information, Bugzilla 4.0 renamed NEW as
+CONFIRMED, and ASSIGNED as IN_PROGRESS to better reflect what they mean
+(Mageia's Bugzilla won't be affected as these new bug statuses are only for new
+installations, not for those which are upgrading).
+
+There are two things which could help the triage team:
+
+1) Pester maintainers to triage bugs assigned to them. Bugzilla has a whining
+system which works as follows: whineatnews.pl can be run as a cron job (e.g.
+once a week) and it will send an email to all assignees who didn't touch their
+bugs in the last X days, where X is configurable from the Parameters page. Only
+bugs left with status NEW and REOPENED are concerned. If assignees complain
+about these weekly emails, tell them to either reassign their bugs to squad, or
+change the bug status to ASSIGNED (the whining system doesn't pester about bugs
+with the status set to ASSIGNED). This is a nice way to force them to triage
+bugs assigned to them.
+
+2) You can query for bugs which haven't been touched by their assignee in the
+last Y days. For instance, to get all open bugs in the Mageia product where the
+assignee didn't do anything in the last 15 days:
+
+<A HREF="https://bugs.mageia.org/buglist.cgi?emailassigned_to1=1&amp;query_format=advanced&amp;field0-0-0=owner_idle_time&amp;email1=bugsquad%40mageia.org&amp;type0-0-0=greaterthan&amp;value0-0-0=15&amp;resolution=---&amp;product=Mageia&amp;emailtype1=notequals">https://bugs.mageia.org/buglist.cgi?emailassigned_to1=1&amp;query_format=advanced&amp;field0-0-0=owner_idle_time&amp;email1=bugsquad%40mageia.org&amp;type0-0-0=greaterthan&amp;value0-0-0=15&amp;resolution=---&amp;product=Mageia&amp;emailtype1=notequals</A>
+
+If you are curious to see how I did it, simply click the &quot;Edit Search&quot; link at
+the bottom of the list, and you will see which fields I filed. This is another
+good way to keep track of inactive 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="001472.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001476.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1473">[ date ]</a>
+ <a href="thread.html#1473">[ thread ]</a>
+ <a href="subject.html#1473">[ subject ]</a>
+ <a href="author.html#1473">[ 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-October/001474.html b/zarb-ml/mageia-webteam/2011-October/001474.html
new file mode 100644
index 000000000..c39417919
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001474.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+ </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%201665%5D%20with%20some%20browser%20and%20some%20languages%2C%0A%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3C20111019190243.619E4460C7%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="001470.html">
+ <LINK REL="Next" HREF="001477.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201665%5D%20with%20some%20browser%20and%20some%20languages%2C%0A%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3C20111019190243.619E4460C7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 19 21:02:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001470.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001477.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1474">[ date ]</a>
+ <a href="thread.html#1474">[ thread ]</a>
+ <a href="subject.html#1474">[ subject ]</a>
+ <a href="author.html#1474">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1665">https://bugs.mageia.org/show_bug.cgi?id=1665</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-19 23:02:43 CEST ---
+Funny, I do get Firefox to let the language button mask an item, by reducing
+the width of the firefox screen, one item hides behind the language button, the
+rest moves to the second line of items
+
+--
+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="001470.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001477.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1474">[ date ]</a>
+ <a href="thread.html#1474">[ thread ]</a>
+ <a href="subject.html#1474">[ subject ]</a>
+ <a href="author.html#1474">[ 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-October/001475.html b/zarb-ml/mageia-webteam/2011-October/001475.html
new file mode 100644
index 000000000..51769f53c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001475.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+ </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%203049%5D%20%22simple%22%20bug-entry%20form%20doesn%27t%20allow%0A%20direct%20attachment%20%28and%20shows%20URL%20entry%2C%0A%20while%20it%20is%20an%20%22advanced%22%20field%20in%20the%20expert%27s%20version%29&In-Reply-To=%3C20111019192627.22426460FB%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="001438.html">
+ <LINK REL="Next" HREF="001481.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)</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%203049%5D%20%22simple%22%20bug-entry%20form%20doesn%27t%20allow%0A%20direct%20attachment%20%28and%20shows%20URL%20entry%2C%0A%20while%20it%20is%20an%20%22advanced%22%20field%20in%20the%20expert%27s%20version%29&In-Reply-To=%3C20111019192627.22426460FB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 19 21:26:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001438.html">[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI>Next message: <A HREF="001481.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1475">[ date ]</a>
+ <a href="thread.html#1475">[ thread ]</a>
+ <a href="subject.html#1475">[ subject ]</a>
+ <a href="author.html#1475">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3049">https://bugs.mageia.org/show_bug.cgi?id=3049</A>
+
+--- Comment #1 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at aim.com</A>&gt; 2011-10-19 23:26:26 CEST ---
+This is on purpose, to offer a &quot;simple&quot; 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 on the CC list for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001438.html">[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI>Next message: <A HREF="001481.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1475">[ date ]</a>
+ <a href="thread.html#1475">[ thread ]</a>
+ <a href="subject.html#1475">[ subject ]</a>
+ <a href="author.html#1475">[ 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-October/001476.html b/zarb-ml/mageia-webteam/2011-October/001476.html
new file mode 100644
index 000000000..064ff79de
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001476.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3047] ASSIGNED status means
+ </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%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111019194143.C434646116%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="001473.html">
+ <LINK REL="Next" HREF="001438.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3047] ASSIGNED status means</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203047%5D%20ASSIGNED%20status%20means&In-Reply-To=%3C20111019194143.C434646116%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3047] ASSIGNED status means">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 19 21:41:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001473.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001438.html">[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1476">[ date ]</a>
+ <a href="thread.html#1476">[ thread ]</a>
+ <a href="subject.html#1476">[ subject ]</a>
+ <a href="author.html#1476">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3047">https://bugs.mageia.org/show_bug.cgi?id=3047</A>
+
+--- Comment #21 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-19 21:41:43 CEST ---
+@ Fr&#233;d&#233;ric
+
+Thanks for your comment and for the search example (I wouldn't have managed to
+figure out how to do that)
+
+I like your proposal, but I know there are maintainers who use the &quot;ASSIGNED&quot;
+status to control there workflow, that is, they don't set a bug to that status
+before they actually start working on it. They would panic when they were
+forced to set the status to ASSIGNED as soon as they have triaged that the bug
+was assigned to them correctly
+
+I'm confident you have something better for them to control their workflow :)
+
+--
+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="001473.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A></li>
+ <LI>Next message: <A HREF="001438.html">[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1476">[ date ]</a>
+ <a href="thread.html#1476">[ thread ]</a>
+ <a href="subject.html#1476">[ subject ]</a>
+ <a href="author.html#1476">[ 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-October/001477.html b/zarb-ml/mageia-webteam/2011-October/001477.html
new file mode 100644
index 000000000..e01ded03c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001477.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+ </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%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111019203449.4BF8C46118%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="001474.html">
+ <LINK REL="Next" HREF="001478.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111019203449.4BF8C46118%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 19 22:34:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001474.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="001478.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1477">[ date ]</a>
+ <a href="thread.html#1477">[ thread ]</a>
+ <a href="subject.html#1477">[ subject ]</a>
+ <a href="author.html#1477">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2360">https://bugs.mageia.org/show_bug.cgi?id=2360</A>
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-10-19 22:34:49 CEST ---
+If there is no update in the next weeks/months, as a workaround, can we remove
+the comma ? (the alpha is comming, that's why I ask)
+
+--
+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="001474.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="001478.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1477">[ date ]</a>
+ <a href="thread.html#1477">[ thread ]</a>
+ <a href="subject.html#1477">[ subject ]</a>
+ <a href="author.html#1477">[ 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-October/001478.html b/zarb-ml/mageia-webteam/2011-October/001478.html
new file mode 100644
index 000000000..0ac405972
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001478.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+ </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%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111019203718.102BB4613D%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="001477.html">
+ <LINK REL="Next" HREF="001479.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111019203718.102BB4613D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 19 22:37:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001477.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001479.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1478">[ date ]</a>
+ <a href="thread.html#1478">[ thread ]</a>
+ <a href="subject.html#1478">[ subject ]</a>
+ <a href="author.html#1478">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2360">https://bugs.mageia.org/show_bug.cgi?id=2360</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">boklm at mars-attacks.org</A>
+
+--- Comment #4 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-10-19 22:37:18 CEST ---
+Or, I removed the component as a temporary solution.
+
+--
+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="001477.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001479.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1478">[ date ]</a>
+ <a href="thread.html#1478">[ thread ]</a>
+ <a href="subject.html#1478">[ subject ]</a>
+ <a href="author.html#1478">[ 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-October/001479.html b/zarb-ml/mageia-webteam/2011-October/001479.html
new file mode 100644
index 000000000..f193880bc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001479.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+ </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%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111019203730.103ED4613E%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="001478.html">
+ <LINK REL="Next" HREF="001480.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202360%5D%20Component%20Release%20%28media%2C%0A%09process%29%20seems%20not%20working&In-Reply-To=%3C20111019203730.103ED4613E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 19 22:37:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001478.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001480.html">[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1479">[ date ]</a>
+ <a href="thread.html#1479">[ thread ]</a>
+ <a href="subject.html#1479">[ subject ]</a>
+ <a href="author.html#1479">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2360">https://bugs.mageia.org/show_bug.cgi?id=2360</A>
+
+--- Comment #5 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-10-19 22:37:30 CEST ---
+oops, renamed, not removed.
+
+--
+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="001478.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001480.html">[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1479">[ date ]</a>
+ <a href="thread.html#1479">[ thread ]</a>
+ <a href="subject.html#1479">[ subject ]</a>
+ <a href="author.html#1479">[ 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-October/001480.html b/zarb-ml/mageia-webteam/2011-October/001480.html
new file mode 100644
index 000000000..c65e6a837
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001480.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates
+ </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%203116%5D%20%5BNew%5D%20The%20support%20page%20should%20say%0A%20something%20about%20security/bugfix%20updates&In-Reply-To=%3Cbug-3116-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="001479.html">
+ <LINK REL="Next" HREF="001483.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203116%5D%20%5BNew%5D%20The%20support%20page%20should%20say%0A%20something%20about%20security/bugfix%20updates&In-Reply-To=%3Cbug-3116-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 19 22:56:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001479.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001483.html">[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1480">[ date ]</a>
+ <a href="thread.html#1480">[ thread ]</a>
+ <a href="subject.html#1480">[ subject ]</a>
+ <a href="author.html#1480">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3116">https://bugs.mageia.org/show_bug.cgi?id=3116</A>
+
+ Summary: The support page should say something about
+ security/bugfix updates
+ 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">boklm at mars-attacks.org</A>
+
+
+I think the support page :
+<A HREF="http://www.mageia.org/en/support/">http://www.mageia.org/en/support/</A>
+should mention that updates are available on the stable release. And a link to
+the updates-announce mailing list for the people who want to be notified of
+updates :
+<A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi/info/updates-announce">https://ml.mageia.org/wwsympa-wrapper.fcgi/info/updates-announce</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="001479.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A></li>
+ <LI>Next message: <A HREF="001483.html">[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1480">[ date ]</a>
+ <a href="thread.html#1480">[ thread ]</a>
+ <a href="subject.html#1480">[ subject ]</a>
+ <a href="author.html#1480">[ 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-October/001481.html b/zarb-ml/mageia-webteam/2011-October/001481.html
new file mode 100644
index 000000000..d0e4b8fb4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001481.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+ </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%203049%5D%20%22simple%22%20bug-entry%20form%20doesn%27t%20allow%0A%20direct%20attachment%20%28and%20shows%20URL%20entry%2C%0A%20while%20it%20is%20an%20%22advanced%22%20field%20in%20the%20expert%27s%20version%29&In-Reply-To=%3C20111019221013.1F36C461A8%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="001475.html">
+ <LINK REL="Next" HREF="001439.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)</H1>
+ <B>Christian Lohmaier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203049%5D%20%22simple%22%20bug-entry%20form%20doesn%27t%20allow%0A%20direct%20attachment%20%28and%20shows%20URL%20entry%2C%0A%20while%20it%20is%20an%20%22advanced%22%20field%20in%20the%20expert%27s%20version%29&In-Reply-To=%3C20111019221013.1F36C461A8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 20 00:10:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001475.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI>Next message: <A HREF="001439.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1481">[ date ]</a>
+ <a href="thread.html#1481">[ thread ]</a>
+ <a href="subject.html#1481">[ subject ]</a>
+ <a href="author.html#1481">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3049">https://bugs.mageia.org/show_bug.cgi?id=3049</A>
+
+--- Comment #2 from Christian Lohmaier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">lohmaier+mageia at googlemail.com</A>&gt; 2011-10-20 02:10:13 CEST ---
+which of the two is on purpose, not being able to add an attachment?
+
+Sorry to say, but this is not end-user friendly. From my experience from the
+OOo project, many people find it very confusing not being able to add an
+attachment right away, like they can with their email-client for example. But
+your choice.
+
+But the point is also about the URL-entry field - so is that also on purpose?
+
+--
+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="001475.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI>Next message: <A HREF="001439.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1481">[ date ]</a>
+ <a href="thread.html#1481">[ thread ]</a>
+ <a href="subject.html#1481">[ subject ]</a>
+ <a href="author.html#1481">[ 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-October/001482.html b/zarb-ml/mageia-webteam/2011-October/001482.html
new file mode 100644
index 000000000..862669cb4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001482.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+ </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%201734%5D%20Wrong%20link%20for%20%22forgot%20password%22&In-Reply-To=%3C20111020081634.3D46F4621E%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="001483.html">
+ <LINK REL="Next" HREF="001484.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201734%5D%20Wrong%20link%20for%20%22forgot%20password%22&In-Reply-To=%3C20111020081634.3D46F4621E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 20 10:16:34 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001483.html">[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates
+</A></li>
+ <LI>Next message: <A HREF="001484.html">[Mageia-webteam] [Bug 3123] [New] Changing surname is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1482">[ date ]</a>
+ <a href="thread.html#1482">[ thread ]</a>
+ <a href="subject.html#1482">[ subject ]</a>
+ <a href="author.html#1482">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1734">https://bugs.mageia.org/show_bug.cgi?id=1734</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-20 10:16:33 CEST ---
+I just checked with a different browser. Pressing &quot;Forgot Password&quot; still leads
+to
+
+<A HREF="https://identity.mageia.org/">https://identity.mageia.org/</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="001483.html">[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates
+</A></li>
+ <LI>Next message: <A HREF="001484.html">[Mageia-webteam] [Bug 3123] [New] Changing surname is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1482">[ date ]</a>
+ <a href="thread.html#1482">[ thread ]</a>
+ <a href="subject.html#1482">[ subject ]</a>
+ <a href="author.html#1482">[ 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-October/001483.html b/zarb-ml/mageia-webteam/2011-October/001483.html
new file mode 100644
index 000000000..82e5b8b8e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001483.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates
+ </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%203116%5D%20The%20support%20page%20should%20say%20something%0A%20about%20security/bugfix%20updates&In-Reply-To=%3C20111020082833.6AAB346226%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="001480.html">
+ <LINK REL="Next" HREF="001482.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203116%5D%20The%20support%20page%20should%20say%20something%0A%20about%20security/bugfix%20updates&In-Reply-To=%3C20111020082833.6AAB346226%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 20 10:28:33 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001480.html">[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates
+</A></li>
+ <LI>Next message: <A HREF="001482.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1483">[ date ]</a>
+ <a href="thread.html#1483">[ thread ]</a>
+ <a href="subject.html#1483">[ subject ]</a>
+ <a href="author.html#1483">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3116">https://bugs.mageia.org/show_bug.cgi?id=3116</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ 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-10-20 10:28:33 CEST ---
+Indeed. Working on it. 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="001480.html">[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates
+</A></li>
+ <LI>Next message: <A HREF="001482.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1483">[ date ]</a>
+ <a href="thread.html#1483">[ thread ]</a>
+ <a href="subject.html#1483">[ subject ]</a>
+ <a href="author.html#1483">[ 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-October/001484.html b/zarb-ml/mageia-webteam/2011-October/001484.html
new file mode 100644
index 000000000..bda58f7d4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001484.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3123] [New] Changing surname is broken
+ </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%203123%5D%20%5BNew%5D%20Changing%20surname%20is%20broken&In-Reply-To=%3Cbug-3123-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="001482.html">
+ <LINK REL="Next" HREF="001501.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3123] [New] Changing surname is broken</H1>
+ <B>Kamil R</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203123%5D%20%5BNew%5D%20Changing%20surname%20is%20broken&In-Reply-To=%3Cbug-3123-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3123] [New] Changing surname is broken">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 20 15:19:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001482.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI>Next message: <A HREF="001501.html">[Mageia-webteam] [Bug 3123] Changing surname is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1484">[ date ]</a>
+ <a href="thread.html#1484">[ thread ]</a>
+ <a href="subject.html#1484">[ subject ]</a>
+ <a href="author.html#1484">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3123">https://bugs.mageia.org/show_bug.cgi?id=3123</A>
+
+ Summary: Changing surname is broken
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: All
+ 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">krytarowski at gmail.com</A>
+
+
+When I change my surname in options (in Bugzilla or in Identity) the changes
+are temporary and everything reverts to the previous state after some 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001482.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI>Next message: <A HREF="001501.html">[Mageia-webteam] [Bug 3123] Changing surname is broken
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1484">[ date ]</a>
+ <a href="thread.html#1484">[ thread ]</a>
+ <a href="subject.html#1484">[ subject ]</a>
+ <a href="author.html#1484">[ 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-October/001485.html b/zarb-ml/mageia-webteam/2011-October/001485.html
new file mode 100644
index 000000000..c5fb42e62
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001485.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1797] All forums need to refer to each other
+ </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%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20111020134607.E56C146344%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="001501.html">
+ <LINK REL="Next" HREF="001486.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1797] All forums need to refer to each other</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20111020134607.E56C146344%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1797] All forums need to refer to each other">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 20 15:46:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001501.html">[Mageia-webteam] [Bug 3123] Changing surname is broken
+</A></li>
+ <LI>Next message: <A HREF="001486.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1485">[ date ]</a>
+ <a href="thread.html#1485">[ thread ]</a>
+ <a href="subject.html#1485">[ subject ]</a>
+ <a href="author.html#1485">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-20 17:46:08 CEST ---
+ping?
+
+--
+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="001501.html">[Mageia-webteam] [Bug 3123] Changing surname is broken
+</A></li>
+ <LI>Next message: <A HREF="001486.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1485">[ date ]</a>
+ <a href="thread.html#1485">[ thread ]</a>
+ <a href="subject.html#1485">[ subject ]</a>
+ <a href="author.html#1485">[ 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-October/001486.html b/zarb-ml/mageia-webteam/2011-October/001486.html
new file mode 100644
index 000000000..b4b8b26dd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001486.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+ </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%201798%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3C20111020134650.023AA4634B%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="001485.html">
+ <LINK REL="Next" HREF="001488.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201798%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3C20111020134650.023AA4634B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 20 15:46:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001485.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001488.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1486">[ date ]</a>
+ <a href="thread.html#1486">[ thread ]</a>
+ <a href="subject.html#1486">[ subject ]</a>
+ <a href="author.html#1486">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-20 17:46:50 CEST ---
+ping?
+
+--
+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="001485.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001488.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1486">[ date ]</a>
+ <a href="thread.html#1486">[ thread ]</a>
+ <a href="subject.html#1486">[ subject ]</a>
+ <a href="author.html#1486">[ 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-October/001487.html b/zarb-ml/mageia-webteam/2011-October/001487.html
new file mode 100644
index 000000000..530a2c0a0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001487.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+ </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%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111021000753.017DF46246%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="001469.html">
+ <LINK REL="Next" HREF="001489.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111021000753.017DF46246%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 21 02:07:52 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001469.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001489.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1487">[ date ]</a>
+ <a href="thread.html#1487">[ thread ]</a>
+ <a href="subject.html#1487">[ subject ]</a>
+ <a href="author.html#1487">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3085">https://bugs.mageia.org/show_bug.cgi?id=3085</A>
+
+Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>
+
+--- Comment #4 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2011-10-21 04:07:52 CEST ---
+Note that if editing were possible, it would probably mean multiple copies
+of the comment would go out to the mailing list, which could be quite
+annoying, if it's a cosmetic change to a large comment.
+
+--
+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="001469.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001489.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1487">[ date ]</a>
+ <a href="thread.html#1487">[ thread ]</a>
+ <a href="subject.html#1487">[ subject ]</a>
+ <a href="author.html#1487">[ 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-October/001488.html b/zarb-ml/mageia-webteam/2011-October/001488.html
new file mode 100644
index 000000000..0a077151a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001488.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ </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%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20111021101740.1BB2646360%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="001486.html">
+ <LINK REL="Next" HREF="001490.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20111021101740.1BB2646360%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 21 12:17:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001486.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001490.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1488">[ date ]</a>
+ <a href="thread.html#1488">[ thread ]</a>
+ <a href="subject.html#1488">[ subject ]</a>
+ <a href="author.html#1488">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #7 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-21 12:17:39 CEST ---
+(In reply to comment #0)
+&gt;<i> The string &quot;List of lists&quot; in <A HREF="https://ml.mageia.org">https://ml.mageia.org</A> should be &quot;List of mailing
+</I>&gt;<i> lists&quot; or &quot;Show all mailing lists&quot;, IMHO.
+</I>
+LOL, when I go there now, I end up in akregator. Is it supposed to be rss?
+
+
+&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
+&lt;rss version=&quot;2.0&quot; xmlns:rdf=&quot;<A HREF="http://www.w3.org/1999/02/22-rdf-syntax-ns#">http://www.w3.org/1999/02/22-rdf-syntax-ns#</A>&quot;&gt;
+ &lt;channel&gt;
+ &lt;title&gt;changelog:&lt;/title&gt;
+ &lt;link&gt;<A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi&lt;/link">https://ml.mageia.org/wwsympa-wrapper.fcgi&lt;/link</A>&gt;
+ &lt;description&gt;&lt;/description&gt;
+ &lt;language&gt;en&lt;/language&gt;
+ &lt;lastBuildDate&gt;21 Oct 2011 at 10:12:17&lt;/lastBuildDate&gt;
+ &lt;generator&gt;Sympa6.1.4&lt;/generator&gt;
+ &lt;webMaster&gt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">listmaster at ml.mageia.org</A>&lt;/webMaster&gt;
+ &lt;docs&gt;<A HREF="http://web.resource.org/rss/1.0/spec&lt;/docs">http://web.resource.org/rss/1.0/spec&lt;/docs</A>&gt;
+
+
+ &lt;/channel&gt;
+&lt;/rss&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 the assignee for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001486.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001490.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1488">[ date ]</a>
+ <a href="thread.html#1488">[ thread ]</a>
+ <a href="subject.html#1488">[ subject ]</a>
+ <a href="author.html#1488">[ 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-October/001489.html b/zarb-ml/mageia-webteam/2011-October/001489.html
new file mode 100644
index 000000000..f5c2e05f3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001489.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+ </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%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111021105915.5148D46379%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="001487.html">
+ <LINK REL="Next" HREF="001470.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203085%5D%20Make%20it%20possible%20to%20change%0A%20bug-description%20after%20it%27s%20made%20by%20adding%20a%20edit-link.&In-Reply-To=%3C20111021105915.5148D46379%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 21 12:59:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001487.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001470.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1489">[ date ]</a>
+ <a href="thread.html#1489">[ thread ]</a>
+ <a href="subject.html#1489">[ subject ]</a>
+ <a href="author.html#1489">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3085">https://bugs.mageia.org/show_bug.cgi?id=3085</A>
+
+andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>
+
+--- Comment #5 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2011-10-21 12:59:14 CEST ---
+I agree with comment 4.
+Much better if the commenter checks their comment carefully before saving.
+Although it might be workable if only the line changed (and maybe the line
+before and after) were sent out. In the form of a diff.
+
+--
+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="001487.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A></li>
+ <LI>Next message: <A HREF="001470.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1489">[ date ]</a>
+ <a href="thread.html#1489">[ thread ]</a>
+ <a href="subject.html#1489">[ subject ]</a>
+ <a href="author.html#1489">[ 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-October/001490.html b/zarb-ml/mageia-webteam/2011-October/001490.html
new file mode 100644
index 000000000..acea67caa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001490.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+ </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%201868%5D%20drakbug%20should%20first%20check%20if%20a%20bug%20has%0A%20already%20been%20filed%20about%20some%20given%20error%20before%20filing%20a%20new%20one&In-Reply-To=%3C20111021112254.B3DF746385%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="001488.html">
+ <LINK REL="Next" HREF="001491.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201868%5D%20drakbug%20should%20first%20check%20if%20a%20bug%20has%0A%20already%20been%20filed%20about%20some%20given%20error%20before%20filing%20a%20new%20one&In-Reply-To=%3C20111021112254.B3DF746385%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 21 13:22:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001488.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001491.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1490">[ date ]</a>
+ <a href="thread.html#1490">[ thread ]</a>
+ <a href="subject.html#1490">[ subject ]</a>
+ <a href="author.html#1490">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1868">https://bugs.mageia.org/show_bug.cgi?id=1868</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-21 15:22:54 CEST ---
+ping?
+
+--
+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="001488.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="001491.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1490">[ date ]</a>
+ <a href="thread.html#1490">[ thread ]</a>
+ <a href="subject.html#1490">[ subject ]</a>
+ <a href="author.html#1490">[ 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-October/001491.html b/zarb-ml/mageia-webteam/2011-October/001491.html
new file mode 100644
index 000000000..aacd8395b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001491.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1914] Display of user details/avatars
+ </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%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20111021182832.264E046410%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="001490.html">
+ <LINK REL="Next" HREF="001492.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1914] Display of user details/avatars</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20111021182832.264E046410%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1914] Display of user details/avatars">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 21 20:28:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001490.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI>Next message: <A HREF="001492.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1491">[ date ]</a>
+ <a href="thread.html#1491">[ thread ]</a>
+ <a href="subject.html#1491">[ subject ]</a>
+ <a href="author.html#1491">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1914">https://bugs.mageia.org/show_bug.cgi?id=1914</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-21 22:28:32 CEST ---
+ping?
+
+--
+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="001490.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI>Next message: <A HREF="001492.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1491">[ date ]</a>
+ <a href="thread.html#1491">[ thread ]</a>
+ <a href="subject.html#1491">[ subject ]</a>
+ <a href="author.html#1491">[ 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-October/001492.html b/zarb-ml/mageia-webteam/2011-October/001492.html
new file mode 100644
index 000000000..730237efc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001492.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111021193327.9CB6946425%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="001491.html">
+ <LINK REL="Next" HREF="001493.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111021193327.9CB6946425%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 21 21:33:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001491.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001493.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1492">[ date ]</a>
+ <a href="thread.html#1492">[ thread ]</a>
+ <a href="subject.html#1492">[ subject ]</a>
+ <a href="author.html#1492">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-21 21:33:27 CEST ---
+ping?
+
+--
+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="001491.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="001493.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1492">[ date ]</a>
+ <a href="thread.html#1492">[ thread ]</a>
+ <a href="subject.html#1492">[ subject ]</a>
+ <a href="author.html#1492">[ 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-October/001493.html b/zarb-ml/mageia-webteam/2011-October/001493.html
new file mode 100644
index 000000000..906869a18
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001493.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111021211305.BEF0A4644C%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="001492.html">
+ <LINK REL="Next" HREF="001494.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111021211305.BEF0A4644C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 21 23:13:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001492.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001494.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1493">[ date ]</a>
+ <a href="thread.html#1493">[ thread ]</a>
+ <a href="subject.html#1493">[ subject ]</a>
+ <a href="author.html#1493">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #4 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-10-22 01:13:05 CEST ---
+I can't reproduce.
+
+The link always shows to <A HREF="https://forums.mageia.org/fr/">https://forums.mageia.org/fr/</A> which is redirected to
+MLO.
+
+--
+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="001492.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001494.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1493">[ date ]</a>
+ <a href="thread.html#1493">[ thread ]</a>
+ <a href="subject.html#1493">[ subject ]</a>
+ <a href="author.html#1493">[ 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-October/001494.html b/zarb-ml/mageia-webteam/2011-October/001494.html
new file mode 100644
index 000000000..0706dacc5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001494.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111021211909.C0B934645A%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="001493.html">
+ <LINK REL="Next" HREF="001495.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Thomas Courbon</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111021211909.C0B934645A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 21 23:19:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001493.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001495.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1494">[ date ]</a>
+ <a href="thread.html#1494">[ thread ]</a>
+ <a href="subject.html#1494">[ subject ]</a>
+ <a href="author.html#1494">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+--- Comment #5 from Thomas Courbon &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thcourbon at gmail.com</A>&gt; 2011-10-22 01:19:09 CEST ---
+Just reproduced it.
+
+If I go to <A HREF="http://www.mageia.org/">http://www.mageia.org/</A> with my browser I'm redirected to
+<A HREF="http://www.mageia.org/fr.">http://www.mageia.org/fr.</A>
+
+Now, if I click on the forum link in the top navbar I arrive on MLO through a
+redirection via <A HREF="http://www.mageia.org/forum/fr/">http://www.mageia.org/forum/fr/</A>
+But, if I go to &quot;Contribuer&quot; then click on the first link to the forum (in the
+text : &quot;Aide aux utilisateurs et support du projet&quot;, &quot;Sur les canaux IRC, les
+forums,...&quot; &lt;&lt; link here) I'm send to <A HREF="http://www.mageia.org/forum/en">http://www.mageia.org/forum/en</A> via
+<A HREF="http://www.mageia.org/forum/">http://www.mageia.org/forum/</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="001493.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001495.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1494">[ date ]</a>
+ <a href="thread.html#1494">[ thread ]</a>
+ <a href="subject.html#1494">[ subject ]</a>
+ <a href="author.html#1494">[ 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-October/001495.html b/zarb-ml/mageia-webteam/2011-October/001495.html
new file mode 100644
index 000000000..4beebd06e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001495.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111021212741.B24864645F%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="001494.html">
+ <LINK REL="Next" HREF="001496.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111021212741.B24864645F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Oct 21 23:27:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001494.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001496.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1495">[ date ]</a>
+ <a href="thread.html#1495">[ thread ]</a>
+ <a href="subject.html#1495">[ subject ]</a>
+ <a href="author.html#1495">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+--- Comment #6 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-10-22 01:27:41 CEST ---
+Ah, sorry, I misunderstood you.
+
+I thought you were talking about the link in the banner...
+
+I fixed it in svn, Romain, Dams, could you push 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 the assignee for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001494.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001496.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1495">[ date ]</a>
+ <a href="thread.html#1495">[ thread ]</a>
+ <a href="subject.html#1495">[ subject ]</a>
+ <a href="author.html#1495">[ 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-October/001496.html b/zarb-ml/mageia-webteam/2011-October/001496.html
new file mode 100644
index 000000000..b9b9753ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001496.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+ </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%201779%5D%20Forum%20does%20not%20provide%20prominent%0A%09registration%20link&In-Reply-To=%3C20111022141549.06031464EC%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="001495.html">
+ <LINK REL="Next" HREF="001497.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201779%5D%20Forum%20does%20not%20provide%20prominent%0A%09registration%20link&In-Reply-To=%3C20111022141549.06031464EC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 22 16:15:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001495.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001497.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1496">[ date ]</a>
+ <a href="thread.html#1496">[ thread ]</a>
+ <a href="subject.html#1496">[ subject ]</a>
+ <a href="author.html#1496">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1779">https://bugs.mageia.org/show_bug.cgi?id=1779</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2011-10-22 18:15:49 CEST ---
+(In reply to comment #2)
+&gt;<i> Error in template fixed.
+</I>
+Yep, on the left of the login link there is a Register link now, that leads to
+<A HREF="https://identity.mageia.org/register">https://identity.mageia.org/register</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="001495.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001497.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1496">[ date ]</a>
+ <a href="thread.html#1496">[ thread ]</a>
+ <a href="subject.html#1496">[ subject ]</a>
+ <a href="author.html#1496">[ 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-October/001497.html b/zarb-ml/mageia-webteam/2011-October/001497.html
new file mode 100644
index 000000000..c1cbcc3fc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001497.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111022155238.9FA2746525%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="001496.html">
+ <LINK REL="Next" HREF="001498.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111022155238.9FA2746525%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 22 17:52:38 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001496.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI>Next message: <A HREF="001498.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1497">[ date ]</a>
+ <a href="thread.html#1497">[ thread ]</a>
+ <a href="subject.html#1497">[ subject ]</a>
+ <a href="author.html#1497">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</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 #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-10-22 19:52:38 CEST ---
+Pushed. Does that fix the whole 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 the assignee for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001496.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A></li>
+ <LI>Next message: <A HREF="001498.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1497">[ date ]</a>
+ <a href="thread.html#1497">[ thread ]</a>
+ <a href="subject.html#1497">[ subject ]</a>
+ <a href="author.html#1497">[ 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-October/001498.html b/zarb-ml/mageia-webteam/2011-October/001498.html
new file mode 100644
index 000000000..eb734a867
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001498.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111022155951.DBEFF46526%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="001497.html">
+ <LINK REL="Next" HREF="001499.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Thomas Courbon</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111022155951.DBEFF46526%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 22 17:59:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001497.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001499.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1498">[ date ]</a>
+ <a href="thread.html#1498">[ thread ]</a>
+ <a href="subject.html#1498">[ subject ]</a>
+ <a href="author.html#1498">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+--- Comment #8 from Thomas Courbon &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thcourbon at gmail.com</A>&gt; 2011-10-22 19:59:51 CEST ---
+Their is a link at the bottom of the page that wasn't fixed. It's in paragraph
+&quot;Quelques minutes&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="001497.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001499.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1498">[ date ]</a>
+ <a href="thread.html#1498">[ thread ]</a>
+ <a href="subject.html#1498">[ subject ]</a>
+ <a href="author.html#1498">[ 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-October/001499.html b/zarb-ml/mageia-webteam/2011-October/001499.html
new file mode 100644
index 000000000..81f9d05ba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001499.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111022160716.BBD5C46529%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="001498.html">
+ <LINK REL="Next" HREF="001500.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20111022160716.BBD5C46529%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 22 18:07:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001498.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001500.html">[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1499">[ date ]</a>
+ <a href="thread.html#1499">[ thread ]</a>
+ <a href="subject.html#1499">[ subject ]</a>
+ <a href="author.html#1499">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+--- Comment #9 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-10-22 18:07:16 CEST ---
+Just updated.
+
+--
+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="001498.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001500.html">[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1499">[ date ]</a>
+ <a href="thread.html#1499">[ thread ]</a>
+ <a href="subject.html#1499">[ subject ]</a>
+ <a href="author.html#1499">[ 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-October/001500.html b/zarb-ml/mageia-webteam/2011-October/001500.html
new file mode 100644
index 000000000..775869c60
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001500.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org
+ </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%203144%5D%20%5BNew%5D%20svn%3Alog%20edits%20not%20reflected%20in%0A%09svnweb.mageia.org&In-Reply-To=%3Cbug-3144-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="001499.html">
+ <LINK REL="Next" HREF="001502.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org</H1>
+ <B>Anssi Hannula</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203144%5D%20%5BNew%5D%20svn%3Alog%20edits%20not%20reflected%20in%0A%09svnweb.mageia.org&In-Reply-To=%3Cbug-3144-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Oct 23 12:51:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001499.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001502.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1500">[ date ]</a>
+ <a href="thread.html#1500">[ thread ]</a>
+ <a href="subject.html#1500">[ subject ]</a>
+ <a href="author.html#1500">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3144">https://bugs.mageia.org/show_bug.cgi?id=3144</A>
+
+ Summary: svn:log edits not reflected in svnweb.mageia.org
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">anssi.hannula at iki.fi</A>
+
+
+Edits of commit messages do not appear to appear at the ViewVC at
+<A HREF="http://svnweb.mageia.org/">http://svnweb.mageia.org/</A> .
+
+For example, look at
+<A HREF="http://svnweb.mageia.org/packages/updates/1/msec/current/SPECS/msec.spec?view=log">http://svnweb.mageia.org/packages/updates/1/msec/current/SPECS/msec.spec?view=log</A>
+.
+A (SILENT) has been added to the commit msg lines of r151602, but they are not
+shown in the web interface.
+
+--
+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="001499.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001502.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1500">[ date ]</a>
+ <a href="thread.html#1500">[ thread ]</a>
+ <a href="subject.html#1500">[ subject ]</a>
+ <a href="author.html#1500">[ 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-October/001501.html b/zarb-ml/mageia-webteam/2011-October/001501.html
new file mode 100644
index 000000000..18b76b7ee
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001501.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3123] Changing surname is broken
+ </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%203123%5D%20Changing%20surname%20is%20broken&In-Reply-To=%3C20111025164804.CE67F46AF9%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="001484.html">
+ <LINK REL="Next" HREF="001485.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3123] Changing surname is broken</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203123%5D%20Changing%20surname%20is%20broken&In-Reply-To=%3C20111025164804.CE67F46AF9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3123] Changing surname is broken">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 25 18:48:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001484.html">[Mageia-webteam] [Bug 3123] [New] Changing surname is broken
+</A></li>
+ <LI>Next message: <A HREF="001485.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1501">[ date ]</a>
+ <a href="thread.html#1501">[ thread ]</a>
+ <a href="subject.html#1501">[ subject ]</a>
+ <a href="author.html#1501">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3123">https://bugs.mageia.org/show_bug.cgi?id=3123</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<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>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</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="001484.html">[Mageia-webteam] [Bug 3123] [New] Changing surname is broken
+</A></li>
+ <LI>Next message: <A HREF="001485.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1501">[ date ]</a>
+ <a href="thread.html#1501">[ thread ]</a>
+ <a href="subject.html#1501">[ subject ]</a>
+ <a href="author.html#1501">[ 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-October/001502.html b/zarb-ml/mageia-webteam/2011-October/001502.html
new file mode 100644
index 000000000..8b9c05af2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001502.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+ </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%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20111027095518.8CD8546D33%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="001500.html">
+ <LINK REL="Next" HREF="001503.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user</H1>
+ <B>Maat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20111027095518.8CD8546D33%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 27 11:55:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001500.html">[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001503.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1502">[ date ]</a>
+ <a href="thread.html#1502">[ thread ]</a>
+ <a href="subject.html#1502">[ subject ]</a>
+ <a href="author.html#1502">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+
+--- Comment #6 from Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; 2011-10-27 13:55:16 CEST ---
+You did understood perfectly :)
+
+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="001500.html">[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001503.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1502">[ date ]</a>
+ <a href="thread.html#1502">[ thread ]</a>
+ <a href="subject.html#1502">[ subject ]</a>
+ <a href="author.html#1502">[ 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-October/001503.html b/zarb-ml/mageia-webteam/2011-October/001503.html
new file mode 100644
index 000000000..39d8bfbfa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/001503.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+ </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%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20111027100445.3BF0546D35%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="001502.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201100%5D%20Admin%20demoted%20to%20Mod%20or%20simple%20user&In-Reply-To=%3C20111027100445.3BF0546D35%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Oct 27 12:04:45 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001502.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1503">[ date ]</a>
+ <a href="thread.html#1503">[ thread ]</a>
+ <a href="subject.html#1503">[ subject ]</a>
+ <a href="author.html#1503">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1100">https://bugs.mageia.org/show_bug.cgi?id=1100</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #7 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-10-27 14:04:44 CEST ---
+Right, Raph&#228;el. If you can be available as admin (or plan to be available soon)
+you are most definitely welcome and there's no need to change anything.
+
+Only if you are sure that you will not be available for the time coming a
+removal would be the better solution. There's no use to have an &quot;admin on
+paper&quot; who is not really there.
+
+--
+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="001502.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1503">[ date ]</a>
+ <a href="thread.html#1503">[ thread ]</a>
+ <a href="subject.html#1503">[ subject ]</a>
+ <a href="author.html#1503">[ 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-October/author.html b/zarb-ml/mageia-webteam/2011-October/author.html
new file mode 100644
index 000000000..865d84165
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/author.html
@@ -0,0 +1,702 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2011 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 2011 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>Tue Oct 4 06:28:05 CEST 2011</i><br>
+ <b>Ending:</b> <i>Thu Oct 27 12:04:45 CEST 2011</i><br>
+ <b>Messages:</b> 131<p>
+ <ul>
+
+<LI><A HREF="001445.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1445">&nbsp;</A>
+<I>Juan Luis Baptiste
+</I>
+
+<LI><A HREF="001406.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1406">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001503.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1503">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001416.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1416">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001433.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1433">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001473.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1473">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001475.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1475">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001397.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1397">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001493.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1493">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001495.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1495">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001501.html">[Mageia-webteam] [Bug 3123] Changing surname is broken
+</A><A NAME="1501">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001494.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1494">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001498.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1498">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001405.html">[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1405">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001407.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1407">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001408.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1408">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001409.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1409">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001432.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1432">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001466.html">[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1466">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001468.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1468">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001500.html">[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1500">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<LI><A HREF="001459.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1459">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001471.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1471">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001477.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1477">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001487.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1487">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001411.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1411">&nbsp;</A>
+<I>Jos&#195;&#169; Jorge
+</I>
+
+<LI><A HREF="001438.html">[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1438">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<LI><A HREF="001481.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1481">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<LI><A HREF="001460.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1460">&nbsp;</A>
+<I>Marianne Lombard
+</I>
+
+<LI><A HREF="001502.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1502">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001379.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1379">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<LI><A HREF="001381.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1381">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<LI><A HREF="001484.html">[Mageia-webteam] [Bug 3123] [New] Changing surname is broken
+</A><A NAME="1484">&nbsp;</A>
+<I>Kamil R
+</I>
+
+<LI><A HREF="001374.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1374">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001421.html">[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions
+</A><A NAME="1421">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001422.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1422">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001455.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1455">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001469.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1469">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001389.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1389">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001390.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1390">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001431.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1431">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001442.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1442">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001450.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1450">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001457.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1457">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001426.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="1426">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001430.html">[Mageia-webteam] [Bug 3039] mageia-tr.org down
+</A><A NAME="1430">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001446.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1446">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001448.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1448">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001452.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1452">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001461.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1461">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001462.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1462">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001467.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1467">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001478.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1478">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001479.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1479">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001480.html">[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates
+</A><A NAME="1480">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001393.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1393">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001394.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1394">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001373.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1373">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001376.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1376">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001377.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1377">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001378.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1378">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001382.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="1382">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001383.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1383">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001387.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1387">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001388.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1388">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001391.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1391">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001392.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1392">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001398.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1398">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001399.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1399">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001400.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1400">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001401.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A><A NAME="1401">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001402.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1402">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001403.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1403">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001404.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1404">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001412.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1412">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001413.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1413">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001414.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1414">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001415.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1415">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001417.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1417">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001418.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1418">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001420.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="1420">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001423.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1423">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001424.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1424">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001425.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="1425">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001427.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="1427">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001428.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1428">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001434.html">[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items
+</A><A NAME="1434">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001435.html">[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items
+</A><A NAME="1435">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001436.html">[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means
+</A><A NAME="1436">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001437.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1437">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001439.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1439">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001440.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="1440">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001441.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1441">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001443.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1443">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001444.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1444">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001447.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1447">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001449.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1449">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001451.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1451">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001453.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1453">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001454.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1454">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001463.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1463">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001465.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1465">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001470.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1470">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001472.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1472">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001474.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1474">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001476.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1476">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001482.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1482">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001485.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1485">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001486.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1486">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001488.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1488">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001490.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1490">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001491.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1491">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001492.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1492">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001496.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1496">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001429.html">[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down
+</A><A NAME="1429">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001456.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1456">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001458.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1458">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001489.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1489">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001375.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1375">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001380.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1380">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001384.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1384">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001395.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1395">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001396.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1396">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001410.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1410">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001419.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1419">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001464.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1464">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001483.html">[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates
+</A><A NAME="1483">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001497.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1497">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001499.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1499">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001385.html">[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1385">&nbsp;</A>
+<I>aodren gomez
+</I>
+
+<LI><A HREF="001386.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1386">&nbsp;</A>
+<I>aodren gomez
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Oct 27 12:04:45 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Thu Oct 27 12:04:49 CEST 2011</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/2011-October/date.html b/zarb-ml/mageia-webteam/2011-October/date.html
new file mode 100644
index 000000000..c27262dc5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/date.html
@@ -0,0 +1,702 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2011 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 2011 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>Tue Oct 4 06:28:05 CEST 2011</i><br>
+ <b>Ending:</b> <i>Thu Oct 27 12:04:45 CEST 2011</i><br>
+ <b>Messages:</b> 131<p>
+ <ul>
+
+<LI><A HREF="001373.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1373">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001374.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1374">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001375.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1375">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001376.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1376">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001377.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1377">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001378.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1378">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001379.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1379">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<LI><A HREF="001380.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1380">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001381.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1381">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<LI><A HREF="001382.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="1382">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001383.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1383">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001384.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1384">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001385.html">[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1385">&nbsp;</A>
+<I>aodren gomez
+</I>
+
+<LI><A HREF="001386.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1386">&nbsp;</A>
+<I>aodren gomez
+</I>
+
+<LI><A HREF="001387.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1387">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001388.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1388">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001389.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1389">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001390.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1390">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001391.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1391">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001392.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1392">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001393.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1393">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001394.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1394">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001395.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1395">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001396.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1396">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001397.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1397">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001398.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1398">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001399.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1399">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001400.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1400">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001401.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A><A NAME="1401">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001402.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1402">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001403.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1403">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001404.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1404">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001405.html">[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1405">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001406.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1406">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001407.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1407">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001408.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1408">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001409.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1409">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001410.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1410">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001411.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1411">&nbsp;</A>
+<I>Jos&#195;&#169; Jorge
+</I>
+
+<LI><A HREF="001412.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1412">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001413.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1413">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001414.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1414">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001415.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1415">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001416.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1416">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001417.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1417">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001418.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1418">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001419.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1419">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001420.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="1420">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001421.html">[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions
+</A><A NAME="1421">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001422.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1422">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001423.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1423">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001424.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1424">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001425.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="1425">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001426.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="1426">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001427.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="1427">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001428.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1428">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001429.html">[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down
+</A><A NAME="1429">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001430.html">[Mageia-webteam] [Bug 3039] mageia-tr.org down
+</A><A NAME="1430">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001431.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1431">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001432.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1432">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001433.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1433">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001434.html">[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items
+</A><A NAME="1434">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001435.html">[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items
+</A><A NAME="1435">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001436.html">[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means
+</A><A NAME="1436">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001437.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1437">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001438.html">[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1438">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<LI><A HREF="001439.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1439">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001440.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="1440">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001441.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1441">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001442.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1442">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001443.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1443">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001444.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1444">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001445.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1445">&nbsp;</A>
+<I>Juan Luis Baptiste
+</I>
+
+<LI><A HREF="001446.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1446">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001447.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1447">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001448.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1448">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001449.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1449">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001450.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1450">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001451.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1451">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001452.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1452">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001453.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1453">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001454.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1454">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001455.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1455">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001456.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1456">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001457.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1457">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001458.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1458">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001459.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1459">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001460.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1460">&nbsp;</A>
+<I>Marianne Lombard
+</I>
+
+<LI><A HREF="001461.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1461">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001462.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1462">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001463.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1463">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001464.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1464">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001465.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1465">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001466.html">[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1466">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001467.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1467">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001468.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1468">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001469.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1469">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001470.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1470">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001471.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1471">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001472.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1472">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001473.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1473">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001474.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1474">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001475.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1475">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001476.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1476">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001477.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1477">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001478.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1478">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001479.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1479">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001480.html">[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates
+</A><A NAME="1480">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001481.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1481">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<LI><A HREF="001482.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1482">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001483.html">[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates
+</A><A NAME="1483">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001484.html">[Mageia-webteam] [Bug 3123] [New] Changing surname is broken
+</A><A NAME="1484">&nbsp;</A>
+<I>Kamil R
+</I>
+
+<LI><A HREF="001485.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1485">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001486.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1486">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001487.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1487">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001488.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1488">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001489.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1489">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001490.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1490">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001491.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1491">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001492.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1492">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001493.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1493">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001494.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1494">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001495.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1495">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001496.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1496">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001497.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1497">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001498.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1498">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001499.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1499">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001500.html">[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1500">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<LI><A HREF="001501.html">[Mageia-webteam] [Bug 3123] Changing surname is broken
+</A><A NAME="1501">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001502.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1502">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001503.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1503">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Oct 27 12:04:45 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Thu Oct 27 12:04:49 CEST 2011</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/2011-October/index.html b/zarb-ml/mageia-webteam/2011-October/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-October/subject.html b/zarb-ml/mageia-webteam/2011-October/subject.html
new file mode 100644
index 000000000..30123e2f4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/subject.html
@@ -0,0 +1,702 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2011 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 2011 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>Tue Oct 4 06:28:05 CEST 2011</i><br>
+ <b>Ending:</b> <i>Thu Oct 27 12:04:45 CEST 2011</i><br>
+ <b>Messages:</b> 131<p>
+ <ul>
+
+<LI><A HREF="001377.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1377">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001420.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="1420">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001424.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1424">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001502.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1502">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001503.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1503">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001425.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="1425">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001426.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="1426">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001427.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="1427">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001428.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1428">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001431.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1431">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001432.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1432">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<LI><A HREF="001433.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1433">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001439.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1439">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001440.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="1440">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001382.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="1382">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001441.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1441">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001465.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1465">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001463.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1463">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001470.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1470">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001459.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1459">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001460.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1460">&nbsp;</A>
+<I>Marianne Lombard
+</I>
+
+<LI><A HREF="001461.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1461">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001462.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1462">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001464.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1464">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001474.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1474">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001383.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1383">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001482.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1482">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001496.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1496">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001485.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1485">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001486.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1486">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001488.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1488">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001490.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1490">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001491.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1491">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001492.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1492">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001493.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1493">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001494.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1494">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001495.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1495">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001497.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1497">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001498.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1498">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<LI><A HREF="001499.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1499">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001411.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1411">&nbsp;</A>
+<I>Jos&#195;&#169; Jorge
+</I>
+
+<LI><A HREF="001477.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1477">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001478.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1478">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001479.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1479">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001378.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1378">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001385.html">[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1385">&nbsp;</A>
+<I>aodren gomez
+</I>
+
+<LI><A HREF="001386.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1386">&nbsp;</A>
+<I>aodren gomez
+</I>
+
+<LI><A HREF="001393.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1393">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001394.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1394">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001397.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1397">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001405.html">[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1405">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001406.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1406">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001407.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1407">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001408.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1408">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001409.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1409">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001410.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1410">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001421.html">[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions
+</A><A NAME="1421">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001429.html">[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down
+</A><A NAME="1429">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<LI><A HREF="001430.html">[Mageia-webteam] [Bug 3039] mageia-tr.org down
+</A><A NAME="1430">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001434.html">[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items
+</A><A NAME="1434">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001435.html">[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items
+</A><A NAME="1435">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001436.html">[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means
+</A><A NAME="1436">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001437.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1437">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001442.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1442">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001443.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1443">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001444.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1444">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001445.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1445">&nbsp;</A>
+<I>Juan Luis Baptiste
+</I>
+
+<LI><A HREF="001446.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1446">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001447.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1447">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001448.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1448">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001449.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1449">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001450.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1450">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001451.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1451">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001452.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1452">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001453.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1453">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001454.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1454">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001455.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1455">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001456.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1456">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001457.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1457">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001458.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1458">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001471.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1471">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001472.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1472">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001473.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1473">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001476.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1476">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001475.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1475">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001481.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1481">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<LI><A HREF="001438.html">[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1438">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<LI><A HREF="001466.html">[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1466">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001467.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1467">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001468.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1468">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001469.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1469">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001487.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1487">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001489.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1489">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001480.html">[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates
+</A><A NAME="1480">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001483.html">[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates
+</A><A NAME="1483">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001484.html">[Mageia-webteam] [Bug 3123] [New] Changing surname is broken
+</A><A NAME="1484">&nbsp;</A>
+<I>Kamil R
+</I>
+
+<LI><A HREF="001501.html">[Mageia-webteam] [Bug 3123] Changing surname is broken
+</A><A NAME="1501">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001500.html">[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1500">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<LI><A HREF="001387.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1387">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001389.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1389">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001388.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1388">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001390.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1390">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001418.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1418">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001391.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1391">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001396.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1396">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001392.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1392">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001395.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1395">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001398.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1398">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001373.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1373">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001374.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1374">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001376.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1376">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001399.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1399">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001400.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1400">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001401.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A><A NAME="1401">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001402.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1402">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001422.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1422">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001423.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1423">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001403.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1403">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001404.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1404">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001412.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1412">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001416.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1416">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001413.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1413">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001414.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1414">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001415.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1415">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001417.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1417">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001375.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1375">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001379.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1379">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<LI><A HREF="001380.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1380">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001381.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1381">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<LI><A HREF="001384.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1384">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001419.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1419">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Oct 27 12:04:45 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Thu Oct 27 12:04:49 CEST 2011</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/2011-October/thread.html b/zarb-ml/mageia-webteam/2011-October/thread.html
new file mode 100644
index 000000000..9f5481914
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-October/thread.html
@@ -0,0 +1,851 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2011 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 2011 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>Tue Oct 4 06:28:05 CEST 2011</i><br>
+ <b>Ending:</b> <i>Thu Oct 27 12:04:45 CEST 2011</i><br>
+ <b>Messages:</b> 131<p>
+ <ul>
+
+<!--0 01317702485- -->
+<LI><A HREF="001373.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1373">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317705115- -->
+<LI><A HREF="001374.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1374">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--0 01317720597- -->
+<LI><A HREF="001375.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1375">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01317721043- -->
+<LI><A HREF="001376.html">[Mageia-webteam] [Bug 42] Possibility to see bugs reported today is wanted
+</A><A NAME="1376">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317730757- -->
+<LI><A HREF="001377.html">[Mageia-webteam] [Bug 104] [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+</A><A NAME="1377">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317733722- -->
+<LI><A HREF="001378.html">[Mageia-webteam] [Bug 252] Authentication does not work with email address
+</A><A NAME="1378">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317815209- -->
+<LI><A HREF="001379.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1379">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<!--0 01317820146- -->
+<LI><A HREF="001380.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1380">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01317827436- -->
+<LI><A HREF="001381.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1381">&nbsp;</A>
+<I>Buchan Milne
+</I>
+
+<!--0 01317828853- -->
+<LI><A HREF="001382.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
+</A><A NAME="1382">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317829190- -->
+<LI><A HREF="001383.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
+</A><A NAME="1383">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317834007- -->
+<LI><A HREF="001384.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1384">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01317867540- -->
+<LI><A HREF="001385.html">[Mageia-webteam] [Bug 2951] [New] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1385">&nbsp;</A>
+<I>aodren gomez
+</I>
+
+<UL>
+<!--1 01317867540-01317867661- -->
+<LI><A HREF="001386.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1386">&nbsp;</A>
+<I>aodren gomez
+</I>
+
+<!--1 01317867540-01317882763- -->
+<LI><A HREF="001393.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1393">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--1 01317867540-01317882826- -->
+<LI><A HREF="001394.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1394">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--1 01317867540-01317887967- -->
+<LI><A HREF="001397.html">[Mageia-webteam] [Bug 2951] HDD change /dev/sd* when a USB device is connected
+</A><A NAME="1397">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+<!--0 01317877104- -->
+<LI><A HREF="001387.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1387">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317877165- -->
+<LI><A HREF="001388.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1388">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317877639- -->
+<LI><A HREF="001389.html">[Mageia-webteam] [Bug 386] Cannot reset password if the user didn't set preferedLanguage
+</A><A NAME="1389">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01317877690- -->
+<LI><A HREF="001390.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1390">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01317877738- -->
+<LI><A HREF="001391.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1391">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317878420- -->
+<LI><A HREF="001392.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1392">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01317887579- -->
+<LI><A HREF="001395.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1395">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01317887596- -->
+<LI><A HREF="001396.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1396">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01317931057- -->
+<LI><A HREF="001398.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1398">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318016479- -->
+<LI><A HREF="001399.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1399">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318018483- -->
+<LI><A HREF="001400.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1400">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318022069- -->
+<LI><A HREF="001401.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A><A NAME="1401">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318022132- -->
+<LI><A HREF="001402.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1402">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318101465- -->
+<LI><A HREF="001403.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1403">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318106199- -->
+<LI><A HREF="001404.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1404">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318157131- -->
+<LI><A HREF="001405.html">[Mageia-webteam] [Bug 2997] [New] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1405">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<UL>
+<!--1 01318157131-01318157467- -->
+<LI><A HREF="001406.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1406">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01318157131-01318158988- -->
+<LI><A HREF="001407.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1407">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<!--1 01318157131-01318159105- -->
+<LI><A HREF="001408.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1408">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<!--1 01318157131-01318159330- -->
+<LI><A HREF="001409.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1409">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<!--1 01318157131-01318162534- -->
+<LI><A HREF="001410.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1410">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01318193608- -->
+<LI><A HREF="001411.html">[Mageia-webteam] [Bug 1967] Link to torrent download crashes
+</A><A NAME="1411">&nbsp;</A>
+<I>Jos&#195;&#169; Jorge
+</I>
+
+<!--0 01318193922- -->
+<LI><A HREF="001412.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1412">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318194746- -->
+<LI><A HREF="001413.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1413">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318195069- -->
+<LI><A HREF="001414.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1414">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318195378- -->
+<LI><A HREF="001415.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1415">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318198232- -->
+<LI><A HREF="001416.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1416">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01318223485- -->
+<LI><A HREF="001417.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1417">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318269142- -->
+<LI><A HREF="001418.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.2
+</A><A NAME="1418">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318361293- -->
+<LI><A HREF="001419.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="1419">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01318364206- -->
+<LI><A HREF="001420.html">[Mageia-webteam] [Bug 1054] [ Beta 2 ] Live CD's only for 32 bit install?
+</A><A NAME="1420">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318434947- -->
+<LI><A HREF="001421.html">[Mageia-webteam] [Bug 3025] [New] English page has different donated amount than other localised versions
+</A><A NAME="1421">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--0 01318438964- -->
+<LI><A HREF="001422.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1422">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--0 01318439400- -->
+<LI><A HREF="001423.html">[Mageia-webteam] [Bug 544] Cannot modify group
+</A><A NAME="1423">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318440240- -->
+<LI><A HREF="001424.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1424">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318443432- -->
+<LI><A HREF="001425.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="1425">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318443538- -->
+<LI><A HREF="001426.html">[Mageia-webteam] [Bug 1141] User panel does not allow to add sshPublicKey attributes
+</A><A NAME="1426">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01318444219- -->
+<LI><A HREF="001427.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="1427">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318532179- -->
+<LI><A HREF="001428.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1428">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318552857- -->
+<LI><A HREF="001429.html">[Mageia-webteam] [Bug 3039] [New] mageia-tr.org down
+</A><A NAME="1429">&nbsp;</A>
+<I>Fabian Wannenmacher
+</I>
+
+<UL>
+<!--1 01318552857-01318581028- -->
+<LI><A HREF="001430.html">[Mageia-webteam] [Bug 3039] mageia-tr.org down
+</A><A NAME="1430">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+</UL>
+<!--0 01318585702- -->
+<LI><A HREF="001431.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1431">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--0 01318587051- -->
+<LI><A HREF="001432.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1432">&nbsp;</A>
+<I>Dimitrios Glentadakis
+</I>
+
+<!--0 01318593314- -->
+<LI><A HREF="001433.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1433">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01318606088- -->
+<LI><A HREF="001434.html">[Mageia-webteam] [Bug 3046] [New] Tracker for Bug Squad's Need_discuss items
+</A><A NAME="1434">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<UL>
+<!--1 01318606088-01318606145- -->
+<LI><A HREF="001435.html">[Mageia-webteam] [Bug 3046] Tracker for Bug Squad's Need_discuss items
+</A><A NAME="1435">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01318606755- -->
+<LI><A HREF="001436.html">[Mageia-webteam] [Bug 3047] [New] ASSIGNED status means
+</A><A NAME="1436">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<UL>
+<!--1 01318606755-01318606776- -->
+<LI><A HREF="001437.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1437">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01318606755-01318618054- -->
+<LI><A HREF="001442.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1442">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--1 01318606755-01318618390- -->
+<LI><A HREF="001443.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1443">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01318606755-01318618508- -->
+<LI><A HREF="001444.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1444">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01318606755-01318620469- -->
+<LI><A HREF="001445.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1445">&nbsp;</A>
+<I>Juan Luis Baptiste
+</I>
+
+<!--1 01318606755-01318621472- -->
+<LI><A HREF="001446.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1446">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01318606755-01318621895- -->
+<LI><A HREF="001447.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1447">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01318606755-01318622907- -->
+<LI><A HREF="001448.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1448">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01318606755-01318624147- -->
+<LI><A HREF="001449.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1449">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01318606755-01318625374- -->
+<LI><A HREF="001450.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1450">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--1 01318606755-01318627585- -->
+<LI><A HREF="001451.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1451">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01318606755-01318628806- -->
+<LI><A HREF="001452.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1452">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01318606755-01318630340- -->
+<LI><A HREF="001453.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1453">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01318606755-01318665400- -->
+<LI><A HREF="001454.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1454">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01318606755-01318671511- -->
+<LI><A HREF="001455.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1455">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01318606755-01318678685- -->
+<LI><A HREF="001456.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1456">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--1 01318606755-01318686206- -->
+<LI><A HREF="001457.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1457">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--1 01318606755-01318690347- -->
+<LI><A HREF="001458.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1458">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--1 01318606755-01318880841- -->
+<LI><A HREF="001471.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1471">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01318606755-01318912347- -->
+<LI><A HREF="001472.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1472">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01318606755-01319050344- -->
+<LI><A HREF="001473.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1473">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01318606755-01319053303- -->
+<LI><A HREF="001476.html">[Mageia-webteam] [Bug 3047] ASSIGNED status means
+</A><A NAME="1476">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01318608654- -->
+<LI><A HREF="001438.html">[Mageia-webteam] [Bug 3049] [New] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1438">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<UL>
+<!--1 01318608654-01319052387- -->
+<LI><A HREF="001475.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1475">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01318608654-01319062213- -->
+<LI><A HREF="001481.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1481">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+</UL>
+<!--0 01318608778- -->
+<LI><A HREF="001439.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="1439">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318615481- -->
+<LI><A HREF="001440.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="1440">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318616269- -->
+<LI><A HREF="001441.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="1441">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318718866- -->
+<LI><A HREF="001459.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1459">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01318775975- -->
+<LI><A HREF="001460.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1460">&nbsp;</A>
+<I>Marianne Lombard
+</I>
+
+<!--0 01318782826- -->
+<LI><A HREF="001461.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1461">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01318784699- -->
+<LI><A HREF="001462.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1462">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01318794609- -->
+<LI><A HREF="001463.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1463">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318805248- -->
+<LI><A HREF="001464.html">[Mageia-webteam] [Bug 1589] Manual mirrorlist command in migration guide doesn't work
+</A><A NAME="1464">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01318830304- -->
+<LI><A HREF="001465.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1465">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01318837010- -->
+<LI><A HREF="001466.html">[Mageia-webteam] [Bug 3085] [New] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1466">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<UL>
+<!--1 01318837010-01318844004- -->
+<LI><A HREF="001467.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1467">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--1 01318837010-01318859638- -->
+<LI><A HREF="001468.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1468">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01318837010-01318864505- -->
+<LI><A HREF="001469.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1469">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01318837010-01319155672- -->
+<LI><A HREF="001487.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1487">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--1 01318837010-01319194755- -->
+<LI><A HREF="001489.html">[Mageia-webteam] [Bug 3085] Make it possible to change bug-description after it's made by adding a edit-link.
+</A><A NAME="1489">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+</UL>
+<!--0 01318875824- -->
+<LI><A HREF="001470.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1470">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319050963- -->
+<LI><A HREF="001474.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1474">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319056489- -->
+<LI><A HREF="001477.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1477">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01319056638- -->
+<LI><A HREF="001478.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1478">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01319056650- -->
+<LI><A HREF="001479.html">[Mageia-webteam] [Bug 2360] Component Release (media, process) seems not working
+</A><A NAME="1479">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01319057817- -->
+<LI><A HREF="001480.html">[Mageia-webteam] [Bug 3116] [New] The support page should say something about security/bugfix updates
+</A><A NAME="1480">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<UL>
+<!--1 01319057817-01319099313- -->
+<LI><A HREF="001483.html">[Mageia-webteam] [Bug 3116] The support page should say something about security/bugfix updates
+</A><A NAME="1483">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01319098594- -->
+<LI><A HREF="001482.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1482">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319116781- -->
+<LI><A HREF="001484.html">[Mageia-webteam] [Bug 3123] [New] Changing surname is broken
+</A><A NAME="1484">&nbsp;</A>
+<I>Kamil R
+</I>
+
+<UL>
+<!--1 01319116781-01319561284- -->
+<LI><A HREF="001501.html">[Mageia-webteam] [Bug 3123] Changing surname is broken
+</A><A NAME="1501">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+<!--0 01319118367- -->
+<LI><A HREF="001485.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1485">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319118410- -->
+<LI><A HREF="001486.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1486">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319192260- -->
+<LI><A HREF="001488.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="1488">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319196174- -->
+<LI><A HREF="001490.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1490">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319221712- -->
+<LI><A HREF="001491.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="1491">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319225607- -->
+<LI><A HREF="001492.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1492">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319231585- -->
+<LI><A HREF="001493.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1493">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01319231949- -->
+<LI><A HREF="001494.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1494">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<!--0 01319232461- -->
+<LI><A HREF="001495.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1495">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01319292949- -->
+<LI><A HREF="001496.html">[Mageia-webteam] [Bug 1779] Forum does not provide prominent registration link
+</A><A NAME="1496">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01319298758- -->
+<LI><A HREF="001497.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1497">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01319299191- -->
+<LI><A HREF="001498.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1498">&nbsp;</A>
+<I>Thomas Courbon
+</I>
+
+<!--0 01319299636- -->
+<LI><A HREF="001499.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1499">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01319367113- -->
+<LI><A HREF="001500.html">[Mageia-webteam] [Bug 3144] [New] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1500">&nbsp;</A>
+<I>Anssi Hannula
+</I>
+
+<!--0 01319709318- -->
+<LI><A HREF="001502.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1502">&nbsp;</A>
+<I>Maat
+</I>
+
+<!--0 01319709885- -->
+<LI><A HREF="001503.html">[Mageia-webteam] [Bug 1100] Admin demoted to Mod or simple user
+</A><A NAME="1503">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Oct 27 12:04:45 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Thu Oct 27 12:04:49 CEST 2011</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-September.txt.gz b/zarb-ml/mageia-webteam/2011-September.txt.gz
new file mode 100644
index 000000000..577112371
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-September/001341.html b/zarb-ml/mageia-webteam/2011-September/001341.html
new file mode 100644
index 000000000..c0bd2032c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001341.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2616] [New] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+ </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%202616%5D%20%5BNew%5D%20typo%20in%0A%09http%3A//mageia.org/wiki/doku.php%3Fid%3Dweb%3Awiki&In-Reply-To=%3Cbug-2616-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="Next" HREF="001342.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2616] [New] typo in http://mageia.org/wiki/doku.php?id=web:wiki</H1>
+ <B>Philippe Didier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202616%5D%20%5BNew%5D%20typo%20in%0A%09http%3A//mageia.org/wiki/doku.php%3Fid%3Dweb%3Awiki&In-Reply-To=%3Cbug-2616-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2616] [New] typo in http://mageia.org/wiki/doku.php?id=web:wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Sep 4 10:43:31 CEST 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001342.html">[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1341">[ date ]</a>
+ <a href="thread.html#1341">[ thread ]</a>
+ <a href="subject.html#1341">[ subject ]</a>
+ <a href="author.html#1341">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2616">https://bugs.mageia.org/show_bug.cgi?id=2616</A>
+
+ Summary: typo in <A HREF="http://mageia.org/wiki/doku.php?id=web:wiki">http://mageia.org/wiki/doku.php?id=web:wiki</A>
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">philippedidier at laposte.net</A>
+
+
+A little typo in the bottom of the page : (Conversion : dokuwiki -&gt; mediawiki)
+we see :
+
+italic //txt// '''txt''' (same as bold!!!!)
+
+It must be :
+
+italic //txt// ''txt''
+
+
+
+the code
+|<i> //italic// | %%//txt//%%| %%'''txt'''%% |
+</I>
+Must be changed to
+|<i> //italic// | %%//txt//%%| %%''txt''%% |
+</I>
+--
+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>Next message: <A HREF="001342.html">[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1341">[ date ]</a>
+ <a href="thread.html#1341">[ thread ]</a>
+ <a href="subject.html#1341">[ subject ]</a>
+ <a href="author.html#1341">[ 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-September/001342.html b/zarb-ml/mageia-webteam/2011-September/001342.html
new file mode 100644
index 000000000..8ab5f8158
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001342.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+ </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%202616%5D%20typo%20in%0A%09http%3A//mageia.org/wiki/doku.php%3Fid%3Dweb%3Awiki&In-Reply-To=%3C20110904084919.CB4444375C%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="001341.html">
+ <LINK REL="Next" HREF="001343.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki</H1>
+ <B>Sander Lepik</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202616%5D%20typo%20in%0A%09http%3A//mageia.org/wiki/doku.php%3Fid%3Dweb%3Awiki&In-Reply-To=%3C20110904084919.CB4444375C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Sep 4 10:49:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001341.html">[Mageia-webteam] [Bug 2616] [New] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A></li>
+ <LI>Next message: <A HREF="001343.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1342">[ date ]</a>
+ <a href="thread.html#1342">[ thread ]</a>
+ <a href="subject.html#1342">[ subject ]</a>
+ <a href="author.html#1342">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2616">https://bugs.mageia.org/show_bug.cgi?id=2616</A>
+
+Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>
+
+--- Comment #1 from Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; 2011-09-04 12:49:19 CEST ---
+Should be OK now.
+
+--
+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="001341.html">[Mageia-webteam] [Bug 2616] [New] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A></li>
+ <LI>Next message: <A HREF="001343.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1342">[ date ]</a>
+ <a href="thread.html#1342">[ thread ]</a>
+ <a href="subject.html#1342">[ subject ]</a>
+ <a href="author.html#1342">[ 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-September/001343.html b/zarb-ml/mageia-webteam/2011-September/001343.html
new file mode 100644
index 000000000..edc945c0d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001343.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+ </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%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20110905064320.1DBAF4391A%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="001342.html">
+ <LINK REL="Next" HREF="001344.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20110905064320.1DBAF4391A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Sep 5 08:43:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001342.html">[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A></li>
+ <LI>Next message: <A HREF="001344.html">[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1343">[ date ]</a>
+ <a href="thread.html#1343">[ thread ]</a>
+ <a href="subject.html#1343">[ subject ]</a>
+ <a href="author.html#1343">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1568">https://bugs.mageia.org/show_bug.cgi?id=1568</A>
+
+--- Comment #8 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-09-05 10:43:19 CEST ---
+can the applet not working well be a result of bug 2317?
+
+--
+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="001342.html">[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A></li>
+ <LI>Next message: <A HREF="001344.html">[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1343">[ date ]</a>
+ <a href="thread.html#1343">[ thread ]</a>
+ <a href="subject.html#1343">[ subject ]</a>
+ <a href="author.html#1343">[ 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-September/001344.html b/zarb-ml/mageia-webteam/2011-September/001344.html
new file mode 100644
index 000000000..d02afc0c1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001344.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2688] [New] Add a backport keyword to 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%202688%5D%20%5BNew%5D%20Add%20a%20backport%20keyword%20to%20bugzilla&In-Reply-To=%3Cbug-2688-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="001343.html">
+ <LINK REL="Next" HREF="001345.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202688%5D%20%5BNew%5D%20Add%20a%20backport%20keyword%20to%20bugzilla&In-Reply-To=%3Cbug-2688-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Sep 9 23:32:33 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001343.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001345.html">[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1344">[ date ]</a>
+ <a href="thread.html#1344">[ thread ]</a>
+ <a href="subject.html#1344">[ subject ]</a>
+ <a href="author.html#1344">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2688">https://bugs.mageia.org/show_bug.cgi?id=2688</A>
+
+ Summary: Add a backport keyword to bugzilla
+ 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">stormi at laposte.net</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>
+
+
+Please create a new keyword: &quot;backport&quot;
+
+Description: &quot;Use this keyword to identify backport requests and backport
+candidates&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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001343.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001345.html">[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1344">[ date ]</a>
+ <a href="thread.html#1344">[ thread ]</a>
+ <a href="subject.html#1344">[ subject ]</a>
+ <a href="author.html#1344">[ 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-September/001345.html b/zarb-ml/mageia-webteam/2011-September/001345.html
new file mode 100644
index 000000000..ab0a7ebad
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001345.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2688] Add a backport keyword to 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%202688%5D%20Add%20a%20backport%20keyword%20to%20bugzilla&In-Reply-To=%3C20110909213407.6FED843AF7%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="001344.html">
+ <LINK REL="Next" HREF="001346.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202688%5D%20Add%20a%20backport%20keyword%20to%20bugzilla&In-Reply-To=%3C20110909213407.6FED843AF7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Sep 9 23:34:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001344.html">[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001346.html">[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1345">[ date ]</a>
+ <a href="thread.html#1345">[ thread ]</a>
+ <a href="subject.html#1345">[ subject ]</a>
+ <a href="author.html#1345">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2688">https://bugs.mageia.org/show_bug.cgi?id=2688</A>
+
+Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #1 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-09-09 23:34:07 CEST ---
+done by dmorgan, 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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001344.html">[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001346.html">[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1345">[ date ]</a>
+ <a href="thread.html#1345">[ thread ]</a>
+ <a href="subject.html#1345">[ subject ]</a>
+ <a href="author.html#1345">[ 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-September/001346.html b/zarb-ml/mageia-webteam/2011-September/001346.html
new file mode 100644
index 000000000..1bbfd1023
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001346.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+ </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%202692%5D%20%5BNew%5D%20I%27d%20like%20to%20suggest%20a%20new%20media%0A%20to%20release%20git-built%20RPM-packages%20that%20will%20working%20as%20an%20alternative%20to%0A%20Testing-media%20%26%20it%20should%20be%20called%20git-buildrelease.&In-Reply-To=%3Cbug-2692-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="001345.html">
+ <LINK REL="Next" HREF="001347.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202692%5D%20%5BNew%5D%20I%27d%20like%20to%20suggest%20a%20new%20media%0A%20to%20release%20git-built%20RPM-packages%20that%20will%20working%20as%20an%20alternative%20to%0A%20Testing-media%20%26%20it%20should%20be%20called%20git-buildrelease.&In-Reply-To=%3Cbug-2692-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Sep 10 04:32:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001345.html">[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001347.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1346">[ date ]</a>
+ <a href="thread.html#1346">[ thread ]</a>
+ <a href="subject.html#1346">[ subject ]</a>
+ <a href="author.html#1346">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2692">https://bugs.mageia.org/show_bug.cgi?id=2692</A>
+
+ Summary: I'd like to suggest a new media to release git-built
+ RPM-packages that will working as an alternative to
+ Testing-media &amp; it should be called git-buildrelease.
+ 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">kristoffer.grundstrom1983 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>
+
+
+Description of problem: Let's say you feel that you want to take a look at how
+Mozilla-thunderbird looks like from the latest git-code, but don't know how to
+compile, then this might come in handy since you replace Testing-medias with
+gitbuild-medias to test the latest version built as a package for Mageia. I'll
+gladely contribute to this media as often as I can.
+
+--
+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="001345.html">[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001347.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1346">[ date ]</a>
+ <a href="thread.html#1346">[ thread ]</a>
+ <a href="subject.html#1346">[ subject ]</a>
+ <a href="author.html#1346">[ 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-September/001347.html b/zarb-ml/mageia-webteam/2011-September/001347.html
new file mode 100644
index 000000000..ed1820c66
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001347.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+ </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%202692%5D%20I%27d%20like%20to%20suggest%20a%20new%20media%20to%0A%20release%20git-built%20RPM-packages%20that%20will%20working%20as%20an%20alternative%20to%0A%20Testing-media%20%26%20it%20should%20be%20called%20git-buildrelease.&In-Reply-To=%3C20110910023235.7CCB743B12%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="001346.html">
+ <LINK REL="Next" HREF="001348.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202692%5D%20I%27d%20like%20to%20suggest%20a%20new%20media%20to%0A%20release%20git-built%20RPM-packages%20that%20will%20working%20as%20an%20alternative%20to%0A%20Testing-media%20%26%20it%20should%20be%20called%20git-buildrelease.&In-Reply-To=%3C20110910023235.7CCB743B12%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Sep 10 04:32:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001346.html">[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI>Next message: <A HREF="001348.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1347">[ date ]</a>
+ <a href="thread.html#1347">[ thread ]</a>
+ <a href="subject.html#1347">[ subject ]</a>
+ <a href="author.html#1347">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2692">https://bugs.mageia.org/show_bug.cgi?id=2692</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |Low
+
+--
+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="001346.html">[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI>Next message: <A HREF="001348.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1347">[ date ]</a>
+ <a href="thread.html#1347">[ thread ]</a>
+ <a href="subject.html#1347">[ subject ]</a>
+ <a href="author.html#1347">[ 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-September/001348.html b/zarb-ml/mageia-webteam/2011-September/001348.html
new file mode 100644
index 000000000..f3cf1f11d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001348.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+ </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%202692%5D%20I%27d%20like%20to%20suggest%20a%20new%20media%20to%0A%20release%20git-built%20RPM-packages%20that%20will%20working%20as%20an%20alternative%20to%0A%20Testing-media%20%26%20it%20should%20be%20called%20git-buildrelease.&In-Reply-To=%3C20110910023337.C2CA443B2A%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="001347.html">
+ <LINK REL="Next" HREF="001349.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202692%5D%20I%27d%20like%20to%20suggest%20a%20new%20media%20to%0A%20release%20git-built%20RPM-packages%20that%20will%20working%20as%20an%20alternative%20to%0A%20Testing-media%20%26%20it%20should%20be%20called%20git-buildrelease.&In-Reply-To=%3C20110910023337.C2CA443B2A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Sep 10 04:33:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001347.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI>Next message: <A HREF="001349.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1348">[ date ]</a>
+ <a href="thread.html#1348">[ thread ]</a>
+ <a href="subject.html#1348">[ subject ]</a>
+ <a href="author.html#1348">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2692">https://bugs.mageia.org/show_bug.cgi?id=2692</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Mageia
+ Version|unspecified |Cauldron
+ Component|Bugzilla |Release (media, process)
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+ Target Milestone|--- |Mageia 3
+
+--
+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="001347.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI>Next message: <A HREF="001349.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1348">[ date ]</a>
+ <a href="thread.html#1348">[ thread ]</a>
+ <a href="subject.html#1348">[ subject ]</a>
+ <a href="author.html#1348">[ 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-September/001349.html b/zarb-ml/mageia-webteam/2011-September/001349.html
new file mode 100644
index 000000000..f12e0e722
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001349.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+ </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%202692%5D%20I%27d%20like%20to%20suggest%20a%20new%20media%20to%0A%20release%20git-built%20RPM-packages%20that%20will%20working%20as%20an%20alternative%20to%0A%20Testing-media%20%26%20it%20should%20be%20called%20git-buildrelease.&In-Reply-To=%3C20110910172151.8E88C43AD6%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="001348.html">
+ <LINK REL="Next" HREF="001363.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202692%5D%20I%27d%20like%20to%20suggest%20a%20new%20media%20to%0A%20release%20git-built%20RPM-packages%20that%20will%20working%20as%20an%20alternative%20to%0A%20Testing-media%20%26%20it%20should%20be%20called%20git-buildrelease.&In-Reply-To=%3C20110910172151.8E88C43AD6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Sep 10 19:21:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001348.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI>Next message: <A HREF="001363.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1349">[ date ]</a>
+ <a href="thread.html#1349">[ thread ]</a>
+ <a href="subject.html#1349">[ subject ]</a>
+ <a href="author.html#1349">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2692">https://bugs.mageia.org/show_bug.cgi?id=2692</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">mageia-webteam at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="001348.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI>Next message: <A HREF="001363.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1349">[ date ]</a>
+ <a href="thread.html#1349">[ thread ]</a>
+ <a href="subject.html#1349">[ subject ]</a>
+ <a href="author.html#1349">[ 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-September/001350.html b/zarb-ml/mageia-webteam/2011-September/001350.html
new file mode 100644
index 000000000..e39d99512
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001350.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Erhalte%20Zugang%20zu%20meinen%20Bildern%20und%20mehr&In-Reply-To=%3C35.69.31100.83A9D6E4%40mail03%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001366.html">
+ <LINK REL="Next" HREF="001351.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Erhalte%20Zugang%20zu%20meinen%20Bildern%20und%20mehr&In-Reply-To=%3C35.69.31100.83A9D6E4%40mail03%3E"
+ TITLE="[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr">noreply+M192120850 at netlogmail.com
+ </A><BR>
+ <I>Mon Sep 12 07:40:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001366.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI>Next message: <A HREF="001351.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1350">[ date ]</a>
+ <a href="thread.html#1350">[ thread ]</a>
+ <a href="subject.html#1350">[ subject ]</a>
+ <a href="author.html#1350">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hey,
+
+Ich habe ein Netlog Profil mit meinen Bildern, Videos, Blogs und Events erstellt und m&#246;chte dich als Freund hinzuf&#252;gen, damit du dir das ansehen kannst. Du musst dich zuerst auf Netlog registrieren! Wenn du dich einloggst, kannst du dein eigenes Profil erstellen.
+
+Sieh's dir an:
+<A HREF="http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MSZnbT0xMiZ1PSUyRmdvJTJGcmVnaXN0ZXIlMkZpZCUzRC1iV0ZuWldsaExYZGxZblJsWVcxQWJXRm5aV2xoTG05eVp3X18lMjZ1aWQlM0QxNzM0NTk4NzQ">http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MSZnbT0xMiZ1PSUyRmdvJTJGcmVnaXN0ZXIlMkZpZCUzRC1iV0ZuWldsaExYZGxZblJsWVcxQWJXRm5aV2xoTG05eVp3X18lMjZ1aWQlM0QxNzM0NTk4NzQ</A>_
+
+Gr&#252;&#223;e
+Wolfgang
+
+----------------------------------------------------------------
+M&#246;chtest du keine Einladungen von deinen Freunden mehr erhalten?
+<A HREF="http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MiZnbT0xMiZ1PSUyRmdvJTJGbm9tYWlscyUyRmludml0ZSUyRmVtYWlsJTNELWJXRm5aV2xoTFhkbFluUmxZVzFBYldGblpXbGhMbTl5WndfXyUyNmNvZGUlM0QwNjM1MDcyMg_">http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MiZnbT0xMiZ1PSUyRmdvJTJGbm9tYWlscyUyRmludml0ZSUyRmVtYWlsJTNELWJXRm5aV2xoTFhkbFluUmxZVzFBYldGblpXbGhMbTl5WndfXyUyNmNvZGUlM0QwNjM1MDcyMg_</A>_
+Don't want to receive invitations from your friends anymore?
+<A HREF="http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MyZnbT0xMiZ1PWh0dHAlM0ElMkYlMkZlbi5uZXRsb2cuY29tJTJGZ28lMkZub21haWxzJTJGaW52aXRlJTJGZW1haWwlM0QtYldGblpXbGhMWGRsWW5SbFlXMUFiV0ZuWldsaExtOXlad19fJTI2Y29kZSUzRDA2MzUwNzIy">http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MyZnbT0xMiZ1PWh0dHAlM0ElMkYlMkZlbi5uZXRsb2cuY29tJTJGZ28lMkZub21haWxzJTJGaW52aXRlJTJGZW1haWwlM0QtYldGblpXbGhMWGRsWW5SbFlXMUFiV0ZuWldsaExtOXlad19fJTI2Y29kZSUzRDA2MzUwNzIy</A>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110912/accf0476/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001366.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI>Next message: <A HREF="001351.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1350">[ date ]</a>
+ <a href="thread.html#1350">[ thread ]</a>
+ <a href="subject.html#1350">[ subject ]</a>
+ <a href="author.html#1350">[ 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-September/001351.html b/zarb-ml/mageia-webteam/2011-September/001351.html
new file mode 100644
index 000000000..7316861a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001351.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Erhalte%20Zugang%20zu%20meinen%20Bildern%20und%20mehr&In-Reply-To=%3CCA%2Bh4nj7RAg07vN2AihHH4M3PRChDi6SmrQdJfbsGpH2xK95nJA%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="001350.html">
+ <LINK REL="Next" HREF="001352.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Erhalte%20Zugang%20zu%20meinen%20Bildern%20und%20mehr&In-Reply-To=%3CCA%2Bh4nj7RAg07vN2AihHH4M3PRChDi6SmrQdJfbsGpH2xK95nJA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr">molch.b at googlemail.com
+ </A><BR>
+ <I>Mon Sep 12 09:31:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001350.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A></li>
+ <LI>Next message: <A HREF="001352.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1351">[ date ]</a>
+ <a href="thread.html#1351">[ thread ]</a>
+ <a href="subject.html#1351">[ subject ]</a>
+ <a href="author.html#1351">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Sorry folks, this was an *unwanted* automatic mail from the netlog system.
+
+--
+wobo
+
+Am 12. September 2011 07:40 schrieb Wolfgang Bornath &lt;
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">noreply+M192120850 at netlogmail.com</A>&gt;:
+
+&gt;<i> **
+</I>&gt;<i>
+</I>&gt;<i> Wolfgang Bornath
+</I>&gt;<i> m&#228;nnlich - 64 Jahre alt
+</I>&gt;<i> Hessen
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Hi!
+</I>&gt;<i>
+</I>&gt;<i> Ich habe ein Netlog-Profil erstellt und m&#246;chte dir (
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>) Zugang zu meinen neuesten Bilder und mehr
+</I>&gt;<i> geben.
+</I>&gt;<i>
+</I>&gt;<i> Verbinde dich mit Wolfgang
+</I>&gt;<i> &lt;<A HREF="http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MSZnbT0xMiZ1PSUyRmdvJTJGcmVnaXN0ZXIlMkZpZCUzRC1iV0ZuWldsaExYZGxZblJsWVcxQWJXRm5aV2xoTG05eVp3X18lMjZ1aWQlM0QxNzM0NTk4NzQ_">http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MSZnbT0xMiZ1PSUyRmdvJTJGcmVnaXN0ZXIlMkZpZCUzRC1iV0ZuWldsaExYZGxZblJsWVcxQWJXRm5aV2xoTG05eVp3X18lMjZ1aWQlM0QxNzM0NTk4NzQ_</A>&gt;
+</I>&gt;<i>
+</I>&gt;<i> Hallo,
+</I>&gt;<i> Wolfgang Wird der Button oben nicht korrekt gezeigt?
+</I>&gt;<i> Klick here&lt;<A HREF="http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MSZnbT0xMiZ1PSUyRmdvJTJGcmVnaXN0ZXIlMkZpZCUzRC1iV0ZuWldsaExYZGxZblJsWVcxQWJXRm5aV2xoTG05eVp3X18lMjZ1aWQlM0QxNzM0NTk4NzQ_">http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MSZnbT0xMiZ1PSUyRmdvJTJGcmVnaXN0ZXIlMkZpZCUzRC1iV0ZuWldsaExYZGxZblJsWVcxQWJXRm5aV2xoTG05eVp3X18lMjZ1aWQlM0QxNzM0NTk4NzQ_</A>&gt;oder kopiere den Link unten in die Adressleiste deines Browsers.
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MSZnbT0xMiZ1PSUyRmdvJTJGcmVnaXN0ZXIlMkZpZCUzRC1iV0ZuWldsaExYZGxZblJsWVcxQWJXRm5aV2xoTG05eVp3X18lMjZ1aWQlM0QxNzM0NTk4NzQ">http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9MSZnbT0xMiZ1PSUyRmdvJTJGcmVnaXN0ZXIlMkZpZCUzRC1iV0ZuWldsaExYZGxZblJsWVcxQWJXRm5aV2xoTG05eVp3X18lMjZ1aWQlM0QxNzM0NTk4NzQ</A>_
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> M&#246;chtest du keine Einladungen von deinen Freunden mehr erhalten? Klick
+</I>&gt;<i> hier
+</I>&gt;<i> &lt;<A HREF="http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9NiZnbT0xMiZ1PSUyRmdvJTJGbm9tYWlscyUyRmludml0ZSUyRmVtYWlsJTNELWJXRm5aV2xoTFhkbFluUmxZVzFBYldGblpXbGhMbTl5WndfXyUyNmNvZGUlM0QwNjM1MDcyMg__">http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9NiZnbT0xMiZ1PSUyRmdvJTJGbm9tYWlscyUyRmludml0ZSUyRmVtYWlsJTNELWJXRm5aV2xoTFhkbFluUmxZVzFBYldGblpXbGhMbTl5WndfXyUyNmNvZGUlM0QwNjM1MDcyMg__</A>&gt;.
+</I>&gt;<i>
+</I>&gt;<i> Don't want to receive invitations from your friends anymore? Click here
+</I>&gt;<i> &lt;<A HREF="http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9NyZnbT0xMiZ1PWh0dHAlM0ElMkYlMkZlbi5uZXRsb2cuY29tJTJGZ28lMkZub21haWxzJTJGaW52aXRlJTJGZW1haWwlM0QtYldGblpXbGhMWGRsWW5SbFlXMUFiV0ZuWldsaExtOXlad19fJTI2Y29kZSUzRDA2MzUwNzIy">http://de.netlog.com/go/mailurl/-bT0xMzgyMjMzMDExJmw9NyZnbT0xMiZ1PWh0dHAlM0ElMkYlMkZlbi5uZXRsb2cuY29tJTJGZ28lMkZub21haWxzJTJGaW52aXRlJTJGZW1haWwlM0QtYldGblpXbGhMWGRsWW5SbFlXMUFiV0ZuWldsaExtOXlad19fJTI2Y29kZSUzRDA2MzUwNzIy</A>&gt;
+</I>&gt;<i> .
+</I>&gt;<i> *Massive Media NV* - E. Braunplein 18. B-9000 Gent. Belgium.
+</I>&gt;<i> BE0859635972 - <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">abuse-de at netlog.com</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>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110912/5aa6d0e3/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001350.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A></li>
+ <LI>Next message: <A HREF="001352.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1351">[ date ]</a>
+ <a href="thread.html#1351">[ thread ]</a>
+ <a href="subject.html#1351">[ subject ]</a>
+ <a href="author.html#1351">[ 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-September/001352.html b/zarb-ml/mageia-webteam/2011-September/001352.html
new file mode 100644
index 000000000..db0b0b9c3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001352.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1328] contributors page - redesign
+ </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%201328%5D%20contributors%20page%20-%20redesign&In-Reply-To=%3C20110912150723.306274350D%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="001351.html">
+ <LINK REL="Next" HREF="001353.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1328] contributors page - redesign</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201328%5D%20contributors%20page%20-%20redesign&In-Reply-To=%3C20110912150723.306274350D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1328] contributors page - redesign">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Sep 12 17:07:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001351.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A></li>
+ <LI>Next message: <A HREF="001353.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1352">[ date ]</a>
+ <a href="thread.html#1352">[ thread ]</a>
+ <a href="subject.html#1352">[ subject ]</a>
+ <a href="author.html#1352">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1328">https://bugs.mageia.org/show_bug.cgi?id=1328</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|ASSIGNED |RESOLVED
+ Resolution| |OLD
+
+--- Comment #1 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2011-09-12 17:07:23 CEST ---
+Contribute page has been added to website
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001351.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A></li>
+ <LI>Next message: <A HREF="001353.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1352">[ date ]</a>
+ <a href="thread.html#1352">[ thread ]</a>
+ <a href="subject.html#1352">[ subject ]</a>
+ <a href="author.html#1352">[ 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-September/001353.html b/zarb-ml/mageia-webteam/2011-September/001353.html
new file mode 100644
index 000000000..b4a945343
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001353.html
@@ -0,0 +1,75 @@
+<!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=%3C20110912192356.C312343B9A%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="001352.html">
+ <LINK REL="Next" HREF="001354.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>Samuel VERSCHELDE</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=%3C20110912192356.C312343B9A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Sep 12 21:23:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001352.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A></li>
+ <LI>Next message: <A HREF="001354.html">[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1353">[ date ]</a>
+ <a href="thread.html#1353">[ thread ]</a>
+ <a href="subject.html#1353">[ subject ]</a>
+ <a href="author.html#1353">[ 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>
+
+Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>
+
+--- Comment #10 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-09-12 21:23:56 CEST ---
+This bug can be closed, isn't 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="001352.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A></li>
+ <LI>Next message: <A HREF="001354.html">[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1353">[ date ]</a>
+ <a href="thread.html#1353">[ thread ]</a>
+ <a href="subject.html#1353">[ subject ]</a>
+ <a href="author.html#1353">[ 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-September/001354.html b/zarb-ml/mageia-webteam/2011-September/001354.html
new file mode 100644
index 000000000..4fd66d654
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001354.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20%5BNew%5D%20bugzilla%20mail%20list%20subject%20line%0A%20has%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3Cbug-2727-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="001353.html">
+ <LINK REL="Next" HREF="001355.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20%5BNew%5D%20bugzilla%20mail%20list%20subject%20line%0A%20has%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3Cbug-2727-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Sep 13 07:56:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001353.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="001355.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1354">[ date ]</a>
+ <a href="thread.html#1354">[ thread ]</a>
+ <a href="subject.html#1354">[ subject ]</a>
+ <a href="author.html#1354">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+ Summary: bugzilla mail list subject line has changed format
+ from [Bug 1234] to [bugs]
+ 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">remco at webconquest.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>
+
+
+Till yesterday (September 12th), mails sent from the <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugs at ml.mageia.org</A> list
+had a subject line starting with &quot;[Bug #]&quot;. Something changed, and mails to
+this list now only have [bugs] at the start of the subject line.
+
+I found the old format easier to work with.
+
+--
+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="001353.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="001355.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1354">[ date ]</a>
+ <a href="thread.html#1354">[ thread ]</a>
+ <a href="subject.html#1354">[ subject ]</a>
+ <a href="author.html#1354">[ 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-September/001355.html b/zarb-ml/mageia-webteam/2011-September/001355.html
new file mode 100644
index 000000000..8b9a73487
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001355.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913060148.28E8A43C6D%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="001354.html">
+ <LINK REL="Next" HREF="001356.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913060148.28E8A43C6D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Sep 13 08:01:48 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001354.html">[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001356.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1355">[ date ]</a>
+ <a href="thread.html#1355">[ thread ]</a>
+ <a href="subject.html#1355">[ subject ]</a>
+ <a href="author.html#1355">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2011-09-13 10:01:48 CEST ---
+The mail from Bugzilla about this new bug arrived with the subject:
+&quot;[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed
+format from [Bug 1234] to [bugs]&quot;
+
+Looks ok 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="001354.html">[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001356.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1355">[ date ]</a>
+ <a href="thread.html#1355">[ thread ]</a>
+ <a href="subject.html#1355">[ subject ]</a>
+ <a href="author.html#1355">[ 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-September/001356.html b/zarb-ml/mageia-webteam/2011-September/001356.html
new file mode 100644
index 000000000..4d977415c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001356.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913061435.2DEE143C6A%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="001355.html">
+ <LINK REL="Next" HREF="001357.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913061435.2DEE143C6A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Sep 13 08:14:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001355.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001357.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1356">[ date ]</a>
+ <a href="thread.html#1356">[ thread ]</a>
+ <a href="subject.html#1356">[ subject ]</a>
+ <a href="author.html#1356">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; 2011-09-13 10:14:34 CEST ---
+The next mail was:
+Date: Tue, 13 Sep 2011 06:05:37 +0000
+Message-Id: &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">20110913060538.001B743B8F at alamut.mageia.org</A>&gt;
+Subject: [bugs] Update candidate: hplip (fixes upgrade problem from
+ Mandriva)
+
+For most mails the problem still exists
+
+--
+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="001355.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001357.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1356">[ date ]</a>
+ <a href="thread.html#1356">[ thread ]</a>
+ <a href="subject.html#1356">[ subject ]</a>
+ <a href="author.html#1356">[ 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-September/001357.html b/zarb-ml/mageia-webteam/2011-September/001357.html
new file mode 100644
index 000000000..c8c661829
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001357.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913063453.B37D743C6C%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="001356.html">
+ <LINK REL="Next" HREF="001358.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913063453.B37D743C6C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Sep 13 08:34:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001356.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001358.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1357">[ date ]</a>
+ <a href="thread.html#1357">[ thread ]</a>
+ <a href="subject.html#1357">[ subject ]</a>
+ <a href="author.html#1357">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; 2011-09-13 10:34:53 CEST ---
+The new bugs 2728, 2729 and 2730 did better, on the subject line.
+
+Date: Tue, 13 Sep 2011 06:25:20 +0000
+Subject: [Bug 2730] [bugs] Skrooge release 0.9.1
+
+Package requests shouldn't get tagged [New] in the subject line?
+
+--
+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="001356.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001358.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1357">[ date ]</a>
+ <a href="thread.html#1357">[ thread ]</a>
+ <a href="subject.html#1357">[ subject ]</a>
+ <a href="author.html#1357">[ 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-September/001358.html b/zarb-ml/mageia-webteam/2011-September/001358.html
new file mode 100644
index 000000000..c3c811951
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001358.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913081442.E521D43C76%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="001357.html">
+ <LINK REL="Next" HREF="001359.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913081442.E521D43C76%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Sep 13 10:14:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001357.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001359.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1358">[ date ]</a>
+ <a href="thread.html#1358">[ thread ]</a>
+ <a href="subject.html#1358">[ subject ]</a>
+ <a href="author.html#1358">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+--- Comment #4 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2011-09-13 10:14:42 CEST ---
+for this one we have:
+[Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug
+1234] to [bugs]
+and the first comment:
+[Bug 2727] bugzilla mail list subject line has changed format
+
+so it's again ok, no ?
+
+--
+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="001357.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001359.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1358">[ date ]</a>
+ <a href="thread.html#1358">[ thread ]</a>
+ <a href="subject.html#1358">[ subject ]</a>
+ <a href="author.html#1358">[ 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-September/001359.html b/zarb-ml/mageia-webteam/2011-September/001359.html
new file mode 100644
index 000000000..858868f26
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001359.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913081746.D61BB43C6A%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="001358.html">
+ <LINK REL="Next" HREF="001360.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913081746.D61BB43C6A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Sep 13 10:17:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001358.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001360.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1359">[ date ]</a>
+ <a href="thread.html#1359">[ thread ]</a>
+ <a href="subject.html#1359">[ subject ]</a>
+ <a href="author.html#1359">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+--- Comment #5 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">m.van.waes at xs4all.nl</A>&gt; 2011-09-13 10:17:46 CEST ---
+(In reply to comment #4)
+&gt;<i> for this one we have:
+</I>&gt;<i> [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug
+</I>&gt;<i> 1234] to [bugs]
+</I>&gt;<i> and the first comment:
+</I>&gt;<i> [Bug 2727] bugzilla mail list subject line has changed format
+</I>&gt;<i>
+</I>&gt;<i> so it's again ok, no ?
+</I>
+No:
+Subject: [bugs] Update candidate : pidgin 2.10.0
+
+In-Reply-To: &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bug-2199-18 at http.bugs.mageia.org</A>/&gt;
+References: &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bug-2199-18 at http.bugs.mageia.org</A>/&gt;
+X-Bugzilla-URL: <A HREF="http://bugs.mageia.org/">http://bugs.mageia.org/</A>
+Auto-Submitted: auto-generated
+Content-Type: text/plain; charset=&quot;UTF-8&quot;
+MIME-Version: 1.0
+Date: Tue, 13 Sep 2011 07:43:55 +0000
+Message-Id: &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">20110913074355.9991843C70 at alamut.mageia.org</A>&gt;
+Subject: [bugs] Update candidate : pidgin 2.10.0
+
+--
+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="001358.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001360.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1359">[ date ]</a>
+ <a href="thread.html#1359">[ thread ]</a>
+ <a href="subject.html#1359">[ subject ]</a>
+ <a href="author.html#1359">[ 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-September/001360.html b/zarb-ml/mageia-webteam/2011-September/001360.html
new file mode 100644
index 000000000..6265b8631
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001360.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913081912.4B30743C70%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="001359.html">
+ <LINK REL="Next" HREF="001361.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913081912.4B30743C70%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Sep 13 10:19:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001359.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001361.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1360">[ date ]</a>
+ <a href="thread.html#1360">[ thread ]</a>
+ <a href="subject.html#1360">[ subject ]</a>
+ <a href="author.html#1360">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+--- Comment #6 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2011-09-13 12:19:12 CEST ---
+Not yet... after opening this bug report, I also posted an update on another
+bug 883.
+
+The last comment on that bug report from September 06 still has [Bug 883] in
+the subject, but the next comment (from me today) suddenly shows [bugs].
+
+I haven't really detected a pattern in it yet, but it looks like something
+changed overnight.
+
+--
+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="001359.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001361.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1360">[ date ]</a>
+ <a href="thread.html#1360">[ thread ]</a>
+ <a href="subject.html#1360">[ subject ]</a>
+ <a href="author.html#1360">[ 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-September/001361.html b/zarb-ml/mageia-webteam/2011-September/001361.html
new file mode 100644
index 000000000..9e8065a33
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001361.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913083335.9911B43C73%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="001360.html">
+ <LINK REL="Next" HREF="001367.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110913083335.9911B43C73%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Sep 13 10:33:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001360.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001367.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1361">[ date ]</a>
+ <a href="thread.html#1361">[ thread ]</a>
+ <a href="subject.html#1361">[ subject ]</a>
+ <a href="author.html#1361">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>
+
+--- Comment #7 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-09-13 10:33:35 CEST ---
+The cause is a change in the sympa mailing lists, adding [name_of_list] in the
+subject to harmonize with the mailman mailing lists. But it seems that sympa
+plays a weird game with the bugs mailing list.
+
+--
+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="001360.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001367.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1361">[ date ]</a>
+ <a href="thread.html#1361">[ thread ]</a>
+ <a href="subject.html#1361">[ subject ]</a>
+ <a href="author.html#1361">[ 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-September/001362.html b/zarb-ml/mageia-webteam/2011-September/001362.html
new file mode 100644
index 000000000..5d096f7bb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001362.html
@@ -0,0 +1,78 @@
+<!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=%3C20110913194932.B896C43C7F%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="001368.html">
+ <LINK REL="Next" HREF="001369.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=%3C20110913194932.B896C43C7F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Sep 13 21:49:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001368.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001369.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1362">[ date ]</a>
+ <a href="thread.html#1362">[ thread ]</a>
+ <a href="subject.html#1362">[ subject ]</a>
+ <a href="author.html#1362">[ 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>
+
+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 #11 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-09-13 21:49:32 CEST ---
+Yes.
+
+--
+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="001368.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001369.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1362">[ date ]</a>
+ <a href="thread.html#1362">[ thread ]</a>
+ <a href="subject.html#1362">[ subject ]</a>
+ <a href="author.html#1362">[ 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-September/001363.html b/zarb-ml/mageia-webteam/2011-September/001363.html
new file mode 100644
index 000000000..fc295f569
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001363.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Presentation of Mageia for beginners with website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Presentation%20of%20Mageia%20for%20beginners%20with%20website&In-Reply-To=%3C201109201214.40980.terraagua%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001349.html">
+ <LINK REL="Next" HREF="001364.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Presentation of Mageia for beginners with website</H1>
+ <B>Macxi</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Presentation%20of%20Mageia%20for%20beginners%20with%20website&In-Reply-To=%3C201109201214.40980.terraagua%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Presentation of Mageia for beginners with website">terraagua at gmail.com
+ </A><BR>
+ <I>Tue Sep 20 17:14:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001349.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI>Next message: <A HREF="001364.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1363">[ date ]</a>
+ <a href="thread.html#1363">[ thread ]</a>
+ <a href="subject.html#1363">[ subject ]</a>
+ <a href="author.html#1363">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+I am proposing to present the &quot;desktop of Mageia&quot; for beginners with a
+website. Is very simple and not very pretty, it is still only a draft. Don't
+have explanatory text or tips, just images (not yet, but it can be placed).
+
+<A HREF="http://dl.dropbox.com/u/1220932/mg/mageia-site/5-mga-site-en/Mageia-1.html">http://dl.dropbox.com/u/1220932/mg/mageia-site/5-mga-site-en/Mageia-1.html</A>
+
+The main idea is to give basic guidance for beginners, and in the future, add
+text to guidance and links to help texts for each application, if there is
+concordance mageia team. It is a proposal to Mageia, but can be a tool
+suitable for any linux distribution.
+
+I made a joke with the invitation &quot;follow the white rabbit&quot;, known from the
+movie Matrix, but in fact is the story of Alice in Wonderland. While in other
+stories, princesses lived melancholy waiting for Prince Charming, the Alice of
+Lewis Carroll, even if in a dream, do not hesitate to follow that white rabbit
+and live an adventure.
+
+I open a topic in Mageia F&#243;rum: &quot;Presentation of Mageia for beginners with
+website&quot; ( <A HREF="https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=1093">https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=1093</A> )
+
+I use images to celebrate the first year of Mageia.
+
+Cheers
+Macxi
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001349.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A></li>
+ <LI>Next message: <A HREF="001364.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1363">[ date ]</a>
+ <a href="thread.html#1363">[ thread ]</a>
+ <a href="subject.html#1363">[ subject ]</a>
+ <a href="author.html#1363">[ 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-September/001364.html b/zarb-ml/mageia-webteam/2011-September/001364.html
new file mode 100644
index 000000000..e559dfe2d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001364.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Presentation of Mageia for beginners with website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Presentation%20of%20Mageia%20for%20beginners%20with%0A%09website&In-Reply-To=%3C4E78CBD5.70402%40xs4all.nl%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001363.html">
+ <LINK REL="Next" HREF="001365.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Presentation of Mageia for beginners with website</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Presentation%20of%20Mageia%20for%20beginners%20with%0A%09website&In-Reply-To=%3C4E78CBD5.70402%40xs4all.nl%3E"
+ TITLE="[Mageia-webteam] Presentation of Mageia for beginners with website">marja11 at xs4all.nl
+ </A><BR>
+ <I>Tue Sep 20 19:22:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001363.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI>Next message: <A HREF="001365.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1364">[ date ]</a>
+ <a href="thread.html#1364">[ thread ]</a>
+ <a href="subject.html#1364">[ subject ]</a>
+ <a href="author.html#1364">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Op 20-09-11 17:14, Macxi schreef:
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> I am proposing to present the &quot;desktop of Mageia&quot; for beginners with a
+</I>&gt;<i> website. Is very simple and not very pretty, it is still only a draft. Don't
+</I>&gt;<i> have explanatory text or tips, just images (not yet, but it can be placed).
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://dl.dropbox.com/u/1220932/mg/mageia-site/5-mga-site-en/Mageia-1.html">http://dl.dropbox.com/u/1220932/mg/mageia-site/5-mga-site-en/Mageia-1.html</A>
+</I>&gt;<i>
+</I>
+&gt;<i> I open a topic in Mageia F&#243;rum: &quot;Presentation of Mageia for beginners with
+</I>&gt;<i> website&quot; ( <A HREF="https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=1093">https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=1093</A> )
+</I>&gt;<i>
+</I>&gt;<i> I use images to celebrate the first year of Mageia.
+</I>&gt;<i>
+</I>&gt;<i> Cheers
+</I>&gt;<i> Macxi
+</I>&gt;<i>
+</I>
+Don't say it isn't very pretty, it is pretty! I think your presentation
+will, when finished, help a lot of first-time-users to discover the
+possibilities of Mageia (or another Linux distribution) faster than they
+do now.
+
+I was glad to see you sent this to the web team, too.
+
+The documentation team should know about your presentation, too, but
+there doesn't seem to be an active mailinglist for them, at the moment.
+Anyway, what is going to be their mailinglist is here:
+<A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi/info/doc-discuss.">https://ml.mageia.org/wwsympa-wrapper.fcgi/info/doc-discuss.</A>
+
+
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001363.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI>Next message: <A HREF="001365.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1364">[ date ]</a>
+ <a href="thread.html#1364">[ thread ]</a>
+ <a href="subject.html#1364">[ subject ]</a>
+ <a href="author.html#1364">[ 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-September/001365.html b/zarb-ml/mageia-webteam/2011-September/001365.html
new file mode 100644
index 000000000..bd5580cdf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001365.html
@@ -0,0 +1,117 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Presentation of Mageia for beginners with website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Presentation%20of%20Mageia%20for%20beginners%20with%0A%20website&In-Reply-To=%3C20110920204740.34f0e2e4%40andromeda.localdomain%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001364.html">
+ <LINK REL="Next" HREF="001366.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Presentation of Mageia for beginners with website</H1>
+ <B>Patricia Fraser</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Presentation%20of%20Mageia%20for%20beginners%20with%0A%20website&In-Reply-To=%3C20110920204740.34f0e2e4%40andromeda.localdomain%3E"
+ TITLE="[Mageia-webteam] Presentation of Mageia for beginners with website">trish at thefrasers.org
+ </A><BR>
+ <I>Tue Sep 20 20:47:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001364.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI>Next message: <A HREF="001366.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1365">[ date ]</a>
+ <a href="thread.html#1365">[ thread ]</a>
+ <a href="subject.html#1365">[ subject ]</a>
+ <a href="author.html#1365">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Docteam is now up and running - meeting right this minute over on
+#mageia-doc.
+
+&gt;<i> Op 20-09-11 17:14, Macxi schreef:
+</I>&gt;<i> &gt; Hi,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I am proposing to present the &quot;desktop of Mageia&quot; for beginners
+</I>&gt;<i> &gt; with a website. Is very simple and not very pretty, it is still
+</I>&gt;<i> &gt; only a draft. Don't have explanatory text or tips, just images
+</I>&gt;<i> &gt; (not yet, but it can be placed).
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; <A HREF="http://dl.dropbox.com/u/1220932/mg/mageia-site/5-mga-site-en/Mageia-1.html">http://dl.dropbox.com/u/1220932/mg/mageia-site/5-mga-site-en/Mageia-1.html</A>
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> &gt; I open a topic in Mageia F&#243;rum: &quot;Presentation of Mageia for
+</I>&gt;<i> &gt; beginners with
+</I>&gt;<i> &gt; website&quot; ( <A HREF="https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=1093">https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=1093</A>
+</I>&gt;<i> &gt; )
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I use images to celebrate the first year of Mageia.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Cheers
+</I>&gt;<i> &gt; Macxi
+</I>&gt;<i> &gt;
+</I>&gt;<i>
+</I>&gt;<i> Don't say it isn't very pretty, it is pretty! I think your
+</I>&gt;<i> presentation will, when finished, help a lot of first-time-users to
+</I>&gt;<i> discover the possibilities of Mageia (or another Linux
+</I>&gt;<i> distribution) faster than they do now.
+</I>&gt;<i>
+</I>&gt;<i> I was glad to see you sent this to the web team, too.
+</I>&gt;<i>
+</I>&gt;<i> The documentation team should know about your presentation, too,
+</I>&gt;<i> but there doesn't seem to be an active mailinglist for them, at the
+</I>&gt;<i> moment. Anyway, what is going to be their mailinglist is here:
+</I>&gt;<i> <A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi/info/doc-discuss.">https://ml.mageia.org/wwsympa-wrapper.fcgi/info/doc-discuss.</A>
+</I>&gt;<i>
+</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>
+
+
+--
+Trish Fraser, JD9R RQ2D
+52.4161N,16.9303E
+di sep 20 20:47:13 CEST 2011
+GNU/Linux 1997-2011 #283226 linuxcounter.net
+andromeda up 3 hour(s), 5 min.
+kernel 2.6.38.8-desktop-4.mga
+--
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: signature.asc
+Type: application/pgp-signature
+Size: 490 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20110920/af3471d8/attachment.asc&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001364.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI>Next message: <A HREF="001366.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1365">[ date ]</a>
+ <a href="thread.html#1365">[ thread ]</a>
+ <a href="subject.html#1365">[ subject ]</a>
+ <a href="author.html#1365">[ 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-September/001366.html b/zarb-ml/mageia-webteam/2011-September/001366.html
new file mode 100644
index 000000000..2dcaf93c2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001366.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Presentation of Mageia for beginners with website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Presentation%20of%20Mageia%20for%20beginners%20with%0A%09website&In-Reply-To=%3C4E79966B.2090108%40xs4all.nl%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001365.html">
+ <LINK REL="Next" HREF="001350.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Presentation of Mageia for beginners with website</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Presentation%20of%20Mageia%20for%20beginners%20with%0A%09website&In-Reply-To=%3C4E79966B.2090108%40xs4all.nl%3E"
+ TITLE="[Mageia-webteam] Presentation of Mageia for beginners with website">marja11 at xs4all.nl
+ </A><BR>
+ <I>Wed Sep 21 09:46:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001365.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI>Next message: <A HREF="001350.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1366">[ date ]</a>
+ <a href="thread.html#1366">[ thread ]</a>
+ <a href="subject.html#1366">[ subject ]</a>
+ <a href="author.html#1366">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>And their mailing list started to work :)
+
+Op 20-09-11 20:47, Patricia Fraser schreef:
+&gt;<i> Docteam is now up and running - meeting right this minute over on
+</I>&gt;<i> #mageia-doc.
+</I>&gt;<i>
+</I>&gt;&gt;<i> Op 20-09-11 17:14, Macxi schreef:
+</I>&gt;&gt;&gt;<i> Hi,
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> I am proposing to present the &quot;desktop of Mageia&quot; for beginners
+</I>&gt;&gt;&gt;<i> with a website. Is very simple and not very pretty, it is still
+</I>&gt;&gt;&gt;<i> only a draft. Don't have explanatory text or tips, just images
+</I>&gt;&gt;&gt;<i> (not yet, but it can be placed).
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> <A HREF="http://dl.dropbox.com/u/1220932/mg/mageia-site/5-mga-site-en/Mageia-1.html">http://dl.dropbox.com/u/1220932/mg/mageia-site/5-mga-site-en/Mageia-1.html</A>
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> I open a topic in Mageia F&#243;rum: &quot;Presentation of Mageia for
+</I>&gt;&gt;&gt;<i> beginners with
+</I>&gt;&gt;&gt;<i> website&quot; ( <A HREF="https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=1093">https://forums.mageia.org/en/viewtopic.php?f=11&amp;t=1093</A>
+</I>&gt;&gt;&gt;<i> )
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> I use images to celebrate the first year of Mageia.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Cheers
+</I>&gt;&gt;&gt;<i> Macxi
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> Don't say it isn't very pretty, it is pretty! I think your
+</I>&gt;&gt;<i> presentation will, when finished, help a lot of first-time-users to
+</I>&gt;&gt;<i> discover the possibilities of Mageia (or another Linux
+</I>&gt;&gt;<i> distribution) faster than they do now.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I was glad to see you sent this to the web team, too.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> The documentation team should know about your presentation, too,
+</I>&gt;&gt;<i> but there doesn't seem to be an active mailinglist for them, at the
+</I>&gt;&gt;<i> moment. Anyway, what is going to be their mailinglist is here:
+</I>&gt;&gt;<i> <A HREF="https://ml.mageia.org/wwsympa-wrapper.fcgi/info/doc-discuss.">https://ml.mageia.org/wwsympa-wrapper.fcgi/info/doc-discuss.</A>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</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> _______________________________________________
+</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>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110921/8c13474e/attachment.html&gt;
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001365.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A></li>
+ <LI>Next message: <A HREF="001350.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1366">[ date ]</a>
+ <a href="thread.html#1366">[ thread ]</a>
+ <a href="subject.html#1366">[ subject ]</a>
+ <a href="author.html#1366">[ 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-September/001367.html b/zarb-ml/mageia-webteam/2011-September/001367.html
new file mode 100644
index 000000000..ba28d0517
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001367.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110922050918.68AA043E68%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="001361.html">
+ <LINK REL="Next" HREF="001368.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110922050918.68AA043E68%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Sep 22 07:09:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001361.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001368.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1367">[ date ]</a>
+ <a href="thread.html#1367">[ thread ]</a>
+ <a href="subject.html#1367">[ subject ]</a>
+ <a href="author.html#1367">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+--- Comment #8 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2011-09-22 09:09:17 CEST ---
+Currently mails show up with as subject &quot;[bugs] [Bug #]&quot;. While not equal to
+the initial configuration, at least the bug number is back in the subject. I'm
+inclined to consider this one 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="001361.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001368.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1367">[ date ]</a>
+ <a href="thread.html#1367">[ thread ]</a>
+ <a href="subject.html#1367">[ subject ]</a>
+ <a href="author.html#1367">[ 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-September/001368.html b/zarb-ml/mageia-webteam/2011-September/001368.html
new file mode 100644
index 000000000..f2ef7c506
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001368.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [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%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110922070117.7A9A543E67%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="001367.html">
+ <LINK REL="Next" HREF="001362.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202727%5D%20bugzilla%20mail%20list%20subject%20line%20has%0A%20changed%20format%20from%20%5BBug%201234%5D%20to%20%5Bbugs%5D&In-Reply-To=%3C20110922070117.7A9A543E67%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Sep 22 09:01:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001367.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001362.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1368">[ date ]</a>
+ <a href="thread.html#1368">[ thread ]</a>
+ <a href="subject.html#1368">[ subject ]</a>
+ <a href="author.html#1368">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2727">https://bugs.mageia.org/show_bug.cgi?id=2727</A>
+
+Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #9 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2011-09-22 11:01:15 CEST ---
+Yes, it's OK now.
+
+--
+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="001367.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A></li>
+ <LI>Next message: <A HREF="001362.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1368">[ date ]</a>
+ <a href="thread.html#1368">[ thread ]</a>
+ <a href="subject.html#1368">[ subject ]</a>
+ <a href="author.html#1368">[ 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-September/001369.html b/zarb-ml/mageia-webteam/2011-September/001369.html
new file mode 100644
index 000000000..10a5b8b4d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001369.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+ </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%20434%5D%20Use%20email%20as%20a%20contact/id%20for%20mirror%0A%09admin&In-Reply-To=%3C20110926210040.2B4C443D84%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="001362.html">
+ <LINK REL="Next" HREF="001370.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20434%5D%20Use%20email%20as%20a%20contact/id%20for%20mirror%0A%09admin&In-Reply-To=%3C20110926210040.2B4C443D84%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Sep 26 23:00:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001362.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="001370.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1369">[ date ]</a>
+ <a href="thread.html#1369">[ thread ]</a>
+ <a href="subject.html#1369">[ subject ]</a>
+ <a href="author.html#1369">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">nanardon at nanardon.zarb.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>,
+ | |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ Blocks| |859
+
+--- Comment #2 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-09-27 01:00:39 CEST ---
+Yes, asking for contact email adress would be useful I think.
+
+--
+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="001362.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="001370.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1369">[ date ]</a>
+ <a href="thread.html#1369">[ thread ]</a>
+ <a href="subject.html#1369">[ subject ]</a>
+ <a href="author.html#1369">[ 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-September/001370.html b/zarb-ml/mageia-webteam/2011-September/001370.html
new file mode 100644
index 000000000..3c8dcd386
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001370.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+ </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%20530%5D%20Restrict%20/packages%20POST%20to%20buildsystem%0A%09host%20IP&In-Reply-To=%3C20110926211429.D8C6043D82%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="001369.html">
+ <LINK REL="Next" HREF="001371.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20530%5D%20Restrict%20/packages%20POST%20to%20buildsystem%0A%09host%20IP&In-Reply-To=%3C20110926211429.D8C6043D82%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Sep 26 23:14:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001369.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A></li>
+ <LI>Next message: <A HREF="001371.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1370">[ date ]</a>
+ <a href="thread.html#1370">[ thread ]</a>
+ <a href="subject.html#1370">[ subject ]</a>
+ <a href="author.html#1370">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</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 #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-09-26 23:14:29 CEST ---
+Closing as maintdb has been replaced by something else.
+
+--
+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="001369.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A></li>
+ <LI>Next message: <A HREF="001371.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1370">[ date ]</a>
+ <a href="thread.html#1370">[ thread ]</a>
+ <a href="subject.html#1370">[ subject ]</a>
+ <a href="author.html#1370">[ 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-September/001371.html b/zarb-ml/mageia-webteam/2011-September/001371.html
new file mode 100644
index 000000000..3fc1f8d33
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001371.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+ </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%20530%5D%20Restrict%20/packages%20POST%20to%20buildsystem%0A%09host%20IP&In-Reply-To=%3C20110926211723.7C51243D82%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="001370.html">
+ <LINK REL="Next" HREF="001372.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20530%5D%20Restrict%20/packages%20POST%20to%20buildsystem%0A%09host%20IP&In-Reply-To=%3C20110926211723.7C51243D82%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Sep 26 23:17:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001370.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI>Next message: <A HREF="001372.html">[Mageia-webteam] wrong mail address in &quot;mageia.org Mailing Lists&quot; main page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1371">[ date ]</a>
+ <a href="thread.html#1371">[ thread ]</a>
+ <a href="subject.html#1371">[ subject ]</a>
+ <a href="author.html#1371">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</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
+----------------------------------------------------------------------------
+ Component|maintdb.mageia.org |Other
+
+--
+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="001370.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A></li>
+ <LI>Next message: <A HREF="001372.html">[Mageia-webteam] wrong mail address in &quot;mageia.org Mailing Lists&quot; main page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1371">[ date ]</a>
+ <a href="thread.html#1371">[ thread ]</a>
+ <a href="subject.html#1371">[ subject ]</a>
+ <a href="author.html#1371">[ 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-September/001372.html b/zarb-ml/mageia-webteam/2011-September/001372.html
new file mode 100644
index 000000000..3d261868d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/001372.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] wrong mail address in &quot;mageia.org Mailing Lists&quot; main page
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20mail%20address%20in%20%22mageia.org%20Mailing%20Lists%22%0A%09main%20page&In-Reply-To=%3C4E81C2F1.4010408%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001371.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] wrong mail address in &quot;mageia.org Mailing Lists&quot; main page</H1>
+ <B>Philippe DIDIER</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20wrong%20mail%20address%20in%20%22mageia.org%20Mailing%20Lists%22%0A%09main%20page&In-Reply-To=%3C4E81C2F1.4010408%40laposte.net%3E"
+ TITLE="[Mageia-webteam] wrong mail address in &quot;mageia.org Mailing Lists&quot; main page">philippedidier at laposte.net
+ </A><BR>
+ <I>Tue Sep 27 14:34:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001371.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1372">[ date ]</a>
+ <a href="thread.html#1372">[ thread ]</a>
+ <a href="subject.html#1372">[ subject ]</a>
+ <a href="author.html#1372">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi !
+Sorry to bring some work (perhaps need to write a bug report ?)
+
+In the main page :
+<A HREF="https://mageia.org/mailman/">https://mageia.org/mailman/</A>
+
+We can read this :
+
+If you are having trouble using the lists, please contact
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mailman at mageia.org</A> &lt;mailto:<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mailman at mageia.org</A>&gt;
+....
+I tried to write to this address =&gt; the mail couldn't be delivered :
+
+This is the mail system at host alamut.mageia.org.
+
+I'm sorry to have to inform you that your message could not
+be delivered to one or more recipients. It's attached below.
+
+For further assistance, please send mail to postmaster.
+
+If you do so, please include this problem report. You can
+delete your own text from the attached returned message.
+
+ The mail system
+
+&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mailman at mageia.org</A>&gt;: unknown user:&quot;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mailman at mageia.org</A>&quot;
+
+
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001371.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1372">[ date ]</a>
+ <a href="thread.html#1372">[ thread ]</a>
+ <a href="subject.html#1372">[ subject ]</a>
+ <a href="author.html#1372">[ 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-September/author.html b/zarb-ml/mageia-webteam/2011-September/author.html
new file mode 100644
index 000000000..50e84d813
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/author.html
@@ -0,0 +1,207 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam September 2011 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>September 2011 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>Sun Sep 4 10:43:31 CEST 2011</i><br>
+ <b>Ending:</b> <i>Tue Sep 27 14:34:57 CEST 2011</i><br>
+ <b>Messages:</b> 32<p>
+ <ul>
+
+<LI><A HREF="001343.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1343">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001350.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A><A NAME="1350">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001351.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A><A NAME="1351">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001355.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1355">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001352.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A><A NAME="1352">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001372.html">[Mageia-webteam] wrong mail address in &quot;mageia.org Mailing Lists&quot; main page
+</A><A NAME="1372">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+<LI><A HREF="001341.html">[Mageia-webteam] [Bug 2616] [New] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A><A NAME="1341">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001365.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1365">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001346.html">[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1346">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001347.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1347">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001348.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1348">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001358.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1358">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001342.html">[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A><A NAME="1342">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001363.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1363">&nbsp;</A>
+<I>Macxi
+</I>
+
+<LI><A HREF="001354.html">[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1354">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001360.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1360">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001367.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1367">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001344.html">[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla
+</A><A NAME="1344">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001345.html">[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla
+</A><A NAME="1345">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001353.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="1353">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001361.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1361">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001368.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1368">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001362.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="1362">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001369.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A><A NAME="1369">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001370.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A><A NAME="1370">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001371.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A><A NAME="1371">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001356.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1356">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001357.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1357">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001359.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1359">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001364.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1364">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001366.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1366">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001349.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1349">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Sep 27 14:34:57 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Sep 28 11:33:27 CEST 2011</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/2011-September/date.html b/zarb-ml/mageia-webteam/2011-September/date.html
new file mode 100644
index 000000000..7e9aa9b0a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/date.html
@@ -0,0 +1,207 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam September 2011 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>September 2011 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>Sun Sep 4 10:43:31 CEST 2011</i><br>
+ <b>Ending:</b> <i>Tue Sep 27 14:34:57 CEST 2011</i><br>
+ <b>Messages:</b> 32<p>
+ <ul>
+
+<LI><A HREF="001341.html">[Mageia-webteam] [Bug 2616] [New] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A><A NAME="1341">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001342.html">[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A><A NAME="1342">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001343.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1343">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001344.html">[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla
+</A><A NAME="1344">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001345.html">[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla
+</A><A NAME="1345">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001346.html">[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1346">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001347.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1347">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001348.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1348">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001349.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1349">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001350.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A><A NAME="1350">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001351.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A><A NAME="1351">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001352.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A><A NAME="1352">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001353.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="1353">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001354.html">[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1354">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001355.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1355">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001356.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1356">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001357.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1357">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001358.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1358">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001359.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1359">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001360.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1360">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001361.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1361">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001362.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="1362">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001363.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1363">&nbsp;</A>
+<I>Macxi
+</I>
+
+<LI><A HREF="001364.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1364">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001365.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1365">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001366.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1366">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001367.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1367">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001368.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1368">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001369.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A><A NAME="1369">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001370.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A><A NAME="1370">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001371.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A><A NAME="1371">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001372.html">[Mageia-webteam] wrong mail address in &quot;mageia.org Mailing Lists&quot; main page
+</A><A NAME="1372">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Sep 27 14:34:57 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Sep 28 11:33:27 CEST 2011</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/2011-September/index.html b/zarb-ml/mageia-webteam/2011-September/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2011-September/subject.html b/zarb-ml/mageia-webteam/2011-September/subject.html
new file mode 100644
index 000000000..2868189d1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/subject.html
@@ -0,0 +1,207 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam September 2011 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>September 2011 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>Sun Sep 4 10:43:31 CEST 2011</i><br>
+ <b>Ending:</b> <i>Tue Sep 27 14:34:57 CEST 2011</i><br>
+ <b>Messages:</b> 32<p>
+ <ul>
+
+<LI><A HREF="001352.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A><A NAME="1352">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001343.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1343">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001341.html">[Mageia-webteam] [Bug 2616] [New] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A><A NAME="1341">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="001342.html">[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A><A NAME="1342">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001344.html">[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla
+</A><A NAME="1344">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001345.html">[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla
+</A><A NAME="1345">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001346.html">[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1346">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001347.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1347">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001348.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1348">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001349.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1349">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001354.html">[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1354">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001355.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1355">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001356.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1356">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001357.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1357">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001358.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1358">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001359.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1359">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001360.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1360">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001361.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1361">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001367.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1367">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001368.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1368">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001353.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="1353">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001362.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="1362">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001369.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A><A NAME="1369">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001370.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A><A NAME="1370">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001371.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A><A NAME="1371">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001350.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A><A NAME="1350">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001351.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A><A NAME="1351">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001364.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1364">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001366.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1366">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001363.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1363">&nbsp;</A>
+<I>Macxi
+</I>
+
+<LI><A HREF="001365.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1365">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001372.html">[Mageia-webteam] wrong mail address in &quot;mageia.org Mailing Lists&quot; main page
+</A><A NAME="1372">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Sep 27 14:34:57 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Sep 28 11:33:27 CEST 2011</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/2011-September/thread.html b/zarb-ml/mageia-webteam/2011-September/thread.html
new file mode 100644
index 000000000..13311b0d4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-September/thread.html
@@ -0,0 +1,253 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam September 2011 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>September 2011 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>Sun Sep 4 10:43:31 CEST 2011</i><br>
+ <b>Ending:</b> <i>Tue Sep 27 14:34:57 CEST 2011</i><br>
+ <b>Messages:</b> 32<p>
+ <ul>
+
+<!--0 01315125811- -->
+<LI><A HREF="001341.html">[Mageia-webteam] [Bug 2616] [New] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A><A NAME="1341">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<UL>
+<!--1 01315125811-01315126159- -->
+<LI><A HREF="001342.html">[Mageia-webteam] [Bug 2616] typo in http://mageia.org/wiki/doku.php?id=web:wiki
+</A><A NAME="1342">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+</UL>
+<!--0 01315205000- -->
+<LI><A HREF="001343.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1343">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01315603953- -->
+<LI><A HREF="001344.html">[Mageia-webteam] [Bug 2688] [New] Add a backport keyword to bugzilla
+</A><A NAME="1344">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<UL>
+<!--1 01315603953-01315604047- -->
+<LI><A HREF="001345.html">[Mageia-webteam] [Bug 2688] Add a backport keyword to bugzilla
+</A><A NAME="1345">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+</UL>
+<!--0 01315621937- -->
+<LI><A HREF="001346.html">[Mageia-webteam] [Bug 2692] [New] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1346">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<UL>
+<!--1 01315621937-01315621955- -->
+<LI><A HREF="001347.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1347">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01315621937-01315622017- -->
+<LI><A HREF="001348.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1348">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01315621937-01315675311- -->
+<LI><A HREF="001349.html">[Mageia-webteam] [Bug 2692] I'd like to suggest a new media to release git-built RPM-packages that will working as an alternative to Testing-media &amp; it should be called git-buildrelease.
+</A><A NAME="1349">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01315621937-01316531680- -->
+<LI><A HREF="001363.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1363">&nbsp;</A>
+<I>Macxi
+</I>
+
+<UL>
+<!--2 01315621937-01316531680-01316539349- -->
+<LI><A HREF="001364.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1364">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<UL>
+<!--3 01315621937-01316531680-01316539349-01316544460- -->
+<LI><A HREF="001365.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1365">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<!--3 01315621937-01316531680-01316539349-01316544460-01316591211- -->
+<LI><A HREF="001366.html">[Mageia-webteam] Presentation of Mageia for beginners with website
+</A><A NAME="1366">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01315806007- -->
+<LI><A HREF="001350.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A><A NAME="1350">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<UL>
+<!--1 01315806007-01315812699- -->
+<LI><A HREF="001351.html">[Mageia-webteam] Erhalte Zugang zu meinen Bildern und mehr
+</A><A NAME="1351">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+</UL>
+<!--0 01315840043- -->
+<LI><A HREF="001352.html">[Mageia-webteam] [Bug 1328] contributors page - redesign
+</A><A NAME="1352">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--0 01315855436- -->
+<LI><A HREF="001353.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="1353">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--0 01315893389- -->
+<LI><A HREF="001354.html">[Mageia-webteam] [Bug 2727] [New] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1354">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<UL>
+<!--1 01315893389-01315893708- -->
+<LI><A HREF="001355.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1355">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01315893389-01315894475- -->
+<LI><A HREF="001356.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1356">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01315893389-01315895693- -->
+<LI><A HREF="001357.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1357">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01315893389-01315901682- -->
+<LI><A HREF="001358.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1358">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01315893389-01315901866- -->
+<LI><A HREF="001359.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1359">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01315893389-01315901952- -->
+<LI><A HREF="001360.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1360">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01315893389-01315902815- -->
+<LI><A HREF="001361.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1361">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--1 01315893389-01316668158- -->
+<LI><A HREF="001367.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1367">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01315893389-01316674877- -->
+<LI><A HREF="001368.html">[Mageia-webteam] [Bug 2727] bugzilla mail list subject line has changed format from [Bug 1234] to [bugs]
+</A><A NAME="1368">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+</UL>
+<!--0 01315943372- -->
+<LI><A HREF="001362.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A><A NAME="1362">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01317070840- -->
+<LI><A HREF="001369.html">[Mageia-webteam] [Bug 434] Use email as a contact/id for mirror admin
+</A><A NAME="1369">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01317071669- -->
+<LI><A HREF="001370.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A><A NAME="1370">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01317071843- -->
+<LI><A HREF="001371.html">[Mageia-webteam] [Bug 530] Restrict /packages POST to buildsystem host IP
+</A><A NAME="1371">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01317126897- -->
+<LI><A HREF="001372.html">[Mageia-webteam] wrong mail address in &quot;mageia.org Mailing Lists&quot; main page
+</A><A NAME="1372">&nbsp;</A>
+<I>Philippe DIDIER
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Sep 27 14:34:57 CEST 2011</i><br>
+ <b>Archived on:</b> <i>Wed Sep 28 11:33:27 CEST 2011</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/2012-April.txt.gz b/zarb-ml/mageia-webteam/2012-April.txt.gz
new file mode 100644
index 000000000..2357de0f3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-April/001875.html b/zarb-ml/mageia-webteam/2012-April/001875.html
new file mode 100644
index 000000000..df58094b4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001875.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5182] [New] The French legal version of Mageia.Org's statutes are not available on the wiki
+ </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%205182%5D%20%5BNew%5D%20The%20French%20legal%20version%20of%0A%20Mageia.Org%27s%20statutes%20are%20not%20available%20on%20the%20wiki&In-Reply-To=%3Cbug-5182-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="Next" HREF="001876.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5182] [New] The French legal version of Mageia.Org's statutes are not available on the wiki</H1>
+ <B>R&#195;&#169;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205182%5D%20%5BNew%5D%20The%20French%20legal%20version%20of%0A%20Mageia.Org%27s%20statutes%20are%20not%20available%20on%20the%20wiki&In-Reply-To=%3Cbug-5182-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5182] [New] The French legal version of Mageia.Org's statutes are not available on the wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 1 22:25:14 CEST 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001876.html">[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1875">[ date ]</a>
+ <a href="thread.html#1875">[ thread ]</a>
+ <a href="subject.html#1875">[ subject ]</a>
+ <a href="author.html#1875">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5182">https://bugs.mageia.org/show_bug.cgi?id=5182</A>
+
+ Summary: The French legal version of Mageia.Org's statutes are
+ not available on the wiki
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">remi at verschelde.fr</A>
+
+
+I would like the French statutes to be on the EN wiki, as they were on the
+temporary wiki. It seems that the page was lost in the process when the
+temporary wiki was imported to the new one, and now the page
+<A HREF="https://wiki.mageia.org/en/Org_Statutes">https://wiki.mageia.org/en/Org_Statutes</A> provides a dead link.
+
+Could it be possible to add these French statutes to the wiki, or if French
+content should not be displayed on the EN wiki, provide a link to a PDF hosted
+on www.mageia.org/en/about/ ?
+
+--
+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>Next message: <A HREF="001876.html">[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1875">[ date ]</a>
+ <a href="thread.html#1875">[ thread ]</a>
+ <a href="subject.html#1875">[ subject ]</a>
+ <a href="author.html#1875">[ 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/2012-April/001876.html b/zarb-ml/mageia-webteam/2012-April/001876.html
new file mode 100644
index 000000000..256f1fe1d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001876.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki
+ </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%205182%5D%20The%20French%20legal%20version%20of%0A%20Mageia.Org%27s%20statutes%20are%20not%20available%20on%20the%20wiki&In-Reply-To=%3C20120401203204.E57CD42653%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="001875.html">
+ <LINK REL="Next" HREF="001877.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205182%5D%20The%20French%20legal%20version%20of%0A%20Mageia.Org%27s%20statutes%20are%20not%20available%20on%20the%20wiki&In-Reply-To=%3C20120401203204.E57CD42653%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 1 22:32:04 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001875.html">[Mageia-webteam] [Bug 5182] [New] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A></li>
+ <LI>Next message: <A HREF="001877.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1876">[ date ]</a>
+ <a href="thread.html#1876">[ thread ]</a>
+ <a href="subject.html#1876">[ subject ]</a>
+ <a href="author.html#1876">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5182">https://bugs.mageia.org/show_bug.cgi?id=5182</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ 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; 2012-04-01 22:32:05 CEST ---
+The constitution is currently available in the svn, French original and English
+translation (see <A HREF="http://svnweb.mageia.org/soft/constitution/">http://svnweb.mageia.org/soft/constitution/</A> ). I would not
+copy them to the Wiki, for not keeping a separate version unsynchronised.
+
+I will push the constitution from the svn to the Website, under the */about
+section, this week.
+
+--
+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="001875.html">[Mageia-webteam] [Bug 5182] [New] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A></li>
+ <LI>Next message: <A HREF="001877.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1876">[ date ]</a>
+ <a href="thread.html#1876">[ thread ]</a>
+ <a href="subject.html#1876">[ subject ]</a>
+ <a href="author.html#1876">[ 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/2012-April/001877.html b/zarb-ml/mageia-webteam/2012-April/001877.html
new file mode 100644
index 000000000..a861f05db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001877.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+ </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%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120402053930.384B440774%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="001876.html">
+ <LINK REL="Next" HREF="001878.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120402053930.384B440774%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 2 07:39:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001876.html">[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A></li>
+ <LI>Next message: <A HREF="001878.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1877">[ date ]</a>
+ <a href="thread.html#1877">[ thread ]</a>
+ <a href="subject.html#1877">[ subject ]</a>
+ <a href="author.html#1877">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Keywords|NEEDINFO |
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-sysadm at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #5 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-04-02 07:39:30 CEST ---
+(In reply to comment #3)
+&gt;<i> well it should be ok <A HREF="ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/mageia_timestamp">ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/mageia_timestamp</A>
+</I>
+that is:
+1331995801
+Sat Mar 17 15:50:01 2012 now
+
+maybe this mirror should be removed after all
+
+--
+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="001876.html">[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A></li>
+ <LI>Next message: <A HREF="001878.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1877">[ date ]</a>
+ <a href="thread.html#1877">[ thread ]</a>
+ <a href="subject.html#1877">[ subject ]</a>
+ <a href="author.html#1877">[ 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/2012-April/001878.html b/zarb-ml/mageia-webteam/2012-April/001878.html
new file mode 100644
index 000000000..404dc5e93
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001878.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+ </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%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120402054125.D06C74265A%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="001877.html">
+ <LINK REL="Next" HREF="001879.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120402054125.D06C74265A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 2 07:41:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001877.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001879.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1878">[ date ]</a>
+ <a href="thread.html#1878">[ thread ]</a>
+ <a href="subject.html#1878">[ subject ]</a>
+ <a href="author.html#1878">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+--- Comment #6 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-04-02 09:41:25 CEST ---
+(In reply to comment #5)
+&gt;<i> (In reply to comment #3)
+</I>&gt;<i> &gt; well it should be ok <A HREF="ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/mageia_timestamp">ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/mageia_timestamp</A>
+</I>&gt;<i>
+</I>&gt;<i> that is:
+</I>&gt;<i> 1331995801
+</I>&gt;<i> Sat Mar 17 15:50:01 2012 now
+</I>&gt;<i>
+</I>&gt;<i> maybe this mirror should be removed after all
+</I>
+In case I should have assigned to webteam instead of to sysadmin: please tell
+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="001877.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001879.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1878">[ date ]</a>
+ <a href="thread.html#1878">[ thread ]</a>
+ <a href="subject.html#1878">[ subject ]</a>
+ <a href="author.html#1878">[ 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/2012-April/001879.html b/zarb-ml/mageia-webteam/2012-April/001879.html
new file mode 100644
index 000000000..668acffa9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001879.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+ </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%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120402102639.CA4D84266F%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="001878.html">
+ <LINK REL="Next" HREF="001880.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120402102639.CA4D84266F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 2 12:26:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001878.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001880.html">[Mageia-webteam] Mageia 2 Web site changes option
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1879">[ date ]</a>
+ <a href="thread.html#1879">[ thread ]</a>
+ <a href="subject.html#1879">[ subject ]</a>
+ <a href="author.html#1879">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |2844
+ RPM Package|drakx-installer-stage2 |
+
+--
+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="001878.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001880.html">[Mageia-webteam] Mageia 2 Web site changes option
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1879">[ date ]</a>
+ <a href="thread.html#1879">[ thread ]</a>
+ <a href="subject.html#1879">[ subject ]</a>
+ <a href="author.html#1879">[ 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/2012-April/001880.html b/zarb-ml/mageia-webteam/2012-April/001880.html
new file mode 100644
index 000000000..073be31ba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001880.html
@@ -0,0 +1,168 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia 2 Web site changes option
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%202%20Web%20site%20changes%20option&In-Reply-To=%3CCANa9xwvY1kA7eQ0g4j%3Dyw0YBC1mLJH%3De0Hs005os%3DOu-87eZYA%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="001879.html">
+ <LINK REL="Next" HREF="001881.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia 2 Web site changes option</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%202%20Web%20site%20changes%20option&In-Reply-To=%3CCANa9xwvY1kA7eQ0g4j%3Dyw0YBC1mLJH%3De0Hs005os%3DOu-87eZYA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia 2 Web site changes option">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Apr 3 17:44:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001879.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001881.html">[Mageia-webteam] Planets.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1880">[ date ]</a>
+ <a href="thread.html#1880">[ thread ]</a>
+ <a href="subject.html#1880">[ subject ]</a>
+ <a href="author.html#1880">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there, (please followup the discussion in mageia-marketing, not in
+-artwork or -webteam)
+
+here's a peak at one possible option for Mageia 2 release Web site
+update (not full at once, but for most important pages, and driving
+other pages into that direction too).
+
+The rationale behind this update is articulated as such:
+
+ A) the home page (mageia.org/) is targetted at one-time/first
+time/casual visitors, with a single, main call to action: download
+Mageia. There are others actions, such as: contribute, get older
+version(s), learn more about the product, and the community and the
+project. But there is no other navigation. It's really a poster-like
+page, direct to a main action, with the following main channel for
+visitors:
+
+ - home =&gt; action 1: get the software
+ - download =&gt; action 1: select your download
+ - while-downloading =&gt; actions: how to use, how to contribute, learn
+more about Mageia, what feedback you could provide
+
+Pushing this page calls for updating the Downloads index page design
+as well as the post-download page.
+
+
+ B) a dedicated, community home page is for people coming back again
+and again (contributors, activ users) with three main incoming
+sources:
+ - start.mageia.org (loaded by Mageia browsers)
+ - a mageia.org/coop or another keyword.
+ - home page lower priority action (see bottom nav links &quot;Community&quot;)
+
+Here go: news, calendar, teams, docs, and links to the various
+resources/tools on mageia.org in an organized way.
+
+
+ C) for past-home page pages, a new top navigation bar, organizing
+more of the site and making it more accessible from everywhere;
+especially, for easier embedding/deployment/update of it, the navbar
+will be available in different fashion: a dynamic Web service will
+produce the needed HTML/JS for it, and a JS snippet will allow to
+dynamically insert it into all sites (so there's little integration
+work). The top navigation bar exact content is still up to debate, but
+the very top categories should not exceed 5/6 entries at most.
+
+A, B and C are not strongly attached to each other, however they are
+part of the same proposal. There's a missing download page (and
+animation) from A page, but that's a start to go.
+
+A (home page) is <A HREF="http://i.imgur.com/7Vqq6.png">http://i.imgur.com/7Vqq6.png</A> . It's a bold move for
+us. It's heavily inspired from a Firefox page which is a nice example
+of a product landing page. From a charter point of view, it reuses the
+white/blue gradient from our original logo and site elements. It may
+benefit from a very light, thin pattern in the blue background, or not
+(not sure). Text copy may need tweaks.
+
+B (community page) is ... still pending, I'm not satisfied with what I
+have so far. We have <A HREF="http://www.mageia.org/contribute/">http://www.mageia.org/contribute/</A> but I'm not
+sure to change this one right now. Hope to have something to roll out
+for review next week.
+
+C (global nav) is ... pending too. I will roll it out for testing
+later this week. What it needs is to refine its structure; currently
+planned is:
+
+ * Mageia (links to a special map page of the site)
+ * About Us: mageia project info/history &amp; mageia.org organization
+info, what is under <A HREF="http://mageia.org/en/about/">http://mageia.org/en/about/</A> already
+ * Downloads:
+ - Mageia 1 and 2 downloads and features pages,
+ - updates downloads info and mirrors
+ - mirrors
+ - specific software (we used to host a specific mgaonline package for)
+ * Community:
+ - news (blogs, planets, other?), calendar
+ - introduction to contributing
+ - forums, mailing-lists, IRC
+ - wiki, bugzilla, other doc resources
+ - contributors corners
+ * Support: current <A HREF="http://www.mageia.org/en/support/">http://www.mageia.org/en/support/</A> page redispatched:
+ - users support: community and commercial vendors
+ - (security) updates info
+ - product lifecycle
+ - hardware stuff
+ * Contribute: necessary? as a short link to the contributors guide
+ * About You: not available for now, maybe moved somewhere else, but
+supported by identity and other mageia.org services, would act as a
+portal for every single user, to monitor her own activity/data.
+ * Search (over mageia.org domain)
+
+This new nav answer three concerns:
+ - /platform: allow an easier, consistent deployment of the top nav
+updates through all mageia.org; using here a javascript snippet;
+ - /layout: embed the Mageia logo in the navigation bar, so that it
+too brands the page to the project;
+ - /content: better structure the mageia.org domain into main activities/zones.
+
+I know that some may worry that some links currently in the top nav
+bar won't be available/visible anymore in all mageia.org as a first
+level item. It's a matter of context and of the very details of the
+implementation and the navigation channels.
+
+I don't have a B plan about that at this time, but it's not mandatory
+to change all things either. So it either works, or it doesn't.
+
+
+Note that (for a future/long term question), separating what is about
+the product (Features, Downloads, Support, News) from what is about
+the project/community (About Us, Community, part of Support,
+Contribute) would help a lot (different life cycles for the sites),
+but it needs to have a separate name for each too.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001879.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001881.html">[Mageia-webteam] Planets.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1880">[ date ]</a>
+ <a href="thread.html#1880">[ thread ]</a>
+ <a href="subject.html#1880">[ subject ]</a>
+ <a href="author.html#1880">[ 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/2012-April/001881.html b/zarb-ml/mageia-webteam/2012-April/001881.html
new file mode 100644
index 000000000..ea4cb0cf5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001881.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Planets.mageia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Planets.mageia.org&In-Reply-To=%3C4F7E4343.1060804%40linuxpunks.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001880.html">
+ <LINK REL="Next" HREF="001882.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Planets.mageia.org</H1>
+ <B>Josh King (dotmil)</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Planets.mageia.org&In-Reply-To=%3C4F7E4343.1060804%40linuxpunks.com%3E"
+ TITLE="[Mageia-webteam] Planets.mageia.org">josh at linuxpunks.com
+ </A><BR>
+ <I>Fri Apr 6 03:13:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001880.html">[Mageia-webteam] Mageia 2 Web site changes option
+</A></li>
+ <LI>Next message: <A HREF="001882.html">[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1881">[ date ]</a>
+ <a href="thread.html#1881">[ thread ]</a>
+ <a href="subject.html#1881">[ subject ]</a>
+ <a href="author.html#1881">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 04/05/2012 08:09 PM, Josh King (dotmil) wrote:
+Hi All,
+
+After a lengthy absence, it's time to update the planets again. The
+guidelines for having your blog added can be found at the following wiki
+page: <A HREF="https://wiki.mageia.org/en/Planets.">https://wiki.mageia.org/en/Planets.</A> We want them to be full of
+those who make Mageia what it is ahead of the 2 launch. This doesn't
+need to be only developers or major team members, because we *all* are
+Mageia.
+
+For now, until a more formal process is in place, please just send me
+your name, and a link to your blog. The blogs should primarily be
+related to Mageia and/or Free Software and are expected to comply with
+the Mageia Code of Conduct (<A HREF="http://www.mageia.org/en/about/code-of-conduct/">http://www.mageia.org/en/about/code-of-conduct/</A>)
+
+Any questions or comments please reply to this message or email me
+directly. We would also eventually like to come up with a better overall
+design for the planets, so if you are someone who is web design
+inclined, please also contact me.
+
+Thanks!
+--
+IRC: dotmil
+Skype: linuxpunk1
+AIM: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">josh at linuxpunks.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001880.html">[Mageia-webteam] Mageia 2 Web site changes option
+</A></li>
+ <LI>Next message: <A HREF="001882.html">[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1881">[ date ]</a>
+ <a href="thread.html#1881">[ thread ]</a>
+ <a href="subject.html#1881">[ subject ]</a>
+ <a href="author.html#1881">[ 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/2012-April/001882.html b/zarb-ml/mageia-webteam/2012-April/001882.html
new file mode 100644
index 000000000..b75af8900
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001882.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the 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%205313%5D%20%5BNew%5D%20%5BWISH%5D%20GUI%20for%20the%20bugzilla%3F&In-Reply-To=%3Cbug-5313-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="001881.html">
+ <LINK REL="Next" HREF="001883.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205313%5D%20%5BNew%5D%20%5BWISH%5D%20GUI%20for%20the%20bugzilla%3F&In-Reply-To=%3Cbug-5313-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 9 22:29:05 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001881.html">[Mageia-webteam] Planets.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001883.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1882">[ date ]</a>
+ <a href="thread.html#1882">[ thread ]</a>
+ <a href="subject.html#1882">[ subject ]</a>
+ <a href="author.html#1882">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5313">https://bugs.mageia.org/show_bug.cgi?id=5313</A>
+
+ Summary: [WISH] GUI for the bugzilla?
+ 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">kristoffer.grundstrom1983 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>
+
+
+Description of problem: Would it be possible to make a GUI for the bugzilla? I
+mean like either turning ABRT or bug-buddy into a bugzilla-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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001881.html">[Mageia-webteam] Planets.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001883.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1882">[ date ]</a>
+ <a href="thread.html#1882">[ thread ]</a>
+ <a href="subject.html#1882">[ subject ]</a>
+ <a href="author.html#1882">[ 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/2012-April/001883.html b/zarb-ml/mageia-webteam/2012-April/001883.html
new file mode 100644
index 000000000..016becd5f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001883.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5313] [WISH] GUI for the 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%205313%5D%20%5BWISH%5D%20GUI%20for%20the%20bugzilla%3F&In-Reply-To=%3C20120409203021.B428A43A38%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="001882.html">
+ <LINK REL="Next" HREF="001884.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205313%5D%20%5BWISH%5D%20GUI%20for%20the%20bugzilla%3F&In-Reply-To=%3C20120409203021.B428A43A38%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 9 22:30:21 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001882.html">[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI>Next message: <A HREF="001884.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1883">[ date ]</a>
+ <a href="thread.html#1883">[ thread ]</a>
+ <a href="subject.html#1883">[ subject ]</a>
+ <a href="author.html#1883">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5313">https://bugs.mageia.org/show_bug.cgi?id=5313</A>
+
+--- Comment #1 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2012-04-09 22:30:21 CEST ---
+I'll send this wish to discuss-mailinglist 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="001882.html">[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI>Next message: <A HREF="001884.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1883">[ date ]</a>
+ <a href="thread.html#1883">[ thread ]</a>
+ <a href="subject.html#1883">[ subject ]</a>
+ <a href="author.html#1883">[ 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/2012-April/001884.html b/zarb-ml/mageia-webteam/2012-April/001884.html
new file mode 100644
index 000000000..79aae556f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001884.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5313] [WISH] GUI for the 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%205313%5D%20%5BWISH%5D%20GUI%20for%20the%20bugzilla%3F&In-Reply-To=%3C20120410064429.968A843AE9%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="001883.html">
+ <LINK REL="Next" HREF="001885.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205313%5D%20%5BWISH%5D%20GUI%20for%20the%20bugzilla%3F&In-Reply-To=%3C20120410064429.968A843AE9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 10 08:44:29 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001883.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI>Next message: <A HREF="001885.html">[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1884">[ date ]</a>
+ <a href="thread.html#1884">[ thread ]</a>
+ <a href="subject.html#1884">[ subject ]</a>
+ <a href="author.html#1884">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5313">https://bugs.mageia.org/show_bug.cgi?id=5313</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |WONTFIX
+
+--- Comment #2 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-04-10 10:44:29 CEST ---
+Hi Kristoffer,
+
+Unless anyone steps forward to work on this, I don't see this magically happen
+within the next year or so.
+
+Please try to be moderate in using bugzilla as a brainstorming tool.
+
+--
+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="001883.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI>Next message: <A HREF="001885.html">[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1884">[ date ]</a>
+ <a href="thread.html#1884">[ thread ]</a>
+ <a href="subject.html#1884">[ subject ]</a>
+ <a href="author.html#1884">[ 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/2012-April/001885.html b/zarb-ml/mageia-webteam/2012-April/001885.html
new file mode 100644
index 000000000..506b02f6b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001885.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3
+ </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%205399%5D%20%5BNew%5D%20wiki%20points%20to%20Mageia%202%20beta%202%0A%09for%20beta%203&In-Reply-To=%3Cbug-5399-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="001884.html">
+ <LINK REL="Next" HREF="001886.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3</H1>
+ <B>Herbert Poetzl</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205399%5D%20%5BNew%5D%20wiki%20points%20to%20Mageia%202%20beta%202%0A%09for%20beta%203&In-Reply-To=%3Cbug-5399-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 14 16:23:00 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001884.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI>Next message: <A HREF="001886.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1885">[ date ]</a>
+ <a href="thread.html#1885">[ thread ]</a>
+ <a href="subject.html#1885">[ subject ]</a>
+ <a href="author.html#1885">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5399">https://bugs.mageia.org/show_bug.cgi?id=5399</A>
+
+ Summary: wiki points to Mageia 2 beta 2 for beta 3
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">herbert at 13thfloor.at</A>
+
+
+Description of problem:
+<A HREF="https://wiki.mageia.org/en/Mageia_2_beta3#Download_it">https://wiki.mageia.org/en/Mageia_2_beta3#Download_it</A>
+points to
+<A HREF="http://www.mageia.org/en/2/">http://www.mageia.org/en/2/</A>
+which still lists beta 2 images/torrents
+
+How reproducible:
+always
+
+Steps to Reproduce:
+1. goto <A HREF="https://wiki.mageia.org/en/Mageia_2_beta3#Download_it">https://wiki.mageia.org/en/Mageia_2_beta3#Download_it</A>
+2. click on the www.mageia.org link
+3.
+
+--
+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="001884.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A></li>
+ <LI>Next message: <A HREF="001886.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1885">[ date ]</a>
+ <a href="thread.html#1885">[ thread ]</a>
+ <a href="subject.html#1885">[ subject ]</a>
+ <a href="author.html#1885">[ 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/2012-April/001886.html b/zarb-ml/mageia-webteam/2012-April/001886.html
new file mode 100644
index 000000000..576db248e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001886.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+ </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%205399%5D%20wiki%20points%20to%20Mageia%202%20beta%202%20for%20beta%0A%093&In-Reply-To=%3C20120414150348.7513843D09%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="001885.html">
+ <LINK REL="Next" HREF="001887.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3</H1>
+ <B>James Kerr</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205399%5D%20wiki%20points%20to%20Mageia%202%20beta%202%20for%20beta%0A%093&In-Reply-To=%3C20120414150348.7513843D09%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 14 17:03:48 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001885.html">[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI>Next message: <A HREF="001887.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1886">[ date ]</a>
+ <a href="thread.html#1886">[ thread ]</a>
+ <a href="subject.html#1886">[ subject ]</a>
+ <a href="author.html#1886">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5399">https://bugs.mageia.org/show_bug.cgi?id=5399</A>
+
+--- Comment #1 from James Kerr &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jim at jkerr82508.free-online.co.uk</A>&gt; 2012-04-14 17:03:48 CEST ---
+That page is &quot;work in process&quot;. Beta 3 has not been released yet.
+
+--
+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="001885.html">[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI>Next message: <A HREF="001887.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1886">[ date ]</a>
+ <a href="thread.html#1886">[ thread ]</a>
+ <a href="subject.html#1886">[ subject ]</a>
+ <a href="author.html#1886">[ 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/2012-April/001887.html b/zarb-ml/mageia-webteam/2012-April/001887.html
new file mode 100644
index 000000000..3d637f687
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001887.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+ </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%205399%5D%20wiki%20points%20to%20Mageia%202%20beta%202%20for%20beta%0A%093&In-Reply-To=%3C20120414160607.EAFB343B5F%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="001886.html">
+ <LINK REL="Next" HREF="001888.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205399%5D%20wiki%20points%20to%20Mageia%202%20beta%202%20for%20beta%0A%093&In-Reply-To=%3C20120414160607.EAFB343B5F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 14 18:06:07 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001886.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI>Next message: <A HREF="001888.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1887">[ date ]</a>
+ <a href="thread.html#1887">[ thread ]</a>
+ <a href="subject.html#1887">[ subject ]</a>
+ <a href="author.html#1887">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5399">https://bugs.mageia.org/show_bug.cgi?id=5399</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |INVALID
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-04-14 18:06:08 CEST ---
+yep <A HREF="http://blog.mageia.org/en/2012/04/14/mageia-2-beta-3-is-on-the-way/">http://blog.mageia.org/en/2012/04/14/mageia-2-beta-3-is-on-the-way/</A>
+
+The page on the wiki exist since some days :)
+
+I close, romain will update the www when it's 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001886.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI>Next message: <A HREF="001888.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1887">[ date ]</a>
+ <a href="thread.html#1887">[ thread ]</a>
+ <a href="subject.html#1887">[ subject ]</a>
+ <a href="author.html#1887">[ 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/2012-April/001888.html b/zarb-ml/mageia-webteam/2012-April/001888.html
new file mode 100644
index 000000000..ca42d2905
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001888.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+ </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%203981%5D%20Bugzilla%20should%20add%20CCs%20to%20new%20bug%20when%0A%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3C20120423003507.C55E644009%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="001887.html">
+ <LINK REL="Next" HREF="001889.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate</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%203981%5D%20Bugzilla%20should%20add%20CCs%20to%20new%20bug%20when%0A%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3C20120423003507.C55E644009%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 23 02:35:07 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001887.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI>Next message: <A HREF="001889.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1888">[ date ]</a>
+ <a href="thread.html#1888">[ thread ]</a>
+ <a href="subject.html#1888">[ subject ]</a>
+ <a href="author.html#1888">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3981">https://bugs.mageia.org/show_bug.cgi?id=3981</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
+----------------------------------------------------------------------------
+ Severity|normal |enhancement
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>
+ See Also| |<A HREF="https://bugzilla.mozilla.or">https://bugzilla.mozilla.or</A>
+ | |g/show_bug.cgi?id=108983
+
+--- 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; 2012-04-23 04:35:07 CEST ---
+Bugzilla doesn't merge CC lists, see
+<A HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=108983">https://bugzilla.mozilla.org/show_bug.cgi?id=108983</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="001887.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A></li>
+ <LI>Next message: <A HREF="001889.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1888">[ date ]</a>
+ <a href="thread.html#1888">[ thread ]</a>
+ <a href="subject.html#1888">[ subject ]</a>
+ <a href="author.html#1888">[ 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/2012-April/001889.html b/zarb-ml/mageia-webteam/2012-April/001889.html
new file mode 100644
index 000000000..248ced2c9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001889.html
@@ -0,0 +1,111 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120423011123.3475D4402E%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="001888.html">
+ <LINK REL="Next" HREF="001890.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120423011123.3475D4402E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 23 03:11:23 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001888.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="001890.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1889">[ date ]</a>
+ <a href="thread.html#1889">[ thread ]</a>
+ <a href="subject.html#1889">[ subject ]</a>
+ <a href="author.html#1889">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</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 #26 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-04-23 03:11:22 CEST ---
+(In reply to comment #5)
+&gt;<i> we should simplify the user work, we shouldn't assume that user automatically
+</I>&gt;<i> searchs for dulpicates, it is a problem of the project contributors that can be
+</I>&gt;<i> resolved manually or automatically (as for firefox, that before the filling of
+</I>&gt;<i> the bug, shows similar bugs).
+</I>
+If Mageia was running Bugzilla 4.0 or 4.2, you would get this feature for free
+(i.e. the automatic search for duplicates). But as long as you run 3.6, this
+won't happen.
+
+
+(In reply to comment #8)
+&gt;<i> How does having an extra list to choose from, work in other bugzilla's?
+</I>&gt;<i> Does anybody happen to know that? I would love to see some statistics :)
+</I>
+Another field won't help. More fields to set = more confusion to users. What
+you could do, though, is to have more components than just &quot;RPM packages&quot;. For
+instance, RedHat has one component per package. This way, when you select the
+component/package, this automatically sets the assignee and the CC list. The
+problem with this solution is that this means a huge list of components, and
+then you have to keep your list of assignees and CC members up-to-date. Gentoo
+uses more generic components, such as KDE or GNOME or kernel or games or
+printing, which is much more manageable. OpenSUSE uses something similar.
+
+
+(In reply to comment #22)
+&gt;<i> For this, I'm subscribed to the bugs list, so I see all bug report
+</I>&gt;<i> messages already. Those that are assigned to qa, I see twice.
+</I>&gt;<i> Those that I've added a comment to, I see three times.
+</I>
+What's the point to get 3 times the same email? Why don't you simply use
+Bugzilla capabilities to watch other users, e.g. some default assignees and QA
+contacts? You would get only one email.
+
+
+(In reply to comment #23)
+&gt;<i> Although the specific form you suggested would be problematic in my mind as it
+</I>&gt;<i> would require patching Bugzilla, which would make it harder to maintain.
+</I>
+Patching Bugzilla? You know you can use extensions instead? No code hacks, easy
+maintenance, easy upgrades.
+
+--
+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="001888.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="001890.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1889">[ date ]</a>
+ <a href="thread.html#1889">[ thread ]</a>
+ <a href="subject.html#1889">[ subject ]</a>
+ <a href="author.html#1889">[ 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/2012-April/001890.html b/zarb-ml/mageia-webteam/2012-April/001890.html
new file mode 100644
index 000000000..9fce09030
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001890.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.2
+ </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.2&In-Reply-To=%3C20120423050110.0120B4406C%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="001889.html">
+ <LINK REL="Next" HREF="001891.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120423050110.0120B4406C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 23 07:01:09 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001889.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001891.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1890">[ date ]</a>
+ <a href="thread.html#1890">[ thread ]</a>
+ <a href="subject.html#1890">[ subject ]</a>
+ <a href="author.html#1890">[ 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 #29 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-04-23 07:01:09 CEST ---
+Just to have it documented here, too:
+
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879#c26">https://bugs.mageia.org/show_bug.cgi?id=3879#c26</A>
+
+(In reply to <A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879#c5">https://bugs.mageia.org/show_bug.cgi?id=3879#c5</A>)
+&gt;<i> we should simplify the user work, we shouldn't assume that user automatically
+</I>&gt;<i> searchs for duplicates, it is a problem of the project contributors that can be
+</I>&gt;<i> resolved manually or automatically (as for firefox, that before the filling of
+</I>&gt;<i> the bug, shows similar bugs).
+</I>
+If Mageia was running Bugzilla 4.0 or 4.2, you would get this feature for free
+(i.e. the automatic search for duplicates). But as long as you run 3.6, this
+won't happen.
+
+--
+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="001889.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001891.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1890">[ date ]</a>
+ <a href="thread.html#1890">[ thread ]</a>
+ <a href="subject.html#1890">[ subject ]</a>
+ <a href="author.html#1890">[ 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/2012-April/001891.html b/zarb-ml/mageia-webteam/2012-April/001891.html
new file mode 100644
index 000000000..46f44460e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001891.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120423062651.228744407E%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="001890.html">
+ <LINK REL="Next" HREF="001892.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120423062651.228744407E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 23 08:26:51 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001890.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001892.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1891">[ date ]</a>
+ <a href="thread.html#1891">[ thread ]</a>
+ <a href="subject.html#1891">[ subject ]</a>
+ <a href="author.html#1891">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #27 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-04-23 10:26:50 CEST ---
+(In reply to comment #26)
+
+Thanks a lot for all the explanations, Fr&#233;d&#233;ric :)
+
+&gt;<i> (In reply to comment #5)
+</I>&gt;<i> &gt; we should simplify the user work, we shouldn't assume that user automatically
+</I>&gt;<i> &gt; searchs for dulpicates, it is a problem of the project contributors that can be
+</I>&gt;<i> &gt; resolved manually or automatically (as for firefox, that before the filling of
+</I>&gt;<i> &gt; the bug, shows similar bugs).
+</I>&gt;<i>
+</I>&gt;<i> If Mageia was running Bugzilla 4.0 or 4.2, you would get this feature for free
+</I>&gt;<i> (i.e. the automatic search for duplicates). But as long as you run 3.6, this
+</I>&gt;<i> won't happen.
+</I>&gt;<i>
+</I>
+boklm said that Bugzilla upgrade is planned after Mga 2 release. (so no risk of
+breaking it while we need it most for beta and rc)
+
+&gt;<i>
+</I>&gt;<i> (In reply to comment #8)
+</I>&gt;<i> &gt; How does having an extra list to choose from, work in other bugzilla's?
+</I>&gt;<i> &gt; Does anybody happen to know that? I would love to see some statistics :)
+</I>&gt;<i>
+</I>&gt;<i> Another field won't help. More fields to set = more confusion to users. What
+</I>&gt;<i> you could do, though, is to have more components than just &quot;RPM packages&quot;.
+</I>&lt;snip&gt;
+&gt;<i> Gentoo
+</I>&gt;<i> uses more generic components, such as KDE or GNOME or kernel or games or
+</I>&gt;<i> printing, which is much more manageable. OpenSUSE uses something similar.
+</I>
+In that case, if two persons have a crash in a certain game, and one of them
+observes the crash only happens in one DE, but not in the another DE, one of
+them will set the &quot;game&quot; component and the other will set the component to the
+DE. Will the last one of those two who tries to report the bug automatically
+see that the first one might be a duplicate?
+
+&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> (In reply to comment #22)
+</I>&gt;<i> &gt; For this, I'm subscribed to the bugs list, so I see all bug report
+</I>&gt;<i> &gt; messages already. Those that are assigned to qa, I see twice.
+</I>&gt;<i> &gt; Those that I've added a comment to, I see three times.
+</I>&gt;<i>
+</I>&gt;<i> What's the point to get 3 times the same email? Why don't you simply use
+</I>&gt;<i> Bugzilla capabilities to watch other users, e.g. some default assignees and QA
+</I>&gt;<i> contacts? You would get only one email.
+</I>&gt;<i>
+</I>
+That you can filter them to different folders for easier management. In my
+case: I use one folder for bugs that I commented in before, because a new mail
+might be a reply to my comment, one folder for documentation bugs, for when I'm
+working for doc team, one for all bugs, mostly needed for bugsquad work and for
+seeing what is happening in cauldron. I should have one more folder, for
+someone I'm following because he accidentally messed things up in bugzilla
+twice, but I still need to make that filter.
+
+--
+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="001890.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001892.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1891">[ date ]</a>
+ <a href="thread.html#1891">[ thread ]</a>
+ <a href="subject.html#1891">[ subject ]</a>
+ <a href="author.html#1891">[ 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/2012-April/001892.html b/zarb-ml/mageia-webteam/2012-April/001892.html
new file mode 100644
index 000000000..baa393796
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001892.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120423154953.C1A8F4409A%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="001891.html">
+ <LINK REL="Next" HREF="001893.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120423154953.C1A8F4409A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 23 17:49:53 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001891.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001893.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1892">[ date ]</a>
+ <a href="thread.html#1892">[ thread ]</a>
+ <a href="subject.html#1892">[ subject ]</a>
+ <a href="author.html#1892">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #28 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-04-23 17:49:53 CEST ---
+(In reply to comment #27)
+&gt;<i> Will the last one of those two who tries to report the bug automatically
+</I>&gt;<i> see that the first one might be a duplicate?
+</I>
+Yes, Because Bugzilla will look for duplicates in the same product, so if the
+two bugs are filed in two different components of the same product, Bugzilla
+will find the first bug (unless the titles of the bugs are too different, as
+Bugzilla is only comparing bug titles to find duplicates).
+
+--
+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="001891.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001893.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1892">[ date ]</a>
+ <a href="thread.html#1892">[ thread ]</a>
+ <a href="subject.html#1892">[ subject ]</a>
+ <a href="author.html#1892">[ 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/2012-April/001893.html b/zarb-ml/mageia-webteam/2012-April/001893.html
new file mode 100644
index 000000000..a638b2fdd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001893.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120423223043.96E77440A8%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="001892.html">
+ <LINK REL="Next" HREF="001894.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120423223043.96E77440A8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 24 00:30:43 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001892.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001894.html">[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1893">[ date ]</a>
+ <a href="thread.html#1893">[ thread ]</a>
+ <a href="subject.html#1893">[ subject ]</a>
+ <a href="author.html#1893">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #29 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-04-24 02:30:43 CEST ---
+&gt;<i>as Bugzilla is only comparing bug titles to find duplicates).
+</I>
+that can be a problem with drakbug but we are not here with that :)
+
+--
+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="001892.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001894.html">[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1893">[ date ]</a>
+ <a href="thread.html#1893">[ thread ]</a>
+ <a href="subject.html#1893">[ subject ]</a>
+ <a href="author.html#1893">[ 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/2012-April/001894.html b/zarb-ml/mageia-webteam/2012-April/001894.html
new file mode 100644
index 000000000..8bbb84b89
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001894.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)
+ </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%205620%5D%20%5BNew%5D%20Add%20a%20direct%20link%20to%20the%20errata%0A%09%28for%20the%20release%29&In-Reply-To=%3Cbug-5620-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="001893.html">
+ <LINK REL="Next" HREF="001895.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205620%5D%20%5BNew%5D%20Add%20a%20direct%20link%20to%20the%20errata%0A%09%28for%20the%20release%29&In-Reply-To=%3Cbug-5620-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 26 15:36:45 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001893.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001895.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1894">[ date ]</a>
+ <a href="thread.html#1894">[ thread ]</a>
+ <a href="subject.html#1894">[ subject ]</a>
+ <a href="author.html#1894">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5620">https://bugs.mageia.org/show_bug.cgi?id=5620</A>
+
+ Summary: Add a direct link to the errata (for the release)
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/en/2/">http://www.mageia.org/en/2/</A>
+ 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">manuel at hiebel.eu</A>
+
+
+Description of problem:
+
+Some not critical but annoying bugs will not get fixed for mga 2 like
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=4299">https://bugs.mageia.org/show_bug.cgi?id=4299</A>
+
+
+It would be great to a have a direct link so more people read, at least, the
+first part of the errata, aka bugs relating to the media. Because for now (mga
+1) you have a least to 'click' twice for get the link.
+
+<A HREF="https://wiki.mageia.org/en/Mageia_2_Errata">https://wiki.mageia.org/en/Mageia_2_Errata</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="001893.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001895.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1894">[ date ]</a>
+ <a href="thread.html#1894">[ thread ]</a>
+ <a href="subject.html#1894">[ subject ]</a>
+ <a href="author.html#1894">[ 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/2012-April/001895.html b/zarb-ml/mageia-webteam/2012-April/001895.html
new file mode 100644
index 000000000..89908f97b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001895.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+ </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%205620%5D%20Add%20a%20direct%20link%20to%20the%20errata%20%28for%0A%09the%20release%29&In-Reply-To=%3C20120426133658.19D1144179%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="001894.html">
+ <LINK REL="Next" HREF="001897.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205620%5D%20Add%20a%20direct%20link%20to%20the%20errata%20%28for%0A%09the%20release%29&In-Reply-To=%3C20120426133658.19D1144179%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 26 15:36:58 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001894.html">[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)
+</A></li>
+ <LI>Next message: <A HREF="001897.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1895">[ date ]</a>
+ <a href="thread.html#1895">[ thread ]</a>
+ <a href="subject.html#1895">[ subject ]</a>
+ <a href="author.html#1895">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5620">https://bugs.mageia.org/show_bug.cgi?id=5620</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |release_blocker
+
+--
+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="001894.html">[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)
+</A></li>
+ <LI>Next message: <A HREF="001897.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1895">[ date ]</a>
+ <a href="thread.html#1895">[ thread ]</a>
+ <a href="subject.html#1895">[ subject ]</a>
+ <a href="author.html#1895">[ 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/2012-April/001896.html b/zarb-ml/mageia-webteam/2012-April/001896.html
new file mode 100644
index 000000000..8d19c0b19
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001896.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20120426140757.8AAC74417D%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="001897.html">
+ <LINK REL="Next" HREF="001898.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20120426140757.8AAC74417D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 26 16:07:57 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001897.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI>Next message: <A HREF="001898.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1896">[ date ]</a>
+ <a href="thread.html#1896">[ thread ]</a>
+ <a href="subject.html#1896">[ subject ]</a>
+ <a href="author.html#1896">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+--- Comment #14 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-04-26 18:07:57 CEST ---
+(In reply to comment #13)
+&gt;<i> I won't be able to work on this for some time. You can assign it to webteam,
+</I>&gt;<i> it's left for someone to pick it up.
+</I>
+Thx, assigning
+
+--
+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="001897.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI>Next message: <A HREF="001898.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1896">[ date ]</a>
+ <a href="thread.html#1896">[ thread ]</a>
+ <a href="subject.html#1896">[ subject ]</a>
+ <a href="author.html#1896">[ 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/2012-April/001897.html b/zarb-ml/mageia-webteam/2012-April/001897.html
new file mode 100644
index 000000000..eab73bac8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001897.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+ </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%205620%5D%20Add%20a%20direct%20link%20to%20the%20errata%20%28for%0A%09the%20release%29&In-Reply-To=%3C20120426162705.B38F544138%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="001895.html">
+ <LINK REL="Next" HREF="001896.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205620%5D%20Add%20a%20direct%20link%20to%20the%20errata%20%28for%0A%09the%20release%29&In-Reply-To=%3C20120426162705.B38F544138%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 26 18:27:05 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001895.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI>Next message: <A HREF="001896.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1897">[ date ]</a>
+ <a href="thread.html#1897">[ thread ]</a>
+ <a href="subject.html#1897">[ subject ]</a>
+ <a href="author.html#1897">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5620">https://bugs.mageia.org/show_bug.cgi?id=5620</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|release_blocker |Normal
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #1 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2012-04-26 18:27:05 CEST ---
+I personally don't see this as a release blocker.
+But yes, there should be a direct link on the download page.
+
+Even if I think most people will only read things like errata and release
+notes, when you put a gun to their had...
+
+--
+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="001895.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI>Next message: <A HREF="001896.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1897">[ date ]</a>
+ <a href="thread.html#1897">[ thread ]</a>
+ <a href="subject.html#1897">[ subject ]</a>
+ <a href="author.html#1897">[ 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/2012-April/001898.html b/zarb-ml/mageia-webteam/2012-April/001898.html
new file mode 100644
index 000000000..b2c23fc05
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001898.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+ </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%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120429125252.5A6F044222%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="001896.html">
+ <LINK REL="Next" HREF="001899.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4483] add the Graphical Reports feature</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%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120429125252.5A6F044222%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4483] add the Graphical Reports feature">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 29 14:52:52 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001896.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="001899.html">[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1898">[ date ]</a>
+ <a href="thread.html#1898">[ thread ]</a>
+ <a href="subject.html#1898">[ subject ]</a>
+ <a href="author.html#1898">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4483">https://bugs.mageia.org/show_bug.cgi?id=4483</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 #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; 2012-04-29 14:52:52 CEST ---
+The reason you see no graph is because your graph is way too big (you want all
+reporters per component, which means a huge array). It's unrelated to some
+missing Perl module. Bugzilla refuses to display the graph if it's too large
+(over 2000x2000 pixels). You should rather use the tabular report:
+
+<A HREF="https://bugs.mageia.org/report.cgi?action=wrap&amp;bug_status=ASSIGNED&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;format=table&amp;x_axis_field=component&amp;y_axis_field=reporter">https://bugs.mageia.org/report.cgi?action=wrap&amp;bug_status=ASSIGNED&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;format=table&amp;x_axis_field=component&amp;y_axis_field=reporter</A>
+
+
+(In reply to comment #1)
+&gt;<i> That's a rather short explanation. Checksetup.pl will also create databases,
+</I>&gt;<i> etc, so i would not run it just to install some package or see what is missing.
+</I>
+You simply have to run: ./checksetup.pl --check-modules
+
+This will not alter the DB or existing files at all. This will simply display
+the information you need.
+
+--
+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="001896.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="001899.html">[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1898">[ date ]</a>
+ <a href="thread.html#1898">[ thread ]</a>
+ <a href="subject.html#1898">[ subject ]</a>
+ <a href="author.html#1898">[ 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/2012-April/001899.html b/zarb-ml/mageia-webteam/2012-April/001899.html
new file mode 100644
index 000000000..935e9fc9c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001899.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component
+ </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%205678%5D%20%5BNew%5D%20Add%20a%20default%20QA%20contact%20for%20the%0A%09Bugzilla%20component&In-Reply-To=%3Cbug-5678-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="001898.html">
+ <LINK REL="Next" HREF="001900.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component</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%205678%5D%20%5BNew%5D%20Add%20a%20default%20QA%20contact%20for%20the%0A%09Bugzilla%20component&In-Reply-To=%3Cbug-5678-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 29 14:56:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001898.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001900.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1899">[ date ]</a>
+ <a href="thread.html#1899">[ thread ]</a>
+ <a href="subject.html#1899">[ subject ]</a>
+ <a href="author.html#1899">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5678">https://bugs.mageia.org/show_bug.cgi?id=5678</A>
+
+ Summary: Add a default QA contact for the Bugzilla component
+ 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">LpSolit at netscape.net</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>
+
+
+One very useful feature of Bugzilla is the ability to watch other users. If the
+Bugzilla component in the Infrastructure product had a default QA contact, I
+could watch this account and get only bugs related to Bugzilla. This default QA
+contact should be unique and only used for this component, to not be spammed by
+bugs reported into other components.
+
+--
+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="001898.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001900.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1899">[ date ]</a>
+ <a href="thread.html#1899">[ thread ]</a>
+ <a href="subject.html#1899">[ subject ]</a>
+ <a href="author.html#1899">[ 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/2012-April/001900.html b/zarb-ml/mageia-webteam/2012-April/001900.html
new file mode 100644
index 000000000..ca0d0e70b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001900.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+ </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%204482%5D%20Remove%20the%20OS%20column%20for%20the%20buglist&In-Reply-To=%3C20120429130415.7279F44239%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="001899.html">
+ <LINK REL="Next" HREF="001901.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist</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%204482%5D%20Remove%20the%20OS%20column%20for%20the%20buglist&In-Reply-To=%3C20120429130415.7279F44239%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 29 15:04:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001899.html">[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component
+</A></li>
+ <LI>Next message: <A HREF="001901.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1900">[ date ]</a>
+ <a href="thread.html#1900">[ thread ]</a>
+ <a href="subject.html#1900">[ subject ]</a>
+ <a href="author.html#1900">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4482">https://bugs.mageia.org/show_bug.cgi?id=4482</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
+----------------------------------------------------------------------------
+ Status Whiteboard| |[Blocker will fix]
+ Depends on| |40
+
+--- Comment #3 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-04-29 15:04:15 CEST ---
+Since Bugzilla 4.2, the OS field is no longer displayed in buglists by default.
+So fixing bug 40 will automatically fix this bug.
+
+--
+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="001899.html">[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component
+</A></li>
+ <LI>Next message: <A HREF="001901.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1900">[ date ]</a>
+ <a href="thread.html#1900">[ thread ]</a>
+ <a href="subject.html#1900">[ subject ]</a>
+ <a href="author.html#1900">[ 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/2012-April/001901.html b/zarb-ml/mageia-webteam/2012-April/001901.html
new file mode 100644
index 000000000..2fad2eabe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001901.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120429130415.D86CD4423E%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="001900.html">
+ <LINK REL="Next" HREF="001902.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120429130415.D86CD4423E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 29 15:04:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001900.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI>Next message: <A HREF="001902.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1901">[ date ]</a>
+ <a href="thread.html#1901">[ thread ]</a>
+ <a href="subject.html#1901">[ subject ]</a>
+ <a href="author.html#1901">[ 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>
+
+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
+----------------------------------------------------------------------------
+ Blocks| |4482
+
+--
+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="001900.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI>Next message: <A HREF="001902.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1901">[ date ]</a>
+ <a href="thread.html#1901">[ thread ]</a>
+ <a href="subject.html#1901">[ subject ]</a>
+ <a href="author.html#1901">[ 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/2012-April/001902.html b/zarb-ml/mageia-webteam/2012-April/001902.html
new file mode 100644
index 000000000..40d2118c8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001902.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+ </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%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120429132819.1FB1344246%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="001901.html">
+ <LINK REL="Next" HREF="001903.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4483] add the Graphical Reports feature</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120429132819.1FB1344246%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4483] add the Graphical Reports feature">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 29 15:28:19 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001901.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001903.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1902">[ date ]</a>
+ <a href="thread.html#1902">[ thread ]</a>
+ <a href="subject.html#1902">[ subject ]</a>
+ <a href="author.html#1902">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4483">https://bugs.mageia.org/show_bug.cgi?id=4483</A>
+
+--- Comment #5 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-04-29 15:28:19 CEST ---
+Yep it's working in fact.
+Thanks misc and fr&#233;d&#233;ric for the reminder.
+
+--
+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="001901.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001903.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1902">[ date ]</a>
+ <a href="thread.html#1902">[ thread ]</a>
+ <a href="subject.html#1902">[ subject ]</a>
+ <a href="author.html#1902">[ 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/2012-April/001903.html b/zarb-ml/mageia-webteam/2012-April/001903.html
new file mode 100644
index 000000000..5b0fd2a76
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/001903.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+ </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%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120429132852.554FB44244%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="001902.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4483] add the Graphical Reports feature</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120429132852.554FB44244%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4483] add the Graphical Reports feature">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 29 15:28:52 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001902.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1903">[ date ]</a>
+ <a href="thread.html#1903">[ thread ]</a>
+ <a href="subject.html#1903">[ subject ]</a>
+ <a href="author.html#1903">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4483">https://bugs.mageia.org/show_bug.cgi?id=4483</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #6 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-04-29 15:28:52 CEST ---
+really closing
+
+--
+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="001902.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1903">[ date ]</a>
+ <a href="thread.html#1903">[ thread ]</a>
+ <a href="subject.html#1903">[ subject ]</a>
+ <a href="author.html#1903">[ 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/2012-April/author.html b/zarb-ml/mageia-webteam/2012-April/author.html
new file mode 100644
index 000000000..ee49c7b8b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/author.html
@@ -0,0 +1,192 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2012 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>April 2012 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>Sun Apr 1 22:25:14 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sun Apr 29 15:28:52 CEST 2012</i><br>
+ <b>Messages:</b> 29<p>
+ <ul>
+
+<LI><A HREF="001881.html">[Mageia-webteam] Planets.mageia.org
+</A><A NAME="1881">&nbsp;</A>
+<I>Josh King (dotmil)
+</I>
+
+<LI><A HREF="001888.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1888">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001889.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1889">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001892.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1892">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001898.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1898">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001899.html">[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component
+</A><A NAME="1899">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001900.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1900">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001901.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1901">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001897.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1897">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001882.html">[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?
+</A><A NAME="1882">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001883.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A><A NAME="1883">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001879.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1879">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001887.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1887">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001893.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1893">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001894.html">[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)
+</A><A NAME="1894">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001895.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1895">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001902.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1902">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001903.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1903">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001886.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1886">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001885.html">[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1885">&nbsp;</A>
+<I>Herbert Poetzl
+</I>
+
+<LI><A HREF="001884.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A><A NAME="1884">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001875.html">[Mageia-webteam] [Bug 5182] [New] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A><A NAME="1875">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001877.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1877">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001878.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1878">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001890.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1890">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001891.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1891">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001896.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1896">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001876.html">[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A><A NAME="1876">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001880.html">[Mageia-webteam] Mageia 2 Web site changes option
+</A><A NAME="1880">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Apr 29 15:28:52 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sun Apr 29 15:28:58 CEST 2012</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/2012-April/date.html b/zarb-ml/mageia-webteam/2012-April/date.html
new file mode 100644
index 000000000..e2618ba84
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/date.html
@@ -0,0 +1,192 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2012 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>April 2012 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>Sun Apr 1 22:25:14 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sun Apr 29 15:28:52 CEST 2012</i><br>
+ <b>Messages:</b> 29<p>
+ <ul>
+
+<LI><A HREF="001875.html">[Mageia-webteam] [Bug 5182] [New] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A><A NAME="1875">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001876.html">[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A><A NAME="1876">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001877.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1877">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001878.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1878">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001879.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1879">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001880.html">[Mageia-webteam] Mageia 2 Web site changes option
+</A><A NAME="1880">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001881.html">[Mageia-webteam] Planets.mageia.org
+</A><A NAME="1881">&nbsp;</A>
+<I>Josh King (dotmil)
+</I>
+
+<LI><A HREF="001882.html">[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?
+</A><A NAME="1882">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001883.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A><A NAME="1883">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001884.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A><A NAME="1884">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001885.html">[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1885">&nbsp;</A>
+<I>Herbert Poetzl
+</I>
+
+<LI><A HREF="001886.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1886">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001887.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1887">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001888.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1888">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001889.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1889">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001890.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1890">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001891.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1891">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001892.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1892">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001893.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1893">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001894.html">[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)
+</A><A NAME="1894">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001895.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1895">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001896.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1896">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001897.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1897">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001898.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1898">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001899.html">[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component
+</A><A NAME="1899">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001900.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1900">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001901.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1901">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001902.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1902">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001903.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1903">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Apr 29 15:28:52 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sun Apr 29 15:28:58 CEST 2012</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/2012-April/index.html b/zarb-ml/mageia-webteam/2012-April/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-April/subject.html b/zarb-ml/mageia-webteam/2012-April/subject.html
new file mode 100644
index 000000000..8d5ab3298
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/subject.html
@@ -0,0 +1,192 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2012 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>April 2012 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>Sun Apr 1 22:25:14 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sun Apr 29 15:28:52 CEST 2012</i><br>
+ <b>Messages:</b> 29<p>
+ <ul>
+
+<LI><A HREF="001896.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1896">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001889.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1889">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001891.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1891">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001892.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1892">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001893.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1893">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001888.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1888">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001890.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1890">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001901.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1901">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001900.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1900">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001898.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1898">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001902.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1902">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001903.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1903">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001877.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1877">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001878.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1878">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001879.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1879">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001875.html">[Mageia-webteam] [Bug 5182] [New] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A><A NAME="1875">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001876.html">[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A><A NAME="1876">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001882.html">[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?
+</A><A NAME="1882">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001883.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A><A NAME="1883">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001884.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A><A NAME="1884">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001885.html">[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1885">&nbsp;</A>
+<I>Herbert Poetzl
+</I>
+
+<LI><A HREF="001886.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1886">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<LI><A HREF="001887.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1887">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001894.html">[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)
+</A><A NAME="1894">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001895.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1895">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001897.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1897">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001899.html">[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component
+</A><A NAME="1899">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001880.html">[Mageia-webteam] Mageia 2 Web site changes option
+</A><A NAME="1880">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001881.html">[Mageia-webteam] Planets.mageia.org
+</A><A NAME="1881">&nbsp;</A>
+<I>Josh King (dotmil)
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Apr 29 15:28:52 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sun Apr 29 15:28:58 CEST 2012</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/2012-April/thread.html b/zarb-ml/mageia-webteam/2012-April/thread.html
new file mode 100644
index 000000000..c2668c2fa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-April/thread.html
@@ -0,0 +1,229 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2012 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>April 2012 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>Sun Apr 1 22:25:14 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sun Apr 29 15:28:52 CEST 2012</i><br>
+ <b>Messages:</b> 29<p>
+ <ul>
+
+<!--0 01333311914- -->
+<LI><A HREF="001875.html">[Mageia-webteam] [Bug 5182] [New] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A><A NAME="1875">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<UL>
+<!--1 01333311914-01333312324- -->
+<LI><A HREF="001876.html">[Mageia-webteam] [Bug 5182] The French legal version of Mageia.Org's statutes are not available on the wiki
+</A><A NAME="1876">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01333345170- -->
+<LI><A HREF="001877.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1877">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01333345285- -->
+<LI><A HREF="001878.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1878">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01333362399- -->
+<LI><A HREF="001879.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1879">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01333467855- -->
+<LI><A HREF="001880.html">[Mageia-webteam] Mageia 2 Web site changes option
+</A><A NAME="1880">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01333674819- -->
+<LI><A HREF="001881.html">[Mageia-webteam] Planets.mageia.org
+</A><A NAME="1881">&nbsp;</A>
+<I>Josh King (dotmil)
+</I>
+
+<!--0 01334003345- -->
+<LI><A HREF="001882.html">[Mageia-webteam] [Bug 5313] [New] [WISH] GUI for the bugzilla?
+</A><A NAME="1882">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<UL>
+<!--1 01334003345-01334003421- -->
+<LI><A HREF="001883.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A><A NAME="1883">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01334003345-01334040269- -->
+<LI><A HREF="001884.html">[Mageia-webteam] [Bug 5313] [WISH] GUI for the bugzilla?
+</A><A NAME="1884">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+</UL>
+<!--0 01334413380- -->
+<LI><A HREF="001885.html">[Mageia-webteam] [Bug 5399] [New] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1885">&nbsp;</A>
+<I>Herbert Poetzl
+</I>
+
+<UL>
+<!--1 01334413380-01334415828- -->
+<LI><A HREF="001886.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1886">&nbsp;</A>
+<I>James Kerr
+</I>
+
+<!--1 01334413380-01334419567- -->
+<LI><A HREF="001887.html">[Mageia-webteam] [Bug 5399] wiki points to Mageia 2 beta 2 for beta 3
+</A><A NAME="1887">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01335141307- -->
+<LI><A HREF="001888.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1888">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01335143483- -->
+<LI><A HREF="001889.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1889">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01335157269- -->
+<LI><A HREF="001890.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1890">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01335162411- -->
+<LI><A HREF="001891.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1891">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01335196193- -->
+<LI><A HREF="001892.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1892">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01335220243- -->
+<LI><A HREF="001893.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1893">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01335447405- -->
+<LI><A HREF="001894.html">[Mageia-webteam] [Bug 5620] [New] Add a direct link to the errata (for the release)
+</A><A NAME="1894">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01335447405-01335447418- -->
+<LI><A HREF="001895.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1895">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01335447405-01335457625- -->
+<LI><A HREF="001897.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1897">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+<!--0 01335449277- -->
+<LI><A HREF="001896.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1896">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01335703972- -->
+<LI><A HREF="001898.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1898">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01335704185- -->
+<LI><A HREF="001899.html">[Mageia-webteam] [Bug 5678] [New] Add a default QA contact for the Bugzilla component
+</A><A NAME="1899">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01335704655- -->
+<LI><A HREF="001900.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1900">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01335704655- -->
+<LI><A HREF="001901.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1901">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01335706099- -->
+<LI><A HREF="001902.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1902">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01335706132- -->
+<LI><A HREF="001903.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1903">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Apr 29 15:28:52 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sun Apr 29 15:28:58 CEST 2012</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/2012-August.txt.gz b/zarb-ml/mageia-webteam/2012-August.txt.gz
new file mode 100644
index 000000000..a5b9b5823
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-August/002124.html b/zarb-ml/mageia-webteam/2012-August/002124.html
new file mode 100644
index 000000000..d282da62e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002124.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120802112102.D3FA445C0E%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="002125.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120802112102.D3FA445C0E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 2 13:21:02 CEST 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="002125.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2124">[ date ]</a>
+ <a href="thread.html#2124">[ thread ]</a>
+ <a href="subject.html#2124">[ subject ]</a>
+ <a href="author.html#2124">[ 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>
+
+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
+----------------------------------------------------------------------------
+ Depends on| |6093
+
+--
+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>Next message: <A HREF="002125.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2124">[ date ]</a>
+ <a href="thread.html#2124">[ thread ]</a>
+ <a href="subject.html#2124">[ subject ]</a>
+ <a href="author.html#2124">[ 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/2012-August/002125.html b/zarb-ml/mageia-webteam/2012-August/002125.html
new file mode 100644
index 000000000..a1384b7b7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002125.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120806152814.4E49345CF0%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="002124.html">
+ <LINK REL="Next" HREF="002126.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Thomas Backlund</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120806152814.4E49345CF0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Aug 6 17:28:14 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002124.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002126.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2125">[ date ]</a>
+ <a href="thread.html#2125">[ thread ]</a>
+ <a href="subject.html#2125">[ subject ]</a>
+ <a href="author.html#2125">[ 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>
+
+Bug 40 depends on bug 6093, which changed state.
+
+Bug 6093 Summary: Bugzilla requires Math::Random::ISAAC, but there is no dependency between them
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=6093">https://bugs.mageia.org/show_bug.cgi?id=6093</A>
+
+ What |Old Value |New Value
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ 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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002124.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002126.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2125">[ date ]</a>
+ <a href="thread.html#2125">[ thread ]</a>
+ <a href="subject.html#2125">[ subject ]</a>
+ <a href="author.html#2125">[ 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/2012-August/002126.html b/zarb-ml/mageia-webteam/2012-August/002126.html
new file mode 100644
index 000000000..2e19d8f8c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002126.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+ </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%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20120806215333.3029B45BB7%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="002125.html">
+ <LINK REL="Next" HREF="002127.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201842%5D%20%22List%20of%20lists%22%20in%20ml.mageia.org%20should%0A%20be%20%22List%20of%20mailing%20lists%22%20or%20%22Show%20all%20mailing%20lists%22&In-Reply-To=%3C20120806215333.3029B45BB7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Aug 6 23:53:33 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002125.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002127.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2126">[ date ]</a>
+ <a href="thread.html#2126">[ thread ]</a>
+ <a href="subject.html#2126">[ subject ]</a>
+ <a href="author.html#2126">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1842">https://bugs.mageia.org/show_bug.cgi?id=1842</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|NEW |RESOLVED
+ Resolution| |OLD
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="002125.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002127.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2126">[ date ]</a>
+ <a href="thread.html#2126">[ thread ]</a>
+ <a href="subject.html#2126">[ subject ]</a>
+ <a href="author.html#2126">[ 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/2012-August/002127.html b/zarb-ml/mageia-webteam/2012-August/002127.html
new file mode 100644
index 000000000..549476ad9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002127.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+ </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%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20120806215643.1CB9845D01%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="002126.html">
+ <LINK REL="Next" HREF="002128.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201411%5D%20Should%20be%20improved%20the%20homepage%0A%20appareance%20and%20the%20page%20should%20contain%20all%20the%20links%20to%20the%20mageia%0A%20resources&In-Reply-To=%3C20120806215643.1CB9845D01%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Aug 6 23:56:43 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002126.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="002128.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2127">[ date ]</a>
+ <a href="thread.html#2127">[ thread ]</a>
+ <a href="subject.html#2127">[ subject ]</a>
+ <a href="author.html#2127">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1411">https://bugs.mageia.org/show_bug.cgi?id=1411</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|NEW |RESOLVED
+ Resolution| |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="002126.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A></li>
+ <LI>Next message: <A HREF="002128.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2127">[ date ]</a>
+ <a href="thread.html#2127">[ thread ]</a>
+ <a href="subject.html#2127">[ subject ]</a>
+ <a href="author.html#2127">[ 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/2012-August/002128.html b/zarb-ml/mageia-webteam/2012-August/002128.html
new file mode 100644
index 000000000..4828a51d2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002128.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+ </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%206608%5D%20Wrong%20navbar%20on%20the%20wiki&In-Reply-To=%3C20120806220449.58D9745D04%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="002127.html">
+ <LINK REL="Next" HREF="002129.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206608%5D%20Wrong%20navbar%20on%20the%20wiki&In-Reply-To=%3C20120806220449.58D9745D04%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 7 00:04:49 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002127.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="002129.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2128">[ date ]</a>
+ <a href="thread.html#2128">[ thread ]</a>
+ <a href="subject.html#2128">[ subject ]</a>
+ <a href="author.html#2128">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6608">https://bugs.mageia.org/show_bug.cgi?id=6608</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|NEW |RESOLVED
+ Resolution| |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="002127.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A></li>
+ <LI>Next message: <A HREF="002129.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2128">[ date ]</a>
+ <a href="thread.html#2128">[ thread ]</a>
+ <a href="subject.html#2128">[ subject ]</a>
+ <a href="author.html#2128">[ 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/2012-August/002129.html b/zarb-ml/mageia-webteam/2012-August/002129.html
new file mode 100644
index 000000000..302244154
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002129.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+ </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%204911%5D%20IPv6%20addresses%20on%20wiki%20%22personal%20tools%22%0A%20mess%20up%20the%20layout&In-Reply-To=%3C20120806220730.AD2F145D13%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="002128.html">
+ <LINK REL="Next" HREF="002130.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204911%5D%20IPv6%20addresses%20on%20wiki%20%22personal%20tools%22%0A%20mess%20up%20the%20layout&In-Reply-To=%3C20120806220730.AD2F145D13%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 7 00:07:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002128.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A></li>
+ <LI>Next message: <A HREF="002130.html">[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2129">[ date ]</a>
+ <a href="thread.html#2129">[ thread ]</a>
+ <a href="subject.html#2129">[ subject ]</a>
+ <a href="author.html#2129">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4911">https://bugs.mageia.org/show_bug.cgi?id=4911</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|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-07 00:07:30 CEST ---
+We changed the wiki layout.
+
+--
+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="002128.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A></li>
+ <LI>Next message: <A HREF="002130.html">[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2129">[ date ]</a>
+ <a href="thread.html#2129">[ thread ]</a>
+ <a href="subject.html#2129">[ subject ]</a>
+ <a href="author.html#2129">[ 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/2012-August/002130.html b/zarb-ml/mageia-webteam/2012-August/002130.html
new file mode 100644
index 000000000..00aae3dbd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002130.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error
+ </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%206891%5D%20Financial%20report%20%3A%20Many%20language%20are%0A%09404%20error&In-Reply-To=%3C20120806221401.DECBA45CE1%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="002129.html">
+ <LINK REL="Next" HREF="002131.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206891%5D%20Financial%20report%20%3A%20Many%20language%20are%0A%09404%20error&In-Reply-To=%3C20120806221401.DECBA45CE1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 7 00:14:01 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002129.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI>Next message: <A HREF="002131.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2130">[ date ]</a>
+ <a href="thread.html#2130">[ thread ]</a>
+ <a href="subject.html#2130">[ subject ]</a>
+ <a href="author.html#2130">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6891">https://bugs.mageia.org/show_bug.cgi?id=6891</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-08-07 00:14:01 CEST ---
+Looks like 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="002129.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI>Next message: <A HREF="002131.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2130">[ date ]</a>
+ <a href="thread.html#2130">[ thread ]</a>
+ <a href="subject.html#2130">[ subject ]</a>
+ <a href="author.html#2130">[ 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/2012-August/002131.html b/zarb-ml/mageia-webteam/2012-August/002131.html
new file mode 100644
index 000000000..ef088bfa9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002131.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] add distrib links to first 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%201386%5D%20add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20120807112330.94A4745C30%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="002130.html">
+ <LINK REL="Next" HREF="002132.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] add distrib links to first page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20120807112330.94A4745C30%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 7 13:23:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002130.html">[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error
+</A></li>
+ <LI>Next message: <A HREF="002132.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2131">[ date ]</a>
+ <a href="thread.html#2131">[ thread ]</a>
+ <a href="subject.html#2131">[ subject ]</a>
+ <a href="author.html#2131">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</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
+----------------------------------------------------------------------------
+ Keywords| |NEEDINFO
+
+--- Comment #8 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-07 13:23:29 CEST ---
+We need more input here:
+ - what's the use case? (and how/why/when wouldn't it be handled through
+distrib tools using the API already)
+ - how would it look like? (mockup welcome)
+
+--
+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="002130.html">[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error
+</A></li>
+ <LI>Next message: <A HREF="002132.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2131">[ date ]</a>
+ <a href="thread.html#2131">[ thread ]</a>
+ <a href="subject.html#2131">[ subject ]</a>
+ <a href="author.html#2131">[ 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/2012-August/002132.html b/zarb-ml/mageia-webteam/2012-August/002132.html
new file mode 100644
index 000000000..be1308395
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002132.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+ </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%201665%5D%20with%20some%20browser%20and%20some%20languages%2C%0A%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3C20120807112547.04E8245CD3%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="002131.html">
+ <LINK REL="Next" HREF="002133.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201665%5D%20with%20some%20browser%20and%20some%20languages%2C%0A%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3C20120807112547.04E8245CD3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 7 13:25:46 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002131.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="002133.html">[Mageia-webteam] [Bug 6984] [New] tracker is off line
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2132">[ date ]</a>
+ <a href="thread.html#2132">[ thread ]</a>
+ <a href="subject.html#2132">[ subject ]</a>
+ <a href="author.html#2132">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1665">https://bugs.mageia.org/show_bug.cgi?id=1665</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-07 13:25:47 CEST ---
+@mammig, can you confirm you encounter the same issues here or shall we close
+this very 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002131.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="002133.html">[Mageia-webteam] [Bug 6984] [New] tracker is off line
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2132">[ date ]</a>
+ <a href="thread.html#2132">[ thread ]</a>
+ <a href="subject.html#2132">[ subject ]</a>
+ <a href="author.html#2132">[ 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/2012-August/002133.html b/zarb-ml/mageia-webteam/2012-August/002133.html
new file mode 100644
index 000000000..583d4630f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002133.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6984] [New] tracker is off line
+ </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%206984%5D%20%5BNew%5D%20tracker%20is%20off%20line&In-Reply-To=%3Cbug-6984-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="002132.html">
+ <LINK REL="Next" HREF="002134.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6984] [New] tracker is off line</H1>
+ <B>james Whitby</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206984%5D%20%5BNew%5D%20tracker%20is%20off%20line&In-Reply-To=%3Cbug-6984-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6984] [New] tracker is off line">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 8 13:40:21 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002132.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="002134.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2133">[ date ]</a>
+ <a href="thread.html#2133">[ thread ]</a>
+ <a href="subject.html#2133">[ subject ]</a>
+ <a href="author.html#2133">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6984">https://bugs.mageia.org/show_bug.cgi?id=6984</A>
+
+ Summary: tracker is off line
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://linuxtracker.org">http://linuxtracker.org</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: critical
+ 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">jim at whitby-jr.org</A>
+ RPM Package: any
+
+
+Description of problem:
+
+Appears the tracker is &quot;out-of-business&quot;.
+
+No dns address for two days.
+
+Appears there isn't a backup tracker.
+
+--
+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="002132.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="002134.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2133">[ date ]</a>
+ <a href="thread.html#2133">[ thread ]</a>
+ <a href="subject.html#2133">[ subject ]</a>
+ <a href="author.html#2133">[ 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/2012-August/002134.html b/zarb-ml/mageia-webteam/2012-August/002134.html
new file mode 100644
index 000000000..7f4166b55
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002134.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6984] tracker is off line
+ </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%206984%5D%20tracker%20is%20off%20line&In-Reply-To=%3C20120808120605.1488F45BC7%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="002133.html">
+ <LINK REL="Next" HREF="002135.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6984] tracker is off line</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206984%5D%20tracker%20is%20off%20line&In-Reply-To=%3C20120808120605.1488F45BC7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6984] tracker is off line">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 8 14:06:05 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002133.html">[Mageia-webteam] [Bug 6984] [New] tracker is off line
+</A></li>
+ <LI>Next message: <A HREF="002135.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2134">[ date ]</a>
+ <a href="thread.html#2134">[ thread ]</a>
+ <a href="subject.html#2134">[ subject ]</a>
+ <a href="author.html#2134">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6984">https://bugs.mageia.org/show_bug.cgi?id=6984</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|NEW |RESOLVED
+ Resolution| |INVALID
+ 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; 2012-08-08 14:06:05 CEST ---
+Please. What has it to do with Mageia?
+
+--
+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="002133.html">[Mageia-webteam] [Bug 6984] [New] tracker is off line
+</A></li>
+ <LI>Next message: <A HREF="002135.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2134">[ date ]</a>
+ <a href="thread.html#2134">[ thread ]</a>
+ <a href="subject.html#2134">[ subject ]</a>
+ <a href="author.html#2134">[ 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/2012-August/002135.html b/zarb-ml/mageia-webteam/2012-August/002135.html
new file mode 100644
index 000000000..24b5dc341
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002135.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6984] tracker is off line
+ </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%206984%5D%20tracker%20is%20off%20line&In-Reply-To=%3C20120808123751.D1E5245C3B%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="002134.html">
+ <LINK REL="Next" HREF="002136.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6984] tracker is off line</H1>
+ <B>Thomas Backlund</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206984%5D%20tracker%20is%20off%20line&In-Reply-To=%3C20120808123751.D1E5245C3B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6984] tracker is off line">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 8 14:37:51 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002134.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A></li>
+ <LI>Next message: <A HREF="002136.html">[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2135">[ date ]</a>
+ <a href="thread.html#2135">[ thread ]</a>
+ <a href="subject.html#2135">[ subject ]</a>
+ <a href="author.html#2135">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6984">https://bugs.mageia.org/show_bug.cgi?id=6984</A>
+
+Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|RESOLVED |REOPENED
+ Resolution|INVALID |
+ AssignedTo|<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">tmb at iki.fi</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>
+
+--- Comment #2 from Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; 2012-08-08 16:37:51 CEST ---
+
+Actually everything... :/
+
+It's the tracker used for Mageia ISO torrents util our own system is created
+...
+
+I've tried to get some response from the DNS hosting and from an other mail
+contact I have, but so far nothing...
+
+--
+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="002134.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A></li>
+ <LI>Next message: <A HREF="002136.html">[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2135">[ date ]</a>
+ <a href="thread.html#2135">[ thread ]</a>
+ <a href="subject.html#2135">[ subject ]</a>
+ <a href="author.html#2135">[ 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/2012-August/002136.html b/zarb-ml/mageia-webteam/2012-August/002136.html
new file mode 100644
index 000000000..82d7ec211
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002136.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report
+ </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%206084%5D%20Design%20an%20up-to-date%20graphical%20donation%0A%09bar%20report&In-Reply-To=%3C20120808192408.97B4145BE8%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="002135.html">
+ <LINK REL="Next" HREF="002137.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206084%5D%20Design%20an%20up-to-date%20graphical%20donation%0A%09bar%20report&In-Reply-To=%3C20120808192408.97B4145BE8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 8 21:24:08 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002135.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A></li>
+ <LI>Next message: <A HREF="002137.html">[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2136">[ date ]</a>
+ <a href="thread.html#2136">[ thread ]</a>
+ <a href="subject.html#2136">[ subject ]</a>
+ <a href="author.html#2136">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6084">https://bugs.mageia.org/show_bug.cgi?id=6084</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
+----------------------------------------------------------------------------
+ Keywords| |Atelier, Junior_job
+
+--
+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="002135.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A></li>
+ <LI>Next message: <A HREF="002137.html">[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2136">[ date ]</a>
+ <a href="thread.html#2136">[ thread ]</a>
+ <a href="subject.html#2136">[ subject ]</a>
+ <a href="author.html#2136">[ 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/2012-August/002137.html b/zarb-ml/mageia-webteam/2012-August/002137.html
new file mode 100644
index 000000000..8e0f72f26
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002137.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/
+ </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%207026%5D%20%5BNew%5D%20TypeError%20at%0A%09/projects/p/mageia_i18n/teams/request/&In-Reply-To=%3Cbug-7026-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="002136.html">
+ <LINK REL="Next" HREF="002138.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207026%5D%20%5BNew%5D%20TypeError%20at%0A%09/projects/p/mageia_i18n/teams/request/&In-Reply-To=%3Cbug-7026-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 12 04:00:50 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002136.html">[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report
+</A></li>
+ <LI>Next message: <A HREF="002138.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2137">[ date ]</a>
+ <a href="thread.html#2137">[ thread ]</a>
+ <a href="subject.html#2137">[ subject ]</a>
+ <a href="author.html#2137">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7026">https://bugs.mageia.org/show_bug.cgi?id=7026</A>
+
+ Summary: TypeError at /projects/p/mageia_i18n/teams/request/
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="https://transifex.mageia.org/projects/p/mageia_i18n/te">https://transifex.mageia.org/projects/p/mageia_i18n/te</A>
+ ams/request/
+ 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">kristoffer.grundstrom1983 at gmail.com</A>
+
+
+Description of problem: Trying to start a new translation-team, but Django
+fails to understand that request. I've managed to reproduce this many times.
+
+Version-Release number of selected component (if applicable): 1.3.1
+
+How reproducible: All the time when you request a new team.
+
+Steps to Reproduce:
+1. Open webbrowser.
+2. Go to <A HREF="https://transifex.mageia.org/projects/p/mageia_i18n/teams/">https://transifex.mageia.org/projects/p/mageia_i18n/teams/</A>
+3. Login &amp; click the button &quot;request a new team&quot;.
+4. Voila! Django fails to handle your request.
+
+--
+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="002136.html">[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report
+</A></li>
+ <LI>Next message: <A HREF="002138.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2137">[ date ]</a>
+ <a href="thread.html#2137">[ thread ]</a>
+ <a href="subject.html#2137">[ subject ]</a>
+ <a href="author.html#2137">[ 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/2012-August/002138.html b/zarb-ml/mageia-webteam/2012-August/002138.html
new file mode 100644
index 000000000..1cfd3c969
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002138.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+ </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%207026%5D%20TypeError%20at%0A%09/projects/p/mageia_i18n/teams/request/&In-Reply-To=%3C20120812020100.6D83644F16%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="002137.html">
+ <LINK REL="Next" HREF="002139.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207026%5D%20TypeError%20at%0A%09/projects/p/mageia_i18n/teams/request/&In-Reply-To=%3C20120812020100.6D83644F16%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 12 04:01:00 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002137.html">[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI>Next message: <A HREF="002139.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2138">[ date ]</a>
+ <a href="thread.html#2138">[ thread ]</a>
+ <a href="subject.html#2138">[ subject ]</a>
+ <a href="author.html#2138">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7026">https://bugs.mageia.org/show_bug.cgi?id=7026</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |High
+
+--
+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="002137.html">[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI>Next message: <A HREF="002139.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2138">[ date ]</a>
+ <a href="thread.html#2138">[ thread ]</a>
+ <a href="subject.html#2138">[ subject ]</a>
+ <a href="author.html#2138">[ 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/2012-August/002139.html b/zarb-ml/mageia-webteam/2012-August/002139.html
new file mode 100644
index 000000000..89ba3d2f5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002139.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+ </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%207026%5D%20TypeError%20at%0A%09/projects/p/mageia_i18n/teams/request/&In-Reply-To=%3C20120812100508.67E4A45B96%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="002138.html">
+ <LINK REL="Next" HREF="002140.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207026%5D%20TypeError%20at%0A%09/projects/p/mageia_i18n/teams/request/&In-Reply-To=%3C20120812100508.67E4A45B96%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 12 12:05:08 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002138.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI>Next message: <A HREF="002140.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2139">[ date ]</a>
+ <a href="thread.html#2139">[ thread ]</a>
+ <a href="subject.html#2139">[ subject ]</a>
+ <a href="author.html#2139">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7026">https://bugs.mageia.org/show_bug.cgi?id=7026</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |WONTFIX
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-08-12 14:05:08 CEST ---
+we know that transifex is not working (cf
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=5102">https://bugs.mageia.org/show_bug.cgi?id=5102</A> as exemple) so I will close your
+bug
+
+--
+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="002138.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI>Next message: <A HREF="002140.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2139">[ date ]</a>
+ <a href="thread.html#2139">[ thread ]</a>
+ <a href="subject.html#2139">[ subject ]</a>
+ <a href="author.html#2139">[ 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/2012-August/002140.html b/zarb-ml/mageia-webteam/2012-August/002140.html
new file mode 100644
index 000000000..63e727566
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002140.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+ </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%207029%5D%20Test%20forum%20to%20test%20forum%20upgrades%20%26%0A%09puppet%20deployment&In-Reply-To=%3C20120812101942.B3D7645789%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="002139.html">
+ <LINK REL="Next" HREF="002141.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207029%5D%20Test%20forum%20to%20test%20forum%20upgrades%20%26%0A%09puppet%20deployment&In-Reply-To=%3C20120812101942.B3D7645789%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 12 12:19:42 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002139.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI>Next message: <A HREF="002141.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2140">[ date ]</a>
+ <a href="thread.html#2140">[ thread ]</a>
+ <a href="subject.html#2140">[ subject ]</a>
+ <a href="author.html#2140">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7029">https://bugs.mageia.org/show_bug.cgi?id=7029</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="002139.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A></li>
+ <LI>Next message: <A HREF="002141.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2140">[ date ]</a>
+ <a href="thread.html#2140">[ thread ]</a>
+ <a href="subject.html#2140">[ subject ]</a>
+ <a href="author.html#2140">[ 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/2012-August/002141.html b/zarb-ml/mageia-webteam/2012-August/002141.html
new file mode 100644
index 000000000..f221bb96a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002141.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1797] All forums need to refer to each other
+ </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%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20120812150235.80A4045C70%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="002140.html">
+ <LINK REL="Next" HREF="002142.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1797] All forums need to refer to each other</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20120812150235.80A4045C70%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1797] All forums need to refer to each other">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 12 17:02:35 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002140.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI>Next message: <A HREF="002142.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2141">[ date ]</a>
+ <a href="thread.html#2141">[ thread ]</a>
+ <a href="subject.html#2141">[ subject ]</a>
+ <a href="author.html#2141">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|RESOLVED |REOPENED
+ Resolution|OLD |
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>
+
+--- Comment #6 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2012-08-12 17:02:35 CEST ---
+Reopening this one, as international forum currently has no link to german
+forum, and it's rather difficult to find from Mageia web pages. Discussed in
+<A HREF="https://forums.mageia.org/en/viewtopic.php?f=39&amp;t=3066">https://forums.mageia.org/en/viewtopic.php?f=39&amp;t=3066</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="002140.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI>Next message: <A HREF="002142.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2141">[ date ]</a>
+ <a href="thread.html#2141">[ thread ]</a>
+ <a href="subject.html#2141">[ subject ]</a>
+ <a href="author.html#2141">[ 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/2012-August/002142.html b/zarb-ml/mageia-webteam/2012-August/002142.html
new file mode 100644
index 000000000..b0985195c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002142.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+ </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%207029%5D%20Test%20forum%20to%20test%20forum%20upgrades%20%26%0A%09puppet%20deployment&In-Reply-To=%3C20120814073029.C991445CD8%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="002141.html">
+ <LINK REL="Next" HREF="002143.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207029%5D%20Test%20forum%20to%20test%20forum%20upgrades%20%26%0A%09puppet%20deployment&In-Reply-To=%3C20120814073029.C991445CD8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 14 09:30:29 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002141.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="002143.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2142">[ date ]</a>
+ <a href="thread.html#2142">[ thread ]</a>
+ <a href="subject.html#2142">[ subject ]</a>
+ <a href="author.html#2142">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7029">https://bugs.mageia.org/show_bug.cgi?id=7029</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-08-14 09:30:29 CEST ---
+Please look into this mail, too:
+<A HREF="https://ml.mageia.org/l/arc/forums-discuss/2012-08/msg00000.html">https://ml.mageia.org/l/arc/forums-discuss/2012-08/msg00000.html</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="002141.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="002143.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2142">[ date ]</a>
+ <a href="thread.html#2142">[ thread ]</a>
+ <a href="subject.html#2142">[ subject ]</a>
+ <a href="author.html#2142">[ 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/2012-August/002143.html b/zarb-ml/mageia-webteam/2012-August/002143.html
new file mode 100644
index 000000000..8c8c81934
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002143.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+ </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%207029%5D%20Test%20forum%20to%20test%20forum%20upgrades%20%26%0A%09puppet%20deployment&In-Reply-To=%3C20120814074253.B854D45CF4%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="002142.html">
+ <LINK REL="Next" HREF="002144.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207029%5D%20Test%20forum%20to%20test%20forum%20upgrades%20%26%0A%09puppet%20deployment&In-Reply-To=%3C20120814074253.B854D45CF4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 14 09:42:53 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002142.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI>Next message: <A HREF="002144.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2143">[ date ]</a>
+ <a href="thread.html#2143">[ thread ]</a>
+ <a href="subject.html#2143">[ subject ]</a>
+ <a href="author.html#2143">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7029">https://bugs.mageia.org/show_bug.cgi?id=7029</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">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; 2012-08-14 11:42:53 CEST ---
+Yes, it's a good idea. I will look at setting up this test forum instance.
+
+--
+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="002142.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI>Next message: <A HREF="002144.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2143">[ date ]</a>
+ <a href="thread.html#2143">[ thread ]</a>
+ <a href="subject.html#2143">[ subject ]</a>
+ <a href="author.html#2143">[ 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/2012-August/002144.html b/zarb-ml/mageia-webteam/2012-August/002144.html
new file mode 100644
index 000000000..471759a17
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002144.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120814111536.C301F45B6C%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="002143.html">
+ <LINK REL="Next" HREF="002145.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120814111536.C301F45B6C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 14 13:15:36 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002143.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI>Next message: <A HREF="002145.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2144">[ date ]</a>
+ <a href="thread.html#2144">[ thread ]</a>
+ <a href="subject.html#2144">[ subject ]</a>
+ <a href="author.html#2144">[ 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 #34 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-08-14 13:15:36 CEST ---
+so, are you becoming the new bugzilla maintainer? thanks for your efforts in
+mageia, i'm sure you'll do a great work...
+
+
+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="002143.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A></li>
+ <LI>Next message: <A HREF="002145.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2144">[ date ]</a>
+ <a href="thread.html#2144">[ thread ]</a>
+ <a href="subject.html#2144">[ subject ]</a>
+ <a href="author.html#2144">[ 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/2012-August/002145.html b/zarb-ml/mageia-webteam/2012-August/002145.html
new file mode 100644
index 000000000..ee3c96588
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002145.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120814122954.4828E45D1D%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="002144.html">
+ <LINK REL="Next" HREF="002146.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120814122954.4828E45D1D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 14 14:29:54 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002144.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002146.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2145">[ date ]</a>
+ <a href="thread.html#2145">[ thread ]</a>
+ <a href="subject.html#2145">[ subject ]</a>
+ <a href="author.html#2145">[ 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 #35 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-08-14 14:29:54 CEST ---
+No, I'm not. I disagreed with the way they wanted to manage Bugzilla, and so
+dmorgan remains the maintainer.
+
+--
+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="002144.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002146.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2145">[ date ]</a>
+ <a href="thread.html#2145">[ thread ]</a>
+ <a href="subject.html#2145">[ subject ]</a>
+ <a href="author.html#2145">[ 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/2012-August/002146.html b/zarb-ml/mageia-webteam/2012-August/002146.html
new file mode 100644
index 000000000..3cf87e8e2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002146.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120814123912.D4AAB45D4F%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="002145.html">
+ <LINK REL="Next" HREF="002147.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120814123912.D4AAB45D4F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 14 14:39:12 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002145.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002147.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2146">[ date ]</a>
+ <a href="thread.html#2146">[ thread ]</a>
+ <a href="subject.html#2146">[ subject ]</a>
+ <a href="author.html#2146">[ 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 #36 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-08-14 14:39:12 CEST ---
+and I add, bugzilla remains unmaintained. thank you guys
+
+--
+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="002145.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002147.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2146">[ date ]</a>
+ <a href="thread.html#2146">[ thread ]</a>
+ <a href="subject.html#2146">[ subject ]</a>
+ <a href="author.html#2146">[ 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/2012-August/002147.html b/zarb-ml/mageia-webteam/2012-August/002147.html
new file mode 100644
index 000000000..17e48c763
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002147.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120814133617.CE07A45D3D%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="002146.html">
+ <LINK REL="Next" HREF="002148.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120814133617.CE07A45D3D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 14 15:36:17 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002146.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002148.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2147">[ date ]</a>
+ <a href="thread.html#2147">[ thread ]</a>
+ <a href="subject.html#2147">[ subject ]</a>
+ <a href="author.html#2147">[ 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 #37 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-08-14 17:36:01 CEST ---
+(In reply to comment #36)
+&gt;<i> and I add, bugzilla remains unmaintained. thank you guys
+</I>
+If you can't be bothered to do anything useful for mageia, could you at least
+refrain from posting such useless comments ?
+
+--
+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="002146.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002148.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2147">[ date ]</a>
+ <a href="thread.html#2147">[ thread ]</a>
+ <a href="subject.html#2147">[ subject ]</a>
+ <a href="author.html#2147">[ 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/2012-August/002148.html b/zarb-ml/mageia-webteam/2012-August/002148.html
new file mode 100644
index 000000000..71017f595
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002148.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1797] All forums need to refer to each other
+ </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%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20120816070446.8A11945CD0%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="002147.html">
+ <LINK REL="Next" HREF="002149.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1797] All forums need to refer to each other</H1>
+ <B>Maat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20120816070446.8A11945CD0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1797] All forums need to refer to each other">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 16 09:04:46 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002147.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002149.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2148">[ date ]</a>
+ <a href="thread.html#2148">[ thread ]</a>
+ <a href="subject.html#2148">[ subject ]</a>
+ <a href="author.html#2148">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+
+Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<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">forums-bugs at ml.mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</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="002147.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002149.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2148">[ date ]</a>
+ <a href="thread.html#2148">[ thread ]</a>
+ <a href="subject.html#2148">[ subject ]</a>
+ <a href="author.html#2148">[ 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/2012-August/002149.html b/zarb-ml/mageia-webteam/2012-August/002149.html
new file mode 100644
index 000000000..d990f8f8e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002149.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120816193321.06CDA45D89%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="002148.html">
+ <LINK REL="Next" HREF="002150.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120816193321.06CDA45D89%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 16 21:33:21 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002148.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="002150.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2149">[ date ]</a>
+ <a href="thread.html#2149">[ thread ]</a>
+ <a href="subject.html#2149">[ subject ]</a>
+ <a href="author.html#2149">[ 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 #38 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-08-16 21:33:21 CEST ---
+i'm not bothered to do anything useful for mageia, simply i don't have
+technical skills to do this and, proper for this reason, i can't understand why
+a person who is willing to do it and has excellents skills for this, he's not
+allowed while is clear that D.Morgan hasn't enough time free to do this... i
+simply can't understand the reasons, and the fact that i'm not directely
+involved in the development of the distro doesn't mean i can criticize some
+aspects i do not like it.
+
+
+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="002148.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="002150.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2149">[ date ]</a>
+ <a href="thread.html#2149">[ thread ]</a>
+ <a href="subject.html#2149">[ subject ]</a>
+ <a href="author.html#2149">[ 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/2012-August/002150.html b/zarb-ml/mageia-webteam/2012-August/002150.html
new file mode 100644
index 000000000..a3afd012f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002150.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120816194238.227C845CCE%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="002149.html">
+ <LINK REL="Next" HREF="002151.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120816194238.227C845CCE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 16 21:42:38 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002149.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002151.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2150">[ date ]</a>
+ <a href="thread.html#2150">[ thread ]</a>
+ <a href="subject.html#2150">[ subject ]</a>
+ <a href="author.html#2150">[ 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>
+
+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 #39 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-16 21:42:38 CEST ---
+(In reply to comment #38)
+&gt;<i> i don't have technical skills to do this and, proper for this reason,
+</I>&gt;<i> i can't understand why
+</I>
+That's the point.
+
+&gt;<i> a person who is willing to do it and has excellents skills for this, he's not
+</I>&gt;<i> allowed while is clear that D.Morgan hasn't enough time free to do this...
+</I>
+Sysadmin team has some requirements on how (at least some) systems are to be
+managed. Whether these requirements should evolve or not, they're not random,
+and you won't change them with clueless sarcasm.
+
+&gt;<i> the fact that i'm not directely involved in the development
+</I>&gt;<i> of the distro doesn't mean i can criticize some aspects i do not like it.
+</I>
+Sure. But don't expect your points to have any significant weight then.
+
+--
+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="002149.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002151.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2150">[ date ]</a>
+ <a href="thread.html#2150">[ thread ]</a>
+ <a href="subject.html#2150">[ subject ]</a>
+ <a href="author.html#2150">[ 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/2012-August/002151.html b/zarb-ml/mageia-webteam/2012-August/002151.html
new file mode 100644
index 000000000..55e465aa8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002151.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120816211811.A816545D99%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="002150.html">
+ <LINK REL="Next" HREF="002152.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120816211811.A816545D99%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 16 23:18:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002150.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002152.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2151">[ date ]</a>
+ <a href="thread.html#2151">[ thread ]</a>
+ <a href="subject.html#2151">[ subject ]</a>
+ <a href="author.html#2151">[ 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 #40 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-08-16 23:18:11 CEST ---
+(In reply to comment #38)
+&gt;<i> i'm not bothered to do anything useful for mageia, simply i don't have
+</I>&gt;<i> technical skills to do this and, proper for this reason, i can't understand why
+</I>&gt;<i> a person who is willing to do it and has excellents skills for this, he's not
+</I>&gt;<i> allowed while is clear that D.Morgan hasn't enough time free to do this... i
+</I>&gt;<i> simply can't understand the reasons, and the fact that i'm not directely
+</I>&gt;<i> involved in the development of the distro doesn't mean i can criticize some
+</I>&gt;<i> aspects i do not like it.
+</I>
+Why do you keep telling other people what they should do although you obviously
+don't know what you're talking about ?
+
+- As far as I know the bugzilla is still working, even if not with the latest
+version. So it's not unmaintained contrary to what you're saying.
+- The help from Fr&#233;d&#233;ric is not refused. What is refused is to stop using an
+rpm package, with reasons already explained in the thread.
+- An upgrade to bugzilla 4 is ready but needs some testing before we do it on
+production server. To do this we need to setup test VMs, which can also be used
+for bugzilla developement and testing by Fr&#233;d&#233;ric or other people who want to
+help on bugzilla maintainance. I planned to install those VMs but I'm late.
+However clueless comments is not what will make it happen faster.
+
+--
+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="002150.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002152.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2151">[ date ]</a>
+ <a href="thread.html#2151">[ thread ]</a>
+ <a href="subject.html#2151">[ subject ]</a>
+ <a href="author.html#2151">[ 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/2012-August/002152.html b/zarb-ml/mageia-webteam/2012-August/002152.html
new file mode 100644
index 000000000..4d959f220
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002152.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120817011227.F249645CA5%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="002151.html">
+ <LINK REL="Next" HREF="002153.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120817011227.F249645CA5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Aug 17 03:12:27 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002151.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002153.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2152">[ date ]</a>
+ <a href="thread.html#2152">[ thread ]</a>
+ <a href="subject.html#2152">[ subject ]</a>
+ <a href="author.html#2152">[ 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 #41 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-08-17 03:12:28 CEST ---
+(In reply to comment #40)
+&gt;<i> - As far as I know the bugzilla is still working, even if not with the latest
+</I>&gt;<i> version. So it's not unmaintained contrary to what you're saying.
+</I>
+I don't see how &quot;is still working&quot; = &quot;it's not unmaintained&quot;. Did you ever look
+at the security advisories? <A HREF="http://www.bugzilla.org/security/.">http://www.bugzilla.org/security/.</A> There are
+currently 13 relevant security advisories which affect Bugzilla 3.6.4, the
+version you are running. Talking about the 3.6 branch only, you are 6 releases
+behind, the current release being 3.6.10.
+
+--
+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="002151.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002153.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2152">[ date ]</a>
+ <a href="thread.html#2152">[ thread ]</a>
+ <a href="subject.html#2152">[ subject ]</a>
+ <a href="author.html#2152">[ 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/2012-August/002153.html b/zarb-ml/mageia-webteam/2012-August/002153.html
new file mode 100644
index 000000000..13c103015
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002153.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120817090922.96ECB45AB6%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="002152.html">
+ <LINK REL="Next" HREF="002154.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120817090922.96ECB45AB6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Aug 17 11:09:22 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002152.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002154.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2153">[ date ]</a>
+ <a href="thread.html#2153">[ thread ]</a>
+ <a href="subject.html#2153">[ subject ]</a>
+ <a href="author.html#2153">[ 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 #42 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-08-17 11:09:22 CEST ---
+in reply to comment #40:
+
+because maybe i don't know what we're talking about, but i'm sure frederic
+does. i consider this situation very linear:
+
+- bugzilla is unmaintained (see comment #41) since the start of mageia - no
+matter why, simply it is
+
+- frederic asked to maintain bugzilla; he has excellent technical skills, he's
+directely involved in the project and, overall, he wants to keep our bugzilla
+updated, secure and full-working
+
+- sysadmins assign this task to frederic, and is up to him to choose how to
+manage his work, the important thing is that the objectives get reached
+
+- FINAL result: one more contributor, minor workload to other contributors,
+bugzilla stable, updated and secure. I don't see the problems, it's you that
+are creating problems that have never been
+
+
+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="002152.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002154.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2153">[ date ]</a>
+ <a href="thread.html#2153">[ thread ]</a>
+ <a href="subject.html#2153">[ subject ]</a>
+ <a href="author.html#2153">[ 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/2012-August/002154.html b/zarb-ml/mageia-webteam/2012-August/002154.html
new file mode 100644
index 000000000..052960efa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002154.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120817093215.3752C45D98%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="002153.html">
+ <LINK REL="Next" HREF="002155.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Sander Lepik</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120817093215.3752C45D98%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Aug 17 11:32:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002153.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002155.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2154">[ date ]</a>
+ <a href="thread.html#2154">[ thread ]</a>
+ <a href="subject.html#2154">[ subject ]</a>
+ <a href="author.html#2154">[ 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>
+
+Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>
+
+--- Comment #43 from Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; 2012-08-17 11:32:15 CEST ---
+(In reply to comment #42)
+&gt;<i> in reply to comment #40:
+</I>&gt;<i>
+</I>&gt;<i> because maybe i don't know what we're talking about, but i'm sure frederic
+</I>&gt;<i> does. i consider this situation very linear:
+</I>&gt;<i>
+</I>&gt;<i> - bugzilla is unmaintained (see comment #41) since the start of mageia - no
+</I>&gt;<i> matter why, simply it is
+</I>&gt;<i>
+</I>&gt;<i> - frederic asked to maintain bugzilla; he has excellent technical skills, he's
+</I>&gt;<i> directely involved in the project and, overall, he wants to keep our bugzilla
+</I>&gt;<i> updated, secure and full-working
+</I>&gt;<i>
+</I>&gt;<i> - sysadmins assign this task to frederic, and is up to him to choose how to
+</I>&gt;<i> manage his work, the important thing is that the objectives get reached
+</I>&gt;<i>
+</I>&gt;<i> - FINAL result: one more contributor, minor workload to other contributors,
+</I>&gt;<i> bugzilla stable, updated and secure. I don't see the problems, it's you that
+</I>&gt;<i> are creating problems that have never been
+</I>
+I can see you are a superb sysadmin and know how things work for Mageia?
+
+Fr&#233;d&#233;ric wants to use version control to keep it up-to-date. But this doesn't
+quite work with the puppet + rpm setup. If you don't know how things work and
+why it's complicated then you should not comment on it with such attitude.
+
+There are good reasons to keep bugzilla rpm-based. Yes, it might be
+unmaintained thanks to it but this is how things are today. If you want things
+to change then actually start doing something.. talking doesn't help much
+here..
+
+--
+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="002153.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002155.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2154">[ date ]</a>
+ <a href="thread.html#2154">[ thread ]</a>
+ <a href="subject.html#2154">[ subject ]</a>
+ <a href="author.html#2154">[ 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/2012-August/002155.html b/zarb-ml/mageia-webteam/2012-August/002155.html
new file mode 100644
index 000000000..da55d3535
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002155.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.2
+ </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.2&In-Reply-To=%3C20120817094105.90E4640E2B%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="002154.html">
+ <LINK REL="Next" HREF="002156.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120817094105.90E4640E2B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Aug 17 11:41:05 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002154.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002156.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2155">[ date ]</a>
+ <a href="thread.html#2155">[ thread ]</a>
+ <a href="subject.html#2155">[ subject ]</a>
+ <a href="author.html#2155">[ 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 #44 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-17 11:41:05 CEST ---
+(In reply to comment #43)
+&gt;<i> Fr&#233;d&#233;ric wants to use version control to keep it up-to-date. But this doesn't
+</I>&gt;<i> quite work with the puppet + rpm setup.
+</I>
+But maybe it should be rethought if the puppet + rpm setup is the only and true
+way to do things there (for instance, it's not how we manage several of our
+websites).
+
+I know why we went this way to keep things manageable and stable at a lower
+cost for sysadmin, but if that puts too heavy a burden on developer/contributor
+side to do anything in a timely manner, we need to acknowledge that it's not
+satisfying and productive (call that a barrier to contribute/progress).
+
+Or, to setup an &quot;experimental&quot; area where contributors can setup and maintain
+services for Mageia.org, without the same framework, and see how it goes.
+
+--
+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="002154.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002156.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2155">[ date ]</a>
+ <a href="thread.html#2155">[ thread ]</a>
+ <a href="subject.html#2155">[ subject ]</a>
+ <a href="author.html#2155">[ 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/2012-August/002156.html b/zarb-ml/mageia-webteam/2012-August/002156.html
new file mode 100644
index 000000000..ce277b394
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002156.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120817094918.1A35A45C81%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="002155.html">
+ <LINK REL="Next" HREF="002157.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120817094918.1A35A45C81%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Aug 17 11:49:18 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002155.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002157.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2156">[ date ]</a>
+ <a href="thread.html#2156">[ thread ]</a>
+ <a href="subject.html#2156">[ subject ]</a>
+ <a href="author.html#2156">[ 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 #45 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-08-17 11:49:18 CEST ---
+puppet + rpm is not what is delaying the update. Using version control does not
+remove the need to test the upgrade in a VM before applying it.
+
+By the way we are now using version 3.6.10.
+
+--
+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="002155.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002157.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2156">[ date ]</a>
+ <a href="thread.html#2156">[ thread ]</a>
+ <a href="subject.html#2156">[ subject ]</a>
+ <a href="author.html#2156">[ 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/2012-August/002157.html b/zarb-ml/mageia-webteam/2012-August/002157.html
new file mode 100644
index 000000000..27444225a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002157.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120817103633.5AB5645DEA%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="002156.html">
+ <LINK REL="Next" HREF="002158.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120817103633.5AB5645DEA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Aug 17 12:36:33 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002156.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002158.html">[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2157">[ date ]</a>
+ <a href="thread.html#2157">[ thread ]</a>
+ <a href="subject.html#2157">[ subject ]</a>
+ <a href="author.html#2157">[ 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 #46 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-08-17 12:36:33 CEST ---
+(In reply to comment #45)
+&gt;<i> By the way we are now using version 3.6.10.
+</I>
+Thanks! 10+ security vulnerabilities cleared at once!
+
+--
+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="002156.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002158.html">[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2157">[ date ]</a>
+ <a href="thread.html#2157">[ thread ]</a>
+ <a href="subject.html#2157">[ subject ]</a>
+ <a href="author.html#2157">[ 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/2012-August/002158.html b/zarb-ml/mageia-webteam/2012-August/002158.html
new file mode 100644
index 000000000..182c0ad10
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002158.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br
+ </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%207091%5D%20%5BNew%5D%20Chromium-Browser%20redirects%20to%20pt%0A%20when%20the%20correct%20is%20pt-br&In-Reply-To=%3Cbug-7091-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="002157.html">
+ <LINK REL="Next" HREF="002159.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br</H1>
+ <B>Anderson Carvalho</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207091%5D%20%5BNew%5D%20Chromium-Browser%20redirects%20to%20pt%0A%20when%20the%20correct%20is%20pt-br&In-Reply-To=%3Cbug-7091-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Aug 17 13:33:40 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002157.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002159.html">[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2158">[ date ]</a>
+ <a href="thread.html#2158">[ thread ]</a>
+ <a href="subject.html#2158">[ subject ]</a>
+ <a href="author.html#2158">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7091">https://bugs.mageia.org/show_bug.cgi?id=7091</A>
+
+ Summary: Chromium-Browser redirects to pt when the correct is
+ pt-br
+ 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">frateraec at gmail.com</A>
+
+
+Description of problem:
+Chromium-Browser is configured to automatically redirect to pt-Br, however in
+<A HREF="http://www.mageia.org/">http://www.mageia.org/</A> redirects to pt.
+Need a fix in site for Chromium-Browser redirect correctly?
+
+Version-Release number of selected component (if applicable):
+User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.11 (KHTML, like
+Gecko) Chrome/20.0.1132.57 Safari/536.11
+Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
+Accept-Encoding: gzip,deflate,sdch
+Accept-Language: pt-BR,pt;q=0.8,es;q=0.6,en-US;q=0.4,en;q=0.2
+Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
+
+
+How reproducible:
+Access <A HREF="http://www.mageia.org/">http://www.mageia.org/</A> by Chromium-Browser
+
+--
+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="002157.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002159.html">[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2158">[ date ]</a>
+ <a href="thread.html#2158">[ thread ]</a>
+ <a href="subject.html#2158">[ subject ]</a>
+ <a href="author.html#2158">[ 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/2012-August/002159.html b/zarb-ml/mageia-webteam/2012-August/002159.html
new file mode 100644
index 000000000..d3ea0a12a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002159.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br
+ </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%207091%5D%20Chromium-Browser%20redirects%20to%20pt%20when%0A%20the%20correct%20is%20pt-br&In-Reply-To=%3C20120817141631.046A345DF1%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="002158.html">
+ <LINK REL="Next" HREF="002160.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207091%5D%20Chromium-Browser%20redirects%20to%20pt%20when%0A%20the%20correct%20is%20pt-br&In-Reply-To=%3C20120817141631.046A345DF1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Aug 17 16:16:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002158.html">[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br
+</A></li>
+ <LI>Next message: <A HREF="002160.html">[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2159">[ date ]</a>
+ <a href="thread.html#2159">[ thread ]</a>
+ <a href="subject.html#2159">[ subject ]</a>
+ <a href="author.html#2159">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7091">https://bugs.mageia.org/show_bug.cgi?id=7091</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-08-17 16:16:30 CEST ---
+Thanks for the report! 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="002158.html">[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br
+</A></li>
+ <LI>Next message: <A HREF="002160.html">[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2159">[ date ]</a>
+ <a href="thread.html#2159">[ thread ]</a>
+ <a href="subject.html#2159">[ subject ]</a>
+ <a href="author.html#2159">[ 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/2012-August/002160.html b/zarb-ml/mageia-webteam/2012-August/002160.html
new file mode 100644
index 000000000..226204dbf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002160.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7099] [New] Apporval first post into 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%207099%5D%20%5BNew%5D%20Apporval%20first%20post%20into%20forum&In-Reply-To=%3Cbug-7099-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="002159.html">
+ <LINK REL="Next" HREF="002161.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum</H1>
+ <B>isadora</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207099%5D%20%5BNew%5D%20Apporval%20first%20post%20into%20forum&In-Reply-To=%3Cbug-7099-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Aug 18 11:57:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002159.html">[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br
+</A></li>
+ <LI>Next message: <A HREF="002161.html">[Mageia-webteam] [Bug 7099] Approval first post into forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2160">[ date ]</a>
+ <a href="thread.html#2160">[ thread ]</a>
+ <a href="subject.html#2160">[ subject ]</a>
+ <a href="author.html#2160">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7099">https://bugs.mageia.org/show_bug.cgi?id=7099</A>
+
+ Summary: Apporval first post into forum
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://forums.mageia.org">http://forums.mageia.org</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">isis2000 at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">forums-bugs at ml.mageia.org</A>
+
+
+Description of problem:
+
+To have better hands-on over spamming, i suggest every first post by a new
+forum-member being approved before.
+This will protect the forum against boring spam-messages in a most direct way.
+The first post by a new member most of the time indicates the right or wrong
+intentions.
+The amount of new members registering, on average level, is this low, i don't
+foresee much extra time to spend on managing.
+The way it is working now, also brings quite some steps to execute before
+everything is handled.
+
+--
+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="002159.html">[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br
+</A></li>
+ <LI>Next message: <A HREF="002161.html">[Mageia-webteam] [Bug 7099] Approval first post into forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2160">[ date ]</a>
+ <a href="thread.html#2160">[ thread ]</a>
+ <a href="subject.html#2160">[ subject ]</a>
+ <a href="author.html#2160">[ 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/2012-August/002161.html b/zarb-ml/mageia-webteam/2012-August/002161.html
new file mode 100644
index 000000000..4ffe8cdf6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002161.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7099] Approval first post into 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%207099%5D%20Approval%20first%20post%20into%20forum&In-Reply-To=%3C20120818100523.BDE3445E07%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="002160.html">
+ <LINK REL="Next" HREF="002162.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7099] Approval first post into forum</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207099%5D%20Approval%20first%20post%20into%20forum&In-Reply-To=%3C20120818100523.BDE3445E07%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7099] Approval first post into forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Aug 18 12:05:23 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002160.html">[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum
+</A></li>
+ <LI>Next message: <A HREF="002162.html">[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2161">[ date ]</a>
+ <a href="thread.html#2161">[ thread ]</a>
+ <a href="subject.html#2161">[ subject ]</a>
+ <a href="author.html#2161">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7099">https://bugs.mageia.org/show_bug.cgi?id=7099</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Apporval first post into |Approval first post into
+ |forum |forum
+ AssignedTo|<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">forums-bugs at ml.mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>,
+ | |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</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="002160.html">[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum
+</A></li>
+ <LI>Next message: <A HREF="002162.html">[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2161">[ date ]</a>
+ <a href="thread.html#2161">[ thread ]</a>
+ <a href="subject.html#2161">[ subject ]</a>
+ <a href="author.html#2161">[ 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/2012-August/002162.html b/zarb-ml/mageia-webteam/2012-August/002162.html
new file mode 100644
index 000000000..1d19e4ae9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002162.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's
+ </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%207100%5D%20%5BNew%5D%20forum%20logs%20should%20store%20user%20ip%0A%20address%2C%20instead%20of%20proxy%27s&In-Reply-To=%3Cbug-7100-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="002161.html">
+ <LINK REL="Next" HREF="002163.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207100%5D%20%5BNew%5D%20forum%20logs%20should%20store%20user%20ip%0A%20address%2C%20instead%20of%20proxy%27s&In-Reply-To=%3Cbug-7100-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Aug 18 13:28:23 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002161.html">[Mageia-webteam] [Bug 7099] Approval first post into forum
+</A></li>
+ <LI>Next message: <A HREF="002163.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2162">[ date ]</a>
+ <a href="thread.html#2162">[ thread ]</a>
+ <a href="subject.html#2162">[ subject ]</a>
+ <a href="author.html#2162">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7100">https://bugs.mageia.org/show_bug.cgi?id=7100</A>
+
+ Summary: forum logs should store user ip address, instead of
+ proxy's
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Keywords: logs
+ Severity: major
+ 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>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">forums-bugs at ml.mageia.org</A>
+
+
+Currently, our phpbb setup is behind a reverse proxy. All users IP addresses
+logged in database are then the proxy IP (127.0.0.1 here). We need to fix this
+so that the user IP is logged instead.
+
+Rationale: French law requires us to store for year access/action logs from
+users, and we need to have the correct IP address there.
+
+--
+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="002161.html">[Mageia-webteam] [Bug 7099] Approval first post into forum
+</A></li>
+ <LI>Next message: <A HREF="002163.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2162">[ date ]</a>
+ <a href="thread.html#2162">[ thread ]</a>
+ <a href="subject.html#2162">[ subject ]</a>
+ <a href="author.html#2162">[ 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/2012-August/002163.html b/zarb-ml/mageia-webteam/2012-August/002163.html
new file mode 100644
index 000000000..47217cc1f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002163.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+ </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%207100%5D%20forum%20logs%20should%20store%20user%20ip%20address%2C%0A%20instead%20of%20proxy%27s&In-Reply-To=%3C20120818112908.1306445E0C%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="002162.html">
+ <LINK REL="Next" HREF="002170.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207100%5D%20forum%20logs%20should%20store%20user%20ip%20address%2C%0A%20instead%20of%20proxy%27s&In-Reply-To=%3C20120818112908.1306445E0C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Aug 18 13:29:08 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002162.html">[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI>Next message: <A HREF="002170.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2163">[ date ]</a>
+ <a href="thread.html#2163">[ thread ]</a>
+ <a href="subject.html#2163">[ subject ]</a>
+ <a href="author.html#2163">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7100">https://bugs.mageia.org/show_bug.cgi?id=7100</A>
+
+--- Comment #1 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-18 13:29:08 CEST ---
+Two solutions so far:
+ - package, install and use mod_rpaf
+ - patch phpbb code to handle X-Forwarded-For header
+
+--
+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="002162.html">[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI>Next message: <A HREF="002170.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2163">[ date ]</a>
+ <a href="thread.html#2163">[ thread ]</a>
+ <a href="subject.html#2163">[ subject ]</a>
+ <a href="author.html#2163">[ 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/2012-August/002164.html b/zarb-ml/mageia-webteam/2012-August/002164.html
new file mode 100644
index 000000000..0b51b29ca
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002164.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+ </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%204885%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3C20120820192625.CF2B445EFC%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="002170.html">
+ <LINK REL="Next" HREF="002165.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204885%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3C20120820192625.CF2B445EFC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Aug 20 21:26:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002170.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI>Next message: <A HREF="002165.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2164">[ date ]</a>
+ <a href="thread.html#2164">[ thread ]</a>
+ <a href="subject.html#2164">[ subject ]</a>
+ <a href="author.html#2164">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4885">https://bugs.mageia.org/show_bug.cgi?id=4885</A>
+
+--- Comment #2 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2012-08-20 21:26:25 CEST ---
+Ping ping ;)
+
+--
+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="002170.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI>Next message: <A HREF="002165.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2164">[ date ]</a>
+ <a href="thread.html#2164">[ thread ]</a>
+ <a href="subject.html#2164">[ subject ]</a>
+ <a href="author.html#2164">[ 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/2012-August/002165.html b/zarb-ml/mageia-webteam/2012-August/002165.html
new file mode 100644
index 000000000..40c0a7f6a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002165.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+ </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%204885%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3C20120820212729.E659545F06%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="002164.html">
+ <LINK REL="Next" HREF="002166.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204885%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3C20120820212729.E659545F06%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Aug 20 23:27:29 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002164.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="002166.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2165">[ date ]</a>
+ <a href="thread.html#2165">[ thread ]</a>
+ <a href="subject.html#2165">[ subject ]</a>
+ <a href="author.html#2165">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4885">https://bugs.mageia.org/show_bug.cgi?id=4885</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|NEW |ASSIGNED
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="002164.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="002166.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2165">[ date ]</a>
+ <a href="thread.html#2165">[ thread ]</a>
+ <a href="subject.html#2165">[ subject ]</a>
+ <a href="author.html#2165">[ 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/2012-August/002166.html b/zarb-ml/mageia-webteam/2012-August/002166.html
new file mode 100644
index 000000000..23df82667
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002166.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+ </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%204885%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3C20120821143230.2650045F4F%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="002165.html">
+ <LINK REL="Next" HREF="002167.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204885%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3C20120821143230.2650045F4F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 21 16:32:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002165.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="002167.html">[Mageia-webteam] [Bug 6856] Improve registration form/process
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2166">[ date ]</a>
+ <a href="thread.html#2166">[ thread ]</a>
+ <a href="subject.html#2166">[ subject ]</a>
+ <a href="author.html#2166">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4885">https://bugs.mageia.org/show_bug.cgi?id=4885</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|ASSIGNED |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; 2012-08-21 18:32:29 CEST ---
+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="002165.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="002167.html">[Mageia-webteam] [Bug 6856] Improve registration form/process
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2166">[ date ]</a>
+ <a href="thread.html#2166">[ thread ]</a>
+ <a href="subject.html#2166">[ subject ]</a>
+ <a href="author.html#2166">[ 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/2012-August/002167.html b/zarb-ml/mageia-webteam/2012-August/002167.html
new file mode 100644
index 000000000..ebe0afa68
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002167.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6856] Improve registration form/process
+ </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%206856%5D%20Improve%20registration%20form/process&In-Reply-To=%3C20120821143933.9BEE845F26%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="002166.html">
+ <LINK REL="Next" HREF="002168.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6856] Improve registration form/process</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206856%5D%20Improve%20registration%20form/process&In-Reply-To=%3C20120821143933.9BEE845F26%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6856] Improve registration form/process">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 21 16:39:33 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002166.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="002168.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2167">[ date ]</a>
+ <a href="thread.html#2167">[ thread ]</a>
+ <a href="subject.html#2167">[ subject ]</a>
+ <a href="author.html#2167">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6856">https://bugs.mageia.org/show_bug.cgi?id=6856</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
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="002166.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="002168.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2167">[ date ]</a>
+ <a href="thread.html#2167">[ thread ]</a>
+ <a href="subject.html#2167">[ subject ]</a>
+ <a href="author.html#2167">[ 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/2012-August/002168.html b/zarb-ml/mageia-webteam/2012-August/002168.html
new file mode 100644
index 000000000..a9fd86a3b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002168.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 452] Privacy policy is still a draft
+ </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%20452%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3C20120821143953.461E245F26%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="002167.html">
+ <LINK REL="Next" HREF="002169.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 452] Privacy policy is still a draft</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20452%5D%20Privacy%20policy%20is%20still%20a%20draft&In-Reply-To=%3C20120821143953.461E245F26%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 452] Privacy policy is still a draft">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 21 16:39:53 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002167.html">[Mageia-webteam] [Bug 6856] Improve registration form/process
+</A></li>
+ <LI>Next message: <A HREF="002169.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2168">[ date ]</a>
+ <a href="thread.html#2168">[ thread ]</a>
+ <a href="subject.html#2168">[ subject ]</a>
+ <a href="author.html#2168">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</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
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="002167.html">[Mageia-webteam] [Bug 6856] Improve registration form/process
+</A></li>
+ <LI>Next message: <A HREF="002169.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2168">[ date ]</a>
+ <a href="thread.html#2168">[ thread ]</a>
+ <a href="subject.html#2168">[ subject ]</a>
+ <a href="author.html#2168">[ 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/2012-August/002169.html b/zarb-ml/mageia-webteam/2012-August/002169.html
new file mode 100644
index 000000000..467e585bd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002169.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20120821144915.066A045F52%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="002168.html">
+ <LINK REL="Next" HREF="002171.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20120821144915.066A045F52%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 21 16:49:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002168.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI>Next message: <A HREF="002171.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2169">[ date ]</a>
+ <a href="thread.html#2169">[ thread ]</a>
+ <a href="subject.html#2169">[ subject ]</a>
+ <a href="author.html#2169">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</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|NEW |RESOLVED
+ Resolution| |OLD
+
+--
+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="002168.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A></li>
+ <LI>Next message: <A HREF="002171.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2169">[ date ]</a>
+ <a href="thread.html#2169">[ thread ]</a>
+ <a href="subject.html#2169">[ subject ]</a>
+ <a href="author.html#2169">[ 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/2012-August/002170.html b/zarb-ml/mageia-webteam/2012-August/002170.html
new file mode 100644
index 000000000..0922bff60
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002170.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+ </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%207100%5D%20forum%20logs%20should%20store%20user%20ip%20address%2C%0A%20instead%20of%20proxy%27s&In-Reply-To=%3C20120821145424.7390F45F58%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="002163.html">
+ <LINK REL="Next" HREF="002164.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207100%5D%20forum%20logs%20should%20store%20user%20ip%20address%2C%0A%20instead%20of%20proxy%27s&In-Reply-To=%3C20120821145424.7390F45F58%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 21 16:54:24 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002163.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI>Next message: <A HREF="002164.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2170">[ date ]</a>
+ <a href="thread.html#2170">[ thread ]</a>
+ <a href="subject.html#2170">[ subject ]</a>
+ <a href="author.html#2170">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7100">https://bugs.mageia.org/show_bug.cgi?id=7100</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
+----------------------------------------------------------------------------
+ AssignedTo|<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>
+
+--
+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="002163.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A></li>
+ <LI>Next message: <A HREF="002164.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2170">[ date ]</a>
+ <a href="thread.html#2170">[ thread ]</a>
+ <a href="subject.html#2170">[ subject ]</a>
+ <a href="author.html#2170">[ 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/2012-August/002171.html b/zarb-ml/mageia-webteam/2012-August/002171.html
new file mode 100644
index 000000000..2d63f82d0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002171.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+ </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%201734%5D%20Wrong%20link%20for%20%22forgot%20password%22&In-Reply-To=%3C20120821153612.BA46D45F67%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="002169.html">
+ <LINK REL="Next" HREF="002172.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201734%5D%20Wrong%20link%20for%20%22forgot%20password%22&In-Reply-To=%3C20120821153612.BA46D45F67%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 21 17:36:12 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002169.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="002172.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2171">[ date ]</a>
+ <a href="thread.html#2171">[ thread ]</a>
+ <a href="subject.html#2171">[ subject ]</a>
+ <a href="author.html#2171">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1734">https://bugs.mageia.org/show_bug.cgi?id=1734</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|ASSIGNED |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-21 17:36:12 CEST ---
+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="002169.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="002172.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2171">[ date ]</a>
+ <a href="thread.html#2171">[ thread ]</a>
+ <a href="subject.html#2171">[ subject ]</a>
+ <a href="author.html#2171">[ 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/2012-August/002172.html b/zarb-ml/mageia-webteam/2012-August/002172.html
new file mode 100644
index 000000000..018148557
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002172.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20120822133016.9DA0645F16%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="002171.html">
+ <LINK REL="Next" HREF="002173.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20120822133016.9DA0645F16%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 22 15:30:16 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002171.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI>Next message: <A HREF="002173.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2172">[ date ]</a>
+ <a href="thread.html#2172">[ thread ]</a>
+ <a href="subject.html#2172">[ subject ]</a>
+ <a href="author.html#2172">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #12 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-08-22 15:30:16 CEST ---
+Romain d'Alverny changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |OLD
+
+Old ? it's not really working
+
+--
+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="002171.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI>Next message: <A HREF="002173.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2172">[ date ]</a>
+ <a href="thread.html#2172">[ thread ]</a>
+ <a href="subject.html#2172">[ subject ]</a>
+ <a href="author.html#2172">[ 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/2012-August/002173.html b/zarb-ml/mageia-webteam/2012-August/002173.html
new file mode 100644
index 000000000..10dec6dd6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002173.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+ </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%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20120822134047.2E2AF45F23%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="002172.html">
+ <LINK REL="Next" HREF="002174.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203451%5D%20Setup%20Bugzilla%20and%20download%20interwiki%0A%09links&In-Reply-To=%3C20120822134047.2E2AF45F23%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 22 15:40:47 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002172.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="002174.html">[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2173">[ date ]</a>
+ <a href="thread.html#2173">[ thread ]</a>
+ <a href="subject.html#2173">[ subject ]</a>
+ <a href="author.html#2173">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3451">https://bugs.mageia.org/show_bug.cgi?id=3451</A>
+
+--- Comment #13 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-22 15:40:47 CEST ---
+No, but we did follow the procedure to do it, and it doesn't work. Well, it
+partly works (the downoad keyword is ok, the bug one not). And I don't see how
+we will get any further than that. So maybe it's a wontfix or a fixed, or in
+between.
+
+--
+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="002172.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="002174.html">[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2173">[ date ]</a>
+ <a href="thread.html#2173">[ thread ]</a>
+ <a href="subject.html#2173">[ subject ]</a>
+ <a href="author.html#2173">[ 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/2012-August/002174.html b/zarb-ml/mageia-webteam/2012-August/002174.html
new file mode 100644
index 000000000..07ac2f566
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002174.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso
+ </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%207146%5D%20%5BNew%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%0A%09the%20iso&In-Reply-To=%3Cbug-7146-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="002173.html">
+ <LINK REL="Next" HREF="002175.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207146%5D%20%5BNew%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%0A%09the%20iso&In-Reply-To=%3Cbug-7146-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 22 22:21:40 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002173.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="002175.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2174">[ date ]</a>
+ <a href="thread.html#2174">[ thread ]</a>
+ <a href="subject.html#2174">[ subject ]</a>
+ <a href="author.html#2174">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7146">https://bugs.mageia.org/show_bug.cgi?id=7146</A>
+
+ Summary: Remove ibiblio as ftp mirror for the iso
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/en/downloads">http://www.mageia.org/en/downloads</A>
+ 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">manuel.mageia at hiebel.eu</A>
+
+
+Description of problem:
+Seems ibiblio his starting his recast of the mirror (a guys comed one days on
+-sysadmin saying the ftp an rsync will be dropped one day and a torrent tracker
+ + keeping data will be opened )
+
+/iso was removed from the tree so it's not working, and for the http it's a
+redirection
+
+<A HREF="ftp://distro.ibiblio.org/pub/linux/distributions/mageia/">ftp://distro.ibiblio.org/pub/linux/distributions/mageia/</A>
+
+(also I guess its a good a occasion to update the mirrorlist cache)
+
+--
+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="002173.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A></li>
+ <LI>Next message: <A HREF="002175.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2174">[ date ]</a>
+ <a href="thread.html#2174">[ thread ]</a>
+ <a href="subject.html#2174">[ subject ]</a>
+ <a href="author.html#2174">[ 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/2012-August/002175.html b/zarb-ml/mageia-webteam/2012-August/002175.html
new file mode 100644
index 000000000..7434069b3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002175.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+ </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%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120823105041.12B49456A4%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="002174.html">
+ <LINK REL="Next" HREF="002176.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120823105041.12B49456A4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 23 12:50:41 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002174.html">[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002176.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2175">[ date ]</a>
+ <a href="thread.html#2175">[ thread ]</a>
+ <a href="subject.html#2175">[ subject ]</a>
+ <a href="author.html#2175">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7146">https://bugs.mageia.org/show_bug.cgi?id=7146</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; 2012-08-23 12:50:40 CEST ---
+Removed from www.m.o list; but maybe it should be removed from mirrors.m.o list
+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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002174.html">[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002176.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2175">[ date ]</a>
+ <a href="thread.html#2175">[ thread ]</a>
+ <a href="subject.html#2175">[ subject ]</a>
+ <a href="author.html#2175">[ 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/2012-August/002176.html b/zarb-ml/mageia-webteam/2012-August/002176.html
new file mode 100644
index 000000000..ba3092fff
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002176.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+ </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%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120823150828.7D7DD45ECA%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="002175.html">
+ <LINK REL="Next" HREF="002177.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120823150828.7D7DD45ECA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 23 17:08:28 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002175.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002177.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2176">[ date ]</a>
+ <a href="thread.html#2176">[ thread ]</a>
+ <a href="subject.html#2176">[ subject ]</a>
+ <a href="author.html#2176">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7146">https://bugs.mageia.org/show_bug.cgi?id=7146</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-08-23 17:08:27 CEST ---
+the /distrib tree seems complete so I guess no
+
+--
+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="002175.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002177.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2176">[ date ]</a>
+ <a href="thread.html#2176">[ thread ]</a>
+ <a href="subject.html#2176">[ subject ]</a>
+ <a href="author.html#2176">[ 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/2012-August/002177.html b/zarb-ml/mageia-webteam/2012-August/002177.html
new file mode 100644
index 000000000..14338939f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002177.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+ </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%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120823151055.134F445E40%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="002176.html">
+ <LINK REL="Next" HREF="002178.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120823151055.134F445E40%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 23 17:10:55 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002176.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002178.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2177">[ date ]</a>
+ <a href="thread.html#2177">[ thread ]</a>
+ <a href="subject.html#2177">[ subject ]</a>
+ <a href="author.html#2177">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7146">https://bugs.mageia.org/show_bug.cgi?id=7146</A>
+
+--- Comment #3 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-23 17:10:55 CEST ---
+Ok. But it adds a layer of complexity to manage mirrors who have, or have not
+the iso/ dir. mirrors.m.o doesn't provide the info about that. Or... there's
+always bug 3166 but that's something else.
+
+--
+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="002176.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002178.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2177">[ date ]</a>
+ <a href="thread.html#2177">[ thread ]</a>
+ <a href="subject.html#2177">[ subject ]</a>
+ <a href="author.html#2177">[ 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/2012-August/002178.html b/zarb-ml/mageia-webteam/2012-August/002178.html
new file mode 100644
index 000000000..d6e0a96f0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002178.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+ </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%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120823151102.A5EE945EF6%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="002177.html">
+ <LINK REL="Next" HREF="002179.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120823151102.A5EE945EF6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Aug 23 17:11:02 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002177.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002179.html">[Mageia-webteam] [Bug 7183] [New] URL 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2178">[ date ]</a>
+ <a href="thread.html#2178">[ thread ]</a>
+ <a href="subject.html#2178">[ subject ]</a>
+ <a href="author.html#2178">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7146">https://bugs.mageia.org/show_bug.cgi?id=7146</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|NEW |RESOLVED
+ Resolution| |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="002177.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002179.html">[Mageia-webteam] [Bug 7183] [New] URL 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2178">[ date ]</a>
+ <a href="thread.html#2178">[ thread ]</a>
+ <a href="subject.html#2178">[ subject ]</a>
+ <a href="author.html#2178">[ 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/2012-August/002179.html b/zarb-ml/mageia-webteam/2012-August/002179.html
new file mode 100644
index 000000000..a0dc054de
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002179.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7183] [New] URL 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%207183%5D%20%5BNew%5D%20URL%20404&In-Reply-To=%3Cbug-7183-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="002178.html">
+ <LINK REL="Next" HREF="002181.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7183] [New] URL 404</H1>
+ <B>C S</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207183%5D%20%5BNew%5D%20URL%20404&In-Reply-To=%3Cbug-7183-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7183] [New] URL 404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 26 11:08:16 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002178.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002181.html">[Mageia-webteam] [Bug 7183] URL 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2179">[ date ]</a>
+ <a href="thread.html#2179">[ thread ]</a>
+ <a href="subject.html#2179">[ subject ]</a>
+ <a href="author.html#2179">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7183">https://bugs.mageia.org/show_bug.cgi?id=7183</A>
+
+ Summary: URL 404
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">contact at biskeo.com</A>
+
+
+<A HREF="http://www.mageia.org/fr/downloads/thank-you/">http://www.mageia.org/fr/downloads/thank-you/</A> est un lien cass&#233;.
+
+Trouv&#233; sur la page
+<A HREF="http://www.mageia.org/fr/downloads/get/?q=Mageia-2-LiveCD-KDE4-Europe1-Americas-x86_64-CD.iso.">http://www.mageia.org/fr/downloads/get/?q=Mageia-2-LiveCD-KDE4-Europe1-Americas-x86_64-CD.iso.</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="002178.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002181.html">[Mageia-webteam] [Bug 7183] URL 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2179">[ date ]</a>
+ <a href="thread.html#2179">[ thread ]</a>
+ <a href="subject.html#2179">[ subject ]</a>
+ <a href="author.html#2179">[ 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/2012-August/002180.html b/zarb-ml/mageia-webteam/2012-August/002180.html
new file mode 100644
index 000000000..67da81a73
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002180.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join
+ </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%207184%5D%20%5BNew%5D%20add%20the%20bugsquad%20in%20the%20list%20of%0A%09team%20you%20can%20join&In-Reply-To=%3Cbug-7184-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="002181.html">
+ <LINK REL="Next" HREF="002182.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207184%5D%20%5BNew%5D%20add%20the%20bugsquad%20in%20the%20list%20of%0A%09team%20you%20can%20join&In-Reply-To=%3Cbug-7184-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 26 12:49:00 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002181.html">[Mageia-webteam] [Bug 7183] URL 404
+</A></li>
+ <LI>Next message: <A HREF="002182.html">[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2180">[ date ]</a>
+ <a href="thread.html#2180">[ thread ]</a>
+ <a href="subject.html#2180">[ subject ]</a>
+ <a href="author.html#2180">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7184">https://bugs.mageia.org/show_bug.cgi?id=7184</A>
+
+ Summary: add the bugsquad in the list of team you can join
+ Product: Websites
+ Version: trunk
+ Platform: x86_64
+ URL: <A HREF="https://www.mageia.org/en/community/">https://www.mageia.org/en/community/</A>
+ 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">manuel.mageia at hiebel.eu</A>
+
+
+Description of problem:
+
+&lt;li&gt;&lt;a href=&quot;<A HREF="https://wiki.mageia.org/en/Internationalisation_Team_(i18n">https://wiki.mageia.org/en/Internationalisation_Team_(i18n</A>)&quot;
+hreflang=&quot;en&quot;&gt;&lt;?php _e('Translation')?&gt;&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;<A HREF="https://wiki.mageia.org/en/Sysadmin_Team">https://wiki.mageia.org/en/Sysadmin_Team</A>&quot; hreflang=&quot;en&quot;&gt;&lt;?php
+_e('Systems &amp;amp; infrastructure administration')?&gt;&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;<A HREF="https://wiki.mageia.org/en/Bugsquad">https://wiki.mageia.org/en/Bugsquad</A>&quot; hreflang=&quot;en&quot;&gt;&lt;?php _e('Bugs
+triaging')?&gt;&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+(the Atelier team link was not working, I have make a redirect on the wiki to
+keep all links in the wiki)
+
+
+also on the map page, why not use the good page for the teams ?
+array('t' =&gt; _t('Teams'), 'l' =&gt; '<A HREF="https://wiki.mageia.org/en/Contributing">https://wiki.mageia.org/en/Contributing</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="002181.html">[Mageia-webteam] [Bug 7183] URL 404
+</A></li>
+ <LI>Next message: <A HREF="002182.html">[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2180">[ date ]</a>
+ <a href="thread.html#2180">[ thread ]</a>
+ <a href="subject.html#2180">[ subject ]</a>
+ <a href="author.html#2180">[ 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/2012-August/002181.html b/zarb-ml/mageia-webteam/2012-August/002181.html
new file mode 100644
index 000000000..76f6775e1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002181.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7183] URL 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%207183%5D%20URL%20404&In-Reply-To=%3C20120826110544.CF25546342%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="002179.html">
+ <LINK REL="Next" HREF="002180.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7183] URL 404</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207183%5D%20URL%20404&In-Reply-To=%3C20120826110544.CF25546342%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7183] URL 404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 26 13:05:44 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002179.html">[Mageia-webteam] [Bug 7183] [New] URL 404
+</A></li>
+ <LI>Next message: <A HREF="002180.html">[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2181">[ date ]</a>
+ <a href="thread.html#2181">[ thread ]</a>
+ <a href="subject.html#2181">[ subject ]</a>
+ <a href="author.html#2181">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7183">https://bugs.mageia.org/show_bug.cgi?id=7183</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-08-26 13:05:44 CEST ---
+Corrig&#233;, merci.
+
+--
+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="002179.html">[Mageia-webteam] [Bug 7183] [New] URL 404
+</A></li>
+ <LI>Next message: <A HREF="002180.html">[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2181">[ date ]</a>
+ <a href="thread.html#2181">[ thread ]</a>
+ <a href="subject.html#2181">[ subject ]</a>
+ <a href="author.html#2181">[ 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/2012-August/002182.html b/zarb-ml/mageia-webteam/2012-August/002182.html
new file mode 100644
index 000000000..0f9876eea
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002182.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join
+ </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%207184%5D%20add%20the%20bugsquad%20in%20the%20list%20of%20team%0A%09you%20can%20join&In-Reply-To=%3C20120826110611.4EAA746345%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="002180.html">
+ <LINK REL="Next" HREF="002183.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207184%5D%20add%20the%20bugsquad%20in%20the%20list%20of%20team%0A%09you%20can%20join&In-Reply-To=%3C20120826110611.4EAA746345%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 26 13:06:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002180.html">[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join
+</A></li>
+ <LI>Next message: <A HREF="002183.html">[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2182">[ date ]</a>
+ <a href="thread.html#2182">[ thread ]</a>
+ <a href="subject.html#2182">[ subject ]</a>
+ <a href="author.html#2182">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7184">https://bugs.mageia.org/show_bug.cgi?id=7184</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-08-26 13:06:11 CEST ---
+(In reply to comment #0)
+&gt;<i> &lt;li&gt;&lt;a href=&quot;<A HREF="https://wiki.mageia.org/en/Bugsquad">https://wiki.mageia.org/en/Bugsquad</A>&quot; hreflang=&quot;en&quot;&gt;&lt;?php _e('Bugs
+</I>&gt;<i> triaging')?&gt;&lt;/a&gt;&lt;/li&gt;
+</I>&gt;<i> &lt;/ul&gt;
+</I>
+Fixed thanks.
+
+&gt;<i> also on the map page, why not use the good page for the teams ?
+</I>&gt;<i> array('t' =&gt; _t('Teams'), 'l' =&gt; '<A HREF="https://wiki.mageia.org/en/Contributing">https://wiki.mageia.org/en/Contributing</A>')
+</I>
+The canonical link is <A HREF="http://www.mageia.org/en/contribute/">http://www.mageia.org/en/contribute/</A> (to be translated).
+We can improve it for sure, the svn is quite open.
+
+--
+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="002180.html">[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join
+</A></li>
+ <LI>Next message: <A HREF="002183.html">[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2182">[ date ]</a>
+ <a href="thread.html#2182">[ thread ]</a>
+ <a href="subject.html#2182">[ subject ]</a>
+ <a href="author.html#2182">[ 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/2012-August/002183.html b/zarb-ml/mageia-webteam/2012-August/002183.html
new file mode 100644
index 000000000..27561125e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002183.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org
+ </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%207213%5D%20%5BNew%5D%20Unable%20to%20reach%20www.mageia.org&In-Reply-To=%3Cbug-7213-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="002182.html">
+ <LINK REL="Next" HREF="002184.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org</H1>
+ <B>Eduard Selma</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207213%5D%20%5BNew%5D%20Unable%20to%20reach%20www.mageia.org&In-Reply-To=%3Cbug-7213-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 26 20:45:56 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002182.html">[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join
+</A></li>
+ <LI>Next message: <A HREF="002184.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2183">[ date ]</a>
+ <a href="thread.html#2183">[ thread ]</a>
+ <a href="subject.html#2183">[ subject ]</a>
+ <a href="author.html#2183">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7213">https://bugs.mageia.org/show_bug.cgi?id=7213</A>
+
+ Summary: Unable to reach www.mageia.org
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">selma at tinet.cat</A>
+ RPM Package: n/a
+
+
+I wanted to open your main website, typing &quot;<A HREF="http://www.mageia.org">http://www.mageia.org</A>&quot;. As my
+system is localised in Catalan, I ws redirected to
+&quot;&quot;<A HREF="http://www.mageia.org/ca/">http://www.mageia.org/ca/</A>&quot;. All right, Mageia cares of localisation. But this
+page is... empty or even there is not such directory!
+
+The message (typical 404) says:
+&quot;Not Found. The requested URL /ca/ was not found on this server.
+Apache/2.2.14 (Mandriva Linux/PREFORK-1.6mdv2010.0)
+Server at www.mageia.org Port 80&quot;
+
+I was a former user (from '96) and translator to Catalan at Mandriva, until
+2007. I know that as today, Mageia has not much care of Catalan. But, please,
+let the catalan users reach your webpages in English or French, instead. This
+automatic redirect brings us to nowhere.
+
+I could eventually fill this through a live CD in English.
+
+Thanks in advance.
+
+--
+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="002182.html">[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join
+</A></li>
+ <LI>Next message: <A HREF="002184.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2183">[ date ]</a>
+ <a href="thread.html#2183">[ thread ]</a>
+ <a href="subject.html#2183">[ subject ]</a>
+ <a href="author.html#2183">[ 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/2012-August/002184.html b/zarb-ml/mageia-webteam/2012-August/002184.html
new file mode 100644
index 000000000..71bb8450b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002184.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+ </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%207213%5D%20Unable%20to%20reach%20www.mageia.org&In-Reply-To=%3C20120826212519.0E78C4640E%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="002183.html">
+ <LINK REL="Next" HREF="002185.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207213%5D%20Unable%20to%20reach%20www.mageia.org&In-Reply-To=%3C20120826212519.0E78C4640E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Aug 26 23:25:19 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002183.html">[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002185.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2184">[ date ]</a>
+ <a href="thread.html#2184">[ thread ]</a>
+ <a href="subject.html#2184">[ subject ]</a>
+ <a href="author.html#2184">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7213">https://bugs.mageia.org/show_bug.cgi?id=7213</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-08-26 23:25:19 CEST ---
+Sorry, this is a mixed bug.
+
+Short story: we don't have Catalan translators for www.m.o yet (but we welcome
+them for sure!).
+
+We used to register Catalan as a working language for the locale redirector,
+but the content tree was not translated, and then removed by mistake.
+
+Fixed (currently, links to English contents; or would you prefer French as a
+default here?), and waiting for translators here:
+<A HREF="https://wiki.mageia.org/en/Internationalisation_Team_(i18n">https://wiki.mageia.org/en/Internationalisation_Team_(i18n</A>)#Website_translation
+;)
+
+--
+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="002183.html">[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002185.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2184">[ date ]</a>
+ <a href="thread.html#2184">[ thread ]</a>
+ <a href="subject.html#2184">[ subject ]</a>
+ <a href="author.html#2184">[ 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/2012-August/002185.html b/zarb-ml/mageia-webteam/2012-August/002185.html
new file mode 100644
index 000000000..e4fa34aa0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002185.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+ </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%207213%5D%20Unable%20to%20reach%20www.mageia.org&In-Reply-To=%3C20120828114642.A4BE945F30%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="002184.html">
+ <LINK REL="Next" HREF="002186.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org</H1>
+ <B>Eduard Selma</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207213%5D%20Unable%20to%20reach%20www.mageia.org&In-Reply-To=%3C20120828114642.A4BE945F30%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 28 13:46:42 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002184.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002186.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2185">[ date ]</a>
+ <a href="thread.html#2185">[ thread ]</a>
+ <a href="subject.html#2185">[ subject ]</a>
+ <a href="author.html#2185">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7213">https://bugs.mageia.org/show_bug.cgi?id=7213</A>
+
+--- Comment #2 from Eduard Selma &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">selma at tinet.cat</A>&gt; 2012-08-28 13:46:41 CEST ---
+Merci, Romain.
+
+The bug i solved, for me too. English is fine as a default. The problem was
+when you could not get any content.
+
+Unfortunately, I can not help with the translation, as did before. Firstly, my
+agenda is too busy; but also because should be difficult to translate an OS you
+are not actually using. Now I am a Debian user, but the memory of my past
+Mandrake/Mandriva days bit my curiosity to know how feels Mageia now. Despite I
+could finally install a mix of Catalan (KDE) English and Spanish localized
+apps, it looks very fine, with some points to be polished. With the efforts of
+the Community, Mageia 3 could be a reference in RPM Linuxland, as Mandrake was.
+My best wishes for this.
+
+--
+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="002184.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002186.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2185">[ date ]</a>
+ <a href="thread.html#2185">[ thread ]</a>
+ <a href="subject.html#2185">[ subject ]</a>
+ <a href="author.html#2185">[ 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/2012-August/002186.html b/zarb-ml/mageia-webteam/2012-August/002186.html
new file mode 100644
index 000000000..6bb587c49
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002186.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+ </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%207213%5D%20Unable%20to%20reach%20www.mageia.org&In-Reply-To=%3C20120828121321.C8C3445F48%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="002185.html">
+ <LINK REL="Next" HREF="002187.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207213%5D%20Unable%20to%20reach%20www.mageia.org&In-Reply-To=%3C20120828121321.C8C3445F48%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Aug 28 14:13:21 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002185.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002187.html">[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2186">[ date ]</a>
+ <a href="thread.html#2186">[ thread ]</a>
+ <a href="subject.html#2186">[ subject ]</a>
+ <a href="author.html#2186">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7213">https://bugs.mageia.org/show_bug.cgi?id=7213</A>
+
+--- Comment #3 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-08-28 14:13:22 CEST ---
+Thanks a lot Eduard! :-)
+
+--
+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="002185.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002187.html">[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2186">[ date ]</a>
+ <a href="thread.html#2186">[ thread ]</a>
+ <a href="subject.html#2186">[ subject ]</a>
+ <a href="author.html#2186">[ 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/2012-August/002187.html b/zarb-ml/mageia-webteam/2012-August/002187.html
new file mode 100644
index 000000000..d7471b0d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002187.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+ </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%207234%5D%20%5BNew%5D%20Open%20Source%20tool%20written%20in%0A%20Python%20for%20automatic%20download/upload%20subtitles%20for%20videofiles.&In-Reply-To=%3Cbug-7234-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="002186.html">
+ <LINK REL="Next" HREF="002188.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.</H1>
+ <B>Michael Martins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207234%5D%20%5BNew%5D%20Open%20Source%20tool%20written%20in%0A%20Python%20for%20automatic%20download/upload%20subtitles%20for%20videofiles.&In-Reply-To=%3Cbug-7234-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 29 04:56:14 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002186.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002188.html">[Mageia-webteam] [Bug 7234] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2187">[ date ]</a>
+ <a href="thread.html#2187">[ thread ]</a>
+ <a href="subject.html#2187">[ subject ]</a>
+ <a href="author.html#2187">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7234">https://bugs.mageia.org/show_bug.cgi?id=7234</A>
+
+ Summary: Open Source tool written in Python for automatic
+ download/upload subtitles for videofiles.
+ 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">michaelfm21 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>
+ RPM Package: <A HREF="http://pkgs.org/mandriva-2010/mandriva-contrib-updates">http://pkgs.org/mandriva-2010/mandriva-contrib-updates</A>
+ -i586/subdownloader-2.0.13-1mdv2010.1.noarch.rpm.html
+
+
+Open Source tool written in Python for automatic download/upload subtitles for
+videofiles (DIVX,MPEG,AVI,VOB,etc) and DVD's using fast hashing.
+
+--
+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="002186.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002188.html">[Mageia-webteam] [Bug 7234] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2187">[ date ]</a>
+ <a href="thread.html#2187">[ thread ]</a>
+ <a href="subject.html#2187">[ subject ]</a>
+ <a href="author.html#2187">[ 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/2012-August/002188.html b/zarb-ml/mageia-webteam/2012-August/002188.html
new file mode 100644
index 000000000..e0641b323
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/002188.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7234] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+ </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%207234%5D%20Open%20Source%20tool%20written%20in%20Python%20for%0A%20automatic%20download/upload%20subtitles%20for%20videofiles.&In-Reply-To=%3C20120829063914.1C8CC45E58%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="002187.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7234] Open Source tool written in Python for automatic download/upload subtitles for videofiles.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207234%5D%20Open%20Source%20tool%20written%20in%20Python%20for%0A%20automatic%20download/upload%20subtitles%20for%20videofiles.&In-Reply-To=%3C20120829063914.1C8CC45E58%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7234] Open Source tool written in Python for automatic download/upload subtitles for videofiles.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Aug 29 08:39:14 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002187.html">[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2188">[ date ]</a>
+ <a href="thread.html#2188">[ thread ]</a>
+ <a href="subject.html#2188">[ subject ]</a>
+ <a href="author.html#2188">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7234">https://bugs.mageia.org/show_bug.cgi?id=7234</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Mageia
+ Version|unspecified |Cauldron
+ Component|Bugzilla |New RPM package request
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.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">oliver.bgr at googlemail.com</A>
+ |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |
+ Target Milestone|--- |Mageia 3
+
+--
+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="002187.html">[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2188">[ date ]</a>
+ <a href="thread.html#2188">[ thread ]</a>
+ <a href="subject.html#2188">[ subject ]</a>
+ <a href="author.html#2188">[ 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/2012-August/author.html b/zarb-ml/mageia-webteam/2012-August/author.html
new file mode 100644
index 000000000..fa34503d2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/author.html
@@ -0,0 +1,372 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam August 2012 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>August 2012 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 Aug 2 13:21:02 CEST 2012</i><br>
+ <b>Ending:</b> <i>Wed Aug 29 08:39:14 CEST 2012</i><br>
+ <b>Messages:</b> 65<p>
+ <ul>
+
+<LI><A HREF="002144.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2144">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002146.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2146">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002149.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2149">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002153.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2153">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002125.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2125">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="002135.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A><A NAME="2135">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="002124.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2124">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002145.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2145">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002152.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2152">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002157.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2157">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002188.html">[Mageia-webteam] [Bug 7234] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A><A NAME="2188">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="002158.html">[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br
+</A><A NAME="2158">&nbsp;</A>
+<I>Anderson Carvalho
+</I>
+
+<LI><A HREF="002137.html">[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2137">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002138.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2138">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002139.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2139">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002172.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2172">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002174.html">[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2174">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002176.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2176">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002180.html">[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join
+</A><A NAME="2180">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002141.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="2141">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="002164.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2164">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="002154.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2154">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="002148.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="2148">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="002187.html">[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A><A NAME="2187">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002179.html">[Mageia-webteam] [Bug 7183] [New] URL 404
+</A><A NAME="2179">&nbsp;</A>
+<I>C S
+</I>
+
+<LI><A HREF="002183.html">[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org
+</A><A NAME="2183">&nbsp;</A>
+<I>Eduard Selma
+</I>
+
+<LI><A HREF="002185.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2185">&nbsp;</A>
+<I>Eduard Selma
+</I>
+
+<LI><A HREF="002143.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2143">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002147.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2147">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002151.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2151">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002156.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2156">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002140.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2140">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002142.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2142">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002161.html">[Mageia-webteam] [Bug 7099] Approval first post into forum
+</A><A NAME="2161">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002133.html">[Mageia-webteam] [Bug 6984] [New] tracker is off line
+</A><A NAME="2133">&nbsp;</A>
+<I>james Whitby
+</I>
+
+<LI><A HREF="002126.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="2126">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002127.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="2127">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002128.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A><A NAME="2128">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002129.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="2129">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002130.html">[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error
+</A><A NAME="2130">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002131.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A><A NAME="2131">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002132.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="2132">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002134.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A><A NAME="2134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002136.html">[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report
+</A><A NAME="2136">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002150.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2150">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002155.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2155">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002159.html">[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br
+</A><A NAME="2159">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002162.html">[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2162">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002163.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2163">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002165.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2165">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002166.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2166">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002167.html">[Mageia-webteam] [Bug 6856] Improve registration form/process
+</A><A NAME="2167">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002168.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="2168">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002169.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2169">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002170.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2170">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002171.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="2171">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002173.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2173">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002175.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2175">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002177.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2177">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002178.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2178">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002181.html">[Mageia-webteam] [Bug 7183] URL 404
+</A><A NAME="2181">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002182.html">[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join
+</A><A NAME="2182">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002184.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2184">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002186.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2186">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002160.html">[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum
+</A><A NAME="2160">&nbsp;</A>
+<I>isadora
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Aug 29 08:39:14 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Wed Aug 29 08:39:18 CEST 2012</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/2012-August/date.html b/zarb-ml/mageia-webteam/2012-August/date.html
new file mode 100644
index 000000000..528a45851
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/date.html
@@ -0,0 +1,372 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam August 2012 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>August 2012 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 Aug 2 13:21:02 CEST 2012</i><br>
+ <b>Ending:</b> <i>Wed Aug 29 08:39:14 CEST 2012</i><br>
+ <b>Messages:</b> 65<p>
+ <ul>
+
+<LI><A HREF="002124.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2124">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002125.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2125">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="002126.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="2126">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002127.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="2127">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002128.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A><A NAME="2128">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002129.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="2129">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002130.html">[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error
+</A><A NAME="2130">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002131.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A><A NAME="2131">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002132.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="2132">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002133.html">[Mageia-webteam] [Bug 6984] [New] tracker is off line
+</A><A NAME="2133">&nbsp;</A>
+<I>james Whitby
+</I>
+
+<LI><A HREF="002134.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A><A NAME="2134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002135.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A><A NAME="2135">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="002136.html">[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report
+</A><A NAME="2136">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002137.html">[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2137">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002138.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2138">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002139.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2139">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002140.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2140">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002141.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="2141">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="002142.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2142">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002143.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2143">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002144.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2144">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002145.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2145">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002146.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2146">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002147.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2147">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002148.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="2148">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="002149.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2149">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002150.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2150">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002151.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2151">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002152.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2152">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002153.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2153">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002154.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2154">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="002155.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2155">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002156.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2156">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002157.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2157">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002158.html">[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br
+</A><A NAME="2158">&nbsp;</A>
+<I>Anderson Carvalho
+</I>
+
+<LI><A HREF="002159.html">[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br
+</A><A NAME="2159">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002160.html">[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum
+</A><A NAME="2160">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="002161.html">[Mageia-webteam] [Bug 7099] Approval first post into forum
+</A><A NAME="2161">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002162.html">[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2162">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002163.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2163">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002164.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2164">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="002165.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2165">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002166.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2166">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002167.html">[Mageia-webteam] [Bug 6856] Improve registration form/process
+</A><A NAME="2167">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002168.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="2168">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002169.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2169">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002170.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2170">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002171.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="2171">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002172.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2172">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002173.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2173">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002174.html">[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2174">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002175.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2175">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002176.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2176">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002177.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2177">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002178.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2178">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002179.html">[Mageia-webteam] [Bug 7183] [New] URL 404
+</A><A NAME="2179">&nbsp;</A>
+<I>C S
+</I>
+
+<LI><A HREF="002180.html">[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join
+</A><A NAME="2180">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002181.html">[Mageia-webteam] [Bug 7183] URL 404
+</A><A NAME="2181">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002182.html">[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join
+</A><A NAME="2182">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002183.html">[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org
+</A><A NAME="2183">&nbsp;</A>
+<I>Eduard Selma
+</I>
+
+<LI><A HREF="002184.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2184">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002185.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2185">&nbsp;</A>
+<I>Eduard Selma
+</I>
+
+<LI><A HREF="002186.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2186">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002187.html">[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A><A NAME="2187">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002188.html">[Mageia-webteam] [Bug 7234] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A><A NAME="2188">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Aug 29 08:39:14 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Wed Aug 29 08:39:18 CEST 2012</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/2012-August/index.html b/zarb-ml/mageia-webteam/2012-August/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-August/subject.html b/zarb-ml/mageia-webteam/2012-August/subject.html
new file mode 100644
index 000000000..65527b2f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/subject.html
@@ -0,0 +1,372 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam August 2012 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>August 2012 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 Aug 2 13:21:02 CEST 2012</i><br>
+ <b>Ending:</b> <i>Wed Aug 29 08:39:14 CEST 2012</i><br>
+ <b>Messages:</b> 65<p>
+ <ul>
+
+<LI><A HREF="002131.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A><A NAME="2131">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002127.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="2127">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002132.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="2132">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002171.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="2171">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002141.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="2141">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="002148.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="2148">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="002126.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="2126">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002169.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2169">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002172.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2172">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002173.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2173">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002124.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2124">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002125.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2125">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="002144.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2144">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002145.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2145">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002146.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2146">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002147.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2147">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002149.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2149">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002150.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2150">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002151.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2151">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002152.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2152">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002153.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2153">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002154.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2154">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="002155.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2155">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002156.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2156">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002157.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2157">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002168.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="2168">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002164.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2164">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="002165.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2165">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002166.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2166">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002129.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="2129">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002136.html">[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report
+</A><A NAME="2136">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002128.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A><A NAME="2128">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002167.html">[Mageia-webteam] [Bug 6856] Improve registration form/process
+</A><A NAME="2167">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002130.html">[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error
+</A><A NAME="2130">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002133.html">[Mageia-webteam] [Bug 6984] [New] tracker is off line
+</A><A NAME="2133">&nbsp;</A>
+<I>james Whitby
+</I>
+
+<LI><A HREF="002134.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A><A NAME="2134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002135.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A><A NAME="2135">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="002137.html">[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2137">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002138.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2138">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002139.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2139">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002140.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2140">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002142.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2142">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002143.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2143">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002158.html">[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br
+</A><A NAME="2158">&nbsp;</A>
+<I>Anderson Carvalho
+</I>
+
+<LI><A HREF="002159.html">[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br
+</A><A NAME="2159">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002160.html">[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum
+</A><A NAME="2160">&nbsp;</A>
+<I>isadora
+</I>
+
+<LI><A HREF="002161.html">[Mageia-webteam] [Bug 7099] Approval first post into forum
+</A><A NAME="2161">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002162.html">[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2162">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002163.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2163">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002170.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2170">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002174.html">[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2174">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002175.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2175">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002176.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2176">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002177.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2177">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002178.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2178">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002179.html">[Mageia-webteam] [Bug 7183] [New] URL 404
+</A><A NAME="2179">&nbsp;</A>
+<I>C S
+</I>
+
+<LI><A HREF="002181.html">[Mageia-webteam] [Bug 7183] URL 404
+</A><A NAME="2181">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002180.html">[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join
+</A><A NAME="2180">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002182.html">[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join
+</A><A NAME="2182">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002183.html">[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org
+</A><A NAME="2183">&nbsp;</A>
+<I>Eduard Selma
+</I>
+
+<LI><A HREF="002184.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2184">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002185.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2185">&nbsp;</A>
+<I>Eduard Selma
+</I>
+
+<LI><A HREF="002186.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2186">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002187.html">[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A><A NAME="2187">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002188.html">[Mageia-webteam] [Bug 7234] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A><A NAME="2188">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Aug 29 08:39:14 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Wed Aug 29 08:39:18 CEST 2012</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/2012-August/thread.html b/zarb-ml/mageia-webteam/2012-August/thread.html
new file mode 100644
index 000000000..b1657baaa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-August/thread.html
@@ -0,0 +1,457 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam August 2012 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>August 2012 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 Aug 2 13:21:02 CEST 2012</i><br>
+ <b>Ending:</b> <i>Wed Aug 29 08:39:14 CEST 2012</i><br>
+ <b>Messages:</b> 65<p>
+ <ul>
+
+<!--0 01343906462- -->
+<LI><A HREF="002124.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2124">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01344266894- -->
+<LI><A HREF="002125.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2125">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<!--0 01344290013- -->
+<LI><A HREF="002126.html">[Mageia-webteam] [Bug 1842] &quot;List of lists&quot; in ml.mageia.org should be &quot;List of mailing lists&quot; or &quot;Show all mailing lists&quot;
+</A><A NAME="2126">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01344290203- -->
+<LI><A HREF="002127.html">[Mageia-webteam] [Bug 1411] Should be improved the homepage appareance and the page should contain all the links to the mageia resources
+</A><A NAME="2127">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01344290689- -->
+<LI><A HREF="002128.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A><A NAME="2128">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01344290850- -->
+<LI><A HREF="002129.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="2129">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01344291241- -->
+<LI><A HREF="002130.html">[Mageia-webteam] [Bug 6891] Financial report : Many language are 404 error
+</A><A NAME="2130">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01344338610- -->
+<LI><A HREF="002131.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A><A NAME="2131">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01344338746- -->
+<LI><A HREF="002132.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="2132">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01344426021- -->
+<LI><A HREF="002133.html">[Mageia-webteam] [Bug 6984] [New] tracker is off line
+</A><A NAME="2133">&nbsp;</A>
+<I>james Whitby
+</I>
+
+<UL>
+<!--1 01344426021-01344427565- -->
+<LI><A HREF="002134.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A><A NAME="2134">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01344426021-01344429471- -->
+<LI><A HREF="002135.html">[Mageia-webteam] [Bug 6984] tracker is off line
+</A><A NAME="2135">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+</UL>
+<!--0 01344453848- -->
+<LI><A HREF="002136.html">[Mageia-webteam] [Bug 6084] Design an up-to-date graphical donation bar report
+</A><A NAME="2136">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01344736850- -->
+<LI><A HREF="002137.html">[Mageia-webteam] [Bug 7026] [New] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2137">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<UL>
+<!--1 01344736850-01344736860- -->
+<LI><A HREF="002138.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2138">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01344736850-01344765908- -->
+<LI><A HREF="002139.html">[Mageia-webteam] [Bug 7026] TypeError at /projects/p/mageia_i18n/teams/request/
+</A><A NAME="2139">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01344766782- -->
+<LI><A HREF="002140.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2140">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01344783755- -->
+<LI><A HREF="002141.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="2141">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--0 01344929429- -->
+<LI><A HREF="002142.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2142">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01344930173- -->
+<LI><A HREF="002143.html">[Mageia-webteam] [Bug 7029] Test forum to test forum upgrades &amp; puppet deployment
+</A><A NAME="2143">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01344942936- -->
+<LI><A HREF="002144.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2144">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01344947394- -->
+<LI><A HREF="002145.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2145">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01344947952- -->
+<LI><A HREF="002146.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2146">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01344951377- -->
+<LI><A HREF="002147.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2147">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01345100686- -->
+<LI><A HREF="002148.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="2148">&nbsp;</A>
+<I>Maat
+</I>
+
+<!--0 01345145601- -->
+<LI><A HREF="002149.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2149">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01345146158- -->
+<LI><A HREF="002150.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2150">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01345151891- -->
+<LI><A HREF="002151.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2151">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01345165947- -->
+<LI><A HREF="002152.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2152">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01345194562- -->
+<LI><A HREF="002153.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2153">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01345195935- -->
+<LI><A HREF="002154.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2154">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<!--0 01345196465- -->
+<LI><A HREF="002155.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2155">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01345196958- -->
+<LI><A HREF="002156.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2156">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01345199793- -->
+<LI><A HREF="002157.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2157">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01345203220- -->
+<LI><A HREF="002158.html">[Mageia-webteam] [Bug 7091] [New] Chromium-Browser redirects to pt when the correct is pt-br
+</A><A NAME="2158">&nbsp;</A>
+<I>Anderson Carvalho
+</I>
+
+<UL>
+<!--1 01345203220-01345212990- -->
+<LI><A HREF="002159.html">[Mageia-webteam] [Bug 7091] Chromium-Browser redirects to pt when the correct is pt-br
+</A><A NAME="2159">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01345283831- -->
+<LI><A HREF="002160.html">[Mageia-webteam] [Bug 7099] [New] Apporval first post into forum
+</A><A NAME="2160">&nbsp;</A>
+<I>isadora
+</I>
+
+<UL>
+<!--1 01345283831-01345284323- -->
+<LI><A HREF="002161.html">[Mageia-webteam] [Bug 7099] Approval first post into forum
+</A><A NAME="2161">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01345289303- -->
+<LI><A HREF="002162.html">[Mageia-webteam] [Bug 7100] [New] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2162">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01345289303-01345289348- -->
+<LI><A HREF="002163.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2163">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01345289303-01345560864- -->
+<LI><A HREF="002170.html">[Mageia-webteam] [Bug 7100] forum logs should store user ip address, instead of proxy's
+</A><A NAME="2170">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01345490785- -->
+<LI><A HREF="002164.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2164">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--0 01345498049- -->
+<LI><A HREF="002165.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2165">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01345559550- -->
+<LI><A HREF="002166.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="2166">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01345559973- -->
+<LI><A HREF="002167.html">[Mageia-webteam] [Bug 6856] Improve registration form/process
+</A><A NAME="2167">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01345559993- -->
+<LI><A HREF="002168.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
+</A><A NAME="2168">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01345560555- -->
+<LI><A HREF="002169.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2169">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01345563372- -->
+<LI><A HREF="002171.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="2171">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01345642216- -->
+<LI><A HREF="002172.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2172">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01345642847- -->
+<LI><A HREF="002173.html">[Mageia-webteam] [Bug 3451] Setup Bugzilla and download interwiki links
+</A><A NAME="2173">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01345666900- -->
+<LI><A HREF="002174.html">[Mageia-webteam] [Bug 7146] [New] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2174">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01345666900-01345719041- -->
+<LI><A HREF="002175.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2175">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01345666900-01345734508- -->
+<LI><A HREF="002176.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2176">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01345666900-01345734655- -->
+<LI><A HREF="002177.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2177">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01345666900-01345734662- -->
+<LI><A HREF="002178.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2178">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01345972096- -->
+<LI><A HREF="002179.html">[Mageia-webteam] [Bug 7183] [New] URL 404
+</A><A NAME="2179">&nbsp;</A>
+<I>C S
+</I>
+
+<UL>
+<!--1 01345972096-01345979144- -->
+<LI><A HREF="002181.html">[Mageia-webteam] [Bug 7183] URL 404
+</A><A NAME="2181">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01345978140- -->
+<LI><A HREF="002180.html">[Mageia-webteam] [Bug 7184] [New] add the bugsquad in the list of team you can join
+</A><A NAME="2180">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01345978140-01345979171- -->
+<LI><A HREF="002182.html">[Mageia-webteam] [Bug 7184] add the bugsquad in the list of team you can join
+</A><A NAME="2182">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01346006756- -->
+<LI><A HREF="002183.html">[Mageia-webteam] [Bug 7213] [New] Unable to reach www.mageia.org
+</A><A NAME="2183">&nbsp;</A>
+<I>Eduard Selma
+</I>
+
+<UL>
+<!--1 01346006756-01346016319- -->
+<LI><A HREF="002184.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2184">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01346006756-01346154402- -->
+<LI><A HREF="002185.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2185">&nbsp;</A>
+<I>Eduard Selma
+</I>
+
+<!--1 01346006756-01346156001- -->
+<LI><A HREF="002186.html">[Mageia-webteam] [Bug 7213] Unable to reach www.mageia.org
+</A><A NAME="2186">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01346208974- -->
+<LI><A HREF="002187.html">[Mageia-webteam] [Bug 7234] [New] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A><A NAME="2187">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<UL>
+<!--1 01346208974-01346222354- -->
+<LI><A HREF="002188.html">[Mageia-webteam] [Bug 7234] Open Source tool written in Python for automatic download/upload subtitles for videofiles.
+</A><A NAME="2188">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Wed Aug 29 08:39:14 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Wed Aug 29 08:39:18 CEST 2012</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/2012-December.txt.gz b/zarb-ml/mageia-webteam/2012-December.txt.gz
new file mode 100644
index 000000000..2c43ac22a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-December/002221.html b/zarb-ml/mageia-webteam/2012-December/002221.html
new file mode 100644
index 000000000..572b614c9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002221.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] [New] remove mirror that sync from ibiblio
+ </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%208277%5D%20%5BNew%5D%20remove%20mirror%20that%20sync%20from%0A%09ibiblio&In-Reply-To=%3Cbug-8277-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="Next" HREF="002222.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] [New] remove mirror that sync from ibiblio</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20%5BNew%5D%20remove%20mirror%20that%20sync%20from%0A%09ibiblio&In-Reply-To=%3Cbug-8277-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] [New] remove mirror that sync from ibiblio">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 2 22:50:04 CET 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="002222.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2221">[ date ]</a>
+ <a href="thread.html#2221">[ thread ]</a>
+ <a href="subject.html#2221">[ subject ]</a>
+ <a href="author.html#2221">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+ Summary: remove mirror that sync from ibiblio
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/downloads/">http://www.mageia.org/downloads/</A>
+ 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">manuel.mageia at hiebel.eu</A>
+
+
+As reported in 7146, ibiblio does'nt sync anymore the iso (they provide a
+torrent tracker), so you will have to remove the other mirrors that sync from
+this tier1
+
+It's all mirrors that don't have something in iso/ or don't have the directory.
+
+I can provide a list if you want.
+
+This should be fixed before march.
+
+--
+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>Next message: <A HREF="002222.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2221">[ date ]</a>
+ <a href="thread.html#2221">[ thread ]</a>
+ <a href="subject.html#2221">[ subject ]</a>
+ <a href="author.html#2221">[ 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/2012-December/002222.html b/zarb-ml/mageia-webteam/2012-December/002222.html
new file mode 100644
index 000000000..b62a50323
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002222.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio&In-Reply-To=%3C20121202215039.788B347082%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="002221.html">
+ <LINK REL="Next" HREF="002228.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio&In-Reply-To=%3C20121202215039.788B347082%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 2 22:50:39 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002221.html">[Mageia-webteam] [Bug 8277] [New] remove mirror that sync from ibiblio
+</A></li>
+ <LI>Next message: <A HREF="002228.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2222">[ date ]</a>
+ <a href="thread.html#2222">[ thread ]</a>
+ <a href="subject.html#2222">[ subject ]</a>
+ <a href="author.html#2222">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |release_blocker
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-12-02 22:50:39 CET ---
+s/in 7146/in bug 7146 /
+
+--
+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="002221.html">[Mageia-webteam] [Bug 8277] [New] remove mirror that sync from ibiblio
+</A></li>
+ <LI>Next message: <A HREF="002228.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2222">[ date ]</a>
+ <a href="thread.html#2222">[ thread ]</a>
+ <a href="subject.html#2222">[ subject ]</a>
+ <a href="author.html#2222">[ 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/2012-December/002223.html b/zarb-ml/mageia-webteam/2012-December/002223.html
new file mode 100644
index 000000000..bfdcceb87
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002223.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+ </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%207976%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3C20121205231509.BC65846AFA%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="002263.html">
+ <LINK REL="Next" HREF="002224.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207976%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3C20121205231509.BC65846AFA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 6 00:15:09 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002263.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI>Next message: <A HREF="002224.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2223">[ date ]</a>
+ <a href="thread.html#2223">[ thread ]</a>
+ <a href="subject.html#2223">[ subject ]</a>
+ <a href="author.html#2223">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7976">https://bugs.mageia.org/show_bug.cgi?id=7976</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|ASSIGNED |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-12-06 00:15:09 CET ---
+fixed, so the above links don't show what was wrong anymore :)
+
+--
+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="002263.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI>Next message: <A HREF="002224.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2223">[ date ]</a>
+ <a href="thread.html#2223">[ thread ]</a>
+ <a href="subject.html#2223">[ subject ]</a>
+ <a href="author.html#2223">[ 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/2012-December/002224.html b/zarb-ml/mageia-webteam/2012-December/002224.html
new file mode 100644
index 000000000..8335e1cf9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002224.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+ </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%207976%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3C20121207180224.479B746A25%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="002223.html">
+ <LINK REL="Next" HREF="002225.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207976%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3C20121207180224.479B746A25%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 7 19:02:24 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002223.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002225.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2224">[ date ]</a>
+ <a href="thread.html#2224">[ thread ]</a>
+ <a href="subject.html#2224">[ subject ]</a>
+ <a href="author.html#2224">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7976">https://bugs.mageia.org/show_bug.cgi?id=7976</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-12-07 19:02:23 CET ---
+@ JohnR
+
+Bob Stayton's fix was to add a few lines to the xls sheet
+
+&lt;xsl:param select=&quot;'1'&quot; name=&quot;chunk.first.sections&quot;&gt;&lt;/xsl:param&gt;
+
+&lt;xsl:param select=&quot;'2'&quot; name=&quot;chunk.section.depth&quot;&gt;&lt;/xsl:param&gt;
+
+they're in webhelp-id-filename-chunk1stsection.xsl now
+
+--
+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="002223.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002225.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2224">[ date ]</a>
+ <a href="thread.html#2224">[ thread ]</a>
+ <a href="subject.html#2224">[ subject ]</a>
+ <a href="author.html#2224">[ 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/2012-December/002225.html b/zarb-ml/mageia-webteam/2012-December/002225.html
new file mode 100644
index 000000000..f4cd14c09
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002225.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+ </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%207976%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3C20121207180312.3B940469C7%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="002224.html">
+ <LINK REL="Next" HREF="002226.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207976%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3C20121207180312.3B940469C7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 7 19:03:12 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002224.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002226.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2225">[ date ]</a>
+ <a href="thread.html#2225">[ thread ]</a>
+ <a href="subject.html#2225">[ subject ]</a>
+ <a href="author.html#2225">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7976">https://bugs.mageia.org/show_bug.cgi?id=7976</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-12-07 19:03:12 CET ---
+s/xls/xsl/
+
+--
+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="002224.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002226.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2225">[ date ]</a>
+ <a href="thread.html#2225">[ thread ]</a>
+ <a href="subject.html#2225">[ subject ]</a>
+ <a href="author.html#2225">[ 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/2012-December/002226.html b/zarb-ml/mageia-webteam/2012-December/002226.html
new file mode 100644
index 000000000..b314f2698
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002226.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+ </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%208397%5D%20Crowdin%20-%20A%20collaborative%20translation%0A%20tool%20that%20would%20replace%20transifex.mageia.org&In-Reply-To=%3C20121215134520.AEF9546D3E%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="002225.html">
+ <LINK REL="Next" HREF="002227.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208397%5D%20Crowdin%20-%20A%20collaborative%20translation%0A%20tool%20that%20would%20replace%20transifex.mageia.org&In-Reply-To=%3C20121215134520.AEF9546D3E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 15 14:45:20 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002225.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002227.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2226">[ date ]</a>
+ <a href="thread.html#2226">[ thread ]</a>
+ <a href="subject.html#2226">[ subject ]</a>
+ <a href="author.html#2226">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8397">https://bugs.mageia.org/show_bug.cgi?id=8397</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |Low
+ Component|svn.mageia.org |Other
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at g</A>
+ | |mail.com
+
+--
+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="002225.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002227.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2226">[ date ]</a>
+ <a href="thread.html#2226">[ thread ]</a>
+ <a href="subject.html#2226">[ subject ]</a>
+ <a href="author.html#2226">[ 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/2012-December/002227.html b/zarb-ml/mageia-webteam/2012-December/002227.html
new file mode 100644
index 000000000..e217a54a5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002227.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+ </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%208397%5D%20Crowdin%20-%20A%20collaborative%20translation%0A%20tool%20that%20would%20replace%20transifex.mageia.org&In-Reply-To=%3C20121215171209.AE4B746AFA%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="002226.html">
+ <LINK REL="Next" HREF="002235.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208397%5D%20Crowdin%20-%20A%20collaborative%20translation%0A%20tool%20that%20would%20replace%20transifex.mageia.org&In-Reply-To=%3C20121215171209.AE4B746AFA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 15 18:12:09 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002226.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002235.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2227">[ date ]</a>
+ <a href="thread.html#2227">[ thread ]</a>
+ <a href="subject.html#2227">[ subject ]</a>
+ <a href="author.html#2227">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8397">https://bugs.mageia.org/show_bug.cgi?id=8397</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<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">mageia-i18n at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>,
+ | |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>,
+ | |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-12-15 18:12:09 CET ---
+I read that Mageia can't host an instance of crowdin, so there is nothing
+webteam can do:
+<A HREF="http://crowdin.net/page/faq#general-5">http://crowdin.net/page/faq#general-5</A>
+
+Reassigning to i18n, in case they haven't yet decided for pootle or another
+replacement for transifex.
+
+--
+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="002226.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002235.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2227">[ date ]</a>
+ <a href="thread.html#2227">[ thread ]</a>
+ <a href="subject.html#2227">[ subject ]</a>
+ <a href="author.html#2227">[ 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/2012-December/002228.html b/zarb-ml/mageia-webteam/2012-December/002228.html
new file mode 100644
index 000000000..432888a0e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002228.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%20%2B%0A%09twiska&In-Reply-To=%3C20121217174550.E6E7E46EF5%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="002222.html">
+ <LINK REL="Next" HREF="002229.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%20%2B%0A%09twiska&In-Reply-To=%3C20121217174550.E6E7E46EF5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Dec 17 18:45:50 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002222.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio
+</A></li>
+ <LI>Next message: <A HREF="002229.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2228">[ date ]</a>
+ <a href="thread.html#2228">[ thread ]</a>
+ <a href="subject.html#2228">[ subject ]</a>
+ <a href="author.html#2228">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|remove mirror that sync |remove mirror that sync
+ |from ibiblio |from ibiblio + twiska
+
+--
+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="002222.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio
+</A></li>
+ <LI>Next message: <A HREF="002229.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2228">[ date ]</a>
+ <a href="thread.html#2228">[ thread ]</a>
+ <a href="subject.html#2228">[ subject ]</a>
+ <a href="author.html#2228">[ 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/2012-December/002229.html b/zarb-ml/mageia-webteam/2012-December/002229.html
new file mode 100644
index 000000000..ee1fc87db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002229.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%20%2B%0A%20twiska%20%2B%20mandrivauser.de&In-Reply-To=%3C20121219164735.BB6E446F84%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="002228.html">
+ <LINK REL="Next" HREF="002230.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%20%2B%0A%20twiska%20%2B%20mandrivauser.de&In-Reply-To=%3C20121219164735.BB6E446F84%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 19 17:47:35 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002228.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska
+</A></li>
+ <LI>Next message: <A HREF="002230.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2229">[ date ]</a>
+ <a href="thread.html#2229">[ thread ]</a>
+ <a href="subject.html#2229">[ subject ]</a>
+ <a href="author.html#2229">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|remove mirror that sync |remove mirror that sync
+ |from ibiblio + twiska |from ibiblio + twiska +
+ | |mandrivauser.de
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-12-19 17:47:35 CET ---
+for <A HREF="http://mirrors.mageia.org/api/">http://mirrors.mageia.org/api/</A> we should remove twiska which is dead and
+mandrivauser too
+
+<A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2012-December/004904.html">https://www.mageia.org/pipermail/mageia-sysadm/2012-December/004904.html</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="002228.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska
+</A></li>
+ <LI>Next message: <A HREF="002230.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2229">[ date ]</a>
+ <a href="thread.html#2229">[ thread ]</a>
+ <a href="subject.html#2229">[ subject ]</a>
+ <a href="author.html#2229">[ 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/2012-December/002230.html b/zarb-ml/mageia-webteam/2012-December/002230.html
new file mode 100644
index 000000000..ad7689479
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002230.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121219220446.4B6D846FB4%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="002229.html">
+ <LINK REL="Next" HREF="002231.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121219220446.4B6D846FB4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 19 23:04:46 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002229.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de
+</A></li>
+ <LI>Next message: <A HREF="002231.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2230">[ date ]</a>
+ <a href="thread.html#2230">[ thread ]</a>
+ <a href="subject.html#2230">[ subject ]</a>
+ <a href="author.html#2230">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|remove mirror that sync |remove mirror that sync
+ |from ibiblio + twiska + |from ibiblio (iso dl) ,
+ |mandrivauser.de |twiska + mandrivauser.de
+ | |+nautile.nc (both api + iso
+ | |dl)
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-12-19 23:04:46 CET ---
+<A HREF="http://mageia.nautile.nc/mageia/README.TXT">http://mageia.nautile.nc/mageia/README.TXT</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="002229.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de
+</A></li>
+ <LI>Next message: <A HREF="002231.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2230">[ date ]</a>
+ <a href="thread.html#2230">[ thread ]</a>
+ <a href="subject.html#2230">[ subject ]</a>
+ <a href="author.html#2230">[ 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/2012-December/002231.html b/zarb-ml/mageia-webteam/2012-December/002231.html
new file mode 100644
index 000000000..d58f8983b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002231.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121220163002.0B03547092%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="002230.html">
+ <LINK REL="Next" HREF="002232.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121220163002.0B03547092%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 20 17:30:02 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002230.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002232.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2231">[ date ]</a>
+ <a href="thread.html#2231">[ thread ]</a>
+ <a href="subject.html#2231">[ subject ]</a>
+ <a href="author.html#2231">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</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|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-12-20 17:30:01 CET ---
+Manually removed from www.m.o cached list. We really need something to be done
+for mirrors.m.o...
+
+--
+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="002230.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002232.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2231">[ date ]</a>
+ <a href="thread.html#2231">[ thread ]</a>
+ <a href="subject.html#2231">[ subject ]</a>
+ <a href="author.html#2231">[ 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/2012-December/002232.html b/zarb-ml/mageia-webteam/2012-December/002232.html
new file mode 100644
index 000000000..87e571b58
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002232.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121220171917.22D3A470A7%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="002231.html">
+ <LINK REL="Next" HREF="002233.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121220171917.22D3A470A7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 20 18:19:17 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002231.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002233.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2232">[ date ]</a>
+ <a href="thread.html#2232">[ thread ]</a>
+ <a href="subject.html#2232">[ subject ]</a>
+ <a href="author.html#2232">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+--- Comment #5 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-12-20 18:19:17 CET ---
+could you also remove the other mirrors that sync from ibiblio so without the
+iso dir ? (checked manually too)
+
+<A HREF="ftp://ftp.nluug.nl/pub/os/Linux/distr/mageia/">ftp://ftp.nluug.nl/pub/os/Linux/distr/mageia/</A>
+<A HREF="http://ftp.nluug.nl/pub/os/Linux/distr/mageia/">http://ftp.nluug.nl/pub/os/Linux/distr/mageia/</A>
+<A HREF="ftp://ftp.icm.edu.pl/pub/Linux/sunsite/distributions/mageia/">ftp://ftp.icm.edu.pl/pub/Linux/sunsite/distributions/mageia/</A>
+<A HREF="http://ftp.icm.edu.pl/pub/Linux/sunsite/distributions/mageia">http://ftp.icm.edu.pl/pub/Linux/sunsite/distributions/mageia</A>
+<A HREF="http://free.nchc.org.tw/mageia/">http://free.nchc.org.tw/mageia/</A>
+<A HREF="ftp://free.nchc.org.tw/mageia/">ftp://free.nchc.org.tw/mageia/</A>
+
+many 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="002231.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002233.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2232">[ date ]</a>
+ <a href="thread.html#2232">[ thread ]</a>
+ <a href="subject.html#2232">[ subject ]</a>
+ <a href="author.html#2232">[ 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/2012-December/002233.html b/zarb-ml/mageia-webteam/2012-December/002233.html
new file mode 100644
index 000000000..8942a441b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002233.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121220200720.131E347121%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="002232.html">
+ <LINK REL="Next" HREF="002234.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121220200720.131E347121%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 20 21:07:20 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002232.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002234.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2233">[ date ]</a>
+ <a href="thread.html#2233">[ thread ]</a>
+ <a href="subject.html#2233">[ subject ]</a>
+ <a href="author.html#2233">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |8457
+
+--- Comment #6 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-12-20 21:07:19 CET ---
+and
+
+<A HREF="http://mageia.mirror.garr.it/mirrors/mageia/">http://mageia.mirror.garr.it/mirrors/mageia/</A>
+<A HREF="ftp://mageia.mirror.garr.it/mirrors/mageia">ftp://mageia.mirror.garr.it/mirrors/mageia</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="002232.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002234.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2233">[ date ]</a>
+ <a href="thread.html#2233">[ thread ]</a>
+ <a href="subject.html#2233">[ subject ]</a>
+ <a href="author.html#2233">[ 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/2012-December/002234.html b/zarb-ml/mageia-webteam/2012-December/002234.html
new file mode 100644
index 000000000..52b89295d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002234.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121220200736.271D047121%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="002233.html">
+ <LINK REL="Next" HREF="002236.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121220200736.271D047121%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 20 21:07:36 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002233.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002236.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2234">[ date ]</a>
+ <a href="thread.html#2234">[ thread ]</a>
+ <a href="subject.html#2234">[ subject ]</a>
+ <a href="author.html#2234">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|RESOLVED |REOPENED
+ Resolution|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="002233.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002236.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2234">[ date ]</a>
+ <a href="thread.html#2234">[ thread ]</a>
+ <a href="subject.html#2234">[ subject ]</a>
+ <a href="author.html#2234">[ 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/2012-December/002235.html b/zarb-ml/mageia-webteam/2012-December/002235.html
new file mode 100644
index 000000000..2725abe86
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002235.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+ </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%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121220200813.C084C4712E%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="002227.html">
+ <LINK REL="Next" HREF="002237.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8457] italian mirror (garr) problems</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121220200813.C084C4712E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8457] italian mirror (garr) problems">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 20 21:08:13 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002227.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002237.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2235">[ date ]</a>
+ <a href="thread.html#2235">[ thread ]</a>
+ <a href="subject.html#2235">[ subject ]</a>
+ <a href="author.html#2235">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8457">https://bugs.mageia.org/show_bug.cgi?id=8457</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Mageia |Websites
+ Version|Cauldron |trunk
+ Component|Backports |www.mageia.org
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="002227.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002237.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2235">[ date ]</a>
+ <a href="thread.html#2235">[ thread ]</a>
+ <a href="subject.html#2235">[ subject ]</a>
+ <a href="author.html#2235">[ 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/2012-December/002236.html b/zarb-ml/mageia-webteam/2012-December/002236.html
new file mode 100644
index 000000000..690a39666
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002236.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121221112115.2B4C146FCC%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="002234.html">
+ <LINK REL="Next" HREF="002246.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121221112115.2B4C146FCC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 12:21:15 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002234.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002246.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2236">[ date ]</a>
+ <a href="thread.html#2236">[ thread ]</a>
+ <a href="subject.html#2236">[ subject ]</a>
+ <a href="author.html#2236">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</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 #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-12-21 12:21:15 CET ---
+Removed. We lost all mirrors in Italy and the Nederlands then.
+
+--
+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="002234.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002246.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2236">[ date ]</a>
+ <a href="thread.html#2236">[ thread ]</a>
+ <a href="subject.html#2236">[ subject ]</a>
+ <a href="author.html#2236">[ 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/2012-December/002237.html b/zarb-ml/mageia-webteam/2012-December/002237.html
new file mode 100644
index 000000000..0ee039ca9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002237.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+ </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%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121221112115.9350B46FFA%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="002235.html">
+ <LINK REL="Next" HREF="002238.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8457] italian mirror (garr) problems</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121221112115.9350B46FFA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8457] italian mirror (garr) problems">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 12:21:15 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002235.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002238.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2237">[ date ]</a>
+ <a href="thread.html#2237">[ thread ]</a>
+ <a href="subject.html#2237">[ subject ]</a>
+ <a href="author.html#2237">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8457">https://bugs.mageia.org/show_bug.cgi?id=8457</A>
+
+Bug 8457 depends on bug 8277, which changed state.
+
+Bug 8277 Summary: remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+ What |Old Value |New Value
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ Status|REOPENED |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="002235.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002238.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2237">[ date ]</a>
+ <a href="thread.html#2237">[ thread ]</a>
+ <a href="subject.html#2237">[ subject ]</a>
+ <a href="author.html#2237">[ 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/2012-December/002238.html b/zarb-ml/mageia-webteam/2012-December/002238.html
new file mode 100644
index 000000000..00e74689c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002238.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+ </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%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121221112156.C24DA46DE2%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="002237.html">
+ <LINK REL="Next" HREF="002239.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8457] italian mirror (garr) problems</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121221112156.C24DA46DE2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8457] italian mirror (garr) problems">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 12:21:56 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002237.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002239.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2238">[ date ]</a>
+ <a href="thread.html#2238">[ thread ]</a>
+ <a href="subject.html#2238">[ subject ]</a>
+ <a href="author.html#2238">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8457">https://bugs.mageia.org/show_bug.cgi?id=8457</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-12-21 12:21:56 CET ---
+The mirror clearly is broken; I removed it from the list and set the
+redirection delay to 6 seconds.
+
+--
+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="002237.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002239.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2238">[ date ]</a>
+ <a href="thread.html#2238">[ thread ]</a>
+ <a href="subject.html#2238">[ subject ]</a>
+ <a href="author.html#2238">[ 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/2012-December/002239.html b/zarb-ml/mageia-webteam/2012-December/002239.html
new file mode 100644
index 000000000..f33b29071
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002239.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+ </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%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221113242.DC50A47003%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="002238.html">
+ <LINK REL="Next" HREF="002240.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221113242.DC50A47003%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 12:32:42 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002238.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002240.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2239">[ date ]</a>
+ <a href="thread.html#2239">[ thread ]</a>
+ <a href="subject.html#2239">[ subject ]</a>
+ <a href="author.html#2239">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8460">https://bugs.mageia.org/show_bug.cgi?id=8460</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Firefox doesn't open |Firefox doesn't open
+ |localized Mageia page |localized Mageia page
+ | |(indexhtml redirection)
+ Severity|normal |minor
+ QAContact| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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 QA contact for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002238.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002240.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2239">[ date ]</a>
+ <a href="thread.html#2239">[ thread ]</a>
+ <a href="subject.html#2239">[ subject ]</a>
+ <a href="author.html#2239">[ 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/2012-December/002240.html b/zarb-ml/mageia-webteam/2012-December/002240.html
new file mode 100644
index 000000000..e9f377b3a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002240.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+ </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%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121221113441.B466B46DB3%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="002239.html">
+ <LINK REL="Next" HREF="002241.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8457] italian mirror (garr) problems</H1>
+ <B>Alberto Girlando</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121221113441.B466B46DB3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8457] italian mirror (garr) problems">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 12:34:41 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002239.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002241.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2240">[ date ]</a>
+ <a href="thread.html#2240">[ thread ]</a>
+ <a href="subject.html#2240">[ subject ]</a>
+ <a href="author.html#2240">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8457">https://bugs.mageia.org/show_bug.cgi?id=8457</A>
+
+--- Comment #2 from Alberto Girlando &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">girlando at unipr.it</A>&gt; 2012-12-21 12:34:41 CET ---
+(In reply to comment #1)
+&gt;<i> The mirror clearly is broken; I removed it from the list and set the
+</I>&gt;<i> redirection delay to 6 seconds.
+</I>
+Now it is working, thank 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 the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002239.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002241.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2240">[ date ]</a>
+ <a href="thread.html#2240">[ thread ]</a>
+ <a href="subject.html#2240">[ subject ]</a>
+ <a href="author.html#2240">[ 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/2012-December/002241.html b/zarb-ml/mageia-webteam/2012-December/002241.html
new file mode 100644
index 000000000..cacf5f401
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002241.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+ </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%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221120406.4C0AC4700A%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="002240.html">
+ <LINK REL="Next" HREF="002242.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221120406.4C0AC4700A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 13:04:06 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002240.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002242.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2241">[ date ]</a>
+ <a href="thread.html#2241">[ thread ]</a>
+ <a href="subject.html#2241">[ subject ]</a>
+ <a href="author.html#2241">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8460">https://bugs.mageia.org/show_bug.cgi?id=8460</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|NEW |ASSIGNED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #6 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-12-21 13:04:06 CET ---
+indexhtml/index.html now always:
+ * redirects to <A HREF="http://start.mageia.org/">http://start.mageia.org/</A>
+ * which in turn, for the moment, redirects to <A HREF="http://www.mageia.org/community/">http://www.mageia.org/community/</A>
+(see
+<A HREF="http://svnweb.mageia.org/adm/puppet/deployment/websites/manifests/start.pp?revision=2773&amp;view=markup">http://svnweb.mageia.org/adm/puppet/deployment/websites/manifests/start.pp?revision=2773&amp;view=markup</A>)
+ * which in turn, redirects to the existing locale, normally (see
+<A HREF="http://svnweb.mageia.org/web/www/trunk/community/index.php?revision=1068&amp;view=markup">http://svnweb.mageia.org/web/www/trunk/community/index.php?revision=1068&amp;view=markup</A>)
+
+So if something does not work here, it may be that:
+ * there's a bug in community/index.php
+ * your browser Accept-Language header is set to English (or not),
+ * something still unknown (yummy!)
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002240.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002242.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2241">[ date ]</a>
+ <a href="thread.html#2241">[ thread ]</a>
+ <a href="subject.html#2241">[ subject ]</a>
+ <a href="author.html#2241">[ 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/2012-December/002242.html b/zarb-ml/mageia-webteam/2012-December/002242.html
new file mode 100644
index 000000000..92efab482
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002242.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+ </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%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221121247.E13DC46FE6%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="002241.html">
+ <LINK REL="Next" HREF="002243.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)</H1>
+ <B>Marek Laane</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221121247.E13DC46FE6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 13:12:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002241.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002243.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2242">[ date ]</a>
+ <a href="thread.html#2242">[ thread ]</a>
+ <a href="subject.html#2242">[ subject ]</a>
+ <a href="author.html#2242">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8460">https://bugs.mageia.org/show_bug.cgi?id=8460</A>
+
+--- Comment #7 from Marek Laane &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bald at smail.ee</A>&gt; 2012-12-21 13:12:47 CET ---
+Maybe I should state that in my case it happened with Live DVD and with first
+opening of Firefox (clicking on the icon in quick start bar or whatever that
+part on taskbar is named). As it is continuation of the BR #7424 Firefox itself
+is now in Estonian and so the Firefox welocme page but not the other pager
+which opens, which is Mageia community page. So probably not the second option
+- then all the Firefox should still be in English, shouldn't 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 the QA contact for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002241.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002243.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2242">[ date ]</a>
+ <a href="thread.html#2242">[ thread ]</a>
+ <a href="subject.html#2242">[ subject ]</a>
+ <a href="author.html#2242">[ 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/2012-December/002243.html b/zarb-ml/mageia-webteam/2012-December/002243.html
new file mode 100644
index 000000000..80a6fb44f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002243.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+ </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%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221142334.E33524700A%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="002242.html">
+ <LINK REL="Next" HREF="002244.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221142334.E33524700A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 15:23:34 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002242.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002244.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2243">[ date ]</a>
+ <a href="thread.html#2243">[ thread ]</a>
+ <a href="subject.html#2243">[ subject ]</a>
+ <a href="author.html#2243">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8460">https://bugs.mageia.org/show_bug.cgi?id=8460</A>
+
+--- Comment #8 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-12-21 15:23:34 CET ---
+(In reply to comment #7)
+&gt;<i> So probably not the second option
+</I>&gt;<i> - then all the Firefox should still be in English, shouldn't it?
+</I>
+I guess so, yes. Could you test and report <A HREF="http://www.mageia.org/test/lang.php">http://www.mageia.org/test/lang.php</A>
+here so I can cross it out?
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002242.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002244.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2243">[ date ]</a>
+ <a href="thread.html#2243">[ thread ]</a>
+ <a href="subject.html#2243">[ subject ]</a>
+ <a href="author.html#2243">[ 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/2012-December/002244.html b/zarb-ml/mageia-webteam/2012-December/002244.html
new file mode 100644
index 000000000..fbd34b334
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002244.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+ </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%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221143340.8261447001%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="002243.html">
+ <LINK REL="Next" HREF="002245.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)</H1>
+ <B>Marek Laane</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221143340.8261447001%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 15:33:40 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002243.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002245.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2244">[ date ]</a>
+ <a href="thread.html#2244">[ thread ]</a>
+ <a href="subject.html#2244">[ subject ]</a>
+ <a href="author.html#2244">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8460">https://bugs.mageia.org/show_bug.cgi?id=8460</A>
+
+--- Comment #9 from Marek Laane &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bald at smail.ee</A>&gt; 2012-12-21 15:33:40 CET ---
+Goes to localized, i.e. Estonian community page.
+
+(Just for information - I tried also Konqueror, which opens
+just/usr/share/indexhtml/index.html and that's all, no redirection at all - but
+it's probably worth of another BR).
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002243.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002245.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2244">[ date ]</a>
+ <a href="thread.html#2244">[ thread ]</a>
+ <a href="subject.html#2244">[ subject ]</a>
+ <a href="author.html#2244">[ 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/2012-December/002245.html b/zarb-ml/mageia-webteam/2012-December/002245.html
new file mode 100644
index 000000000..a57e4c81d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002245.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+ </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%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221150809.27736470A6%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="002244.html">
+ <LINK REL="Next" HREF="002249.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3C20121221150809.27736470A6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 16:08:09 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002244.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002249.html">[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2245">[ date ]</a>
+ <a href="thread.html#2245">[ thread ]</a>
+ <a href="subject.html#2245">[ subject ]</a>
+ <a href="author.html#2245">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8460">https://bugs.mageia.org/show_bug.cgi?id=8460</A>
+
+--- Comment #10 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-12-21 16:08:09 CET ---
+Ok, it's the same code that's run in both ends, so it's something else in the
+start.mageia.org =&gt; mageia.org/community =&gt; mageia.org/et/community chain
+that's broken... :-/
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002244.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002249.html">[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2245">[ date ]</a>
+ <a href="thread.html#2245">[ thread ]</a>
+ <a href="subject.html#2245">[ subject ]</a>
+ <a href="author.html#2245">[ 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/2012-December/002246.html b/zarb-ml/mageia-webteam/2012-December/002246.html
new file mode 100644
index 000000000..e5f0feada
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002246.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121221200203.ED8EC46FFA%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="002236.html">
+ <LINK REL="Next" HREF="002247.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121221200203.ED8EC46FFA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 21:02:03 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002236.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002247.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2246">[ date ]</a>
+ <a href="thread.html#2246">[ thread ]</a>
+ <a href="subject.html#2246">[ subject ]</a>
+ <a href="author.html#2246">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #8 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-12-21 21:02:02 CET ---
+(In reply to comment #7)
+&gt;<i> Removed. We lost all mirrors in Italy and the Nederlands then.
+</I>
+Did all the removed mirrors refuse to sync with another first or 2nd tier
+mirror, or did no one contact them?
+
+--
+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="002236.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002247.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2246">[ date ]</a>
+ <a href="thread.html#2246">[ thread ]</a>
+ <a href="subject.html#2246">[ subject ]</a>
+ <a href="author.html#2246">[ 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/2012-December/002247.html b/zarb-ml/mageia-webteam/2012-December/002247.html
new file mode 100644
index 000000000..c67a1cc0d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002247.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121221215716.E932446F41%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="002246.html">
+ <LINK REL="Next" HREF="002248.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121221215716.E932446F41%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 22:57:16 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002246.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002248.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2247">[ date ]</a>
+ <a href="thread.html#2247">[ thread ]</a>
+ <a href="subject.html#2247">[ subject ]</a>
+ <a href="author.html#2247">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+--- Comment #9 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-12-21 23:56:50 CET ---
+Kamil just wrote the icm.edu.pl mirror and I the nluug.nl mirror.
+
+We asked them to switch to syncing with mirrors.kernel.org
+
+--
+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="002246.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002248.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2247">[ date ]</a>
+ <a href="thread.html#2247">[ thread ]</a>
+ <a href="subject.html#2247">[ subject ]</a>
+ <a href="author.html#2247">[ 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/2012-December/002248.html b/zarb-ml/mageia-webteam/2012-December/002248.html
new file mode 100644
index 000000000..39c6f5885
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002248.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+ </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%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121221220604.967D746FEE%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="002247.html">
+ <LINK REL="Next" HREF="002250.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20remove%20mirror%20that%20sync%20from%20ibiblio%0A%20%28iso%20dl%29%20%2C%20twiska%20%2B%20mandrivauser.de%20%2Bnautile.nc%20%28both%20api%20%2B%20iso%20dl%29&In-Reply-To=%3C20121221220604.967D746FEE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 23:06:04 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002247.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002250.html">[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2248">[ date ]</a>
+ <a href="thread.html#2248">[ thread ]</a>
+ <a href="subject.html#2248">[ subject ]</a>
+ <a href="author.html#2248">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+--- Comment #10 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-12-21 23:06:04 CET ---
+no ideas personnaly
+
+--
+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="002247.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002250.html">[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2248">[ date ]</a>
+ <a href="thread.html#2248">[ thread ]</a>
+ <a href="subject.html#2248">[ subject ]</a>
+ <a href="author.html#2248">[ 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/2012-December/002249.html b/zarb-ml/mageia-webteam/2012-December/002249.html
new file mode 100644
index 000000000..bbfbbfd48
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002249.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia 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%208464%5D%20Konqueror%20doesn%27t%20redirect%20to%20Mageia%0A%09page&In-Reply-To=%3C20121221223036.A2C6A47003%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="002245.html">
+ <LINK REL="Next" HREF="002251.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208464%5D%20Konqueror%20doesn%27t%20redirect%20to%20Mageia%0A%09page&In-Reply-To=%3C20121221223036.A2C6A47003%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Dec 21 23:30:36 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002245.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002251.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2249">[ date ]</a>
+ <a href="thread.html#2249">[ thread ]</a>
+ <a href="subject.html#2249">[ subject ]</a>
+ <a href="author.html#2249">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8464">https://bugs.mageia.org/show_bug.cgi?id=8464</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ QAContact| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ See Also| |<A HREF="https://bugs.mageia.org/sho">https://bugs.mageia.org/sho</A>
+ | |w_bug.cgi?id=1306
+ RPM Package|konqueror-4.9.90-1.mga3.i58 |indexhtml
+ |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 QA contact for the bug.
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002245.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002251.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2249">[ date ]</a>
+ <a href="thread.html#2249">[ thread ]</a>
+ <a href="subject.html#2249">[ subject ]</a>
+ <a href="author.html#2249">[ 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/2012-December/002250.html b/zarb-ml/mageia-webteam/2012-December/002250.html
new file mode 100644
index 000000000..75c907c3c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002250.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+ </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%208277%5D%20add%20back%20mirror%20that%20synced%20from%0A%20ibiblio%20but%20now%20syncs%20with%20mirrors.kernel.org&In-Reply-To=%3C20121222154050.7864C47040%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="002248.html">
+ <LINK REL="Next" HREF="002261.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20add%20back%20mirror%20that%20synced%20from%0A%20ibiblio%20but%20now%20syncs%20with%20mirrors.kernel.org&In-Reply-To=%3C20121222154050.7864C47040%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 22 16:40:50 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002248.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002261.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2250">[ date ]</a>
+ <a href="thread.html#2250">[ thread ]</a>
+ <a href="subject.html#2250">[ subject ]</a>
+ <a href="author.html#2250">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|remove mirror that sync |add back mirror that synced
+ |from ibiblio (iso dl) , |from ibiblio but now syncs
+ |twiska + mandrivauser.de |with mirrors.kernel.org
+ |+nautile.nc (both api + iso |
+ |dl) |
+ Status|RESOLVED |REOPENED
+ Resolution|FIXED |
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">matteo.pasotti at gmail.com</A>
+
+--- Comment #11 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-12-22 16:40:50 CET ---
+(In reply to comment #7)
+&gt;<i> Removed. We lost all mirrors in Italy and the Nederlands then.
+</I>
+(In reply to comment #9)
+&gt;<i> Kamil just wrote the icm.edu.pl mirror and I the nluug.nl mirror.
+</I>&gt;<i>
+</I>&gt;<i> We asked them to switch to syncing with mirrors.kernel.org
+</I>
+the nluug admin replied. They have now switched to mirrors.kernel.org and have
+the isos again:
+<A HREF="ftp://ftp.nluug.nl/pub/os/Linux/distr/mageia/iso/">ftp://ftp.nluug.nl/pub/os/Linux/distr/mageia/iso/</A>
+<A HREF="http://ftp.nluug.nl/pub/os/Linux/distr/mageia/iso/">http://ftp.nluug.nl/pub/os/Linux/distr/mageia/iso/</A>
+
+Please undo the nluug removal
+
+@ pasmatt
+
+Can you please write to the admins of the Italian mirrors?
+
+--
+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="002248.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A></li>
+ <LI>Next message: <A HREF="002261.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2250">[ date ]</a>
+ <a href="thread.html#2250">[ thread ]</a>
+ <a href="subject.html#2250">[ subject ]</a>
+ <a href="author.html#2250">[ 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/2012-December/002251.html b/zarb-ml/mageia-webteam/2012-December/002251.html
new file mode 100644
index 000000000..248301691
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002251.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+ </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%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121222154050.F3BA04704A%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="002249.html">
+ <LINK REL="Next" HREF="002252.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8457] italian mirror (garr) problems</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208457%5D%20italian%20mirror%20%28garr%29%20problems&In-Reply-To=%3C20121222154050.F3BA04704A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8457] italian mirror (garr) problems">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Dec 22 16:40:50 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002249.html">[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page
+</A></li>
+ <LI>Next message: <A HREF="002252.html">[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2251">[ date ]</a>
+ <a href="thread.html#2251">[ thread ]</a>
+ <a href="subject.html#2251">[ subject ]</a>
+ <a href="author.html#2251">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8457">https://bugs.mageia.org/show_bug.cgi?id=8457</A>
+
+Bug 8457 depends on bug 8277, which changed state.
+
+Bug 8277 Summary: add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+ What |Old Value |New Value
+----------------------------------------------------------------------------
+ Resolution|FIXED |
+ Status|RESOLVED |REOPENED
+
+--
+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="002249.html">[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page
+</A></li>
+ <LI>Next message: <A HREF="002252.html">[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2251">[ date ]</a>
+ <a href="thread.html#2251">[ thread ]</a>
+ <a href="subject.html#2251">[ subject ]</a>
+ <a href="author.html#2251">[ 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/2012-December/002252.html b/zarb-ml/mageia-webteam/2012-December/002252.html
new file mode 100644
index 000000000..425246e8c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002252.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt
+ </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%208487%5D%20%5BNew%5D%20Do%20Mageia%20Tee-shirt&In-Reply-To=%3Cbug-8487-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="002251.html">
+ <LINK REL="Next" HREF="002253.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt</H1>
+ <B>Arnaud Vacquier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208487%5D%20%5BNew%5D%20Do%20Mageia%20Tee-shirt&In-Reply-To=%3Cbug-8487-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Dec 24 02:06:02 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002251.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002253.html">[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2252">[ date ]</a>
+ <a href="thread.html#2252">[ thread ]</a>
+ <a href="subject.html#2252">[ subject ]</a>
+ <a href="author.html#2252">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8487">https://bugs.mageia.org/show_bug.cgi?id=8487</A>
+
+ Summary: Do Mageia Tee-shirt
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">inster.css at gmail.com</A>
+
+
+Created attachment 3285
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=3285">https://bugs.mageia.org/attachment.cgi?id=3285</A>
+tee shirt
+
+Hi,
+
+I want do my tee-shirt Mageia with logo
+but there are not &quot;usage guidelines&quot; : <A HREF="http://www.mageia.org/en/about/media/">http://www.mageia.org/en/about/media/</A>
+
+
+My tee shirt (for install party...)
+<A HREF="http://www.spreadshirt.fr/tee-shirt-personnalise-C59/product/108569766/view/1/sb/l">http://www.spreadshirt.fr/tee-shirt-personnalise-C59/product/108569766/view/1/sb/l</A>
+
+I can do that ? (website ask to allow commercial logo)
+Or Mageia can build little &quot;store&quot; they can choose how many earn (i know it is
+association, they can put 0$/&#8364;)
+
+Ad it is many language/country
+
+Thank you,
+Arnaud
+
+--
+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="002251.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A></li>
+ <LI>Next message: <A HREF="002253.html">[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2252">[ date ]</a>
+ <a href="thread.html#2252">[ thread ]</a>
+ <a href="subject.html#2252">[ subject ]</a>
+ <a href="author.html#2252">[ 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/2012-December/002253.html b/zarb-ml/mageia-webteam/2012-December/002253.html
new file mode 100644
index 000000000..c4f60cab7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002253.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt
+ </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%208487%5D%20Do%20Mageia%20Tee-shirt&In-Reply-To=%3C20121224113741.B67BC47071%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="002252.html">
+ <LINK REL="Next" HREF="002254.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208487%5D%20Do%20Mageia%20Tee-shirt&In-Reply-To=%3C20121224113741.B67BC47071%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Dec 24 12:37:41 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002252.html">[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt
+</A></li>
+ <LI>Next message: <A HREF="002254.html">[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2253">[ date ]</a>
+ <a href="thread.html#2253">[ thread ]</a>
+ <a href="subject.html#2253">[ subject ]</a>
+ <a href="author.html#2253">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8487">https://bugs.mageia.org/show_bug.cgi?id=8487</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Keywords| |Atelier
+
+--
+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="002252.html">[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt
+</A></li>
+ <LI>Next message: <A HREF="002254.html">[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2253">[ date ]</a>
+ <a href="thread.html#2253">[ thread ]</a>
+ <a href="subject.html#2253">[ subject ]</a>
+ <a href="author.html#2253">[ 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/2012-December/002254.html b/zarb-ml/mageia-webteam/2012-December/002254.html
new file mode 100644
index 000000000..6c6575960
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002254.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+ </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%208500%5D%20%5BNew%5D%20Add%20boxes%20to%20choose%20affected%0A%20kernel%2C%20program-version%2C%20module%20etc%20before%20you%20submit%20a%20bugreport.&In-Reply-To=%3Cbug-8500-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="002253.html">
+ <LINK REL="Next" HREF="002255.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208500%5D%20%5BNew%5D%20Add%20boxes%20to%20choose%20affected%0A%20kernel%2C%20program-version%2C%20module%20etc%20before%20you%20submit%20a%20bugreport.&In-Reply-To=%3Cbug-8500-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 25 14:44:41 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002253.html">[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt
+</A></li>
+ <LI>Next message: <A HREF="002255.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2254">[ date ]</a>
+ <a href="thread.html#2254">[ thread ]</a>
+ <a href="subject.html#2254">[ subject ]</a>
+ <a href="author.html#2254">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8500">https://bugs.mageia.org/show_bug.cgi?id=8500</A>
+
+ Summary: Add boxes to choose affected kernel, program-version,
+ module etc before you submit a bugreport.
+ Product: Infrastructure
+ Version: unspecified
+ Platform: All
+ 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">kristoffer.grundstrom1983 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>
+
+
+Description of problem: I would really like to see some more boxes that appears
+when you've typed the affected program/process-name so you wouldn't have to
+type it in the Description of problem-area so you only use the relvant info in
+that textfield.
+
+Steps to Reproduce:
+1. Login to <A HREF="https://bugs.mageia.org">https://bugs.mageia.org</A>
+2. Click on New to make a new report.
+3. Click on the affected product-category.
+4. Choose affected version of Mageia.
+5. Choose the affected component.
+6. Choose the component-version.
+7. Choose whatever is related to that program/process like module and output of
+a certain command.
+
+--
+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="002253.html">[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt
+</A></li>
+ <LI>Next message: <A HREF="002255.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2254">[ date ]</a>
+ <a href="thread.html#2254">[ thread ]</a>
+ <a href="subject.html#2254">[ subject ]</a>
+ <a href="author.html#2254">[ 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/2012-December/002255.html b/zarb-ml/mageia-webteam/2012-December/002255.html
new file mode 100644
index 000000000..a1ce19f3d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002255.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+ </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%208500%5D%20Add%20boxes%20to%20choose%20affected%20kernel%2C%0A%20program-version%2C%20module%20etc%20before%20you%20submit%20a%20bugreport.&In-Reply-To=%3C20121225134456.B3764470CA%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="002254.html">
+ <LINK REL="Next" HREF="002256.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208500%5D%20Add%20boxes%20to%20choose%20affected%20kernel%2C%0A%20program-version%2C%20module%20etc%20before%20you%20submit%20a%20bugreport.&In-Reply-To=%3C20121225134456.B3764470CA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Dec 25 14:44:56 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002254.html">[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI>Next message: <A HREF="002256.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2255">[ date ]</a>
+ <a href="thread.html#2255">[ thread ]</a>
+ <a href="subject.html#2255">[ subject ]</a>
+ <a href="author.html#2255">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8500">https://bugs.mageia.org/show_bug.cgi?id=8500</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |Low
+
+--
+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="002254.html">[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI>Next message: <A HREF="002256.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2255">[ date ]</a>
+ <a href="thread.html#2255">[ thread ]</a>
+ <a href="subject.html#2255">[ subject ]</a>
+ <a href="author.html#2255">[ 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/2012-December/002256.html b/zarb-ml/mageia-webteam/2012-December/002256.html
new file mode 100644
index 000000000..b31451a9a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002256.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+ </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%208500%5D%20Add%20boxes%20to%20choose%20affected%20kernel%2C%0A%20program-version%2C%20module%20etc%20before%20you%20submit%20a%20bugreport.&In-Reply-To=%3C20121226114433.460154702C%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="002255.html">
+ <LINK REL="Next" HREF="002257.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208500%5D%20Add%20boxes%20to%20choose%20affected%20kernel%2C%0A%20program-version%2C%20module%20etc%20before%20you%20submit%20a%20bugreport.&In-Reply-To=%3C20121226114433.460154702C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 26 12:44:33 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002255.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI>Next message: <A HREF="002257.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2256">[ date ]</a>
+ <a href="thread.html#2256">[ thread ]</a>
+ <a href="subject.html#2256">[ subject ]</a>
+ <a href="author.html#2256">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8500">https://bugs.mageia.org/show_bug.cgi?id=8500</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>
+ Depends on| |40
+
+--- Comment #1 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-12-26 12:44:32 CET ---
+i think this bug could be fixed after having updated bugzilla to 4.2 release
+(bug #40)
+
+--
+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="002255.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI>Next message: <A HREF="002257.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2256">[ date ]</a>
+ <a href="thread.html#2256">[ thread ]</a>
+ <a href="subject.html#2256">[ subject ]</a>
+ <a href="author.html#2256">[ 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/2012-December/002257.html b/zarb-ml/mageia-webteam/2012-December/002257.html
new file mode 100644
index 000000000..e8ae058ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002257.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20121226114433.E08C64703B%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="002256.html">
+ <LINK REL="Next" HREF="002258.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20121226114433.E08C64703B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 26 12:44:33 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002256.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI>Next message: <A HREF="002258.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2257">[ date ]</a>
+ <a href="thread.html#2257">[ thread ]</a>
+ <a href="subject.html#2257">[ subject ]</a>
+ <a href="author.html#2257">[ 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>
+
+Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |8500
+
+--
+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="002256.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A></li>
+ <LI>Next message: <A HREF="002258.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2257">[ date ]</a>
+ <a href="thread.html#2257">[ thread ]</a>
+ <a href="subject.html#2257">[ subject ]</a>
+ <a href="author.html#2257">[ 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/2012-December/002258.html b/zarb-ml/mageia-webteam/2012-December/002258.html
new file mode 100644
index 000000000..f59cc9266
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002258.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20121226114529.7B18346ED2%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="002257.html">
+ <LINK REL="Next" HREF="002259.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20121226114529.7B18346ED2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 26 12:45:29 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002257.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002259.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2258">[ date ]</a>
+ <a href="thread.html#2258">[ thread ]</a>
+ <a href="subject.html#2258">[ subject ]</a>
+ <a href="author.html#2258">[ 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 #48 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-12-26 12:45:29 CET ---
+news?
+
+--
+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="002257.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002259.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2258">[ date ]</a>
+ <a href="thread.html#2258">[ thread ]</a>
+ <a href="subject.html#2258">[ subject ]</a>
+ <a href="author.html#2258">[ 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/2012-December/002259.html b/zarb-ml/mageia-webteam/2012-December/002259.html
new file mode 100644
index 000000000..e765932ff
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002259.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20121226114839.0D0E14702A%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="002258.html">
+ <LINK REL="Next" HREF="002260.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20121226114839.0D0E14702A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 26 12:48:39 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002258.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002260.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2259">[ date ]</a>
+ <a href="thread.html#2259">[ thread ]</a>
+ <a href="subject.html#2259">[ subject ]</a>
+ <a href="author.html#2259">[ 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 #49 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-12-26 12:48:39 CET ---
+please
+
+--
+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="002258.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002260.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2259">[ date ]</a>
+ <a href="thread.html#2259">[ thread ]</a>
+ <a href="subject.html#2259">[ subject ]</a>
+ <a href="author.html#2259">[ 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/2012-December/002260.html b/zarb-ml/mageia-webteam/2012-December/002260.html
new file mode 100644
index 000000000..90caf2441
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002260.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20121226130708.0067D4702B%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="002259.html">
+ <LINK REL="Next" HREF="002264.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20121226130708.0067D4702B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 26 14:07:07 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002259.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002264.html">[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2260">[ date ]</a>
+ <a href="thread.html#2260">[ thread ]</a>
+ <a href="subject.html#2260">[ subject ]</a>
+ <a href="author.html#2260">[ 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 #50 from Thierry Vignaud &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>&gt; 2012-12-26 14:07:06 CET ---
+Someone needs to step up and offers help on sysadmin ml
+
+--
+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="002259.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002264.html">[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2260">[ date ]</a>
+ <a href="thread.html#2260">[ thread ]</a>
+ <a href="subject.html#2260">[ subject ]</a>
+ <a href="author.html#2260">[ 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/2012-December/002261.html b/zarb-ml/mageia-webteam/2012-December/002261.html
new file mode 100644
index 000000000..fa976eb70
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002261.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+ </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%208277%5D%20add%20back%20mirrors%20that%20synced%20from%0A%20ibiblio%20but%20now%20sync%20from%20better%20mirror&In-Reply-To=%3C20121226190731.D8D784704B%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="002250.html">
+ <LINK REL="Next" HREF="002262.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20add%20back%20mirrors%20that%20synced%20from%0A%20ibiblio%20but%20now%20sync%20from%20better%20mirror&In-Reply-To=%3C20121226190731.D8D784704B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 26 20:07:30 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002250.html">[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+</A></li>
+ <LI>Next message: <A HREF="002262.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2261">[ date ]</a>
+ <a href="thread.html#2261">[ thread ]</a>
+ <a href="subject.html#2261">[ subject ]</a>
+ <a href="author.html#2261">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|add back mirror that synced |add back mirrors that
+ |from ibiblio but now syncs |synced from ibiblio but now
+ |with mirrors.kernel.org |sync from better mirror
+
+--- Comment #12 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-12-26 20:04:57 CET ---
+I see beta 1 isos on the .tw mirror:
+<A HREF="http://free.nchc.org.tw/mageia/iso/cauldron/">http://free.nchc.org.tw/mageia/iso/cauldron/</A>
+<A HREF="ftp://free.nchc.org.tw/mageia/iso/cauldron/">ftp://free.nchc.org.tw/mageia/iso/cauldron/</A>
+
+It seems they are now syncing with another mirror, too
+
+Please add back free.nchc.org.tw, too
+
+--
+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="002250.html">[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+</A></li>
+ <LI>Next message: <A HREF="002262.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2261">[ date ]</a>
+ <a href="thread.html#2261">[ thread ]</a>
+ <a href="subject.html#2261">[ subject ]</a>
+ <a href="author.html#2261">[ 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/2012-December/002262.html b/zarb-ml/mageia-webteam/2012-December/002262.html
new file mode 100644
index 000000000..baf681c0b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002262.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+ </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%208277%5D%20add%20back%20mirrors%20that%20synced%20from%0A%20ibiblio%20but%20now%20sync%20from%20better%20mirror&In-Reply-To=%3C20121226192859.384A147094%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="002261.html">
+ <LINK REL="Next" HREF="002263.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror</H1>
+ <B>Matteo Pasotti</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20add%20back%20mirrors%20that%20synced%20from%0A%20ibiblio%20but%20now%20sync%20from%20better%20mirror&In-Reply-To=%3C20121226192859.384A147094%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Dec 26 20:28:59 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002261.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI>Next message: <A HREF="002263.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2262">[ date ]</a>
+ <a href="thread.html#2262">[ thread ]</a>
+ <a href="subject.html#2262">[ subject ]</a>
+ <a href="author.html#2262">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+--- Comment #13 from Matteo Pasotti &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">matteo.pasotti at gmail.com</A>&gt; 2012-12-26 20:28:56 CET ---
+(In reply to comment #11)
+&gt;<i> @ pasmatt
+</I>&gt;<i>
+</I>&gt;<i> Can you please write to the admins of the Italian mirrors?
+</I>
+I wrote to the admins of the Italian mirror. Waiting for their reply.
+
+--
+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="002261.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI>Next message: <A HREF="002263.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2262">[ date ]</a>
+ <a href="thread.html#2262">[ thread ]</a>
+ <a href="subject.html#2262">[ subject ]</a>
+ <a href="author.html#2262">[ 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/2012-December/002263.html b/zarb-ml/mageia-webteam/2012-December/002263.html
new file mode 100644
index 000000000..11fba15eb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002263.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+ </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%208277%5D%20add%20back%20mirrors%20that%20synced%20from%0A%20ibiblio%20but%20now%20sync%20from%20better%20mirror&In-Reply-To=%3C20121227103103.0918247081%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="002262.html">
+ <LINK REL="Next" HREF="002223.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror</H1>
+ <B>Matteo Pasotti</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208277%5D%20add%20back%20mirrors%20that%20synced%20from%0A%20ibiblio%20but%20now%20sync%20from%20better%20mirror&In-Reply-To=%3C20121227103103.0918247081%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 27 11:31:03 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002262.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI>Next message: <A HREF="002223.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2263">[ date ]</a>
+ <a href="thread.html#2263">[ thread ]</a>
+ <a href="subject.html#2263">[ subject ]</a>
+ <a href="author.html#2263">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8277">https://bugs.mageia.org/show_bug.cgi?id=8277</A>
+
+--- Comment #14 from Matteo Pasotti &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">matteo.pasotti at gmail.com</A>&gt; 2012-12-27 11:31:02 CET ---
+The Italian mirror is now syncing with mirrors.kernel.org and the iso are
+available again.
+
+--
+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="002262.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A></li>
+ <LI>Next message: <A HREF="002223.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2263">[ date ]</a>
+ <a href="thread.html#2263">[ thread ]</a>
+ <a href="subject.html#2263">[ subject ]</a>
+ <a href="author.html#2263">[ 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/2012-December/002264.html b/zarb-ml/mageia-webteam/2012-December/002264.html
new file mode 100644
index 000000000..a8459d1e8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002264.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+ </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%208521%5D%20%5BNew%5D%20Mageia3%20Beta1%20is%20not%20announced%20in%0A%20French%20blog%20%28it%20is%20present%20in%20quite%20every%20other%20language%29&In-Reply-To=%3Cbug-8521-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="002260.html">
+ <LINK REL="Next" HREF="002265.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)</H1>
+ <B>Philippe Didier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208521%5D%20%5BNew%5D%20Mageia3%20Beta1%20is%20not%20announced%20in%0A%20French%20blog%20%28it%20is%20present%20in%20quite%20every%20other%20language%29&In-Reply-To=%3Cbug-8521-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 27 13:24:38 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002260.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002265.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2264">[ date ]</a>
+ <a href="thread.html#2264">[ thread ]</a>
+ <a href="subject.html#2264">[ subject ]</a>
+ <a href="author.html#2264">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8521">https://bugs.mageia.org/show_bug.cgi?id=8521</A>
+
+ Summary: Mageia3 Beta1 is not announced in French blog (it is
+ present in quite every other language)
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: blog.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">philippedidier at laposte.net</A>
+
+
+Mageia3 Beta1 is not announced in French blog (last news from december 12th
+talks about delay)
+Though this announce is present in quite every other language : english of
+course, spanish, portuguese, german ... and estonian esperanto catalan finnish
+estonian !!
+
+En fran&#231;ais :
+Le blog n'annonce pas la sortie de la Beta1 alors qu'elle est annonc&#233;e dans
+presque toutes les autres langues.
+La derni&#232;re information disponible (du 12 d&#233;cembre) annonce le retard de
+sortie...
+
+J'ai d&#233;couvert hier, en allant sur la version anglaise, que la sortie date du
+19 .
+J'aurais pu commencer &#224; la tester une semaine plus t&#244;t ! pour rapporter
+quelques bugs qui n'apparaissent que sur certaines configurations particuli&#232;res
+...
+
+:<i>-(
+</I>
+S'il vous plait mettez &#224; jour la traduction du blog
+
+Merci
+Philippe
+
+--
+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="002260.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002265.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2264">[ date ]</a>
+ <a href="thread.html#2264">[ thread ]</a>
+ <a href="subject.html#2264">[ subject ]</a>
+ <a href="author.html#2264">[ 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/2012-December/002265.html b/zarb-ml/mageia-webteam/2012-December/002265.html
new file mode 100644
index 000000000..b938806af
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002265.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+ </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%208521%5D%20Mageia3%20Beta1%20is%20not%20announced%20in%0A%20French%20blog%20%28it%20is%20present%20in%20quite%20every%20other%20language%29&In-Reply-To=%3C20121227122910.413CB46F00%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="002264.html">
+ <LINK REL="Next" HREF="002266.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208521%5D%20Mageia3%20Beta1%20is%20not%20announced%20in%0A%20French%20blog%20%28it%20is%20present%20in%20quite%20every%20other%20language%29&In-Reply-To=%3C20121227122910.413CB46F00%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 27 13:29:10 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002264.html">[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI>Next message: <A HREF="002266.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2265">[ date ]</a>
+ <a href="thread.html#2265">[ thread ]</a>
+ <a href="subject.html#2265">[ subject ]</a>
+ <a href="author.html#2265">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8521">https://bugs.mageia.org/show_bug.cgi?id=8521</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |WORKSFORME
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-12-27 13:29:09 CET ---
+help here: <A HREF="https://ml.mageia.org/l/arc/i18n-fr/2012-12/msg00011.html">https://ml.mageia.org/l/arc/i18n-fr/2012-12/msg00011.html</A> this is
+nothing for web team only traductor.
+
+--
+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="002264.html">[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI>Next message: <A HREF="002266.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2265">[ date ]</a>
+ <a href="thread.html#2265">[ thread ]</a>
+ <a href="subject.html#2265">[ subject ]</a>
+ <a href="author.html#2265">[ 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/2012-December/002266.html b/zarb-ml/mageia-webteam/2012-December/002266.html
new file mode 100644
index 000000000..6de3e86bf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002266.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+ </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%208521%5D%20Mageia3%20Beta1%20is%20not%20announced%20in%0A%20French%20blog%20%28it%20is%20present%20in%20quite%20every%20other%20language%29&In-Reply-To=%3C20121227124951.073834702A%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="002265.html">
+ <LINK REL="Next" HREF="002267.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)</H1>
+ <B>R&#195;&#169;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208521%5D%20Mageia3%20Beta1%20is%20not%20announced%20in%0A%20French%20blog%20%28it%20is%20present%20in%20quite%20every%20other%20language%29&In-Reply-To=%3C20121227124951.073834702A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Dec 27 13:49:50 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002265.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI>Next message: <A HREF="002267.html">[Mageia-webteam] [Bug 8554] [New] target field setted in the search form hides a lot of results
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2266">[ date ]</a>
+ <a href="thread.html#2266">[ thread ]</a>
+ <a href="subject.html#2266">[ subject ]</a>
+ <a href="author.html#2266">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8521">https://bugs.mageia.org/show_bug.cgi?id=8521</A>
+
+R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|RESOLVED |REOPENED
+ Resolution|WORKSFORME |
+ AssignedTo|<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">remi at verschelde.fr</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>
+
+--- Comment #2 from R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>&gt; 2012-12-27 13:49:50 CET ---
+Why resolve it as WORKSFORME? I indeed forgot to publish the translation, so it
+works for noone.
+
+I'll publish it now, sorry for the delay.
+
+--
+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="002265.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+ <LI>Next message: <A HREF="002267.html">[Mageia-webteam] [Bug 8554] [New] target field setted in the search form hides a lot of results
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2266">[ date ]</a>
+ <a href="thread.html#2266">[ thread ]</a>
+ <a href="subject.html#2266">[ subject ]</a>
+ <a href="author.html#2266">[ 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/2012-December/002267.html b/zarb-ml/mageia-webteam/2012-December/002267.html
new file mode 100644
index 000000000..841ccac63
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/002267.html
@@ -0,0 +1,109 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8554] [New] target field setted in the search form hides a lot of results
+ </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%208554%5D%20%5BNew%5D%20target%20field%20setted%20in%20the%20search%0A%20form%20hides%20a%20lot%20of%20results&In-Reply-To=%3Cbug-8554-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="002266.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8554] [New] target field setted in the search form hides a lot of results</H1>
+ <B>Tom Massimi</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208554%5D%20%5BNew%5D%20target%20field%20setted%20in%20the%20search%0A%20form%20hides%20a%20lot%20of%20results&In-Reply-To=%3Cbug-8554-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 8554] [New] target field setted in the search form hides a lot of results">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Dec 30 01:14:59 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002266.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2267">[ date ]</a>
+ <a href="thread.html#2267">[ thread ]</a>
+ <a href="subject.html#2267">[ subject ]</a>
+ <a href="author.html#2267">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8554">https://bugs.mageia.org/show_bug.cgi?id=8554</A>
+
+ Summary: target field setted in the search form hides a lot of
+ results
+ 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">tmassimi 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>
+
+
+Description of problem:
+
+I was looking if a defect about grubin MGA3 was already inserted in bugzilla,
+so I went in the search form <A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+and made a search for 'grub' with selected
+
+product=mageia
+version=caldrun
+target=mageia3
+
+
+As I had only two hits and nothing similar to mime,
+I added a new defect, which has been declared &quot;fixed as dupe&quot;.
+
+
+If I do a search with only
+
+product=mageia
+version=caldrun
+
+it returns a lot of defects, so the field &quot;target&quot; is changing the queries.
+
+In the page of the defect I missed
+
+(<A HREF="https://bugs.mageia.org/show_bug.cgi?id=8463">https://bugs.mageia.org/show_bug.cgi?id=8463</A>)
+
+the field target is named 'target milestone',
+the link to its help points to nothing
+(<A HREF="https://bugs.mageia.org/page.cgi?id=fields.html#target_milestone">https://bugs.mageia.org/page.cgi?id=fields.html#target_milestone</A>)
+
+and it is setted to the value &quot;---&quot;.
+
+I think that if a defect has in the target field the unspecified value &quot;---&quot;
+setted, all the query with a valid target field should consider 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="002266.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2267">[ date ]</a>
+ <a href="thread.html#2267">[ thread ]</a>
+ <a href="subject.html#2267">[ subject ]</a>
+ <a href="author.html#2267">[ 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/2012-December/author.html b/zarb-ml/mageia-webteam/2012-December/author.html
new file mode 100644
index 000000000..511a4b326
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/author.html
@@ -0,0 +1,282 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2012 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 2012 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>Sun Dec 2 22:50:04 CET 2012</i><br>
+ <b>Ending:</b> <i>Sun Dec 30 01:14:59 CET 2012</i><br>
+ <b>Messages:</b> 47<p>
+ <ul>
+
+<LI><A HREF="002256.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2256">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002257.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2257">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002258.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2258">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002264.html">[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2264">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="002240.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2240">&nbsp;</A>
+<I>Alberto Girlando
+</I>
+
+<LI><A HREF="002226.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A><A NAME="2226">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002254.html">[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2254">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002255.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2255">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002221.html">[Mageia-webteam] [Bug 8277] [New] remove mirror that sync from ibiblio
+</A><A NAME="2221">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002222.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio
+</A><A NAME="2222">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002228.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska
+</A><A NAME="2228">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002229.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de
+</A><A NAME="2229">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002230.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2230">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002232.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2232">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002233.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2233">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002234.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2234">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002235.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2235">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002239.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2239">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002248.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2248">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002249.html">[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page
+</A><A NAME="2249">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002253.html">[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt
+</A><A NAME="2253">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002259.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2259">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002265.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2265">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002242.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2242">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="002244.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2244">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="002267.html">[Mageia-webteam] [Bug 8554] [New] target field setted in the search form hides a lot of results
+</A><A NAME="2267">&nbsp;</A>
+<I>Tom Massimi
+</I>
+
+<LI><A HREF="002262.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2262">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002263.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2263">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002252.html">[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt
+</A><A NAME="2252">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002266.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2266">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002260.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2260">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002223.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2223">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002224.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2224">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002225.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2225">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002227.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A><A NAME="2227">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002246.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2246">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002247.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2247">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002250.html">[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+</A><A NAME="2250">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002251.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2251">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002261.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2261">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002231.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2231">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002236.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2236">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002237.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2237">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002238.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2238">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002241.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2241">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002243.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2243">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002245.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2245">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Dec 30 01:14:59 CET 2012</i><br>
+ <b>Archived on:</b> <i>Sun Dec 30 01:15:04 CET 2012</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/2012-December/date.html b/zarb-ml/mageia-webteam/2012-December/date.html
new file mode 100644
index 000000000..19615ff36
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/date.html
@@ -0,0 +1,282 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2012 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 2012 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>Sun Dec 2 22:50:04 CET 2012</i><br>
+ <b>Ending:</b> <i>Sun Dec 30 01:14:59 CET 2012</i><br>
+ <b>Messages:</b> 47<p>
+ <ul>
+
+<LI><A HREF="002221.html">[Mageia-webteam] [Bug 8277] [New] remove mirror that sync from ibiblio
+</A><A NAME="2221">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002222.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio
+</A><A NAME="2222">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002223.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2223">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002224.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2224">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002225.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2225">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002226.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A><A NAME="2226">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002227.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A><A NAME="2227">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002228.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska
+</A><A NAME="2228">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002229.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de
+</A><A NAME="2229">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002230.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2230">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002231.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2231">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002232.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2232">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002233.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2233">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002234.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2234">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002235.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2235">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002236.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2236">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002237.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2237">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002238.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2238">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002239.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2239">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002240.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2240">&nbsp;</A>
+<I>Alberto Girlando
+</I>
+
+<LI><A HREF="002241.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2241">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002242.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2242">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="002243.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2243">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002244.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2244">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="002245.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2245">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002246.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2246">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002247.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2247">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002248.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2248">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002249.html">[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page
+</A><A NAME="2249">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002250.html">[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+</A><A NAME="2250">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002251.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2251">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002252.html">[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt
+</A><A NAME="2252">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002253.html">[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt
+</A><A NAME="2253">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002254.html">[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2254">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002255.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2255">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002256.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2256">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002257.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2257">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002258.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2258">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002259.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2259">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002260.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2260">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002261.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2261">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002262.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2262">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002263.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2263">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002264.html">[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2264">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="002265.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2265">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002266.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2266">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002267.html">[Mageia-webteam] [Bug 8554] [New] target field setted in the search form hides a lot of results
+</A><A NAME="2267">&nbsp;</A>
+<I>Tom Massimi
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Dec 30 01:14:59 CET 2012</i><br>
+ <b>Archived on:</b> <i>Sun Dec 30 01:15:04 CET 2012</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/2012-December/index.html b/zarb-ml/mageia-webteam/2012-December/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-December/subject.html b/zarb-ml/mageia-webteam/2012-December/subject.html
new file mode 100644
index 000000000..9a8698958
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/subject.html
@@ -0,0 +1,282 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2012 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 2012 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>Sun Dec 2 22:50:04 CET 2012</i><br>
+ <b>Ending:</b> <i>Sun Dec 30 01:14:59 CET 2012</i><br>
+ <b>Messages:</b> 47<p>
+ <ul>
+
+<LI><A HREF="002257.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2257">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002258.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2258">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002259.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2259">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002260.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2260">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002223.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2223">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002224.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2224">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002225.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2225">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002221.html">[Mageia-webteam] [Bug 8277] [New] remove mirror that sync from ibiblio
+</A><A NAME="2221">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002250.html">[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+</A><A NAME="2250">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002261.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2261">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002262.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2262">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002263.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2263">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002222.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio
+</A><A NAME="2222">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002230.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2230">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002231.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2231">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002232.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2232">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002233.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2233">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002234.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2234">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002236.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2236">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002246.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2246">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002247.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2247">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002248.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2248">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002228.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska
+</A><A NAME="2228">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002229.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de
+</A><A NAME="2229">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002226.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A><A NAME="2226">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002227.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A><A NAME="2227">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002235.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2235">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002237.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2237">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002238.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2238">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002240.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2240">&nbsp;</A>
+<I>Alberto Girlando
+</I>
+
+<LI><A HREF="002251.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2251">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002239.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2239">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002241.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2241">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002242.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2242">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="002243.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2243">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002244.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2244">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<LI><A HREF="002245.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2245">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002249.html">[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page
+</A><A NAME="2249">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002252.html">[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt
+</A><A NAME="2252">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002253.html">[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt
+</A><A NAME="2253">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002254.html">[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2254">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002255.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2255">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002256.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2256">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002264.html">[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2264">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<LI><A HREF="002265.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2265">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002266.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2266">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002267.html">[Mageia-webteam] [Bug 8554] [New] target field setted in the search form hides a lot of results
+</A><A NAME="2267">&nbsp;</A>
+<I>Tom Massimi
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Dec 30 01:14:59 CET 2012</i><br>
+ <b>Archived on:</b> <i>Sun Dec 30 01:15:04 CET 2012</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/2012-December/thread.html b/zarb-ml/mageia-webteam/2012-December/thread.html
new file mode 100644
index 000000000..3b128123e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-December/thread.html
@@ -0,0 +1,337 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2012 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 2012 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>Sun Dec 2 22:50:04 CET 2012</i><br>
+ <b>Ending:</b> <i>Sun Dec 30 01:14:59 CET 2012</i><br>
+ <b>Messages:</b> 47<p>
+ <ul>
+
+<!--0 01354485004- -->
+<LI><A HREF="002221.html">[Mageia-webteam] [Bug 8277] [New] remove mirror that sync from ibiblio
+</A><A NAME="2221">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01354485004-01354485039- -->
+<LI><A HREF="002222.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio
+</A><A NAME="2222">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01354485004-01355766350- -->
+<LI><A HREF="002228.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska
+</A><A NAME="2228">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01354485004-01355935655- -->
+<LI><A HREF="002229.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio + twiska + mandrivauser.de
+</A><A NAME="2229">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01354485004-01355954686- -->
+<LI><A HREF="002230.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2230">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01354485004-01356021002- -->
+<LI><A HREF="002231.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2231">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01354485004-01356023957- -->
+<LI><A HREF="002232.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2232">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01354485004-01356034040- -->
+<LI><A HREF="002233.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2233">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01354485004-01356034056- -->
+<LI><A HREF="002234.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2234">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01354485004-01356088875- -->
+<LI><A HREF="002236.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2236">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01354485004-01356120123- -->
+<LI><A HREF="002246.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2246">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01354485004-01356127036- -->
+<LI><A HREF="002247.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2247">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01354485004-01356127564- -->
+<LI><A HREF="002248.html">[Mageia-webteam] [Bug 8277] remove mirror that sync from ibiblio (iso dl) , twiska + mandrivauser.de +nautile.nc (both api + iso dl)
+</A><A NAME="2248">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01354485004-01356190850- -->
+<LI><A HREF="002250.html">[Mageia-webteam] [Bug 8277] add back mirror that synced from ibiblio but now syncs with mirrors.kernel.org
+</A><A NAME="2250">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01354485004-01356548850- -->
+<LI><A HREF="002261.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2261">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01354485004-01356550139- -->
+<LI><A HREF="002262.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2262">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<!--1 01354485004-01356604263- -->
+<LI><A HREF="002263.html">[Mageia-webteam] [Bug 8277] add back mirrors that synced from ibiblio but now sync from better mirror
+</A><A NAME="2263">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+</UL>
+<!--0 01354749309- -->
+<LI><A HREF="002223.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2223">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01354903344- -->
+<LI><A HREF="002224.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2224">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01354903392- -->
+<LI><A HREF="002225.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2225">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01355579120- -->
+<LI><A HREF="002226.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A><A NAME="2226">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01355591529- -->
+<LI><A HREF="002227.html">[Mageia-webteam] [Bug 8397] Crowdin - A collaborative translation tool that would replace transifex.mageia.org
+</A><A NAME="2227">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01356034093- -->
+<LI><A HREF="002235.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2235">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01356088875- -->
+<LI><A HREF="002237.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2237">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01356088916- -->
+<LI><A HREF="002238.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2238">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01356089562- -->
+<LI><A HREF="002239.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2239">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01356089681- -->
+<LI><A HREF="002240.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2240">&nbsp;</A>
+<I>Alberto Girlando
+</I>
+
+<!--0 01356091446- -->
+<LI><A HREF="002241.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2241">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01356091967- -->
+<LI><A HREF="002242.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2242">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<!--0 01356099814- -->
+<LI><A HREF="002243.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2243">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01356100420- -->
+<LI><A HREF="002244.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2244">&nbsp;</A>
+<I>Marek Laane
+</I>
+
+<!--0 01356102489- -->
+<LI><A HREF="002245.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2245">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01356129036- -->
+<LI><A HREF="002249.html">[Mageia-webteam] [Bug 8464] Konqueror doesn't redirect to Mageia page
+</A><A NAME="2249">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01356190850- -->
+<LI><A HREF="002251.html">[Mageia-webteam] [Bug 8457] italian mirror (garr) problems
+</A><A NAME="2251">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01356311162- -->
+<LI><A HREF="002252.html">[Mageia-webteam] [Bug 8487] [New] Do Mageia Tee-shirt
+</A><A NAME="2252">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<UL>
+<!--1 01356311162-01356349061- -->
+<LI><A HREF="002253.html">[Mageia-webteam] [Bug 8487] Do Mageia Tee-shirt
+</A><A NAME="2253">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01356443081- -->
+<LI><A HREF="002254.html">[Mageia-webteam] [Bug 8500] [New] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2254">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<UL>
+<!--1 01356443081-01356443096- -->
+<LI><A HREF="002255.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2255">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--1 01356443081-01356522273- -->
+<LI><A HREF="002256.html">[Mageia-webteam] [Bug 8500] Add boxes to choose affected kernel, program-version, module etc before you submit a bugreport.
+</A><A NAME="2256">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+</UL>
+<!--0 01356522273- -->
+<LI><A HREF="002257.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2257">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01356522329- -->
+<LI><A HREF="002258.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2258">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01356522519- -->
+<LI><A HREF="002259.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2259">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01356527227- -->
+<LI><A HREF="002260.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2260">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--0 01356611078- -->
+<LI><A HREF="002264.html">[Mageia-webteam] [Bug 8521] [New] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2264">&nbsp;</A>
+<I>Philippe Didier
+</I>
+
+<UL>
+<!--1 01356611078-01356611350- -->
+<LI><A HREF="002265.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2265">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01356611078-01356612590- -->
+<LI><A HREF="002266.html">[Mageia-webteam] [Bug 8521] Mageia3 Beta1 is not announced in French blog (it is present in quite every other language)
+</A><A NAME="2266">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+</UL>
+<!--0 01356826499- -->
+<LI><A HREF="002267.html">[Mageia-webteam] [Bug 8554] [New] target field setted in the search form hides a lot of results
+</A><A NAME="2267">&nbsp;</A>
+<I>Tom Massimi
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Dec 30 01:14:59 CET 2012</i><br>
+ <b>Archived on:</b> <i>Sun Dec 30 01:15:04 CET 2012</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/2012-February.txt.gz b/zarb-ml/mageia-webteam/2012-February.txt.gz
new file mode 100644
index 000000000..7798a7ff8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-February/001769.html b/zarb-ml/mageia-webteam/2012-February/001769.html
new file mode 100644
index 000000000..1df5fed65
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001769.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4402] [New] Can we have Extension:GraphViz installed?
+ </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%204402%5D%20%5BNew%5D%20Can%20we%20have%20Extension%3AGraphViz%0A%09installed%3F&In-Reply-To=%3Cbug-4402-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="Next" HREF="001770.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4402] [New] Can we have Extension:GraphViz installed?</H1>
+ <B>Simon Parsons</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204402%5D%20%5BNew%5D%20Can%20we%20have%20Extension%3AGraphViz%0A%09installed%3F&In-Reply-To=%3Cbug-4402-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4402] [New] Can we have Extension:GraphViz installed?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 3 17:46:30 CET 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001770.html">[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1769">[ date ]</a>
+ <a href="thread.html#1769">[ thread ]</a>
+ <a href="subject.html#1769">[ subject ]</a>
+ <a href="author.html#1769">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4402">https://bugs.mageia.org/show_bug.cgi?id=4402</A>
+
+ Summary: Can we have Extension:GraphViz installed?
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">gm4nzg at gmail.com</A>
+
+
+I was looking at some of the instructions on the wiki - specifically some of
+the how-tos - and wondered if the GraphViz extension was available as it's very
+useful for creating flow charts to visualise procedures.
+
+Is it possible to have this plugin installed??
+
+--
+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>Next message: <A HREF="001770.html">[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1769">[ date ]</a>
+ <a href="thread.html#1769">[ thread ]</a>
+ <a href="subject.html#1769">[ subject ]</a>
+ <a href="author.html#1769">[ 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/2012-February/001770.html b/zarb-ml/mageia-webteam/2012-February/001770.html
new file mode 100644
index 000000000..d783e17e0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001770.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?
+ </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%204402%5D%20Can%20we%20have%20Extension%3AGraphViz%0A%09installed%3F&In-Reply-To=%3C20120207191538.D633D404BB%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="001769.html">
+ <LINK REL="Next" HREF="001771.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204402%5D%20Can%20we%20have%20Extension%3AGraphViz%0A%09installed%3F&In-Reply-To=%3C20120207191538.D633D404BB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 7 20:15:38 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001769.html">[Mageia-webteam] [Bug 4402] [New] Can we have Extension:GraphViz installed?
+</A></li>
+ <LI>Next message: <A HREF="001771.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1770">[ date ]</a>
+ <a href="thread.html#1770">[ thread ]</a>
+ <a href="subject.html#1770">[ subject ]</a>
+ <a href="author.html#1770">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4402">https://bugs.mageia.org/show_bug.cgi?id=4402</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<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">oliver.bgr at googlemail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-07 20:15:38 CET ---
+assigning to Oliver Burger at his wish
+
+--
+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="001769.html">[Mageia-webteam] [Bug 4402] [New] Can we have Extension:GraphViz installed?
+</A></li>
+ <LI>Next message: <A HREF="001771.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1770">[ date ]</a>
+ <a href="thread.html#1770">[ thread ]</a>
+ <a href="subject.html#1770">[ subject ]</a>
+ <a href="author.html#1770">[ 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/2012-February/001771.html b/zarb-ml/mageia-webteam/2012-February/001771.html
new file mode 100644
index 000000000..30acaa17e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001771.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 966] Name check on identity should be more open
+ </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%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20120208142841.C2F674101E%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="001770.html">
+ <LINK REL="Next" HREF="001772.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 966] Name check on identity should be more open</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20120208142841.C2F674101E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 966] Name check on identity should be more open">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 8 15:28:41 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001770.html">[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?
+</A></li>
+ <LI>Next message: <A HREF="001772.html">[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1771">[ date ]</a>
+ <a href="thread.html#1771">[ thread ]</a>
+ <a href="subject.html#1771">[ subject ]</a>
+ <a href="author.html#1771">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-08 15:28:41 CET ---
+Pinging, because nothing has happened with this report for more than 3 months,
+it still has the status NEW or REOPENED.
+
+--
+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="001770.html">[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?
+</A></li>
+ <LI>Next message: <A HREF="001772.html">[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1771">[ date ]</a>
+ <a href="thread.html#1771">[ thread ]</a>
+ <a href="subject.html#1771">[ subject ]</a>
+ <a href="author.html#1771">[ 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/2012-February/001772.html b/zarb-ml/mageia-webteam/2012-February/001772.html
new file mode 100644
index 000000000..9723bb743
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001772.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists
+ </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%204482%5D%20%5BNew%5D%20Remove%20the%20OS%20column%20for%20the%0A%09buglists&In-Reply-To=%3Cbug-4482-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="001771.html">
+ <LINK REL="Next" HREF="001773.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204482%5D%20%5BNew%5D%20Remove%20the%20OS%20column%20for%20the%0A%09buglists&In-Reply-To=%3Cbug-4482-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 11 16:27:32 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001771.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="001773.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1772">[ date ]</a>
+ <a href="thread.html#1772">[ thread ]</a>
+ <a href="subject.html#1772">[ subject ]</a>
+ <a href="author.html#1772">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4482">https://bugs.mageia.org/show_bug.cgi?id=4482</A>
+
+ Summary: Remove the OS column for the buglists
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ 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">manuel at hiebel.eu</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>
+
+
+Description of problem:
+This column is useless, since we have only linux.
+
+How reproducible:
+-Logout from the bugzilla (if you have changed these settings)
+-make a search like <A HREF="https://bugs.mageia.org">https://bugs.mageia.org</A>
+/buglist.cgi?quicksearch=days_elapsed%3A90 or another one
+-see the buglist
+
+--
+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="001771.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="001773.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1772">[ date ]</a>
+ <a href="thread.html#1772">[ thread ]</a>
+ <a href="subject.html#1772">[ subject ]</a>
+ <a href="author.html#1772">[ 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/2012-February/001773.html b/zarb-ml/mageia-webteam/2012-February/001773.html
new file mode 100644
index 000000000..6d7b6a0ed
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001773.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+ </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%204482%5D%20Remove%20the%20OS%20column%20for%20the%20buglist&In-Reply-To=%3C20120211152746.D283E4145E%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="001772.html">
+ <LINK REL="Next" HREF="001776.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204482%5D%20Remove%20the%20OS%20column%20for%20the%20buglist&In-Reply-To=%3C20120211152746.D283E4145E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 11 16:27:46 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001772.html">[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists
+</A></li>
+ <LI>Next message: <A HREF="001776.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1773">[ date ]</a>
+ <a href="thread.html#1773">[ thread ]</a>
+ <a href="subject.html#1773">[ subject ]</a>
+ <a href="author.html#1773">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4482">https://bugs.mageia.org/show_bug.cgi?id=4482</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Remove the OS column for |Remove the OS column for
+ |the buglists |the buglist
+ Severity|minor |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 on the CC list for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001772.html">[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists
+</A></li>
+ <LI>Next message: <A HREF="001776.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1773">[ date ]</a>
+ <a href="thread.html#1773">[ thread ]</a>
+ <a href="subject.html#1773">[ subject ]</a>
+ <a href="author.html#1773">[ 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/2012-February/001774.html b/zarb-ml/mageia-webteam/2012-February/001774.html
new file mode 100644
index 000000000..7458a454c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001774.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature
+ </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%204483%5D%20%5BNew%5D%20Add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3Cbug-4483-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="001778.html">
+ <LINK REL="Next" HREF="001775.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204483%5D%20%5BNew%5D%20Add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3Cbug-4483-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 11 16:47:01 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001778.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI>Next message: <A HREF="001775.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1774">[ date ]</a>
+ <a href="thread.html#1774">[ thread ]</a>
+ <a href="subject.html#1774">[ subject ]</a>
+ <a href="author.html#1774">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4483">https://bugs.mageia.org/show_bug.cgi?id=4483</A>
+
+ Summary: Add the Graphical Reports feature
+ 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">manuel at hiebel.eu</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>
+
+
+See
+
+<A HREF="https://bugs.mageia.org/report.cgi?bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_id=&amp;bug_id_type=anyexact&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;email1=&amp;email2=&amp;emailassigned_to1=1&amp;emailassigned_to2=1&amp;emailcc2=1&amp;emailqa_contact2=1&amp;emailreporter2=1&amp;emailtype1=substring&amp;emailtype2=substring&amp;field0-0-0=noop&amp;keywords=&amp;keywords_type=allwords&amp;longdesc=&amp;longdesc_type=allwordssubstr&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;status_whiteboard=&amp;status_whiteboard_type=allwordssubstr&amp;type0-0-0=noop&amp;value0-0-0=&amp;x_axis_field=component&amp;y_axis_field=reporter&amp;z_axis_field=&amp;width=600&amp;height=350&amp;action=wrap&amp;format=bar">https://bugs.mageia.org/report.cgi?bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_id=&amp;bug_id_type=anyexact&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;email1=&amp;email2=&amp;emailassigned_to1=1&amp;emailassigned_to2=1&amp;emailcc2=1&amp;emailqa_contact2=1&amp;emailreporter2=1&amp;emailtype1=substring&amp;emailtype2=substring&amp;field0-0-0=noop&amp;keywords=&amp;keywords_type=allwords&amp;longdesc=&amp;longdesc_type=allwordssubstr&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;status_whiteboard=&amp;status_whiteboard_type=allwordssubstr&amp;type0-0-0=noop&amp;value0-0-0=&amp;x_axis_field=component&amp;y_axis_field=reporter&amp;z_axis_field=&amp;width=600&amp;height=350&amp;action=wrap&amp;format=bar</A>
+
+run /usr/share/bugzilla/bin/checksetup.pl
+and then install the packages
+
+--
+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="001778.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI>Next message: <A HREF="001775.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1774">[ date ]</a>
+ <a href="thread.html#1774">[ thread ]</a>
+ <a href="subject.html#1774">[ subject ]</a>
+ <a href="author.html#1774">[ 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/2012-February/001775.html b/zarb-ml/mageia-webteam/2012-February/001775.html
new file mode 100644
index 000000000..fb2804e6a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001775.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+ </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%203299%5D%20undefined%20wsDomain%20in%0A%09LdapAuthentication.php&In-Reply-To=%3C20120211195724.BB1EB4042B%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="001774.html">
+ <LINK REL="Next" HREF="001777.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203299%5D%20undefined%20wsDomain%20in%0A%09LdapAuthentication.php&In-Reply-To=%3C20120211195724.BB1EB4042B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 11 20:57:24 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001774.html">[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001777.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1775">[ date ]</a>
+ <a href="thread.html#1775">[ thread ]</a>
+ <a href="subject.html#1775">[ subject ]</a>
+ <a href="author.html#1775">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3299">https://bugs.mageia.org/show_bug.cgi?id=3299</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-11 20:57:24 CET ---
+Did this get solved? I don't see the Notices
+
+--
+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="001774.html">[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001777.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1775">[ date ]</a>
+ <a href="thread.html#1775">[ thread ]</a>
+ <a href="subject.html#1775">[ subject ]</a>
+ <a href="author.html#1775">[ 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/2012-February/001776.html b/zarb-ml/mageia-webteam/2012-February/001776.html
new file mode 100644
index 000000000..3cfbaae8a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001776.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+ </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%204482%5D%20Remove%20the%20OS%20column%20for%20the%20buglist&In-Reply-To=%3C20120212170646.31FFA41003%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="001773.html">
+ <LINK REL="Next" HREF="001778.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204482%5D%20Remove%20the%20OS%20column%20for%20the%20buglist&In-Reply-To=%3C20120212170646.31FFA41003%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Feb 12 18:06:46 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001773.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI>Next message: <A HREF="001778.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1776">[ date ]</a>
+ <a href="thread.html#1776">[ thread ]</a>
+ <a href="subject.html#1776">[ subject ]</a>
+ <a href="author.html#1776">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4482">https://bugs.mageia.org/show_bug.cgi?id=4482</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; 2012-02-12 18:06:46 CET ---
+It's useless for the Mageia product, but it's not for other products (Web
+sites, for one, and potential future products).
+
+--
+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="001773.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI>Next message: <A HREF="001778.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1776">[ date ]</a>
+ <a href="thread.html#1776">[ thread ]</a>
+ <a href="subject.html#1776">[ subject ]</a>
+ <a href="author.html#1776">[ 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/2012-February/001777.html b/zarb-ml/mageia-webteam/2012-February/001777.html
new file mode 100644
index 000000000..798e64d5a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001777.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+ </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%203299%5D%20undefined%20wsDomain%20in%0A%09LdapAuthentication.php&In-Reply-To=%3C20120212170849.6AF9F41006%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="001775.html">
+ <LINK REL="Next" HREF="001779.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203299%5D%20undefined%20wsDomain%20in%0A%09LdapAuthentication.php&In-Reply-To=%3C20120212170849.6AF9F41006%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Feb 12 18:08:49 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001775.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI>Next message: <A HREF="001779.html">[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1777">[ date ]</a>
+ <a href="thread.html#1777">[ thread ]</a>
+ <a href="subject.html#1777">[ subject ]</a>
+ <a href="author.html#1777">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3299">https://bugs.mageia.org/show_bug.cgi?id=3299</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|NEW |RESOLVED
+ Resolution| |WONTFIX
+
+--- Comment #3 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-02-12 19:08:49 CET ---
+See upstream LDAP authentication extension, looks fixed in later releases.
+
+--
+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="001775.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI>Next message: <A HREF="001779.html">[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1777">[ date ]</a>
+ <a href="thread.html#1777">[ thread ]</a>
+ <a href="subject.html#1777">[ subject ]</a>
+ <a href="author.html#1777">[ 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/2012-February/001778.html b/zarb-ml/mageia-webteam/2012-February/001778.html
new file mode 100644
index 000000000..5dc748613
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001778.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+ </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%204482%5D%20Remove%20the%20OS%20column%20for%20the%20buglist&In-Reply-To=%3C20120212192322.F2B7041004%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="001776.html">
+ <LINK REL="Next" HREF="001774.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204482%5D%20Remove%20the%20OS%20column%20for%20the%20buglist&In-Reply-To=%3C20120212192322.F2B7041004%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Feb 12 20:23:22 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001776.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI>Next message: <A HREF="001774.html">[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1778">[ date ]</a>
+ <a href="thread.html#1778">[ thread ]</a>
+ <a href="subject.html#1778">[ subject ]</a>
+ <a href="author.html#1778">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4482">https://bugs.mageia.org/show_bug.cgi?id=4482</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-02-12 20:23:22 CET ---
+<A HREF="https://bugs.mageia.org/enter_bug.cgi?product=Websites">https://bugs.mageia.org/enter_bug.cgi?product=Websites</A>
+
+there is only one OS
+
+--
+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="001776.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A></li>
+ <LI>Next message: <A HREF="001774.html">[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1778">[ date ]</a>
+ <a href="thread.html#1778">[ thread ]</a>
+ <a href="subject.html#1778">[ subject ]</a>
+ <a href="author.html#1778">[ 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/2012-February/001779.html b/zarb-ml/mageia-webteam/2012-February/001779.html
new file mode 100644
index 000000000..cf467fb25
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001779.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.
+ </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%204517%5D%20%5BNew%5D%20Wrong%20description%20for%20the%20tainted%0A%09repository.&In-Reply-To=%3Cbug-4517-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="001777.html">
+ <LINK REL="Next" HREF="001781.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204517%5D%20%5BNew%5D%20Wrong%20description%20for%20the%20tainted%0A%09repository.&In-Reply-To=%3Cbug-4517-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 13 21:09:35 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001777.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI>Next message: <A HREF="001781.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1779">[ date ]</a>
+ <a href="thread.html#1779">[ thread ]</a>
+ <a href="subject.html#1779">[ subject ]</a>
+ <a href="author.html#1779">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4517">https://bugs.mageia.org/show_bug.cgi?id=4517</A>
+
+ Summary: Wrong description for the tainted repository.
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/en/1/notes/#install">http://www.mageia.org/en/1/notes/#install</A>
+ 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">manuel at hiebel.eu</A>
+
+
+Description of problem:
+Tainted:
+The Tainted repository includes packages under various licenses, free and
+*nonfree* ones,
+
+This is wrong we don't provide nonfree rpms with tainted stuff
+
+--
+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="001777.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A></li>
+ <LI>Next message: <A HREF="001781.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1779">[ date ]</a>
+ <a href="thread.html#1779">[ thread ]</a>
+ <a href="subject.html#1779">[ subject ]</a>
+ <a href="author.html#1779">[ 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/2012-February/001780.html b/zarb-ml/mageia-webteam/2012-February/001780.html
new file mode 100644
index 000000000..cb33e5777
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001780.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120215115322.2191741623%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="001782.html">
+ <LINK REL="Next" HREF="001783.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120215115322.2191741623%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 15 12:53:22 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001782.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI>Next message: <A HREF="001783.html">[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1780">[ date ]</a>
+ <a href="thread.html#1780">[ thread ]</a>
+ <a href="subject.html#1780">[ subject ]</a>
+ <a href="author.html#1780">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>
+
+--- Comment #13 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2012-02-15 12:53:21 CET ---
+Actually this is no good idea, or it wouldn't improve anything. We currently
+don't have automatic assignment, and such a list, which could not be
+automatically created, would not help with that.
+
+Otherwise it's not the users task to fill out the Assignee field, or the rpm
+package to which this bug belongs, if he doesn't know, ultimately that's the
+job of the triage team, and they're doing their job quite well IMHO.
+
+And i fail to see how introducing a new component list helps with searching
+duplicates for bugs that are to be reported.
+
+Also you have not responded to the question from our current bug squad team
+leader, what is wrong or could be improved on the way bugs are triaged
+currently?
+And how would your proposal help improve that, besides just overcomplicating
+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="001782.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI>Next message: <A HREF="001783.html">[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1780">[ date ]</a>
+ <a href="thread.html#1780">[ thread ]</a>
+ <a href="subject.html#1780">[ subject ]</a>
+ <a href="author.html#1780">[ 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/2012-February/001781.html b/zarb-ml/mageia-webteam/2012-February/001781.html
new file mode 100644
index 000000000..c60f6ab9e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001781.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+ </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%204517%5D%20Wrong%20description%20for%20the%20tainted%0A%09repository.&In-Reply-To=%3C20120216140546.45A3641769%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="001779.html">
+ <LINK REL="Next" HREF="001782.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204517%5D%20Wrong%20description%20for%20the%20tainted%0A%09repository.&In-Reply-To=%3C20120216140546.45A3641769%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 16 15:05:46 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001779.html">[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.
+</A></li>
+ <LI>Next message: <A HREF="001782.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1781">[ date ]</a>
+ <a href="thread.html#1781">[ thread ]</a>
+ <a href="subject.html#1781">[ subject ]</a>
+ <a href="author.html#1781">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4517">https://bugs.mageia.org/show_bug.cgi?id=4517</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; 2012-02-16 15:05:46 CET ---
+At the time this page was setup and released, this was not discussed thoroughly
+on the list I believe. Please submit a patch
+(<A HREF="http://svnweb.mageia.org/web/www/trunk/en/1/">http://svnweb.mageia.org/web/www/trunk/en/1/</A>) or we leave this out.
+
+--
+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="001779.html">[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.
+</A></li>
+ <LI>Next message: <A HREF="001782.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1781">[ date ]</a>
+ <a href="thread.html#1781">[ thread ]</a>
+ <a href="subject.html#1781">[ subject ]</a>
+ <a href="author.html#1781">[ 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/2012-February/001782.html b/zarb-ml/mageia-webteam/2012-February/001782.html
new file mode 100644
index 000000000..15562705a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001782.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+ </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%204517%5D%20Wrong%20description%20for%20the%20tainted%0A%09repository.&In-Reply-To=%3C20120216143823.5C15E41654%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="001781.html">
+ <LINK REL="Next" HREF="001780.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204517%5D%20Wrong%20description%20for%20the%20tainted%0A%09repository.&In-Reply-To=%3C20120216143823.5C15E41654%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 16 15:38:23 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001781.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI>Next message: <A HREF="001780.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1782">[ date ]</a>
+ <a href="thread.html#1782">[ thread ]</a>
+ <a href="subject.html#1782">[ subject ]</a>
+ <a href="author.html#1782">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4517">https://bugs.mageia.org/show_bug.cgi?id=4517</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-02-16 16:38:23 CET ---
+The Tainted repository includes packages under free license. The main
+criteria...?
+
+(I have no commit access)
+
+--
+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="001781.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI>Next message: <A HREF="001780.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1782">[ date ]</a>
+ <a href="thread.html#1782">[ thread ]</a>
+ <a href="subject.html#1782">[ subject ]</a>
+ <a href="author.html#1782">[ 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/2012-February/001783.html b/zarb-ml/mageia-webteam/2012-February/001783.html
new file mode 100644
index 000000000..851387d3e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001783.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet
+ </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%204555%5D%20%5BNew%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3Cbug-4555-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="001780.html">
+ <LINK REL="Next" HREF="001784.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204555%5D%20%5BNew%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3Cbug-4555-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 17 09:54:49 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001780.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001784.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1783">[ date ]</a>
+ <a href="thread.html#1783">[ thread ]</a>
+ <a href="subject.html#1783">[ subject ]</a>
+ <a href="author.html#1783">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4555">https://bugs.mageia.org/show_bug.cgi?id=4555</A>
+
+ Summary: Migrate page does not contain instructions how to run
+ mgaapplet
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/en/1/migrate/">http://www.mageia.org/en/1/migrate/</A>
+ 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">doktor5000 at arcor.de</A>
+
+
+Description of problem: <A HREF="https://forums.mageia.org/en/viewtopic.php?f=7&amp;t=1901">https://forums.mageia.org/en/viewtopic.php?f=7&amp;t=1901</A>
+As pointed out in above linked forum report, the Migrate page lacks some
+detailed instructions for mgaapplet, it's assumed that it runs automagically.
+
+There should either be some easy instructions how to launch the process
+manually, if it doesn't run by itself, or at least some explanations for the
+default settings (normally mgaapplet should run 5 minutes after login for the
+initial check, cf. /etc/sysconfig/mgaapplet) and maybe also some instructions
+to check whether the users maybe disabled distribution upgrade check, which is
+rather common for Mandriva users, from what i know from forum support 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001780.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001784.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1783">[ date ]</a>
+ <a href="thread.html#1783">[ thread ]</a>
+ <a href="subject.html#1783">[ subject ]</a>
+ <a href="author.html#1783">[ 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/2012-February/001784.html b/zarb-ml/mageia-webteam/2012-February/001784.html
new file mode 100644
index 000000000..aa9594bb2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001784.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+ </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%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217085947.413D04179C%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="001783.html">
+ <LINK REL="Next" HREF="001785.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217085947.413D04179C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 17 09:59:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001783.html">[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001785.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1784">[ date ]</a>
+ <a href="thread.html#1784">[ thread ]</a>
+ <a href="subject.html#1784">[ subject ]</a>
+ <a href="author.html#1784">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4555">https://bugs.mageia.org/show_bug.cgi?id=4555</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Platform|i586 |All
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-bugs at ml.mageia.org</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="001783.html">[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001785.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1784">[ date ]</a>
+ <a href="thread.html#1784">[ thread ]</a>
+ <a href="subject.html#1784">[ subject ]</a>
+ <a href="author.html#1784">[ 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/2012-February/001785.html b/zarb-ml/mageia-webteam/2012-February/001785.html
new file mode 100644
index 000000000..b72e66017
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001785.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+ </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%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217090200.788AB41799%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="001784.html">
+ <LINK REL="Next" HREF="001786.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217090200.788AB41799%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 17 10:02:00 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001784.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001786.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1785">[ date ]</a>
+ <a href="thread.html#1785">[ thread ]</a>
+ <a href="subject.html#1785">[ subject ]</a>
+ <a href="author.html#1785">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4555">https://bugs.mageia.org/show_bug.cgi?id=4555</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #1 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2012-02-17 10:02:00 CET ---
+To be honest, I never really used mgaapplet and you seem to know more about it
+then me.
+Could you send me a &quot;patch&quot; for the migrate page?
+
+--
+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="001784.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001786.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1785">[ date ]</a>
+ <a href="thread.html#1785">[ thread ]</a>
+ <a href="subject.html#1785">[ subject ]</a>
+ <a href="author.html#1785">[ 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/2012-February/001786.html b/zarb-ml/mageia-webteam/2012-February/001786.html
new file mode 100644
index 000000000..dbfbbc703
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001786.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+ </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%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217182939.31F28417C7%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="001785.html">
+ <LINK REL="Next" HREF="001787.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet</H1>
+ <B>T Lee Davidson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217182939.31F28417C7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 17 19:29:39 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001785.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001787.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1786">[ date ]</a>
+ <a href="thread.html#1786">[ thread ]</a>
+ <a href="subject.html#1786">[ subject ]</a>
+ <a href="author.html#1786">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4555">https://bugs.mageia.org/show_bug.cgi?id=4555</A>
+
+T Lee Davidson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">t.lee.davidson at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">t.lee.davidson at gmail.com</A>
+
+--- Comment #2 from T Lee Davidson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">t.lee.davidson at gmail.com</A>&gt; 2012-02-17 19:29:39 CET ---
+Actually, as the creator of that forum thread and the confused new user, I
+thought that mgaonline needed to be run manually and that it did not run
+automagically. Also, mgaapplet is referred to as &quot;mgaonline&quot;. The real name of
+the application, mgaapplet, is not even given.
+
+I cannot help with a &quot;patch&quot; for that page at the moment. I can try in a couple
+days.
+
+--
+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="001785.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001787.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1786">[ date ]</a>
+ <a href="thread.html#1786">[ thread ]</a>
+ <a href="subject.html#1786">[ subject ]</a>
+ <a href="author.html#1786">[ 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/2012-February/001787.html b/zarb-ml/mageia-webteam/2012-February/001787.html
new file mode 100644
index 000000000..8e8f16af8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001787.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+ </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%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217183452.C1D3A417BA%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="001786.html">
+ <LINK REL="Next" HREF="001788.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217183452.C1D3A417BA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 17 19:34:52 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001786.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001788.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1787">[ date ]</a>
+ <a href="thread.html#1787">[ thread ]</a>
+ <a href="subject.html#1787">[ subject ]</a>
+ <a href="author.html#1787">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4555">https://bugs.mageia.org/show_bug.cgi?id=4555</A>
+
+--- Comment #3 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2012-02-17 19:34:52 CET ---
+Would be great.
+
+Just write here what you think should be on that page.
+
+--
+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="001786.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001788.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1787">[ date ]</a>
+ <a href="thread.html#1787">[ thread ]</a>
+ <a href="subject.html#1787">[ subject ]</a>
+ <a href="author.html#1787">[ 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/2012-February/001788.html b/zarb-ml/mageia-webteam/2012-February/001788.html
new file mode 100644
index 000000000..9d74afa27
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001788.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+ </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%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217235628.E6C7841812%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="001787.html">
+ <LINK REL="Next" HREF="001789.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120217235628.E6C7841812%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 18 00:56:28 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001787.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001789.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1788">[ date ]</a>
+ <a href="thread.html#1788">[ thread ]</a>
+ <a href="subject.html#1788">[ subject ]</a>
+ <a href="author.html#1788">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4555">https://bugs.mageia.org/show_bug.cgi?id=4555</A>
+
+Ken Bergen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>
+
+--- Comment #4 from Ken Bergen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>&gt; 2012-02-18 00:56:28 CET ---
+I just tried mgaonline on a Mandriva2010.2 system and didn't see the pop-up
+pictured in the instructions.
+I did see a similar but brief pop-up from System Notifications but clicking on
+(More Information) just reduced it to (Warning).
+
+There was another icon from mgaonline present in the tray that will launch the
+upgrade.
+I think the picture shown should be amended to show that icon with instructions
+to left click it to start the migration.
+
+I do have a snapshot of the icon and message with the mouse pointer on it but
+it will take me awhile to get it from the test machine and edit it but will
+post it here when I do.
+
+--
+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="001787.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001789.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1788">[ date ]</a>
+ <a href="thread.html#1788">[ thread ]</a>
+ <a href="subject.html#1788">[ subject ]</a>
+ <a href="author.html#1788">[ 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/2012-February/001789.html b/zarb-ml/mageia-webteam/2012-February/001789.html
new file mode 100644
index 000000000..ecde7b0f6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001789.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+ </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%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120218080610.A3F4E41812%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="001788.html">
+ <LINK REL="Next" HREF="001790.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120218080610.A3F4E41812%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 18 09:06:10 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001788.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001790.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1789">[ date ]</a>
+ <a href="thread.html#1789">[ thread ]</a>
+ <a href="subject.html#1789">[ subject ]</a>
+ <a href="author.html#1789">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4555">https://bugs.mageia.org/show_bug.cgi?id=4555</A>
+
+--- Comment #5 from Ken Bergen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>&gt; 2012-02-18 09:06:10 CET ---
+Created attachment 1589
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=1589">https://bugs.mageia.org/attachment.cgi?id=1589</A>
+Pop-up snapshot.
+
+Here's the snapshot of the icon and pop-up message.
+The mouse pointer didn't show up but the icon is the light blue square with the
+down arrow in 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001788.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001790.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1789">[ date ]</a>
+ <a href="thread.html#1789">[ thread ]</a>
+ <a href="subject.html#1789">[ subject ]</a>
+ <a href="author.html#1789">[ 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/2012-February/001790.html b/zarb-ml/mageia-webteam/2012-February/001790.html
new file mode 100644
index 000000000..9919ebf09
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001790.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1514] Error in links to access packaging 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%201514%5D%20Error%20in%20links%20to%20access%20packaging%20page&In-Reply-To=%3C20120220082917.BF8B441953%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="001789.html">
+ <LINK REL="Next" HREF="001791.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1514] Error in links to access packaging page</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201514%5D%20Error%20in%20links%20to%20access%20packaging%20page&In-Reply-To=%3C20120220082917.BF8B441953%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1514] Error in links to access packaging page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 20 09:29:17 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001789.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001791.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1790">[ date ]</a>
+ <a href="thread.html#1790">[ thread ]</a>
+ <a href="subject.html#1790">[ subject ]</a>
+ <a href="author.html#1790">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1514">https://bugs.mageia.org/show_bug.cgi?id=1514</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|VERIFIED |RESOLVED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-20 10:29:17 CET ---
+(In reply to comment #3)
+&gt;<i> Ok, now it works for ll available languages (I've tested all pages).
+</I>&gt;<i>
+</I>&gt;<i> Thanks.
+</I>
+So was already resolved over 8 months ago
+
+--
+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="001789.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001791.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1790">[ date ]</a>
+ <a href="thread.html#1790">[ thread ]</a>
+ <a href="subject.html#1790">[ subject ]</a>
+ <a href="author.html#1790">[ 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/2012-February/001791.html b/zarb-ml/mageia-webteam/2012-February/001791.html
new file mode 100644
index 000000000..7461c375b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001791.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120220125426.C07864193C%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="001790.html">
+ <LINK REL="Next" HREF="001792.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120220125426.C07864193C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 20 13:54:26 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001790.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001792.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1791">[ date ]</a>
+ <a href="thread.html#1791">[ thread ]</a>
+ <a href="subject.html#1791">[ subject ]</a>
+ <a href="author.html#1791">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #14 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-02-20 13:54:26 CET ---
+simply it happens the most of the times that if i don't know to who assign the
+bug, it is completely ignored, even if it is a serious one. i'm not interested
+in how we implement such a system (list, component etc..), i'm interested in
+improving bug assignation. i can't understand why we must loose triage team
+time if we can make this step automatic. if a person manage only a certain type
+of bugs (and he's aware of the tool/program working method) i think it is clear
+that bugs can be managed in a better way.
+
+--
+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="001790.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A></li>
+ <LI>Next message: <A HREF="001792.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1791">[ date ]</a>
+ <a href="thread.html#1791">[ thread ]</a>
+ <a href="subject.html#1791">[ subject ]</a>
+ <a href="author.html#1791">[ 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/2012-February/001792.html b/zarb-ml/mageia-webteam/2012-February/001792.html
new file mode 100644
index 000000000..ef1215389
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001792.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120220145633.B7F734198E%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="001791.html">
+ <LINK REL="Next" HREF="001793.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120220145633.B7F734198E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 20 15:56:33 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001791.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001793.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1792">[ date ]</a>
+ <a href="thread.html#1792">[ thread ]</a>
+ <a href="subject.html#1792">[ subject ]</a>
+ <a href="author.html#1792">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #15 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-20 15:56:33 CET ---
+(In reply to comment #14)
+&gt;<i> simply it happens the most of the times that if i don't know to who assign the
+</I>&gt;<i> bug, it is completely ignored, even if it is a serious one.
+</I>
+the bugs you reported and that are still open, are:
+
+<A HREF="https://bugs.mageia.org/buglist.cgi?query_format=advanced&amp;emailreporter1=1&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=marcello.anni%40alice.it&amp;emailtype1=substring">https://bugs.mageia.org/buglist.cgi?query_format=advanced&amp;emailreporter1=1&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=marcello.anni%40alice.it&amp;emailtype1=substring</A>
+
+I don't see that your bugs are &quot;completely ignored&quot; the only bugs that are
+still assigned to bugsquad, are enhancement requests.
+
+or is it your list of closed bugs that makes you feel ignored?
+
+<A HREF="https://bugs.mageia.org/buglist.cgi?query_format=advanced&amp;emailreporter1=1&amp;bug_status=RESOLVED&amp;email1=marcello.anni%40alice.it&amp;emailtype1=substring">https://bugs.mageia.org/buglist.cgi?query_format=advanced&amp;emailreporter1=1&amp;bug_status=RESOLVED&amp;email1=marcello.anni%40alice.it&amp;emailtype1=substring</A>
+
+You don't have the slightest idea how much work even a seemingly &quot;ignored&quot; bug
+often gives. It happens that 2 people work together here for several hours for
+one single bug report, but come to the conclusion, that there is nothing we can
+do and that the bug must be closed as wontfix.
+
+--
+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="001791.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001793.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1792">[ date ]</a>
+ <a href="thread.html#1792">[ thread ]</a>
+ <a href="subject.html#1792">[ subject ]</a>
+ <a href="author.html#1792">[ 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/2012-February/001793.html b/zarb-ml/mageia-webteam/2012-February/001793.html
new file mode 100644
index 000000000..21c040383
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001793.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120220171840.42E67419C0%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="001792.html">
+ <LINK REL="Next" HREF="001794.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120220171840.42E67419C0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 20 18:18:40 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001792.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001794.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1793">[ date ]</a>
+ <a href="thread.html#1793">[ thread ]</a>
+ <a href="subject.html#1793">[ subject ]</a>
+ <a href="author.html#1793">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #16 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2012-02-20 18:18:40 CET ---
+(In reply to comment #14)
+&gt;<i> i can't understand why we must loose triage team
+</I>&gt;<i> time if we can make this step automatic. if a person manage only a certain type
+</I>&gt;<i> of bugs (and he's aware of the tool/program working method) i think it is clear
+</I>&gt;<i> that bugs can be managed in a better way.
+</I>
+Could you please be more specific about how it is clear that bugs can be
+managed in a better way and what you mean by better? Also seems you didn't
+understand the purpose of the triage team, it normally does exactly what you
+want to automatize, and normally they do a much better job, and treat bugs
+individually and put them in context, which is also important. It can't really
+be automated, as f.ex. some packagers are listed as maintainers, but can't
+allocate spare time to fix bugs, so if we automatically assign some bugs to
+them, they will in most cases not even get any reply, and the user will get a
+bad perception.
+
+Also assignation is the part which takes least amount of time, so it doesn't
+make any sense to automate it, because the bugs also need to be monitored
+steadily, and Assignee often needs to be readjusted.
+
+--
+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="001792.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001794.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1793">[ date ]</a>
+ <a href="thread.html#1793">[ thread ]</a>
+ <a href="subject.html#1793">[ subject ]</a>
+ <a href="author.html#1793">[ 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/2012-February/001794.html b/zarb-ml/mageia-webteam/2012-February/001794.html
new file mode 100644
index 000000000..def942cef
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001794.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120221183915.39ACD419C5%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="001793.html">
+ <LINK REL="Next" HREF="001795.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120221183915.39ACD419C5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 21 19:39:15 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001793.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001795.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1794">[ date ]</a>
+ <a href="thread.html#1794">[ thread ]</a>
+ <a href="subject.html#1794">[ subject ]</a>
+ <a href="author.html#1794">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #17 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-21 19:39:15 CET ---
+@ Marcello
+
+Because it is clear that your intentions are very good and that you really want
+to help, I'd like to invite you to become a Bug Squad member and/or packager :)
+
+Also, that way you'll become an insider and have more understanding of what
+might and what might not help ;)
+
+
+<A HREF="https://wiki.mageia.org/en/Bug_Squad">https://wiki.mageia.org/en/Bug_Squad</A>
+
+<A HREF="https://wiki.mageia.org/en/Becoming_a_Mageia_Packager">https://wiki.mageia.org/en/Becoming_a_Mageia_Packager</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="001793.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001795.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1794">[ date ]</a>
+ <a href="thread.html#1794">[ thread ]</a>
+ <a href="subject.html#1794">[ subject ]</a>
+ <a href="author.html#1794">[ 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/2012-February/001795.html b/zarb-ml/mageia-webteam/2012-February/001795.html
new file mode 100644
index 000000000..11dbd94fb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001795.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120222015208.CDC1A41A71%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="001794.html">
+ <LINK REL="Next" HREF="001796.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120222015208.CDC1A41A71%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 22 02:52:08 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001794.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001796.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1795">[ date ]</a>
+ <a href="thread.html#1795">[ thread ]</a>
+ <a href="subject.html#1795">[ subject ]</a>
+ <a href="author.html#1795">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #18 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2012-02-22 02:52:08 CET ---
+(In reply to comment #14)
+
+@ Marcello
+I agree with comment #17
+No matter how much we might wish otherwise, bugs have to be surveyed for
+various reasons; triaging by the bug squad will always be necessary.
+My variation on your suggestion was mostly to cover non-maintained packages,
+which are becoming fewer and fewer. (Less than 18% at the moment, they were
+55% 5 months ago.)
+
+Your enthusiasm to help is how most contributors get more involved.
+Both the bug squad and the packaging team could use more help.
+It might be easier to start with the bug squad, but if you decide on packaging,
+I'll be glad to help you find a mentor :)
+
+--
+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="001794.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001796.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1795">[ date ]</a>
+ <a href="thread.html#1795">[ thread ]</a>
+ <a href="subject.html#1795">[ subject ]</a>
+ <a href="author.html#1795">[ 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/2012-February/001796.html b/zarb-ml/mageia-webteam/2012-February/001796.html
new file mode 100644
index 000000000..6afb74cb4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001796.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 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%204626%5D%0A%20http%3A//www.mageia.org/en/downloads/get/%3Fq%3DMageia-2-beta1-i586-DVD.iso%20gets%0A%20error%20404&In-Reply-To=%3C20120222214631.EBAC641E5F%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="001795.html">
+ <LINK REL="Next" HREF="001797.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204626%5D%0A%20http%3A//www.mageia.org/en/downloads/get/%3Fq%3DMageia-2-beta1-i586-DVD.iso%20gets%0A%20error%20404&In-Reply-To=%3C20120222214631.EBAC641E5F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 22 22:46:31 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001795.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001797.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1796">[ date ]</a>
+ <a href="thread.html#1796">[ thread ]</a>
+ <a href="subject.html#1796">[ subject ]</a>
+ <a href="author.html#1796">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4626">https://bugs.mageia.org/show_bug.cgi?id=4626</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Keywords|NEEDINFO |
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+--- Comment #6 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-02-22 23:46:32 CET ---
+(In reply to comment #4)
+&gt;<i> Please advise if there's an alternate mirror to use and if so how to specify it
+</I>&gt;<i> as the page at <A HREF="http://www.mageia.org/en/2/">http://www.mageia.org/en/2/</A> doesn't list alternate links.
+</I>
+Hu ?
+
+<A HREF="http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso">http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso</A>
+If it does not work well for you, check out these other mirrors.
+<A HREF="http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso#om">http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso#om</A>
+...
+
+But yes we need to improve the mirror selection, that is in another bug report.
+
+--
+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="001795.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001797.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1796">[ date ]</a>
+ <a href="thread.html#1796">[ thread ]</a>
+ <a href="subject.html#1796">[ subject ]</a>
+ <a href="author.html#1796">[ 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/2012-February/001797.html b/zarb-ml/mageia-webteam/2012-February/001797.html
new file mode 100644
index 000000000..b0a8c0404
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001797.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 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%204626%5D%0A%20http%3A//www.mageia.org/en/downloads/get/%3Fq%3DMageia-2-beta1-i586-DVD.iso%20gets%0A%20error%20404&In-Reply-To=%3C20120222221029.6A39041E99%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="001796.html">
+ <LINK REL="Next" HREF="001798.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404</H1>
+ <B>Martin Turner</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204626%5D%0A%20http%3A//www.mageia.org/en/downloads/get/%3Fq%3DMageia-2-beta1-i586-DVD.iso%20gets%0A%20error%20404&In-Reply-To=%3C20120222221029.6A39041E99%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Feb 22 23:10:29 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001796.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A></li>
+ <LI>Next message: <A HREF="001798.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1797">[ date ]</a>
+ <a href="thread.html#1797">[ thread ]</a>
+ <a href="subject.html#1797">[ subject ]</a>
+ <a href="author.html#1797">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4626">https://bugs.mageia.org/show_bug.cgi?id=4626</A>
+
+--- Comment #7 from Martin Turner &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mdturnerinoz at gmail.com</A>&gt; 2012-02-22 23:10:29 CET ---
+Thanks. It's downloading now from the OZ site (I guess someone down here woke
+up and fixed it). Thanks for your help. I'll keep the alternate links should
+this occur again. (I think there is enough to do without me filing a new bug
+report if that's okay. :0) ).
+
+--
+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="001796.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A></li>
+ <LI>Next message: <A HREF="001798.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1797">[ date ]</a>
+ <a href="thread.html#1797">[ thread ]</a>
+ <a href="subject.html#1797">[ subject ]</a>
+ <a href="author.html#1797">[ 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/2012-February/001798.html b/zarb-ml/mageia-webteam/2012-February/001798.html
new file mode 100644
index 000000000..a7ef47ae0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001798.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120223144145.C7CC141A80%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="001797.html">
+ <LINK REL="Next" HREF="001799.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120223144145.C7CC141A80%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 23 15:41:45 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001797.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A></li>
+ <LI>Next message: <A HREF="001799.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1798">[ date ]</a>
+ <a href="thread.html#1798">[ thread ]</a>
+ <a href="subject.html#1798">[ subject ]</a>
+ <a href="author.html#1798">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #19 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-02-23 15:41:45 CET ---
+in reply to comment #17
+
+unfortunately i can't get involved in triage team because i study in another
+town and there i don't use the pc to not loose time, otherwise i would propose
+already to be a triage member... i can only give my help in opening bugs and
+translations (and marketing team if it would do what a marketing team is
+supposed to do).
+
+anyway, about this bug, you're confusing the insipring principle with the
+method i supposed (just supposed, because i don't know many technical aspects
+about packaging and triaging). it's simpler than what you think, for istance:
+marja is the triage member who knows better than all the other the kde system
+and related kde-bugs, so a KDE field is added in the Componenet field and
+automatically Marja is cc'ed to it. Nothing prevents to reassign bugs or other,
+simply the automatic method allows a single person to manage all the
+component-related issues. what's wrong with this, what don't you understand?
+
+
+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="001797.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A></li>
+ <LI>Next message: <A HREF="001799.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1798">[ date ]</a>
+ <a href="thread.html#1798">[ thread ]</a>
+ <a href="subject.html#1798">[ subject ]</a>
+ <a href="author.html#1798">[ 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/2012-February/001799.html b/zarb-ml/mageia-webteam/2012-February/001799.html
new file mode 100644
index 000000000..2c1dfd2c4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001799.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120223153611.5F587424F4%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="001798.html">
+ <LINK REL="Next" HREF="001800.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120223153611.5F587424F4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 23 16:36:11 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001798.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001800.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1799">[ date ]</a>
+ <a href="thread.html#1799">[ thread ]</a>
+ <a href="subject.html#1799">[ subject ]</a>
+ <a href="author.html#1799">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #20 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-23 16:36:11 CET ---
+(In reply to comment #19)
+
+&gt;<i> for instance:
+</I>&gt;<i> marja is the triage member who knows better than all the other the kde system
+</I>&gt;<i> and related kde-bugs, so a KDE field is added in the Component field and
+</I>&gt;<i> automatically Marja is cc'ed to it. Nothing prevents to reassign bugs or other,
+</I>&gt;<i> simply the automatic method allows a single person to manage all the
+</I>&gt;<i> component-related issues. what's wrong with this, what don't you understand?
+</I>&gt;<i>
+</I>
+I do understand what you mean, that has never been the problem.
+
+The problem is, for many users having more choice is an extra barrier (which
+will keep some from reporting, and cause others to make more mistakes)
+
+Besides, I can already search for bugs with &quot;kde&quot; somewhere in the rpm field
+
+<A HREF="https://bugs.mageia.org/buglist.cgi?query_format=advanced&amp;field0-0-0=cf_rpmpkg&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;type0-0-0=anywords&amp;value0-0-0=kde">https://bugs.mageia.org/buglist.cgi?query_format=advanced&amp;field0-0-0=cf_rpmpkg&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;type0-0-0=anywords&amp;value0-0-0=kde</A>
+
+and for bugs in which kde is mentioned
+
+<A HREF="https://bugs.mageia.org/buglist.cgi?field0-0-5=content&amp;type0-0-4=substring&amp;value0-0-5=%22kde%22&amp;type0-0-5=matches&amp;field0-0-0=product&amp;type0-0-1=substring&amp;field0-0-1=component&amp;field0-0-4=status_whiteboard&amp;value0-0-2=kde&amp;type0-0-3=substring&amp;query_format=advanced&amp;value0-0-3=kde&amp;field0-0-3=short_desc&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;value0-0-4=kde&amp;field0-0-2=alias&amp;value0-0-1=kde&amp;type0-0-0=substring&amp;value0-0-0=kde&amp;type0-0-2=substring">https://bugs.mageia.org/buglist.cgi?field0-0-5=content&amp;type0-0-4=substring&amp;value0-0-5=%22kde%22&amp;type0-0-5=matches&amp;field0-0-0=product&amp;type0-0-1=substring&amp;field0-0-1=component&amp;field0-0-4=status_whiteboard&amp;value0-0-2=kde&amp;type0-0-3=substring&amp;query_format=advanced&amp;value0-0-3=kde&amp;field0-0-3=short_desc&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;value0-0-4=kde&amp;field0-0-2=alias&amp;value0-0-1=kde&amp;type0-0-0=substring&amp;value0-0-0=kde&amp;type0-0-2=substring</A>
+
+and I can save those searches and get the output by clicking on the related
+link at the bottom of any window in bugzilla, after I logged in. It is easier
+for me to visit those bugs starting from the bugzilla search, than from the
+mails I'm cc'ed in
+
+--
+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="001798.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001800.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1799">[ date ]</a>
+ <a href="thread.html#1799">[ thread ]</a>
+ <a href="subject.html#1799">[ subject ]</a>
+ <a href="author.html#1799">[ 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/2012-February/001800.html b/zarb-ml/mageia-webteam/2012-February/001800.html
new file mode 100644
index 000000000..0ffc08727
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001800.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120223154320.8039D42540%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="001799.html">
+ <LINK REL="Next" HREF="001801.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120223154320.8039D42540%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Feb 23 16:43:20 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001799.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001801.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1800">[ date ]</a>
+ <a href="thread.html#1800">[ thread ]</a>
+ <a href="subject.html#1800">[ subject ]</a>
+ <a href="author.html#1800">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #21 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-02-23 16:43:20 CET ---
+Your suggestion is what fedora (and I guess other distro are going)
+But have we so much users/packagers/triagers/developers/bugs/others that this
+organisation is needed ?
+
+<A HREF="https://bugzilla.redhat.com/query.cgi?format=advanced">https://bugzilla.redhat.com/query.cgi?format=advanced</A>
+ =&gt; advanced &gt; fedora &gt; fedora &gt; and you have all 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="001799.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001801.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1800">[ date ]</a>
+ <a href="thread.html#1800">[ thread ]</a>
+ <a href="subject.html#1800">[ subject ]</a>
+ <a href="author.html#1800">[ 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/2012-February/001801.html b/zarb-ml/mageia-webteam/2012-February/001801.html
new file mode 100644
index 000000000..97d9817f8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001801.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120223231212.7B5DC41C7E%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="001800.html">
+ <LINK REL="Next" HREF="001802.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120223231212.7B5DC41C7E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 24 00:12:12 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001800.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001802.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1801">[ date ]</a>
+ <a href="thread.html#1801">[ thread ]</a>
+ <a href="subject.html#1801">[ subject ]</a>
+ <a href="author.html#1801">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>
+
+--- Comment #22 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2012-02-24 01:12:12 CET ---
+(In reply to comment #19)
+&gt;<i> in reply to comment #17
+</I>&gt;<i> automatically Marja is cc'ed to it. Nothing prevents to reassign bugs or other,
+</I>&gt;<i> simply the automatic method allows a single person to manage all the
+</I>&gt;<i> component-related issues. what's wrong with this, what don't you understand?
+</I>
+I also try to help triage bugs, not in deciding who to assign them to,
+but more in determining if it's really a bug, or an education issue,
+and if it really is a bug, which rpm it should be assigned to, etc.
+
+For this, I'm subscribed to the bugs list, so I see all bug report
+messages already. Those that are assigned to qa, I see twice.
+Those that I've added a comment to, I see three times. Getting
+yet another copy of some bug reports cc'ed to me would not speed
+things up.
+
+I expect Marja is in a similar situation.
+
+--
+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="001800.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001802.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1801">[ date ]</a>
+ <a href="thread.html#1801">[ thread ]</a>
+ <a href="subject.html#1801">[ subject ]</a>
+ <a href="author.html#1801">[ 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/2012-February/001802.html b/zarb-ml/mageia-webteam/2012-February/001802.html
new file mode 100644
index 000000000..9f12a69d0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001802.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120224034612.17DCA41AC0%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="001801.html">
+ <LINK REL="Next" HREF="001803.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>andr&#195;&#169; blais</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120224034612.17DCA41AC0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 24 04:46:12 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001801.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001803.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1802">[ date ]</a>
+ <a href="thread.html#1802">[ thread ]</a>
+ <a href="subject.html#1802">[ subject ]</a>
+ <a href="author.html#1802">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #23 from andr&#233; blais &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">andre999mga at laposte.net</A>&gt; 2012-02-24 05:46:12 CET ---
+(In reply to comment #19)
+
+&gt;<i> unfortunately i can't get involved in triage team because i study in another
+</I>&gt;<i> town and there i don't use the pc to not loose time, otherwise i would propose
+</I>&gt;<i> already to be a triage member... i can only give my help in opening bugs and
+</I>&gt;<i> translations (and marketing team if it would do what a marketing team is
+</I>&gt;<i> supposed to do).
+</I>
+Even occasional contributing to triage would help ... as well as helping you to
+better understand Mageia. Where-ever you would like to contribute would be
+appreciated.
+
+&gt;<i> anyway, about this bug, you're confusing the inspiring principle with the
+</I>&gt;<i> method i supposed ...
+</I>
+I think that most of us understand the idea.
+For packages without a maintainer (and as an alternative to multiple
+maintainers) it could be useful.
+Although the specific form you suggested would be problematic in my mind as it
+would require patching Bugzilla, which would make it harder to maintain.
+With all the other useful enhancements to be made, I see this as lower
+priority, for the moment.
+
+BTW, even though I'm not on the triaging list, I receive many bug reports at
+least twice as well.
+
+But don't hesitate to present your ideas. That is a contribution 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="001801.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001803.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1802">[ date ]</a>
+ <a href="thread.html#1802">[ thread ]</a>
+ <a href="subject.html#1802">[ subject ]</a>
+ <a href="author.html#1802">[ 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/2012-February/001803.html b/zarb-ml/mageia-webteam/2012-February/001803.html
new file mode 100644
index 000000000..73fe00bf4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001803.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120224062723.DCBFC41AF6%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="001802.html">
+ <LINK REL="Next" HREF="001804.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120224062723.DCBFC41AF6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 24 07:27:23 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001802.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001804.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1803">[ date ]</a>
+ <a href="thread.html#1803">[ thread ]</a>
+ <a href="subject.html#1803">[ subject ]</a>
+ <a href="author.html#1803">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #24 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-24 08:27:23 CET ---
+(In reply to comment #22)
+
+&gt;<i>
+</I>&gt;<i> For this, I'm subscribed to the bugs list, so I see all bug report
+</I>&gt;<i> messages already. Those that are assigned to qa, I see twice.
+</I>&gt;<i> Those that I've added a comment to, I see three times. Getting
+</I>&gt;<i> yet another copy of some bug reports cc'ed to me would not speed
+</I>&gt;<i> things up.
+</I>&gt;<i>
+</I>&gt;<i> I expect Marja is in a similar situation.
+</I>
+Yes, some bugs I receive four times
+
+--
+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="001802.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001804.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1803">[ date ]</a>
+ <a href="thread.html#1803">[ thread ]</a>
+ <a href="subject.html#1803">[ subject ]</a>
+ <a href="author.html#1803">[ 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/2012-February/001804.html b/zarb-ml/mageia-webteam/2012-February/001804.html
new file mode 100644
index 000000000..b77a7c385
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001804.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120224121035.6EE5D41D19%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="001803.html">
+ <LINK REL="Next" HREF="001805.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120224121035.6EE5D41D19%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Feb 24 13:10:35 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001803.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001805.html">[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1804">[ date ]</a>
+ <a href="thread.html#1804">[ thread ]</a>
+ <a href="subject.html#1804">[ subject ]</a>
+ <a href="author.html#1804">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #25 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-02-24 13:10:35 CET ---
+but this wouldn't add other mail duplicates, because the notification would be
+sent only to the person interested, instead to the mailing list. in plus, i
+think more to macro-areas respect of components, otherwise it would really
+become to technical and less usable.
+
+--
+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="001803.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001805.html">[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1804">[ date ]</a>
+ <a href="thread.html#1804">[ thread ]</a>
+ <a href="subject.html#1804">[ subject ]</a>
+ <a href="author.html#1804">[ 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/2012-February/001805.html b/zarb-ml/mageia-webteam/2012-February/001805.html
new file mode 100644
index 000000000..a18288a6a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001805.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+ </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%204693%5D%20%5BNew%5D%20In%20www.mageia.org/en/about/%2C%0A%20the%20link%20to%20the%202011%20financial%20report%20is%20wrong%2C%0A%20and%20pdf%20versions%20are%20not%20there&In-Reply-To=%3Cbug-4693-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="001804.html">
+ <LINK REL="Next" HREF="001806.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there</H1>
+ <B>Malo Deni&#195;&#169;lou</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204693%5D%20%5BNew%5D%20In%20www.mageia.org/en/about/%2C%0A%20the%20link%20to%20the%202011%20financial%20report%20is%20wrong%2C%0A%20and%20pdf%20versions%20are%20not%20there&In-Reply-To=%3Cbug-4693-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 25 12:49:21 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001804.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001806.html">[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1805">[ date ]</a>
+ <a href="thread.html#1805">[ thread ]</a>
+ <a href="subject.html#1805">[ subject ]</a>
+ <a href="author.html#1805">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4693">https://bugs.mageia.org/show_bug.cgi?id=4693</A>
+
+ Summary: In www.mageia.org/en/about/, the link to the 2011
+ financial report is wrong, and pdf versions are not
+ there
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/en/about/">http://www.mageia.org/en/about/</A>
+ 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">malo at doc.ic.ac.uk</A>
+
+
+In <A HREF="http://www.mageia.org/en/about/">http://www.mageia.org/en/about/</A>
+the link to the 2011 financial report is wrong.
+It points to <A HREF="http://www.mageia.org/en/reports/2011/">http://www.mageia.org/en/reports/2011/</A>
+instead of <A HREF="http://www.mageia.org/en/about/reports/2011/">http://www.mageia.org/en/about/reports/2011/</A>
+
+Also the pdf versions of the financial reports are not there (on pages
+<A HREF="http://www.mageia.org/en/about/reports/2010/">http://www.mageia.org/en/about/reports/2010/</A> and
+<A HREF="http://www.mageia.org/en/about/reports/2011/,">http://www.mageia.org/en/about/reports/2011/,</A> the pdf links are just anchors).
+
+--
+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="001804.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001806.html">[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1805">[ date ]</a>
+ <a href="thread.html#1805">[ thread ]</a>
+ <a href="subject.html#1805">[ subject ]</a>
+ <a href="author.html#1805">[ 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/2012-February/001806.html b/zarb-ml/mageia-webteam/2012-February/001806.html
new file mode 100644
index 000000000..bb94756e4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001806.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+ </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%204693%5D%20In%20www.mageia.org/en/about/%2C%0A%20the%20link%20to%20the%202011%20financial%20report%20is%20wrong%2C%0A%20and%20pdf%20versions%20are%20not%20there&In-Reply-To=%3C20120225143943.D197341D73%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="001805.html">
+ <LINK REL="Next" HREF="001807.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204693%5D%20In%20www.mageia.org/en/about/%2C%0A%20the%20link%20to%20the%202011%20financial%20report%20is%20wrong%2C%0A%20and%20pdf%20versions%20are%20not%20there&In-Reply-To=%3C20120225143943.D197341D73%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Feb 25 15:39:43 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001805.html">[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A></li>
+ <LI>Next message: <A HREF="001807.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1806">[ date ]</a>
+ <a href="thread.html#1806">[ thread ]</a>
+ <a href="subject.html#1806">[ subject ]</a>
+ <a href="author.html#1806">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4693">https://bugs.mageia.org/show_bug.cgi?id=4693</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">mageia at damsweb.net</A>
+ 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; 2012-02-25 15:39:43 CET ---
+(In reply to comment #0)
+&gt;<i> the link to the 2011 financial report is wrong.
+</I>
+Fixed.
+
+&gt;<i> Also the pdf versions of the financial reports are not there (on pages
+</I>&gt;<i> <A HREF="http://www.mageia.org/en/about/reports/2010/">http://www.mageia.org/en/about/reports/2010/</A> and
+</I>&gt;<i> <A HREF="http://www.mageia.org/en/about/reports/2011/,">http://www.mageia.org/en/about/reports/2011/,</A> the pdf links are just anchors).
+</I>
+Reassigned.
+
+--
+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="001805.html">[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A></li>
+ <LI>Next message: <A HREF="001807.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1806">[ date ]</a>
+ <a href="thread.html#1806">[ thread ]</a>
+ <a href="subject.html#1806">[ subject ]</a>
+ <a href="author.html#1806">[ 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/2012-February/001807.html b/zarb-ml/mageia-webteam/2012-February/001807.html
new file mode 100644
index 000000000..bb43f113b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001807.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3287] Add header on the guided template
+ </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%203287%5D%20Add%20header%20on%20the%20guided%20template&In-Reply-To=%3C20120227201513.1831341EF0%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="001806.html">
+ <LINK REL="Next" HREF="001808.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3287] Add header on the guided template</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203287%5D%20Add%20header%20on%20the%20guided%20template&In-Reply-To=%3C20120227201513.1831341EF0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3287] Add header on the guided template">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 27 21:15:13 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001806.html">[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A></li>
+ <LI>Next message: <A HREF="001808.html">[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1807">[ date ]</a>
+ <a href="thread.html#1807">[ thread ]</a>
+ <a href="subject.html#1807">[ subject ]</a>
+ <a href="author.html#1807">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3287">https://bugs.mageia.org/show_bug.cgi?id=3287</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-27 21:15:12 CET ---
+Pinging, because nothing has happened with this report for more than 3 months,
+it still has the status NEW or REOPENED.
+
+--
+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="001806.html">[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A></li>
+ <LI>Next message: <A HREF="001808.html">[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1807">[ date ]</a>
+ <a href="thread.html#1807">[ thread ]</a>
+ <a href="subject.html#1807">[ subject ]</a>
+ <a href="author.html#1807">[ 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/2012-February/001808.html b/zarb-ml/mageia-webteam/2012-February/001808.html
new file mode 100644
index 000000000..1b3800b03
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001808.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl
+ </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%203288%5D%20Add%20an%20cronjob%20for%20collectstats.pl&In-Reply-To=%3C20120227201547.837A441EF7%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="001807.html">
+ <LINK REL="Next" HREF="001809.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203288%5D%20Add%20an%20cronjob%20for%20collectstats.pl&In-Reply-To=%3C20120227201547.837A441EF7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 27 21:15:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001807.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A></li>
+ <LI>Next message: <A HREF="001809.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1808">[ date ]</a>
+ <a href="thread.html#1808">[ thread ]</a>
+ <a href="subject.html#1808">[ subject ]</a>
+ <a href="author.html#1808">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3288">https://bugs.mageia.org/show_bug.cgi?id=3288</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-27 21:15:47 CET ---
+Pinging, because nothing has happened with this report for more than 3 months,
+it still has the status NEW or REOPENED.
+
+--
+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="001807.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A></li>
+ <LI>Next message: <A HREF="001809.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1808">[ date ]</a>
+ <a href="thread.html#1808">[ thread ]</a>
+ <a href="subject.html#1808">[ subject ]</a>
+ <a href="author.html#1808">[ 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/2012-February/001809.html b/zarb-ml/mageia-webteam/2012-February/001809.html
new file mode 100644
index 000000000..e06d28b8a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001809.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3383] Navbar only on en blog
+ </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%203383%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3C20120227201614.F343741EF0%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="001808.html">
+ <LINK REL="Next" HREF="001810.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3383] Navbar only on en blog</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203383%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3C20120227201614.F343741EF0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3383] Navbar only on en blog">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Feb 27 21:16:14 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001808.html">[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl
+</A></li>
+ <LI>Next message: <A HREF="001810.html">[Mageia-webteam] [Bug 4735] [New] exception in svnweb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1809">[ date ]</a>
+ <a href="thread.html#1809">[ thread ]</a>
+ <a href="subject.html#1809">[ subject ]</a>
+ <a href="author.html#1809">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3383">https://bugs.mageia.org/show_bug.cgi?id=3383</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-02-27 21:16:14 CET ---
+Pinging, because nothing has happened with this report for more than 3 months,
+it still has the status NEW or REOPENED.
+
+--
+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="001808.html">[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl
+</A></li>
+ <LI>Next message: <A HREF="001810.html">[Mageia-webteam] [Bug 4735] [New] exception in svnweb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1809">[ date ]</a>
+ <a href="thread.html#1809">[ thread ]</a>
+ <a href="subject.html#1809">[ subject ]</a>
+ <a href="author.html#1809">[ 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/2012-February/001810.html b/zarb-ml/mageia-webteam/2012-February/001810.html
new file mode 100644
index 000000000..3457789e5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/001810.html
@@ -0,0 +1,107 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4735] [New] exception in svnweb
+ </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%204735%5D%20%5BNew%5D%20exception%20in%20svnweb&In-Reply-To=%3Cbug-4735-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="001809.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4735] [New] exception in svnweb</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204735%5D%20%5BNew%5D%20exception%20in%20svnweb&In-Reply-To=%3Cbug-4735-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4735] [New] exception in svnweb">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Feb 28 17:44:56 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001809.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1810">[ date ]</a>
+ <a href="thread.html#1810">[ thread ]</a>
+ <a href="subject.html#1810">[ subject ]</a>
+ <a href="author.html#1810">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4735">https://bugs.mageia.org/show_bug.cgi?id=4735</A>
+
+ Summary: exception in svnweb
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://svnweb.mageia.org/packages/cauldron/rpm/current">http://svnweb.mageia.org/packages/cauldron/rpm/current</A>
+ /SOURCES/rpm-4.6.0-rc1-speedup-by-not-checking-same-fi
+ les-with-different-paths-through-symlink.patch?view=lo
+ g&amp;pathrev=46862
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">thierry.vignaud at gmail.com</A>
+
+
+On [1], clicking on
+&quot;rpm-4.6.0-rc1-speedup-by-not-checking-same-files-with-different-paths-through-symlink.patch&quot;
+which goes to [2] results in:
+
+An Exception Has Occurred
+Python Traceback
+
+Traceback (most recent call last):
+ File &quot;/usr/share/viewvc/lib/viewvc.py&quot;, line 4460, in main
+ request.run_viewvc()
+ File &quot;/usr/share/viewvc/lib/viewvc.py&quot;, line 394, in run_viewvc
+ self.view_func(self)
+ File &quot;/usr/share/viewvc/lib/viewvc.py&quot;, line 2608, in view_log
+ lastrev = pathrev_form(request, data)
+ File &quot;/usr/share/viewvc/lib/viewvc.py&quot;, line 2318, in pathrev_form
+ action, hidden_values = request.get_form(params={'pathrev': lastrev})
+ File &quot;/usr/share/viewvc/lib/viewvc.py&quot;, line 432, in get_form
+ value=self.server.escape(value)))
+ File &quot;/usr/share/viewvc/lib/sapi.py&quot;, line 237, in escape
+ return cgi.escape(s, quote)
+ File &quot;/usr/lib64/python2.7/cgi.py&quot;, line 1035, in escape
+ s = s.replace(&quot;&amp;&quot;, &quot;&amp;amp;&quot;) # Must be done first!
+AttributeError: 'int' object has no attribute 'replace'
+
+[1]
+<A HREF="http://svnweb.mageia.org/packages/cauldron/rpm/current/SOURCES/?pathrev=46862">http://svnweb.mageia.org/packages/cauldron/rpm/current/SOURCES/?pathrev=46862</A>
+[2]
+<A HREF="http://svnweb.mageia.org/packages/cauldron/rpm/current/SOURCES/rpm-4.6.0-rc1-speedup-by-not-checking-same-files-with-different-paths-through-symlink.patch?view=log&amp;pathrev=46862">http://svnweb.mageia.org/packages/cauldron/rpm/current/SOURCES/rpm-4.6.0-rc1-speedup-by-not-checking-same-files-with-different-paths-through-symlink.patch?view=log&amp;pathrev=46862</A>
+
+BTW we lack a svnweb 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 the assignee for the bug.
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001809.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1810">[ date ]</a>
+ <a href="thread.html#1810">[ thread ]</a>
+ <a href="subject.html#1810">[ subject ]</a>
+ <a href="author.html#1810">[ 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/2012-February/author.html b/zarb-ml/mageia-webteam/2012-February/author.html
new file mode 100644
index 000000000..3005b8ac9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/author.html
@@ -0,0 +1,257 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam February 2012 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>February 2012 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>Fri Feb 3 17:46:30 CET 2012</i><br>
+ <b>Ending:</b> <i>Tue Feb 28 17:44:56 CET 2012</i><br>
+ <b>Messages:</b> 42<p>
+ <ul>
+
+<LI><A HREF="001791.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1791">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001798.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1798">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001804.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1804">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001788.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1788">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001789.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1789">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001785.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1785">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001787.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1787">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001786.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1786">&nbsp;</A>
+<I>T Lee Davidson
+</I>
+
+<LI><A HREF="001805.html">[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A><A NAME="1805">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<LI><A HREF="001772.html">[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists
+</A><A NAME="1772">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001773.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1773">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001774.html">[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature
+</A><A NAME="1774">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001778.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1778">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001779.html">[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.
+</A><A NAME="1779">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001782.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="1782">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001796.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A><A NAME="1796">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001800.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1800">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001801.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1801">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001780.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1780">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001783.html">[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1783">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001784.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1784">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001793.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1793">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001769.html">[Mageia-webteam] [Bug 4402] [New] Can we have Extension:GraphViz installed?
+</A><A NAME="1769">&nbsp;</A>
+<I>Simon Parsons
+</I>
+
+<LI><A HREF="001797.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A><A NAME="1797">&nbsp;</A>
+<I>Martin Turner
+</I>
+
+<LI><A HREF="001810.html">[Mageia-webteam] [Bug 4735] [New] exception in svnweb
+</A><A NAME="1810">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001770.html">[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?
+</A><A NAME="1770">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001771.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1771">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001775.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1775">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001790.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1790">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001792.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1792">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001794.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1794">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001799.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1799">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001803.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1803">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001807.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A><A NAME="1807">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001808.html">[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl
+</A><A NAME="1808">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001809.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1809">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001795.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1795">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001802.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1802">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001776.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1776">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001777.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1777">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001781.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="1781">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001806.html">[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A><A NAME="1806">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Feb 28 17:44:56 CET 2012</i><br>
+ <b>Archived on:</b> <i>Tue Feb 28 17:45:03 CET 2012</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/2012-February/date.html b/zarb-ml/mageia-webteam/2012-February/date.html
new file mode 100644
index 000000000..bdb1ac67d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/date.html
@@ -0,0 +1,257 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam February 2012 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>February 2012 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>Fri Feb 3 17:46:30 CET 2012</i><br>
+ <b>Ending:</b> <i>Tue Feb 28 17:44:56 CET 2012</i><br>
+ <b>Messages:</b> 42<p>
+ <ul>
+
+<LI><A HREF="001769.html">[Mageia-webteam] [Bug 4402] [New] Can we have Extension:GraphViz installed?
+</A><A NAME="1769">&nbsp;</A>
+<I>Simon Parsons
+</I>
+
+<LI><A HREF="001770.html">[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?
+</A><A NAME="1770">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001771.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1771">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001772.html">[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists
+</A><A NAME="1772">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001773.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1773">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001774.html">[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature
+</A><A NAME="1774">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001775.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1775">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001776.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1776">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001777.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1777">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001778.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1778">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001779.html">[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.
+</A><A NAME="1779">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001780.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1780">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001781.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="1781">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001782.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="1782">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001783.html">[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1783">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001784.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1784">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001785.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1785">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001786.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1786">&nbsp;</A>
+<I>T Lee Davidson
+</I>
+
+<LI><A HREF="001787.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1787">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001788.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1788">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001789.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1789">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001790.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1790">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001791.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1791">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001792.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1792">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001793.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1793">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001794.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1794">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001795.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1795">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001796.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A><A NAME="1796">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001797.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A><A NAME="1797">&nbsp;</A>
+<I>Martin Turner
+</I>
+
+<LI><A HREF="001798.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1798">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001799.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1799">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001800.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1800">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001801.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1801">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001802.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1802">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001803.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1803">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001804.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1804">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001805.html">[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A><A NAME="1805">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<LI><A HREF="001806.html">[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A><A NAME="1806">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001807.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A><A NAME="1807">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001808.html">[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl
+</A><A NAME="1808">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001809.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1809">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001810.html">[Mageia-webteam] [Bug 4735] [New] exception in svnweb
+</A><A NAME="1810">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Feb 28 17:44:56 CET 2012</i><br>
+ <b>Archived on:</b> <i>Tue Feb 28 17:45:03 CET 2012</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/2012-February/index.html b/zarb-ml/mageia-webteam/2012-February/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-February/subject.html b/zarb-ml/mageia-webteam/2012-February/subject.html
new file mode 100644
index 000000000..eb0410239
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/subject.html
@@ -0,0 +1,257 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam February 2012 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>February 2012 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>Fri Feb 3 17:46:30 CET 2012</i><br>
+ <b>Ending:</b> <i>Tue Feb 28 17:44:56 CET 2012</i><br>
+ <b>Messages:</b> 42<p>
+ <ul>
+
+<LI><A HREF="001790.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1790">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001807.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A><A NAME="1807">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001808.html">[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl
+</A><A NAME="1808">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001775.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1775">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001777.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1777">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001809.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1809">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001780.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1780">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001791.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1791">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001792.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1792">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001793.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1793">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001794.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1794">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001795.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1795">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001798.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1798">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001799.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1799">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001800.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1800">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001801.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1801">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001802.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1802">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<LI><A HREF="001803.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1803">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001804.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1804">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001769.html">[Mageia-webteam] [Bug 4402] [New] Can we have Extension:GraphViz installed?
+</A><A NAME="1769">&nbsp;</A>
+<I>Simon Parsons
+</I>
+
+<LI><A HREF="001770.html">[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?
+</A><A NAME="1770">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001772.html">[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists
+</A><A NAME="1772">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001773.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1773">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001776.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1776">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001778.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1778">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001774.html">[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature
+</A><A NAME="1774">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001779.html">[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.
+</A><A NAME="1779">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001781.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="1781">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001782.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="1782">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001783.html">[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1783">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001784.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1784">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001785.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1785">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001786.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1786">&nbsp;</A>
+<I>T Lee Davidson
+</I>
+
+<LI><A HREF="001787.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1787">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001788.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1788">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001789.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1789">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001796.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A><A NAME="1796">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001797.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A><A NAME="1797">&nbsp;</A>
+<I>Martin Turner
+</I>
+
+<LI><A HREF="001805.html">[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A><A NAME="1805">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<LI><A HREF="001806.html">[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A><A NAME="1806">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001810.html">[Mageia-webteam] [Bug 4735] [New] exception in svnweb
+</A><A NAME="1810">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001771.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1771">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Feb 28 17:44:56 CET 2012</i><br>
+ <b>Archived on:</b> <i>Tue Feb 28 17:45:03 CET 2012</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/2012-February/thread.html b/zarb-ml/mageia-webteam/2012-February/thread.html
new file mode 100644
index 000000000..a00181231
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-February/thread.html
@@ -0,0 +1,309 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam February 2012 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>February 2012 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>Fri Feb 3 17:46:30 CET 2012</i><br>
+ <b>Ending:</b> <i>Tue Feb 28 17:44:56 CET 2012</i><br>
+ <b>Messages:</b> 42<p>
+ <ul>
+
+<!--0 01328287590- -->
+<LI><A HREF="001769.html">[Mageia-webteam] [Bug 4402] [New] Can we have Extension:GraphViz installed?
+</A><A NAME="1769">&nbsp;</A>
+<I>Simon Parsons
+</I>
+
+<UL>
+<!--1 01328287590-01328642138- -->
+<LI><A HREF="001770.html">[Mageia-webteam] [Bug 4402] Can we have Extension:GraphViz installed?
+</A><A NAME="1770">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01328711321- -->
+<LI><A HREF="001771.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="1771">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01328974052- -->
+<LI><A HREF="001772.html">[Mageia-webteam] [Bug 4482] [New] Remove the OS column for the buglists
+</A><A NAME="1772">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01328974052-01328974066- -->
+<LI><A HREF="001773.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1773">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01328974052-01329066406- -->
+<LI><A HREF="001776.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1776">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01328974052-01329074602- -->
+<LI><A HREF="001778.html">[Mageia-webteam] [Bug 4482] Remove the OS column for the buglist
+</A><A NAME="1778">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01328975221- -->
+<LI><A HREF="001774.html">[Mageia-webteam] [Bug 4483] [New] Add the Graphical Reports feature
+</A><A NAME="1774">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01328990244- -->
+<LI><A HREF="001775.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1775">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01329066529- -->
+<LI><A HREF="001777.html">[Mageia-webteam] [Bug 3299] undefined wsDomain in LdapAuthentication.php
+</A><A NAME="1777">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01329163775- -->
+<LI><A HREF="001779.html">[Mageia-webteam] [Bug 4517] [New] Wrong description for the tainted repository.
+</A><A NAME="1779">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01329163775-01329401146- -->
+<LI><A HREF="001781.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="1781">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01329163775-01329403103- -->
+<LI><A HREF="001782.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="1782">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01329306802- -->
+<LI><A HREF="001780.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1780">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--0 01329468889- -->
+<LI><A HREF="001783.html">[Mageia-webteam] [Bug 4555] [New] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1783">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<UL>
+<!--1 01329468889-01329469187- -->
+<LI><A HREF="001784.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1784">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--1 01329468889-01329469320- -->
+<LI><A HREF="001785.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1785">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01329468889-01329503379- -->
+<LI><A HREF="001786.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1786">&nbsp;</A>
+<I>T Lee Davidson
+</I>
+
+<!--1 01329468889-01329503692- -->
+<LI><A HREF="001787.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1787">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01329468889-01329522988- -->
+<LI><A HREF="001788.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1788">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<!--1 01329468889-01329552370- -->
+<LI><A HREF="001789.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1789">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+</UL>
+<!--0 01329726557- -->
+<LI><A HREF="001790.html">[Mageia-webteam] [Bug 1514] Error in links to access packaging page
+</A><A NAME="1790">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01329742466- -->
+<LI><A HREF="001791.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1791">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01329749793- -->
+<LI><A HREF="001792.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1792">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01329758320- -->
+<LI><A HREF="001793.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1793">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--0 01329849555- -->
+<LI><A HREF="001794.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1794">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01329875528- -->
+<LI><A HREF="001795.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1795">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--0 01329947191- -->
+<LI><A HREF="001796.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A><A NAME="1796">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01329948629- -->
+<LI><A HREF="001797.html">[Mageia-webteam] [Bug 4626] http://www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-i586-DVD.iso gets error 404
+</A><A NAME="1797">&nbsp;</A>
+<I>Martin Turner
+</I>
+
+<!--0 01330008105- -->
+<LI><A HREF="001798.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1798">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01330011371- -->
+<LI><A HREF="001799.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1799">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01330011800- -->
+<LI><A HREF="001800.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1800">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01330038732- -->
+<LI><A HREF="001801.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1801">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--0 01330055172- -->
+<LI><A HREF="001802.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1802">&nbsp;</A>
+<I>andr&#195;&#169; blais
+</I>
+
+<!--0 01330064843- -->
+<LI><A HREF="001803.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1803">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01330085435- -->
+<LI><A HREF="001804.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1804">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01330170561- -->
+<LI><A HREF="001805.html">[Mageia-webteam] [Bug 4693] [New] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A><A NAME="1805">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<UL>
+<!--1 01330170561-01330180783- -->
+<LI><A HREF="001806.html">[Mageia-webteam] [Bug 4693] In www.mageia.org/en/about/, the link to the 2011 financial report is wrong, and pdf versions are not there
+</A><A NAME="1806">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01330373713- -->
+<LI><A HREF="001807.html">[Mageia-webteam] [Bug 3287] Add header on the guided template
+</A><A NAME="1807">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01330373747- -->
+<LI><A HREF="001808.html">[Mageia-webteam] [Bug 3288] Add an cronjob for collectstats.pl
+</A><A NAME="1808">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01330373774- -->
+<LI><A HREF="001809.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1809">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01330447496- -->
+<LI><A HREF="001810.html">[Mageia-webteam] [Bug 4735] [New] exception in svnweb
+</A><A NAME="1810">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Feb 28 17:44:56 CET 2012</i><br>
+ <b>Archived on:</b> <i>Tue Feb 28 17:45:03 CET 2012</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/2012-January.txt.gz b/zarb-ml/mageia-webteam/2012-January.txt.gz
new file mode 100644
index 000000000..3d95cf5bb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-January/001665.html b/zarb-ml/mageia-webteam/2012-January/001665.html
new file mode 100644
index 000000000..6981f5daf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001665.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231230129.1B35347B56%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="001666.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Thomas Backlund</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20111231230129.1B35347B56%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 00:01:29 CET 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001666.html">[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1665">[ date ]</a>
+ <a href="thread.html#1665">[ thread ]</a>
+ <a href="subject.html#1665">[ subject ]</a>
+ <a href="author.html#1665">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>
+
+--- Comment #11 from Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; 2012-01-01 00:01:28 CET ---
+(In reply to comment #4)
+
+&gt;<i> Almost, when I receive such a mail, all I see is, e.g.:
+</I>&gt;<i> [updates-announce] Package update: kdebase4-workspace (core)
+</I>&gt;<i> and even when I open the mail I don't see the new version number.
+</I>&gt;<i> I would like to see e.g.:
+</I>&gt;<i> [updates-announce]: kdebase4-workspace-4.6.5-1.4 (core)
+</I>
+
+I've started adding the version to the updates I push manually for now.
+
+But I guess this is also a feature request for the repo management tool boklm
+is working on.
+
+--
+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>Next message: <A HREF="001666.html">[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1665">[ date ]</a>
+ <a href="thread.html#1665">[ thread ]</a>
+ <a href="subject.html#1665">[ subject ]</a>
+ <a href="author.html#1665">[ 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/2012-January/001666.html b/zarb-ml/mageia-webteam/2012-January/001666.html
new file mode 100644
index 000000000..186189dc7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001666.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate
+ </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%203981%5D%20%5BNew%5D%20Bugzilla%20should%20add%20CCs%20to%20new%0A%20bug%20when%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3Cbug-3981-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="001665.html">
+ <LINK REL="Next" HREF="001667.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate</H1>
+ <B>David Walser</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203981%5D%20%5BNew%5D%20Bugzilla%20should%20add%20CCs%20to%20new%0A%20bug%20when%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3Cbug-3981-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 03:48:58 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001665.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001667.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1666">[ date ]</a>
+ <a href="thread.html#1666">[ thread ]</a>
+ <a href="subject.html#1666">[ subject ]</a>
+ <a href="author.html#1666">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3981">https://bugs.mageia.org/show_bug.cgi?id=3981</A>
+
+ Summary: Bugzilla should add CCs to new bug when old one marked
+ as duplicate
+ 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">luigiwalser at yahoo.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>
+
+
+I marked Bug 2950 as a duplicate of Bug 3980 and it didn't automatically add
+the CC list from Bug 2950 to the CC list of Bug 3980, I had to do it 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="001665.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001667.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1666">[ date ]</a>
+ <a href="thread.html#1666">[ thread ]</a>
+ <a href="subject.html#1666">[ subject ]</a>
+ <a href="author.html#1666">[ 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/2012-January/001667.html b/zarb-ml/mageia-webteam/2012-January/001667.html
new file mode 100644
index 000000000..8e413a179
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001667.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+ </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%203981%5D%20Bugzilla%20should%20add%20CCs%20to%20new%20bug%20when%0A%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3C20120101112544.768B147C28%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="001666.html">
+ <LINK REL="Next" HREF="001668.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203981%5D%20Bugzilla%20should%20add%20CCs%20to%20new%20bug%20when%0A%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3C20120101112544.768B147C28%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 12:25:44 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001666.html">[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="001668.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1667">[ date ]</a>
+ <a href="thread.html#1667">[ thread ]</a>
+ <a href="subject.html#1667">[ subject ]</a>
+ <a href="author.html#1667">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3981">https://bugs.mageia.org/show_bug.cgi?id=3981</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-01-01 13:25:43 CET ---
+hum, it should work, for me it was the case :/
+
+--
+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="001666.html">[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="001668.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1667">[ date ]</a>
+ <a href="thread.html#1667">[ thread ]</a>
+ <a href="subject.html#1667">[ subject ]</a>
+ <a href="author.html#1667">[ 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/2012-January/001668.html b/zarb-ml/mageia-webteam/2012-January/001668.html
new file mode 100644
index 000000000..34305531a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001668.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120101153639.6EF3F47CBD%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="001667.html">
+ <LINK REL="Next" HREF="001669.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120101153639.6EF3F47CBD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 16:36:39 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001667.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="001669.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1668">[ date ]</a>
+ <a href="thread.html#1668">[ thread ]</a>
+ <a href="subject.html#1668">[ subject ]</a>
+ <a href="author.html#1668">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</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">boklm at mars-attacks.org</A>
+
+--- Comment #12 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-01-01 16:36:38 CET ---
+(In reply to comment #11)
+&gt;<i>
+</I>&gt;<i> But I guess this is also a feature request for the repo management tool boklm
+</I>&gt;<i> is working on.
+</I>
+Yes, new tool to manage updates should support this.
+
+--
+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="001667.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="001669.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1668">[ date ]</a>
+ <a href="thread.html#1668">[ thread ]</a>
+ <a href="subject.html#1668">[ subject ]</a>
+ <a href="author.html#1668">[ 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/2012-January/001669.html b/zarb-ml/mageia-webteam/2012-January/001669.html
new file mode 100644
index 000000000..7ec9b0fa8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001669.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120101171925.7377B47CE3%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="001668.html">
+ <LINK REL="Next" HREF="001670.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120101171925.7377B47CE3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 18:19:25 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001668.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001670.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1669">[ date ]</a>
+ <a href="thread.html#1669">[ thread ]</a>
+ <a href="subject.html#1669">[ subject ]</a>
+ <a href="author.html#1669">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+--- Comment #13 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-01 18:19:23 CET ---
+(In reply to comment #12)
+&gt;<i> (In reply to comment #11)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; But I guess this is also a feature request for the repo management tool boklm
+</I>&gt;<i> &gt; is working on.
+</I>&gt;<i>
+</I>&gt;<i> Yes, new tool to manage updates should support this.
+</I>
+So bug 3964 should be re-assigned to 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001668.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001670.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1669">[ date ]</a>
+ <a href="thread.html#1669">[ thread ]</a>
+ <a href="subject.html#1669">[ subject ]</a>
+ <a href="author.html#1669">[ 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/2012-January/001670.html b/zarb-ml/mageia-webteam/2012-January/001670.html
new file mode 100644
index 000000000..aa3c30cd6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001670.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120101180947.4BA4647CEA%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="001669.html">
+ <LINK REL="Next" HREF="001671.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20Add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120101180947.4BA4647CEA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 19:09:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001669.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001671.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1670">[ date ]</a>
+ <a href="thread.html#1670">[ thread ]</a>
+ <a href="subject.html#1670">[ subject ]</a>
+ <a href="author.html#1670">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+--- Comment #14 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-01-01 19:09:45 CET ---
+(In reply to comment #13)
+&gt;<i>
+</I>&gt;<i> So bug 3964 should be re-assigned to you?
+</I>
+yes
+
+--
+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="001669.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001671.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1670">[ date ]</a>
+ <a href="thread.html#1670">[ thread ]</a>
+ <a href="subject.html#1670">[ subject ]</a>
+ <a href="author.html#1670">[ 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/2012-January/001671.html b/zarb-ml/mageia-webteam/2012-January/001671.html
new file mode 100644
index 000000000..85405374b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001671.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+ </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%203840%5D%20security%5BAT%5Dgroups.mageia%20don%27t%20work%0A%09change%20the%20account&In-Reply-To=%3C20120101200559.573A247D15%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="001670.html">
+ <LINK REL="Next" HREF="001672.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203840%5D%20security%5BAT%5Dgroups.mageia%20don%27t%20work%0A%09change%20the%20account&In-Reply-To=%3C20120101200559.573A247D15%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 21:05:59 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001670.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001672.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1671">[ date ]</a>
+ <a href="thread.html#1671">[ thread ]</a>
+ <a href="subject.html#1671">[ subject ]</a>
+ <a href="author.html#1671">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3840">https://bugs.mageia.org/show_bug.cgi?id=3840</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 #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-01-01 21:05:57 CET ---
+The bugzilla account has been updated to be <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">security at group.mageia.org</A> now which
+should be working.
+
+--
+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="001670.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001672.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1671">[ date ]</a>
+ <a href="thread.html#1671">[ thread ]</a>
+ <a href="subject.html#1671">[ subject ]</a>
+ <a href="author.html#1671">[ 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/2012-January/001672.html b/zarb-ml/mageia-webteam/2012-January/001672.html
new file mode 100644
index 000000000..156b2b4d8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001672.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+ </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%203840%5D%20security%5BAT%5Dgroups.mageia%20don%27t%20work%0A%09change%20the%20account&In-Reply-To=%3C20120101201709.0F5C547D0F%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="001671.html">
+ <LINK REL="Next" HREF="001673.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203840%5D%20security%5BAT%5Dgroups.mageia%20don%27t%20work%0A%09change%20the%20account&In-Reply-To=%3C20120101201709.0F5C547D0F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 21:17:09 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001671.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI>Next message: <A HREF="001673.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1672">[ date ]</a>
+ <a href="thread.html#1672">[ thread ]</a>
+ <a href="subject.html#1672">[ subject ]</a>
+ <a href="author.html#1672">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3840">https://bugs.mageia.org/show_bug.cgi?id=3840</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-01-01 22:17:08 CET ---
+in fact this one doesn't work too
+
+This is the mail system at host alamut.mageia.org.
+
+I'm sorry to have to inform you that your message could not
+be delivered to one or more recipients. It's attached below.
+
+For further assistance, please send mail to postmaster.
+
+If you do so, please include this problem report. You can
+delete your own text from the attached returned message.
+
+ The mail system
+
+&lt;security group.mageia&gt;: unknown user: &quot;security group.mageia&quot;
+
+-------------------
+Reporting-MTA: dns; alamut.mageia.org
+X-Postfix-Queue-ID: AAD8047D06
+X-Postfix-Sender: rfc822; manuel hiebel.eu
+Arrival-Date: Sun, 1 Jan 2012 21:08:51 +0100 (CET)
+
+Final-Recipient: rfc822; security group.mageia
+Original-Recipient: rfc822;security group.mageia
+Action: failed
+Status: 5.1.1
+Diagnostic-Code: X-Postfix; unknown user: &quot;security group.mageia&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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001671.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI>Next message: <A HREF="001673.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1672">[ date ]</a>
+ <a href="thread.html#1672">[ thread ]</a>
+ <a href="subject.html#1672">[ subject ]</a>
+ <a href="author.html#1672">[ 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/2012-January/001673.html b/zarb-ml/mageia-webteam/2012-January/001673.html
new file mode 100644
index 000000000..2b7253266
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001673.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+ </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%203840%5D%20security%5BAT%5Dgroups.mageia%20don%27t%20work%0A%09change%20the%20account&In-Reply-To=%3C20120101202147.E8D7047D16%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="001672.html">
+ <LINK REL="Next" HREF="001674.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203840%5D%20security%5BAT%5Dgroups.mageia%20don%27t%20work%0A%09change%20the%20account&In-Reply-To=%3C20120101202147.E8D7047D16%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 21:21:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001672.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI>Next message: <A HREF="001674.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1673">[ date ]</a>
+ <a href="thread.html#1673">[ thread ]</a>
+ <a href="subject.html#1673">[ subject ]</a>
+ <a href="author.html#1673">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3840">https://bugs.mageia.org/show_bug.cgi?id=3840</A>
+
+--- Comment #3 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-01-01 21:21:47 CET ---
+Oops, the correct email should actually be <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">security_officers at group.mageia.org.</A>
+I updated the bugzilla account again.
+
+--
+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="001672.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI>Next message: <A HREF="001674.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1673">[ date ]</a>
+ <a href="thread.html#1673">[ thread ]</a>
+ <a href="subject.html#1673">[ subject ]</a>
+ <a href="author.html#1673">[ 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/2012-January/001674.html b/zarb-ml/mageia-webteam/2012-January/001674.html
new file mode 100644
index 000000000..3e6d6da4c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001674.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+ </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%203840%5D%20security%5BAT%5Dgroups.mageia%20don%27t%20work%0A%09change%20the%20account&In-Reply-To=%3C20120101214228.E292D47D3A%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="001673.html">
+ <LINK REL="Next" HREF="001675.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203840%5D%20security%5BAT%5Dgroups.mageia%20don%27t%20work%0A%09change%20the%20account&In-Reply-To=%3C20120101214228.E292D47D3A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 1 22:42:28 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001673.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI>Next message: <A HREF="001675.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1674">[ date ]</a>
+ <a href="thread.html#1674">[ thread ]</a>
+ <a href="subject.html#1674">[ subject ]</a>
+ <a href="author.html#1674">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3840">https://bugs.mageia.org/show_bug.cgi?id=3840</A>
+
+--- Comment #4 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-01-01 23:42:28 CET ---
+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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001673.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI>Next message: <A HREF="001675.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1674">[ date ]</a>
+ <a href="thread.html#1674">[ thread ]</a>
+ <a href="subject.html#1674">[ subject ]</a>
+ <a href="author.html#1674">[ 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/2012-January/001675.html b/zarb-ml/mageia-webteam/2012-January/001675.html
new file mode 100644
index 000000000..9bfd156fc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001675.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102115322.5A7C447E05%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="001674.html">
+ <LINK REL="Next" HREF="001676.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>thomas bjo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102115322.5A7C447E05%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 12:53:22 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001674.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI>Next message: <A HREF="001676.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1675">[ date ]</a>
+ <a href="thread.html#1675">[ thread ]</a>
+ <a href="subject.html#1675">[ subject ]</a>
+ <a href="author.html#1675">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #25 from thomas bjo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thomas at bjoernvold.com</A>&gt; 2012-01-02 12:53:21 CET ---
+(In reply to comment #21)
+&gt;<i> Set to assigned. Still need time to code...
+</I>&gt;<i>
+</I>&gt;<i> The help of guys who can mod phpbb easily and maintain mods on the long run is
+</I>&gt;<i> welcome :)
+</I>
+Go to ACP-&gt;PERMISSIONS tab-&gt;Under the PERMISSION ROLES menu on the left pick
+Forum roles.
+Add &quot;Standard access&quot; to all forums and all user groups.
+
+That will enable all users to &quot;..edit posts in form (after timeout)&quot; and fix
+this bug.
+No Mod needed.
+
+--
+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="001674.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A></li>
+ <LI>Next message: <A HREF="001676.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1675">[ date ]</a>
+ <a href="thread.html#1675">[ thread ]</a>
+ <a href="subject.html#1675">[ subject ]</a>
+ <a href="author.html#1675">[ 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/2012-January/001676.html b/zarb-ml/mageia-webteam/2012-January/001676.html
new file mode 100644
index 000000000..37c1c0db2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001676.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102121056.E698947E10%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="001675.html">
+ <LINK REL="Next" HREF="001677.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>thomas bjo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102121056.E698947E10%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 13:10:56 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001675.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001677.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1676">[ date ]</a>
+ <a href="thread.html#1676">[ thread ]</a>
+ <a href="subject.html#1676">[ subject ]</a>
+ <a href="author.html#1676">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #26 from thomas bjo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thomas at bjoernvold.com</A>&gt; 2012-01-02 13:10:55 CET ---
+(In reply to comment #21)
+&gt;<i> Set to assigned. Still need time to code...
+</I>&gt;<i>
+</I>&gt;<i> The help of guys who can mod phpbb easily and maintain mods on the long run is
+</I>&gt;<i> welcome :)
+</I>
+Go to ACP-&gt;PERMISSIONS tab-&gt;Under the PERMISSION ROLES menu on the left pick
+Forum roles.
+Add &quot;Standard access&quot; to all forums and all user groups.
+
+That will enable all users to &quot;..edit posts in forum (after timeout)&quot; and fix
+this bug.
+No Mod needed.
+
+--
+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="001675.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001677.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1676">[ date ]</a>
+ <a href="thread.html#1676">[ thread ]</a>
+ <a href="subject.html#1676">[ subject ]</a>
+ <a href="author.html#1676">[ 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/2012-January/001677.html b/zarb-ml/mageia-webteam/2012-January/001677.html
new file mode 100644
index 000000000..62ac5f8ea
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001677.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102140604.32A5847E38%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="001676.html">
+ <LINK REL="Next" HREF="001678.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Maat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102140604.32A5847E38%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 15:06:04 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001676.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001678.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1677">[ date ]</a>
+ <a href="thread.html#1677">[ thread ]</a>
+ <a href="subject.html#1677">[ subject ]</a>
+ <a href="author.html#1677">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #27 from Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; 2012-01-02 15:06:00 CET ---
+This i knew about... but thanks for your kind proposal :)
+
+But the Council agreed to keep posts history if we got rid of editig-time.
+
+So we DO NEED a mod :)
+
+Regards
+
+--
+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="001676.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001678.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1677">[ date ]</a>
+ <a href="thread.html#1677">[ thread ]</a>
+ <a href="subject.html#1677">[ subject ]</a>
+ <a href="author.html#1677">[ 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/2012-January/001678.html b/zarb-ml/mageia-webteam/2012-January/001678.html
new file mode 100644
index 000000000..a9da6ee7b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001678.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102160528.C61C747E5D%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="001677.html">
+ <LINK REL="Next" HREF="001679.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102160528.C61C747E5D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 17:05:28 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001677.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001679.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1678">[ date ]</a>
+ <a href="thread.html#1678">[ thread ]</a>
+ <a href="subject.html#1678">[ subject ]</a>
+ <a href="author.html#1678">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #28 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2012-01-02 17:05:27 CET ---
+(In reply to comment #27)
+&gt;<i> But the Council agreed to keep posts history if we got rid of editig-time.
+</I>&gt;<i>
+</I>&gt;<i> So we DO NEED a mod :)
+</I>
+Yes, the council agreed on this because we had to find a compromise between
+your position and everybody elses about the annoying time-to-edit limit. Just
+to remind us WHY we &quot;need&quot; that MOD.
+
+BTW: The longer it takes until the MOD is implemented the longer we will have
+to bear with the status quo. Surely I do not indicate anything with this, just
+stating the fact.
+
+--
+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="001677.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001679.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1678">[ date ]</a>
+ <a href="thread.html#1678">[ thread ]</a>
+ <a href="subject.html#1678">[ subject ]</a>
+ <a href="author.html#1678">[ 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/2012-January/001679.html b/zarb-ml/mageia-webteam/2012-January/001679.html
new file mode 100644
index 000000000..fe497244f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001679.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102163100.6E04D47E5A%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="001678.html">
+ <LINK REL="Next" HREF="001680.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102163100.6E04D47E5A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 17:31:00 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001678.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001680.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1679">[ date ]</a>
+ <a href="thread.html#1679">[ thread ]</a>
+ <a href="subject.html#1679">[ subject ]</a>
+ <a href="author.html#1679">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #29 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-02 17:31:00 CET ---
+(In reply to comment #28)
+&gt;<i> (In reply to comment #27)
+</I>&gt;<i> &gt; But the Council agreed to keep posts history if we got rid of editig-time.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; So we DO NEED a mod :)
+</I>&gt;<i>
+</I>&gt;<i> Yes, the council agreed on this because .....
+</I>
+that doesn't help.
+
+1. the council decided on this, regardless of why they made that decision, it
+needs to be carried out.
+
+2. we need someone to do this.
+
+I'm not sure what would be the best way to find someone. I don't feel capable
+of sending a mail to one or more ml's, because I don't know what a MOD 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001678.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001680.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1679">[ date ]</a>
+ <a href="thread.html#1679">[ thread ]</a>
+ <a href="subject.html#1679">[ subject ]</a>
+ <a href="author.html#1679">[ 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/2012-January/001680.html b/zarb-ml/mageia-webteam/2012-January/001680.html
new file mode 100644
index 000000000..540bc2a69
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001680.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102163422.9332947E5D%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="001679.html">
+ <LINK REL="Next" HREF="001681.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102163422.9332947E5D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 17:34:22 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001679.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001681.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1680">[ date ]</a>
+ <a href="thread.html#1680">[ thread ]</a>
+ <a href="subject.html#1680">[ subject ]</a>
+ <a href="author.html#1680">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #30 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-02 17:34:21 CET ---
+edit:
+
+s /don't know what a MOD does /don't have the slightest idea what capabilities
+are needed to do such a MOD
+
+--
+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="001679.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001681.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1680">[ date ]</a>
+ <a href="thread.html#1680">[ thread ]</a>
+ <a href="subject.html#1680">[ subject ]</a>
+ <a href="author.html#1680">[ 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/2012-January/001681.html b/zarb-ml/mageia-webteam/2012-January/001681.html
new file mode 100644
index 000000000..3546aa1a7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001681.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102165334.953B747E66%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="001680.html">
+ <LINK REL="Next" HREF="001682.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102165334.953B747E66%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 17:53:34 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001680.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001682.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1681">[ date ]</a>
+ <a href="thread.html#1681">[ thread ]</a>
+ <a href="subject.html#1681">[ subject ]</a>
+ <a href="author.html#1681">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #31 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-02 18:53:34 CET ---
+(In reply to comment #29)
+&gt;<i> that doesn't help.
+</I>
+Yes, it can help.
+
+If it takes too long to implement this MOD, we may as well fall back on the
+other, shorter (and more radical) solution, for the sake of closing the issue
+and moving to something else - if it is still relevant and that it gets more
+critical/urgent to close, that is - I'm still for keeping this open if we can
+reasonably find someone to implement this soon.
+
+--
+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="001680.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001682.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1681">[ date ]</a>
+ <a href="thread.html#1681">[ thread ]</a>
+ <a href="subject.html#1681">[ subject ]</a>
+ <a href="author.html#1681">[ 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/2012-January/001682.html b/zarb-ml/mageia-webteam/2012-January/001682.html
new file mode 100644
index 000000000..755694166
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001682.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102170929.D187F47E6D%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="001681.html">
+ <LINK REL="Next" HREF="001683.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102170929.D187F47E6D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 18:09:29 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001681.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001683.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1682">[ date ]</a>
+ <a href="thread.html#1682">[ thread ]</a>
+ <a href="subject.html#1682">[ subject ]</a>
+ <a href="author.html#1682">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #32 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2012-01-02 19:09:29 CET ---
+I agree to Romain's comment.
+
+To Marja's question:
+Capabilities needed:
+Well, one could say that anybody who
+ - knows how to run phpBB as admin and
+ - has seen a line of php
+ - knows how to edit code (respecting tags and such)
+ - knows how to cut&amp;paste
+should be able to install an existing MOD (if I'm not mistaken there is one or
+more).
+
+I know next to nothing about php coding. But I've been running a phpBB forum
+for a couple of years and successfully implemented some MODs in phpBB2 and
+phpBB3. With no help (except the phpBB-forum in case of problems).
+
+In practice you have a detailed installation README for each MOD. Like
+ - open file /foo/bar/doo.php
+ - Find the line which starts with '......'
+ - After that add
+ - &quot;.........&quot;
+And more such step-by-step guidance
+
+It's easy most times but getting tricky the more the installed phpBB3 differs
+from the standard software.
+
+Implementing a MOD which does not already exist (aka writing a MOD) is a whole
+different story, of course. So the first step should be searching an existing
+MOD with the wanted functionality.
+
+--
+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="001681.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001683.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1682">[ date ]</a>
+ <a href="thread.html#1682">[ thread ]</a>
+ <a href="subject.html#1682">[ subject ]</a>
+ <a href="author.html#1682">[ 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/2012-January/001683.html b/zarb-ml/mageia-webteam/2012-January/001683.html
new file mode 100644
index 000000000..0edfb72d1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001683.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102220343.B93E047EA1%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="001682.html">
+ <LINK REL="Next" HREF="001684.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>thomas bjo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102220343.B93E047EA1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 23:03:43 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001682.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001684.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1683">[ date ]</a>
+ <a href="thread.html#1683">[ thread ]</a>
+ <a href="subject.html#1683">[ subject ]</a>
+ <a href="author.html#1683">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #33 from thomas bjo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thomas at bjoernvold.com</A>&gt; 2012-01-02 23:03:41 CET ---
+To solve the Gordian Knot I suggest that all posts can be opened for editing
+until such time that the mod is implemented.
+After that time I understand that the unlimited time to edit will be given
+anyway but with a log.
+This will undoubtedly work as strong motivation and maybe speed things up.
+So far the delay has been 100% in accordance with the site admins view and
+interests (and 100% against mine).
+After all this time it seems only fair that the tables are turned, since the
+influential party is the site admin.
+In short; while looking for the mod helper; all the disasters connected with
+unlimited editing will happen :)
+Some action is overdue anyway..
+
+--
+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="001682.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001684.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1683">[ date ]</a>
+ <a href="thread.html#1683">[ thread ]</a>
+ <a href="subject.html#1683">[ subject ]</a>
+ <a href="author.html#1683">[ 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/2012-January/001684.html b/zarb-ml/mageia-webteam/2012-January/001684.html
new file mode 100644
index 000000000..52d18e4dc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001684.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102221402.5816C47EA7%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="001683.html">
+ <LINK REL="Next" HREF="001685.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Bicycle RepairMan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102221402.5816C47EA7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 23:14:02 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001683.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001685.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1684">[ date ]</a>
+ <a href="thread.html#1684">[ thread ]</a>
+ <a href="subject.html#1684">[ subject ]</a>
+ <a href="author.html#1684">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</A>
+
+--- Comment #34 from Bicycle RepairMan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">eagle150 at gmx.de</A>&gt; 2012-01-02 23:14:02 CET ---
+I agree with comment 33. This has been discussed for more than six months now -
+do something already, it is getting ridiculous!
+
+--
+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="001683.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001685.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1684">[ date ]</a>
+ <a href="thread.html#1684">[ thread ]</a>
+ <a href="subject.html#1684">[ subject ]</a>
+ <a href="author.html#1684">[ 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/2012-January/001685.html b/zarb-ml/mageia-webteam/2012-January/001685.html
new file mode 100644
index 000000000..4bda64f59
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001685.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+ </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%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102221906.205FD47EA7%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="001684.html">
+ <LINK REL="Next" HREF="001686.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201956%5D%20Can%20not%20edit%20posts%20in%20forum%20%28after%0A%09timeout%29&In-Reply-To=%3C20120102221906.205FD47EA7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 2 23:19:06 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001684.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001686.html">[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1685">[ date ]</a>
+ <a href="thread.html#1685">[ thread ]</a>
+ <a href="subject.html#1685">[ subject ]</a>
+ <a href="author.html#1685">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1956">https://bugs.mageia.org/show_bug.cgi?id=1956</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">maat-ml at vilarem.net</A>
+
+--- Comment #35 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-02 23:19:05 CET ---
+Sounds reasonable.(In reply to comment #33)
+&gt;<i> To solve the Gordian Knot I suggest that all posts can be opened for editing
+</I>&gt;<i> until such time that the mod is implemented.
+</I>
+Sounds reasonable.
+
+--
+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="001684.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001686.html">[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1685">[ date ]</a>
+ <a href="thread.html#1685">[ thread ]</a>
+ <a href="subject.html#1685">[ subject ]</a>
+ <a href="author.html#1685">[ 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/2012-January/001686.html b/zarb-ml/mageia-webteam/2012-January/001686.html
new file mode 100644
index 000000000..05244d80e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001686.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click
+ </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%204016%5D%20%5BNew%5D%20Public%20link%20produces%20%22403%0A%09Forbidden%22%20on%20click&In-Reply-To=%3Cbug-4016-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="001685.html">
+ <LINK REL="Next" HREF="001687.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click</H1>
+ <B>Patricia Fraser</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204016%5D%20%5BNew%5D%20Public%20link%20produces%20%22403%0A%09Forbidden%22%20on%20click&In-Reply-To=%3Cbug-4016-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 4 12:03:27 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001685.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001687.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1686">[ date ]</a>
+ <a href="thread.html#1686">[ thread ]</a>
+ <a href="subject.html#1686">[ subject ]</a>
+ <a href="author.html#1686">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4016">https://bugs.mageia.org/show_bug.cgi?id=4016</A>
+
+ Summary: Public link produces &quot;403 Forbidden&quot; on click
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/g/media/logo/">http://www.mageia.org/g/media/logo/</A>
+ 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">trish at thefrasers.org</A>
+
+
+Followed to this link from the link to the charter on the artwork-team wiki
+page. The context seems to say this is a public link; if it is, this error
+shouldn't appear, and if it isn't, the link shouldn't be there.
+
+--
+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="001685.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A></li>
+ <LI>Next message: <A HREF="001687.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1686">[ date ]</a>
+ <a href="thread.html#1686">[ thread ]</a>
+ <a href="subject.html#1686">[ subject ]</a>
+ <a href="author.html#1686">[ 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/2012-January/001687.html b/zarb-ml/mageia-webteam/2012-January/001687.html
new file mode 100644
index 000000000..cf3c932c6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001687.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+ </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%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120104111546.EDBB4480F1%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="001686.html">
+ <LINK REL="Next" HREF="001688.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120104111546.EDBB4480F1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 4 12:15:46 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001686.html">[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001688.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1687">[ date ]</a>
+ <a href="thread.html#1687">[ thread ]</a>
+ <a href="subject.html#1687">[ subject ]</a>
+ <a href="author.html#1687">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4016">https://bugs.mageia.org/show_bug.cgi?id=4016</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #1 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2012-01-04 12:15:46 CET ---
+Hmm, I went to
+ - <A HREF="https://wiki.mageia.org/en/Artwork_team">https://wiki.mageia.org/en/Artwork_team</A> and clicked on &quot;Current (Web)
+charter&quot; which led to
+ - <A HREF="http://www.mageia.org/en/charter.html">http://www.mageia.org/en/charter.html</A> and clicked on the Link to &quot;Logo&quot;
+which led to the matching chapter od the page.
+
+No 403.
+
+BTW: What striles me there is the address of the &quot;Web charter&quot; page.
+The address <A HREF="http://www.mageia.org/en/charter.html">http://www.mageia.org/en/charter.html</A> implies that it is the page
+of the general Mageia project charter, not the charter of a &quot;department /
+team&quot;.
+So I suggest to change the name/address of the page to
+<A HREF="http://www.mageia.org/en/webcharter.html">http://www.mageia.org/en/webcharter.html</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="001686.html">[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001688.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1687">[ date ]</a>
+ <a href="thread.html#1687">[ thread ]</a>
+ <a href="subject.html#1687">[ subject ]</a>
+ <a href="author.html#1687">[ 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/2012-January/001688.html b/zarb-ml/mageia-webteam/2012-January/001688.html
new file mode 100644
index 000000000..0912eddd2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001688.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+ </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%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120104111937.1AA6148107%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="001687.html">
+ <LINK REL="Next" HREF="001689.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120104111937.1AA6148107%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 4 12:19:37 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001687.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001689.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1688">[ date ]</a>
+ <a href="thread.html#1688">[ thread ]</a>
+ <a href="subject.html#1688">[ subject ]</a>
+ <a href="author.html#1688">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4016">https://bugs.mageia.org/show_bug.cgi?id=4016</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 #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-04 12:19:37 CET ---
+(In reply to comment #1)
+&gt;<i> BTW: What striles me there is the address of the &quot;Web charter&quot; page.
+</I>&gt;<i> The address <A HREF="http://www.mageia.org/en/charter.html">http://www.mageia.org/en/charter.html</A> implies that it is the page
+</I>&gt;<i> of the general Mageia project charter, not the charter of a &quot;department /
+</I>&gt;<i> team&quot;.
+</I>&gt;<i> So I suggest to change the name/address of the page to
+</I>&gt;<i> <A HREF="http://www.mageia.org/en/webcharter.html">http://www.mageia.org/en/webcharter.html</A>
+</I>
+This is meant to be a general charter, not only for Web (misleading title
+indeed, updating).
+
+--
+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="001687.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001689.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1688">[ date ]</a>
+ <a href="thread.html#1688">[ thread ]</a>
+ <a href="subject.html#1688">[ subject ]</a>
+ <a href="author.html#1688">[ 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/2012-January/001689.html b/zarb-ml/mageia-webteam/2012-January/001689.html
new file mode 100644
index 000000000..0cfd4de08
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001689.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+ </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%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120104112408.CD98C480C1%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="001688.html">
+ <LINK REL="Next" HREF="001690.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click</H1>
+ <B>Patricia Fraser</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120104112408.CD98C480C1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 4 12:24:08 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001688.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001690.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1689">[ date ]</a>
+ <a href="thread.html#1689">[ thread ]</a>
+ <a href="subject.html#1689">[ subject ]</a>
+ <a href="author.html#1689">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4016">https://bugs.mageia.org/show_bug.cgi?id=4016</A>
+
+--- Comment #3 from Patricia Fraser &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">trish at thefrasers.org</A>&gt; 2012-01-04 12:24:08 CET ---
+Maybe it just hates Polish IP addresses... wouldn't be the first 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001688.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001690.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1689">[ date ]</a>
+ <a href="thread.html#1689">[ thread ]</a>
+ <a href="subject.html#1689">[ subject ]</a>
+ <a href="author.html#1689">[ 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/2012-January/001690.html b/zarb-ml/mageia-webteam/2012-January/001690.html
new file mode 100644
index 000000000..277f84818
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001690.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120104142121.68268481D3%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="001689.html">
+ <LINK REL="Next" HREF="001691.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120104142121.68268481D3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 4 15:21:21 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001689.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001691.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1690">[ date ]</a>
+ <a href="thread.html#1690">[ thread ]</a>
+ <a href="subject.html#1690">[ subject ]</a>
+ <a href="author.html#1690">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #9 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-01-04 15:21:18 CET ---
+ping
+
+--
+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="001689.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001691.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1690">[ date ]</a>
+ <a href="thread.html#1690">[ thread ]</a>
+ <a href="subject.html#1690">[ subject ]</a>
+ <a href="author.html#1690">[ 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/2012-January/001691.html b/zarb-ml/mageia-webteam/2012-January/001691.html
new file mode 100644
index 000000000..92c37fc8c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001691.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120104142356.BC942481D5%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="001690.html">
+ <LINK REL="Next" HREF="001692.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120104142356.BC942481D5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 4 15:23:56 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001690.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001692.html">[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1691">[ date ]</a>
+ <a href="thread.html#1691">[ thread ]</a>
+ <a href="subject.html#1691">[ subject ]</a>
+ <a href="author.html#1691">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #10 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-01-04 15:23:56 CET ---
+pong
+
+--
+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="001690.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001692.html">[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1691">[ date ]</a>
+ <a href="thread.html#1691">[ thread ]</a>
+ <a href="subject.html#1691">[ subject ]</a>
+ <a href="author.html#1691">[ 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/2012-January/001692.html b/zarb-ml/mageia-webteam/2012-January/001692.html
new file mode 100644
index 000000000..c58337ff6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001692.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist
+ </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%204033%5D%20%5BNew%5D%20Can%27t%20follow%20the%20link%20to%0A%20mailing-lists.%20Page%20doesn%27t%20exist&In-Reply-To=%3Cbug-4033-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="001691.html">
+ <LINK REL="Next" HREF="001693.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist</H1>
+ <B>ovi onico</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204033%5D%20%5BNew%5D%20Can%27t%20follow%20the%20link%20to%0A%20mailing-lists.%20Page%20doesn%27t%20exist&In-Reply-To=%3Cbug-4033-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jan 5 15:56:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001691.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001693.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1692">[ date ]</a>
+ <a href="thread.html#1692">[ thread ]</a>
+ <a href="subject.html#1692">[ subject ]</a>
+ <a href="author.html#1692">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4033">https://bugs.mageia.org/show_bug.cgi?id=4033</A>
+
+ Summary: Can't follow the link to mailing-lists. Page doesn't
+ exist
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/en/contribute/">http://www.mageia.org/en/contribute/</A>
+ 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">ovionico at gmail.com</A>
+
+
+Description of problem:
+Visit <A HREF="http://www.mageia.org/en/contribute/">http://www.mageia.org/en/contribute/</A> . In role &quot;Helping users &amp;
+advocating the project&quot; there is a link to mailing-lists. Clicking on this link
+will take you nowhere and will show the following message: &quot;Not found. The
+requested URL /mailman/ was not found on this server.&quot;
+
+How reproducible:
+Always, and not only with the English language.
+
+
+Steps to Reproduce:
+1. Visit <A HREF="http://www.mageia.org/en/contribute/">http://www.mageia.org/en/contribute/</A>
+2. Search for role &quot;Helping users &amp; advocating the project&quot;
+3. Click in the link &quot;mailing-lists&quot;
+4. You will see the error
+
+--
+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="001691.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001693.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1692">[ date ]</a>
+ <a href="thread.html#1692">[ thread ]</a>
+ <a href="subject.html#1692">[ subject ]</a>
+ <a href="author.html#1692">[ 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/2012-January/001693.html b/zarb-ml/mageia-webteam/2012-January/001693.html
new file mode 100644
index 000000000..64608e4b7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001693.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+ </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%204033%5D%20Can%27t%20follow%20the%20link%20to%20mailing-lists.%0A%20Page%20doesn%27t%20exist&In-Reply-To=%3C20120105150320.16CA148242%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="001692.html">
+ <LINK REL="Next" HREF="001694.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204033%5D%20Can%27t%20follow%20the%20link%20to%20mailing-lists.%0A%20Page%20doesn%27t%20exist&In-Reply-To=%3C20120105150320.16CA148242%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jan 5 16:03:20 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001692.html">[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI>Next message: <A HREF="001694.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1693">[ date ]</a>
+ <a href="thread.html#1693">[ thread ]</a>
+ <a href="subject.html#1693">[ subject ]</a>
+ <a href="author.html#1693">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4033">https://bugs.mageia.org/show_bug.cgi?id=4033</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-01-05 17:03:19 CET ---
+(its also the same with the archive aka pipermail since the migrate of www from
+zarb to mageia)
+
+--
+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="001692.html">[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI>Next message: <A HREF="001694.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1693">[ date ]</a>
+ <a href="thread.html#1693">[ thread ]</a>
+ <a href="subject.html#1693">[ subject ]</a>
+ <a href="author.html#1693">[ 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/2012-January/001694.html b/zarb-ml/mageia-webteam/2012-January/001694.html
new file mode 100644
index 000000000..47551568a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001694.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+ </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%204033%5D%20Can%27t%20follow%20the%20link%20to%20mailing-lists.%0A%20Page%20doesn%27t%20exist&In-Reply-To=%3C20120105151738.64D314821F%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="001693.html">
+ <LINK REL="Next" HREF="001704.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204033%5D%20Can%27t%20follow%20the%20link%20to%20mailing-lists.%0A%20Page%20doesn%27t%20exist&In-Reply-To=%3C20120105151738.64D314821F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jan 5 16:17:38 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001693.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI>Next message: <A HREF="001704.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1694">[ date ]</a>
+ <a href="thread.html#1694">[ thread ]</a>
+ <a href="subject.html#1694">[ subject ]</a>
+ <a href="author.html#1694">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4033">https://bugs.mageia.org/show_bug.cgi?id=4033</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #2 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2012-01-05 17:17:37 CET ---
+Yep, seems to be a missing redirct to the mailman pages still hosted on zarb.
+
+--
+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="001693.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI>Next message: <A HREF="001704.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1694">[ date ]</a>
+ <a href="thread.html#1694">[ thread ]</a>
+ <a href="subject.html#1694">[ subject ]</a>
+ <a href="author.html#1694">[ 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/2012-January/001695.html b/zarb-ml/mageia-webteam/2012-January/001695.html
new file mode 100644
index 000000000..152de5ef2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001695.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4048] [New] Planet not listed on main 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%204048%5D%20%5BNew%5D%20Planet%20not%20listed%20on%20main%20website&In-Reply-To=%3Cbug-4048-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="001704.html">
+ <LINK REL="Next" HREF="001707.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website</H1>
+ <B>Josh King</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204048%5D%20%5BNew%5D%20Planet%20not%20listed%20on%20main%20website&In-Reply-To=%3Cbug-4048-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jan 7 04:33:28 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001704.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI>Next message: <A HREF="001707.html">[Mageia-webteam] [Bug 4048] Planet not listed on main website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1695">[ date ]</a>
+ <a href="thread.html#1695">[ thread ]</a>
+ <a href="subject.html#1695">[ subject ]</a>
+ <a href="author.html#1695">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4048">https://bugs.mageia.org/show_bug.cgi?id=4048</A>
+
+ Summary: Planet not listed on main website
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://mageia.org">http://mageia.org</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ Priority: Normal
+ Component: planet.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">josh at dotmil.org</A>
+
+
+Description of problem:
+planet.mageia.org isn't shown in the list of links at the top of the main
+website. I don't know if this was intentional, but it is nice to have so people
+even know to look for it.
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+Load mageia.org in a browser
+
+Steps to Reproduce:
+1.
+2.
+3.
+
+--
+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="001704.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI>Next message: <A HREF="001707.html">[Mageia-webteam] [Bug 4048] Planet not listed on main website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1695">[ date ]</a>
+ <a href="thread.html#1695">[ thread ]</a>
+ <a href="subject.html#1695">[ subject ]</a>
+ <a href="author.html#1695">[ 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/2012-January/001696.html b/zarb-ml/mageia-webteam/2012-January/001696.html
new file mode 100644
index 000000000..6068567ca
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001696.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+ </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%20387%5D%20Setting%20the%20preferedLanguage%20of%20a%20user%0A%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3C20120107214240.86CAF485AC%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="001707.html">
+ <LINK REL="Next" HREF="001697.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20387%5D%20Setting%20the%20preferedLanguage%20of%20a%20user%0A%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3C20120107214240.86CAF485AC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jan 7 22:42:40 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001707.html">[Mageia-webteam] [Bug 4048] Planet not listed on main website
+</A></li>
+ <LI>Next message: <A HREF="001697.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1696">[ date ]</a>
+ <a href="thread.html#1696">[ thread ]</a>
+ <a href="subject.html#1696">[ subject ]</a>
+ <a href="author.html#1696">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-07 22:42:40 CET ---
+pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED
+
+
+@ web team
+Please set status to ASSIGNED if you think this bug was assigned correctly. If
+for work flow reasons you can't do that, then please put OK on the whiteboard
+instead.
+
+--
+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="001707.html">[Mageia-webteam] [Bug 4048] Planet not listed on main website
+</A></li>
+ <LI>Next message: <A HREF="001697.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1696">[ date ]</a>
+ <a href="thread.html#1696">[ thread ]</a>
+ <a href="subject.html#1696">[ subject ]</a>
+ <a href="author.html#1696">[ 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/2012-January/001697.html b/zarb-ml/mageia-webteam/2012-January/001697.html
new file mode 100644
index 000000000..9a46cfa7f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001697.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+ </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%20387%5D%20Setting%20the%20preferedLanguage%20of%20a%20user%0A%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3C20120107224138.B77FE485DA%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="001696.html">
+ <LINK REL="Next" HREF="001698.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20387%5D%20Setting%20the%20preferedLanguage%20of%20a%20user%0A%20cause%20a%20error%20in%20the%20current%20trunk&In-Reply-To=%3C20120107224138.B77FE485DA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jan 7 23:41:38 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001696.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="001698.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1697">[ date ]</a>
+ <a href="thread.html#1697">[ thread ]</a>
+ <a href="subject.html#1697">[ subject ]</a>
+ <a href="author.html#1697">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">bgmilne at zarb.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="001696.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="001698.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1697">[ date ]</a>
+ <a href="thread.html#1697">[ thread ]</a>
+ <a href="subject.html#1697">[ subject ]</a>
+ <a href="author.html#1697">[ 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/2012-January/001698.html b/zarb-ml/mageia-webteam/2012-January/001698.html
new file mode 100644
index 000000000..0ba00e18a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001698.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120108123243.1A7A1486CA%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="001697.html">
+ <LINK REL="Next" HREF="001699.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120108123243.1A7A1486CA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 8 13:32:43 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001697.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="001699.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1698">[ date ]</a>
+ <a href="thread.html#1698">[ thread ]</a>
+ <a href="subject.html#1698">[ subject ]</a>
+ <a href="author.html#1698">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>,
+ | |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-08 14:32:42 CET ---
+(In reply to comment #0)
+&gt;<i> User name currently shown in Mageia forums is the login (LDAP uid).
+</I>&gt;<i>
+</I>&gt;<i> There is another LDAP attribute (cn, for common name) that is better suited to
+</I>&gt;<i> show the user name: every user puts the name of her own liking, be it an alias
+</I>&gt;<i> or a real name.
+</I>
+And after that more users will change their cn, and we'll have less real names
+in Bugzilla.
+
+For forums and IRC, I think aliases are fine. However, in Bugzilla I really
+prefer real names.
+
+@ Fr&#233;d&#233;ric
+@ D Morgan
+
+Is it easy to make Bugzilla use givenName + sn from the user account instead of
+cn?
+
+( for reference: <A HREF="https://wiki.mageia.org/en/Mageia.org_user_account">https://wiki.mageia.org/en/Mageia.org_user_account</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="001697.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI>Next message: <A HREF="001699.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1698">[ date ]</a>
+ <a href="thread.html#1698">[ thread ]</a>
+ <a href="subject.html#1698">[ subject ]</a>
+ <a href="author.html#1698">[ 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/2012-January/001699.html b/zarb-ml/mageia-webteam/2012-January/001699.html
new file mode 100644
index 000000000..f54fc591b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001699.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+ </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%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20120108123824.CD442486C9%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="001698.html">
+ <LINK REL="Next" HREF="001700.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20120108123824.CD442486C9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 8 13:38:24 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001698.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001700.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1699">[ date ]</a>
+ <a href="thread.html#1699">[ thread ]</a>
+ <a href="subject.html#1699">[ subject ]</a>
+ <a href="author.html#1699">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status Whiteboard| |OK
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-08 14:38:24 CET ---
+putting OK on the whiteboard, so it won't show up again when I search for NEW
+and REOPENED bugs that didn't see any action in &gt;= 3 months
+
+--
+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="001698.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001700.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1699">[ date ]</a>
+ <a href="thread.html#1699">[ thread ]</a>
+ <a href="subject.html#1699">[ subject ]</a>
+ <a href="author.html#1699">[ 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/2012-January/001700.html b/zarb-ml/mageia-webteam/2012-January/001700.html
new file mode 100644
index 000000000..f012dec81
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001700.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120108125227.593E4486B7%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="001699.html">
+ <LINK REL="Next" HREF="001701.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120108125227.593E4486B7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 8 13:52:27 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001699.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001701.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1700">[ date ]</a>
+ <a href="thread.html#1700">[ thread ]</a>
+ <a href="subject.html#1700">[ subject ]</a>
+ <a href="author.html#1700">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+--- Comment #5 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-01-08 13:52:27 CET ---
+Bugzilla displays the user name you defined in your preferences:
+
+ <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=account">https://bugs.mageia.org/userprefs.cgi?tab=account</A>
+
+This has nothing to do with LDAP.
+
+--
+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="001699.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001701.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1700">[ date ]</a>
+ <a href="thread.html#1700">[ thread ]</a>
+ <a href="subject.html#1700">[ subject ]</a>
+ <a href="author.html#1700">[ 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/2012-January/001701.html b/zarb-ml/mageia-webteam/2012-January/001701.html
new file mode 100644
index 000000000..ea01aeeb7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001701.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120108130503.9140E486F0%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="001700.html">
+ <LINK REL="Next" HREF="001702.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120108130503.9140E486F0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 8 14:05:03 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001700.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001702.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1701">[ date ]</a>
+ <a href="thread.html#1701">[ thread ]</a>
+ <a href="subject.html#1701">[ subject ]</a>
+ <a href="author.html#1701">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+--- Comment #6 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-08 14:05:03 CET ---
+(In reply to comment #5)
+&gt;<i> Bugzilla displays the user name you defined in your preferences:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=account">https://bugs.mageia.org/userprefs.cgi?tab=account</A>
+</I>&gt;<i>
+</I>&gt;<i> This has nothing to do with LDAP.
+</I>
+Thanks :)
+
+In that case, I don't object against the forums using cn :D
+
+--
+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="001700.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001702.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1701">[ date ]</a>
+ <a href="thread.html#1701">[ thread ]</a>
+ <a href="subject.html#1701">[ subject ]</a>
+ <a href="author.html#1701">[ 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/2012-January/001702.html b/zarb-ml/mageia-webteam/2012-January/001702.html
new file mode 100644
index 000000000..62a12c62f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001702.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120108152427.4EBEE4874B%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="001701.html">
+ <LINK REL="Next" HREF="001703.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120108152427.4EBEE4874B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 8 16:24:27 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001701.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001703.html">[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1702">[ date ]</a>
+ <a href="thread.html#1702">[ thread ]</a>
+ <a href="subject.html#1702">[ subject ]</a>
+ <a href="author.html#1702">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+--- Comment #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-08 17:24:27 CET ---
+(In reply to comment #4)
+&gt;<i> And after that more users will change their cn, and we'll have less real names
+</I>&gt;<i> in Bugzilla.
+</I>
+This is really up to each person to decide; using real names or not is more a
+matter of culture and context. And that's why, if we have a fixed, unique,
+syntaxically-strict uid, we need a more liberal display name (here, cn) so
+people can choose how they are named.
+
+--
+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="001701.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001703.html">[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1702">[ date ]</a>
+ <a href="thread.html#1702">[ thread ]</a>
+ <a href="subject.html#1702">[ subject ]</a>
+ <a href="author.html#1702">[ 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/2012-January/001703.html b/zarb-ml/mageia-webteam/2012-January/001703.html
new file mode 100644
index 000000000..e92b05811
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001703.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view
+ </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%204080%5D%20%5BNew%5D%20mailman%20shows%20404%20error%20when%0A%09trying%20to%20view&In-Reply-To=%3Cbug-4080-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="001702.html">
+ <LINK REL="Next" HREF="001705.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view</H1>
+ <B>Josh King</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204080%5D%20%5BNew%5D%20mailman%20shows%20404%20error%20when%0A%09trying%20to%20view&In-Reply-To=%3Cbug-4080-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 06:48:23 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001702.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001705.html">[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1703">[ date ]</a>
+ <a href="thread.html#1703">[ thread ]</a>
+ <a href="subject.html#1703">[ subject ]</a>
+ <a href="author.html#1703">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4080">https://bugs.mageia.org/show_bug.cgi?id=4080</A>
+
+ Summary: mailman shows 404 error when trying to view
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/mailman/">http://www.mageia.org/mailman/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">josh at dotmil.org</A>
+
+
+Description of problem:
+<A HREF="http://www.mageia.org/mailman/">http://www.mageia.org/mailman/</A> does not exist; I assume this was lost on the
+server move? It makes it very hard for any new users to even begin to look for
+the lists - if not impossible.
+
+
+How reproducible:
+Go to <A HREF="http://www.mageia.org/en/contribute/">http://www.mageia.org/en/contribute/</A> , under &quot;Helping users &amp; advocating
+the project&quot; click the link for mailing lists
+
+--
+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="001702.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001705.html">[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1703">[ date ]</a>
+ <a href="thread.html#1703">[ thread ]</a>
+ <a href="subject.html#1703">[ subject ]</a>
+ <a href="author.html#1703">[ 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/2012-January/001704.html b/zarb-ml/mageia-webteam/2012-January/001704.html
new file mode 100644
index 000000000..73437c27c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001704.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+ </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%204033%5D%20Can%27t%20follow%20the%20link%20to%20mailing-lists.%0A%20Page%20doesn%27t%20exist&In-Reply-To=%3C20120109083058.1AC3048867%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="001694.html">
+ <LINK REL="Next" HREF="001695.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204033%5D%20Can%27t%20follow%20the%20link%20to%20mailing-lists.%0A%20Page%20doesn%27t%20exist&In-Reply-To=%3C20120109083058.1AC3048867%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 09:30:58 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001694.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI>Next message: <A HREF="001695.html">[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1704">[ date ]</a>
+ <a href="thread.html#1704">[ thread ]</a>
+ <a href="subject.html#1704">[ subject ]</a>
+ <a href="author.html#1704">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4033">https://bugs.mageia.org/show_bug.cgi?id=4033</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">mageia-sysadm at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="001694.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A></li>
+ <LI>Next message: <A HREF="001695.html">[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1704">[ date ]</a>
+ <a href="thread.html#1704">[ thread ]</a>
+ <a href="subject.html#1704">[ subject ]</a>
+ <a href="author.html#1704">[ 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/2012-January/001705.html b/zarb-ml/mageia-webteam/2012-January/001705.html
new file mode 100644
index 000000000..d3466e168
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001705.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view
+ </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%204080%5D%20mailman%20shows%20404%20error%20when%20trying%20to%0A%09view&In-Reply-To=%3C20120109083225.9090B48865%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="001703.html">
+ <LINK REL="Next" HREF="001706.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204080%5D%20mailman%20shows%20404%20error%20when%20trying%20to%0A%09view&In-Reply-To=%3C20120109083225.9090B48865%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 09:32:25 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001703.html">[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view
+</A></li>
+ <LI>Next message: <A HREF="001706.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1705">[ date ]</a>
+ <a href="thread.html#1705">[ thread ]</a>
+ <a href="subject.html#1705">[ subject ]</a>
+ <a href="author.html#1705">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4080">https://bugs.mageia.org/show_bug.cgi?id=4080</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|NEW |RESOLVED
+ Resolution| |DUPLICATE
+ 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; 2012-01-09 09:32:25 CET ---
+See bug 4033.
+
+*** This bug has been marked as a duplicate of bug 4033 ***
+
+--
+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="001703.html">[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view
+</A></li>
+ <LI>Next message: <A HREF="001706.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1705">[ date ]</a>
+ <a href="thread.html#1705">[ thread ]</a>
+ <a href="subject.html#1705">[ subject ]</a>
+ <a href="author.html#1705">[ 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/2012-January/001706.html b/zarb-ml/mageia-webteam/2012-January/001706.html
new file mode 100644
index 000000000..fefe94e94
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001706.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120109161849.40A6D48961%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="001705.html">
+ <LINK REL="Next" HREF="001708.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>marja</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120109161849.40A6D48961%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 17:18:49 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001705.html">[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view
+</A></li>
+ <LI>Next message: <A HREF="001708.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1706">[ date ]</a>
+ <a href="thread.html#1706">[ thread ]</a>
+ <a href="subject.html#1706">[ subject ]</a>
+ <a href="author.html#1706">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+--- Comment #8 from marja &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-09 17:18:49 CET ---
+(In reply to comment #5)
+&gt;<i> Bugzilla displays the user name you defined in your preferences:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=account">https://bugs.mageia.org/userprefs.cgi?tab=account</A>
+</I>&gt;<i>
+</I>&gt;<i> This has nothing to do with LDAP.
+</I>
+It does, I changed cn to &quot;marja&quot; , while *not* doing anything to my bugzilla
+preferences, and it changed to &quot;marja&quot; here, too.
+
+I reverted the change &#177; 10 minutes ago, but maybe you can still see it, I don't
+think it gets synchronised very fast
+
+--
+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="001705.html">[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view
+</A></li>
+ <LI>Next message: <A HREF="001708.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1706">[ date ]</a>
+ <a href="thread.html#1706">[ thread ]</a>
+ <a href="subject.html#1706">[ subject ]</a>
+ <a href="author.html#1706">[ 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/2012-January/001707.html b/zarb-ml/mageia-webteam/2012-January/001707.html
new file mode 100644
index 000000000..aa0fa751e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001707.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4048] Planet not listed on main 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%204048%5D%20Planet%20not%20listed%20on%20main%20website&In-Reply-To=%3C20120109165631.2ED4848A11%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="001695.html">
+ <LINK REL="Next" HREF="001696.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4048] Planet not listed on main website</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204048%5D%20Planet%20not%20listed%20on%20main%20website&In-Reply-To=%3C20120109165631.2ED4848A11%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4048] Planet not listed on main website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 17:56:31 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001695.html">[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website
+</A></li>
+ <LI>Next message: <A HREF="001696.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1707">[ date ]</a>
+ <a href="thread.html#1707">[ thread ]</a>
+ <a href="subject.html#1707">[ subject ]</a>
+ <a href="author.html#1707">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4048">https://bugs.mageia.org/show_bug.cgi?id=4048</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ 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; 2012-01-09 18:56:31 CET ---
+Re-added those from the English page (oddly, the sidebar had disappeared).
+
+I am not sure about adding it to the global navigation bar, but we can
+certainly make it more accessible from other places (from the home page in the
+news section for instance - which page can be improved).
+
+--
+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="001695.html">[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website
+</A></li>
+ <LI>Next message: <A HREF="001696.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1707">[ date ]</a>
+ <a href="thread.html#1707">[ thread ]</a>
+ <a href="subject.html#1707">[ subject ]</a>
+ <a href="author.html#1707">[ 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/2012-January/001708.html b/zarb-ml/mageia-webteam/2012-January/001708.html
new file mode 100644
index 000000000..67dd4e3eb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001708.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 451] FAQ should be refreshed
+ </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%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20120109194557.6033348A5E%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="001706.html">
+ <LINK REL="Next" HREF="001709.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 451] FAQ should be refreshed</H1>
+ <B>marja</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20120109194557.6033348A5E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 451] FAQ should be refreshed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 20:45:57 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001706.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001709.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1708">[ date ]</a>
+ <a href="thread.html#1708">[ thread ]</a>
+ <a href="subject.html#1708">[ subject ]</a>
+ <a href="author.html#1708">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+
+--- Comment #5 from marja &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-09 20:45:57 CET ---
+Bug still valid.
+
+Can't the page just be removed?
+
+
+@ webteam
+
+Please set status to ASSIGNED if you think this bug was assigned correctly. If
+for work flow reasons you can't do that, then please put OK on the whiteboard
+instead.
+
+--
+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="001706.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001709.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1708">[ date ]</a>
+ <a href="thread.html#1708">[ thread ]</a>
+ <a href="subject.html#1708">[ subject ]</a>
+ <a href="author.html#1708">[ 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/2012-January/001709.html b/zarb-ml/mageia-webteam/2012-January/001709.html
new file mode 100644
index 000000000..e521ec653
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001709.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120109194913.C862548A74%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="001708.html">
+ <LINK REL="Next" HREF="001710.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120109194913.C862548A74%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 20:49:13 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001708.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001710.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1709">[ date ]</a>
+ <a href="thread.html#1709">[ thread ]</a>
+ <a href="subject.html#1709">[ subject ]</a>
+ <a href="author.html#1709">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>
+
+--- Comment #9 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2012-01-09 20:49:13 CET ---
+sorry, i prefer my IRC nickname (cn) to be used in bugzilla as well as forums
+and others... don't see the need for it to be my real name... i mean, i can be
+found on my nickname anyway... not sure my real name will be any 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001708.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001710.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1709">[ date ]</a>
+ <a href="thread.html#1709">[ thread ]</a>
+ <a href="subject.html#1709">[ subject ]</a>
+ <a href="author.html#1709">[ 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/2012-January/001710.html b/zarb-ml/mageia-webteam/2012-January/001710.html
new file mode 100644
index 000000000..a51cb19b7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001710.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120109200003.731DB48A84%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="001709.html">
+ <LINK REL="Next" HREF="001711.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>marja</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120109200003.731DB48A84%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 21:00:03 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001709.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001711.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1710">[ date ]</a>
+ <a href="thread.html#1710">[ thread ]</a>
+ <a href="subject.html#1710">[ subject ]</a>
+ <a href="author.html#1710">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+--- Comment #10 from marja &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-09 21:00:03 CET ---
+@ AL13N, you're so well known, I don't mind if you use your nick everywhere :)
+
+We hardly had any trolls in Bugzilla so far. I think that the custom to use
+real names in Bugzilla, somehow keeps people from trolling.
+
+--
+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="001709.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001711.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1710">[ date ]</a>
+ <a href="thread.html#1710">[ thread ]</a>
+ <a href="subject.html#1710">[ subject ]</a>
+ <a href="author.html#1710">[ 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/2012-January/001711.html b/zarb-ml/mageia-webteam/2012-January/001711.html
new file mode 100644
index 000000000..985591eb4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001711.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 465] captcha is annoying
+ </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%20465%5D%20captcha%20is%20annoying&In-Reply-To=%3C20120109202308.D2B4A489D9%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="001710.html">
+ <LINK REL="Next" HREF="001712.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 465] captcha is annoying</H1>
+ <B>marja</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20465%5D%20captcha%20is%20annoying&In-Reply-To=%3C20120109202308.D2B4A489D9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 465] captcha is annoying">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 21:23:08 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001710.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001712.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1711">[ date ]</a>
+ <a href="thread.html#1711">[ thread ]</a>
+ <a href="subject.html#1711">[ subject ]</a>
+ <a href="author.html#1711">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+
+--- Comment #2 from marja &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-09 21:23:09 CET ---
+(In reply to comment #0)
+
+&gt;<i>
+</I>&gt;<i> What about replacing this with a simple mathematic question, as seen on some
+</I>&gt;<i> blog ( statusnet one, for example ) ?
+</I>&gt;<i>
+</I>
+I can't find such a question on <A HREF="http://status.net/blog,">http://status.net/blog,</A> or is it a different
+site?
+
+--
+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="001710.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001712.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1711">[ date ]</a>
+ <a href="thread.html#1711">[ thread ]</a>
+ <a href="subject.html#1711">[ subject ]</a>
+ <a href="author.html#1711">[ 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/2012-January/001712.html b/zarb-ml/mageia-webteam/2012-January/001712.html
new file mode 100644
index 000000000..0efef1a3b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001712.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition 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%20543%5D%20Allow%20to%20promote%20a%20user%20directly%20from%0A%20the%20user%20edition%20page&In-Reply-To=%3C20120109202453.959CE48A21%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="001711.html">
+ <LINK REL="Next" HREF="001713.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page</H1>
+ <B>marja</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20543%5D%20Allow%20to%20promote%20a%20user%20directly%20from%0A%20the%20user%20edition%20page&In-Reply-To=%3C20120109202453.959CE48A21%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 21:24:53 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001711.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI>Next message: <A HREF="001713.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1712">[ date ]</a>
+ <a href="thread.html#1712">[ thread ]</a>
+ <a href="subject.html#1712">[ subject ]</a>
+ <a href="author.html#1712">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+
+--- Comment #2 from marja &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-09 21:24:53 CET ---
+pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED
+
+
+@ Web team
+
+Please set status to ASSIGNED if you think this bug was assigned correctly. If
+for work flow reasons you can't do that, then please put OK on the whiteboard
+instead.
+
+--
+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="001711.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI>Next message: <A HREF="001713.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1712">[ date ]</a>
+ <a href="thread.html#1712">[ thread ]</a>
+ <a href="subject.html#1712">[ subject ]</a>
+ <a href="author.html#1712">[ 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/2012-January/001713.html b/zarb-ml/mageia-webteam/2012-January/001713.html
new file mode 100644
index 000000000..dd34b0ab0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001713.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120109215354.971ED48A69%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="001712.html">
+ <LINK REL="Next" HREF="001714.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120109215354.971ED48A69%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 9 22:53:54 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001712.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI>Next message: <A HREF="001714.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1713">[ date ]</a>
+ <a href="thread.html#1713">[ thread ]</a>
+ <a href="subject.html#1713">[ subject ]</a>
+ <a href="author.html#1713">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+--- Comment #11 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2012-01-09 22:53:49 CET ---
+(In reply to comment #10)
+&gt;<i> @ AL13N, you're so well known, I don't mind if you use your nick everywhere :)
+</I>&gt;<i>
+</I>&gt;<i> We hardly had any trolls in Bugzilla so far. I think that the custom to use
+</I>&gt;<i> real names in Bugzilla, somehow keeps people from trolling.
+</I>
+or because we're all too friendly to be trolls...
+
+problem is, i know almost absolutely noone with their real names... even after
+we met face-to-face..
+
+i mean, i respect your opinion on this, but i think this should be just the
+nickname...; i mean, if you want to troll, you can just make another account...
+
+and besides, if you do troll, the sysadmins can track you down...
+
+--
+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="001712.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A></li>
+ <LI>Next message: <A HREF="001714.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1713">[ date ]</a>
+ <a href="thread.html#1713">[ thread ]</a>
+ <a href="subject.html#1713">[ subject ]</a>
+ <a href="author.html#1713">[ 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/2012-January/001714.html b/zarb-ml/mageia-webteam/2012-January/001714.html
new file mode 100644
index 000000000..1a4670319
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001714.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+ </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%203025%5D%20English%20page%20has%20different%20donated%0A%20amount%20than%20other%20localised%20versions&In-Reply-To=%3C20120110054718.E403E48A8F%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="001713.html">
+ <LINK REL="Next" HREF="001715.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203025%5D%20English%20page%20has%20different%20donated%0A%20amount%20than%20other%20localised%20versions&In-Reply-To=%3C20120110054718.E403E48A8F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jan 10 06:47:18 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001713.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001715.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1714">[ date ]</a>
+ <a href="thread.html#1714">[ thread ]</a>
+ <a href="subject.html#1714">[ subject ]</a>
+ <a href="author.html#1714">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3025">https://bugs.mageia.org/show_bug.cgi?id=3025</A>
+
+--- Comment #1 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-01-10 06:47:18 CET ---
+This problem still exists. Additionally, the link on the English page to the
+2012 (?) report results in a 404.
+
+--
+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="001713.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="001715.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1714">[ date ]</a>
+ <a href="thread.html#1714">[ thread ]</a>
+ <a href="subject.html#1714">[ subject ]</a>
+ <a href="author.html#1714">[ 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/2012-January/001715.html b/zarb-ml/mageia-webteam/2012-January/001715.html
new file mode 100644
index 000000000..bc1811a51
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001715.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 465] captcha is annoying
+ </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%20465%5D%20captcha%20is%20annoying&In-Reply-To=%3C20120110065313.97FBE48AAB%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="001714.html">
+ <LINK REL="Next" HREF="001716.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 465] captcha is annoying</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20465%5D%20captcha%20is%20annoying&In-Reply-To=%3C20120110065313.97FBE48AAB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 465] captcha is annoying">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jan 10 07:53:13 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001714.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A></li>
+ <LI>Next message: <A HREF="001716.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1715">[ date ]</a>
+ <a href="thread.html#1715">[ thread ]</a>
+ <a href="subject.html#1715">[ subject ]</a>
+ <a href="author.html#1715">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #3 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2012-01-10 07:53:13 CET ---
+<A HREF="http://status.net/user/register?destination=open-source">http://status.net/user/register?destination=open-source</A> is an example
+
+--
+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="001714.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A></li>
+ <LI>Next message: <A HREF="001716.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1715">[ date ]</a>
+ <a href="thread.html#1715">[ thread ]</a>
+ <a href="subject.html#1715">[ subject ]</a>
+ <a href="author.html#1715">[ 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/2012-January/001716.html b/zarb-ml/mageia-webteam/2012-January/001716.html
new file mode 100644
index 000000000..f9a925a81
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001716.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 451] FAQ should be refreshed
+ </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%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20120110105124.ADE1948ACD%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="001715.html">
+ <LINK REL="Next" HREF="001717.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 451] FAQ should be refreshed</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20451%5D%20FAQ%20should%20be%20refreshed&In-Reply-To=%3C20120110105124.ADE1948ACD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 451] FAQ should be refreshed">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jan 10 11:51:24 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001715.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI>Next message: <A HREF="001717.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1716">[ date ]</a>
+ <a href="thread.html#1716">[ thread ]</a>
+ <a href="subject.html#1716">[ subject ]</a>
+ <a href="author.html#1716">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+
+--- Comment #6 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-10 11:51:24 CET ---
+(In reply to comment #5)
+&gt;<i> Can't the page just be removed?
+</I>
+It can, but I'd rather do it if someone ports its (valid) contents to the wiki
+in the meantime.
+
+&gt;<i> Please set status to ASSIGNED if you think this bug was assigned correctly. If
+</I>&gt;<i> for work flow reasons you can't do that, then please put OK on the whiteboard
+</I>&gt;<i> instead.
+</I>
+It is. It is automatically assigned to the team, after the product/component
+selected when the bug was registered. It just waits for someone (as others) to
+take it, to fix or close 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001715.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A></li>
+ <LI>Next message: <A HREF="001717.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1716">[ date ]</a>
+ <a href="thread.html#1716">[ thread ]</a>
+ <a href="subject.html#1716">[ subject ]</a>
+ <a href="author.html#1716">[ 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/2012-January/001717.html b/zarb-ml/mageia-webteam/2012-January/001717.html
new file mode 100644
index 000000000..c670d913e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001717.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+ </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%203025%5D%20English%20page%20has%20different%20donated%0A%20amount%20than%20other%20localised%20versions&In-Reply-To=%3C20120110105711.0A49548AD0%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="001716.html">
+ <LINK REL="Next" HREF="001718.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203025%5D%20English%20page%20has%20different%20donated%0A%20amount%20than%20other%20localised%20versions&In-Reply-To=%3C20120110105711.0A49548AD0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jan 10 11:57:11 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001716.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001718.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#1717">[ date ]</a>
+ <a href="thread.html#1717">[ thread ]</a>
+ <a href="subject.html#1717">[ subject ]</a>
+ <a href="author.html#1717">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3025">https://bugs.mageia.org/show_bug.cgi?id=3025</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|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-10 11:57:10 CET ---
+(In reply to comment #1)
+&gt;<i> This problem still exists.
+</I>
+Fixed in SVN, the wrong variable was used. Will be online in a few minutes.
+
+&gt;<i> Additionally, the link on the English page to the 2012 (?) report results in a 404.
+</I>
+There is no report for 2012 for now.
+
+--
+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="001716.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A></li>
+ <LI>Next message: <A HREF="001718.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#1717">[ date ]</a>
+ <a href="thread.html#1717">[ thread ]</a>
+ <a href="subject.html#1717">[ subject ]</a>
+ <a href="author.html#1717">[ 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/2012-January/001718.html b/zarb-ml/mageia-webteam/2012-January/001718.html
new file mode 100644
index 000000000..23d718b36
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001718.html
@@ -0,0 +1,71 @@
+<!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=%3C20120111200206.D771848C44%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="001717.html">
+ <LINK REL="Next" HREF="001719.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>Marja van Waes</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=%3C20120111200206.D771848C44%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>Wed Jan 11 21:02:06 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001717.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A></li>
+ <LI>Next message: <A HREF="001719.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1718">[ date ]</a>
+ <a href="thread.html#1718">[ thread ]</a>
+ <a href="subject.html#1718">[ subject ]</a>
+ <a href="author.html#1718">[ 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 #6 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-11 21:02:06 CET ---
+@ Fran&#231;ois
+
+Do you think this page makes it more clear for average users?
+<A HREF="https://wiki.mageia.org/en/Mageia.org_user_account">https://wiki.mageia.org/en/Mageia.org_user_account</A>
+
+The old Mageia user accounts FAQ button is going to be replaced with a link to
+the page mentioned above (bug 3674)
+
+--
+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="001717.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A></li>
+ <LI>Next message: <A HREF="001719.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1718">[ date ]</a>
+ <a href="thread.html#1718">[ thread ]</a>
+ <a href="subject.html#1718">[ subject ]</a>
+ <a href="author.html#1718">[ 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/2012-January/001719.html b/zarb-ml/mageia-webteam/2012-January/001719.html
new file mode 100644
index 000000000..fe40bc700
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001719.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be 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%20can%0A%09be%20wrong&In-Reply-To=%3C20120111200636.8701848C49%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="001718.html">
+ <LINK REL="Next" HREF="001720.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20can%0A%09be%20wrong&In-Reply-To=%3C20120111200636.8701848C49%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 11 21:06:36 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001718.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="001720.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#1719">[ date ]</a>
+ <a href="thread.html#1719">[ thread ]</a>
+ <a href="subject.html#1719">[ subject ]</a>
+ <a href="author.html#1719">[ 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 #22 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-11 21:06:36 CET ---
+Pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED.
+
+Please set status to ASSIGNED. If for work flow reasons you can't do that, then
+please put OK on the whiteboard instead.
+
+--
+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="001718.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="001720.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#1719">[ date ]</a>
+ <a href="thread.html#1719">[ thread ]</a>
+ <a href="subject.html#1719">[ subject ]</a>
+ <a href="author.html#1719">[ 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/2012-January/001720.html b/zarb-ml/mageia-webteam/2012-January/001720.html
new file mode 100644
index 000000000..c1c7ecf10
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001720.html
@@ -0,0 +1,68 @@
+<!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=%3C20120111200950.AD69B48C3F%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="001719.html">
+ <LINK REL="Next" HREF="001721.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=%3C20120111200950.AD69B48C3F%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>Wed Jan 11 21:09:50 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001719.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI>Next message: <A HREF="001721.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1720">[ date ]</a>
+ <a href="thread.html#1720">[ thread ]</a>
+ <a href="subject.html#1720">[ subject ]</a>
+ <a href="author.html#1720">[ 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 #7 from Fran&#231;ois Jaouen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">farfouille64 at laposte.net</A>&gt; 2012-01-11 22:09:50 CET ---
+I guess so, provided the average user RTFM ;)
+Maybe a message like :
+&quot;See the FAQ for detailed information on fields&quot;
+would be helpful on the form itself.
+
+--
+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="001719.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI>Next message: <A HREF="001721.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1720">[ date ]</a>
+ <a href="thread.html#1720">[ thread ]</a>
+ <a href="subject.html#1720">[ subject ]</a>
+ <a href="author.html#1720">[ 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/2012-January/001721.html b/zarb-ml/mageia-webteam/2012-January/001721.html
new file mode 100644
index 000000000..1f2f4cb02
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001721.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be 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%20can%0A%09be%20wrong&In-Reply-To=%3C20120111202113.673C848C50%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="001720.html">
+ <LINK REL="Next" HREF="001722.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20can%0A%09be%20wrong&In-Reply-To=%3C20120111202113.673C848C50%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 11 21:21:13 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001720.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="001722.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#1721">[ date ]</a>
+ <a href="thread.html#1721">[ thread ]</a>
+ <a href="subject.html#1721">[ subject ]</a>
+ <a href="author.html#1721">[ 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>
+
+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 |ASSIGNED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</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="001720.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="001722.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#1721">[ date ]</a>
+ <a href="thread.html#1721">[ thread ]</a>
+ <a href="subject.html#1721">[ subject ]</a>
+ <a href="author.html#1721">[ 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/2012-January/001722.html b/zarb-ml/mageia-webteam/2012-January/001722.html
new file mode 100644
index 000000000..023a2c5fa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001722.html
@@ -0,0 +1,84 @@
+<!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=%3C20120113210748.BCF3348E48%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="001721.html">
+ <LINK REL="Next" HREF="001723.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain</H1>
+ <B>Marja van Waes</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=%3C20120113210748.BCF3348E48%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>Fri Jan 13 22:07:48 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001721.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI>Next message: <A HREF="001723.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#1722">[ date ]</a>
+ <a href="thread.html#1722">[ thread ]</a>
+ <a href="subject.html#1722">[ subject ]</a>
+ <a href="author.html#1722">[ 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>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-13 22:07:48 CET ---
+(In reply to comment #0)
+&gt;<i> Usually when users attach .log files the mimetype gets set to text/x-log,
+</I>&gt;<i> Firefox doesn't open that mimetype like it does with text/plain, this is a
+</I>&gt;<i> major annoyance as anyone who wants to examine the log will have to change the
+</I>&gt;<i> mimetype in the Details of the attachment, or download it to view it with any
+</I>&gt;<i> text editor.
+</I>&gt;<i>
+</I>&gt;<i> LpSolit suggested installing an extension that converts text/x-log to
+</I>&gt;<i> text/plain in bugzilla server side (he also said this extension is used in the
+</I>&gt;<i> Mozilla Bugzilla).
+</I>&gt;<i>
+</I>&gt;<i> The extension:
+</I>&gt;<i> <A HREF="http://bzr.mozilla.org/bugzilla/extensions/typesniffer/trunk/files">http://bzr.mozilla.org/bugzilla/extensions/typesniffer/trunk/files</A>
+</I>&gt;<i> it'll need File::MimeInfo::Magic and IO::Scalar to work.
+</I>
+
+@ Fr&#233;d&#233;ric
+@ Dexter
+
+Will this extension be needed in Bugzilla 4, too?
+
+--
+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="001721.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A></li>
+ <LI>Next message: <A HREF="001723.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#1722">[ date ]</a>
+ <a href="thread.html#1722">[ thread ]</a>
+ <a href="subject.html#1722">[ subject ]</a>
+ <a href="author.html#1722">[ 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/2012-January/001723.html b/zarb-ml/mageia-webteam/2012-January/001723.html
new file mode 100644
index 000000000..2edf1eabf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001723.html
@@ -0,0 +1,71 @@
+<!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=%3C20120113210844.BE0D748E4C%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="001722.html">
+ <LINK REL="Next" HREF="001724.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain</H1>
+ <B>Marja van Waes</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=%3C20120113210844.BE0D748E4C%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>Fri Jan 13 22:08:44 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001722.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001724.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1723">[ date ]</a>
+ <a href="thread.html#1723">[ thread ]</a>
+ <a href="subject.html#1723">[ subject ]</a>
+ <a href="author.html#1723">[ 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>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>
+
+--- Comment #5 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-13 22:08:44 CET ---
+(forgot to cc D morgan)
+
+--
+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="001722.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001724.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1723">[ date ]</a>
+ <a href="thread.html#1723">[ thread ]</a>
+ <a href="subject.html#1723">[ subject ]</a>
+ <a href="author.html#1723">[ 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/2012-January/001724.html b/zarb-ml/mageia-webteam/2012-January/001724.html
new file mode 100644
index 000000000..e82dc479a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001724.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 910] Add a check box for security issue
+ </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%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20120113211021.D1B2D48E4D%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="001723.html">
+ <LINK REL="Next" HREF="001725.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 910] Add a check box for security issue</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20120113211021.D1B2D48E4D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 910] Add a check box for security issue">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 13 22:10:21 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001723.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001725.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1724">[ date ]</a>
+ <a href="thread.html#1724">[ thread ]</a>
+ <a href="subject.html#1724">[ subject ]</a>
+ <a href="author.html#1724">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=910">https://bugs.mageia.org/show_bug.cgi?id=910</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-13 22:10:21 CET ---
+Pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED.
+
+Please set status to ASSIGNED. If for work flow reasons you can't do that, then
+please put OK on the whiteboard instead.
+
+--
+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="001723.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001725.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1724">[ date ]</a>
+ <a href="thread.html#1724">[ thread ]</a>
+ <a href="subject.html#1724">[ subject ]</a>
+ <a href="author.html#1724">[ 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/2012-January/001725.html b/zarb-ml/mageia-webteam/2012-January/001725.html
new file mode 100644
index 000000000..7e0d91cdd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001725.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 912] Custom field for CVE
+ </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%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20120113211308.0A13E48E51%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="001724.html">
+ <LINK REL="Next" HREF="001726.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 912] Custom field for CVE</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20120113211308.0A13E48E51%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 912] Custom field for CVE">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 13 22:13:08 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001724.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="001726.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1725">[ date ]</a>
+ <a href="thread.html#1725">[ thread ]</a>
+ <a href="subject.html#1725">[ subject ]</a>
+ <a href="author.html#1725">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=912">https://bugs.mageia.org/show_bug.cgi?id=912</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Depends on| |40
+
+--- Comment #6 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-13 22:13:08 CET ---
+setting depend on bug 40
+
+--
+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="001724.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="001726.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1725">[ date ]</a>
+ <a href="thread.html#1725">[ thread ]</a>
+ <a href="subject.html#1725">[ subject ]</a>
+ <a href="author.html#1725">[ 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/2012-January/001726.html b/zarb-ml/mageia-webteam/2012-January/001726.html
new file mode 100644
index 000000000..e90d26e78
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001726.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+ </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.3&In-Reply-To=%3C20120113211308.E7AEE48E54%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="001725.html">
+ <LINK REL="Next" HREF="001727.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0.3&In-Reply-To=%3C20120113211308.E7AEE48E54%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 13 22:13:08 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001725.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="001727.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1726">[ date ]</a>
+ <a href="thread.html#1726">[ thread ]</a>
+ <a href="subject.html#1726">[ subject ]</a>
+ <a href="author.html#1726">[ 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>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |912
+
+--
+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="001725.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="001727.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1726">[ date ]</a>
+ <a href="thread.html#1726">[ thread ]</a>
+ <a href="subject.html#1726">[ subject ]</a>
+ <a href="author.html#1726">[ 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/2012-January/001727.html b/zarb-ml/mageia-webteam/2012-January/001727.html
new file mode 100644
index 000000000..a00a2f61b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001727.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+ </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%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20120113212025.B2FCF48E6B%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="001726.html">
+ <LINK REL="Next" HREF="001728.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20120113212025.B2FCF48E6B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 13 22:20:25 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001726.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001728.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1727">[ date ]</a>
+ <a href="thread.html#1727">[ thread ]</a>
+ <a href="subject.html#1727">[ subject ]</a>
+ <a href="author.html#1727">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2997">https://bugs.mageia.org/show_bug.cgi?id=2997</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #6 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-13 22:20:25 CET ---
+Pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW
+
+Please set status to ASSIGNED. If for work flow reasons you can't do that, then
+please put OK on the whiteboard instead. (I filter the OK bugs away when
+looking for stale new and reopened 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001726.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001728.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1727">[ date ]</a>
+ <a href="thread.html#1727">[ thread ]</a>
+ <a href="subject.html#1727">[ subject ]</a>
+ <a href="author.html#1727">[ 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/2012-January/001728.html b/zarb-ml/mageia-webteam/2012-January/001728.html
new file mode 100644
index 000000000..89da39800
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001728.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+ </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%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20120113212943.8222448E6E%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="001727.html">
+ <LINK REL="Next" HREF="001729.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202997%5D%20Top%20banner%20in%20blog%20page%20not%20complete%20in%0A%20english%2C%20and%20totally%20missing%20for%20all%20other%20languages&In-Reply-To=%3C20120113212943.8222448E6E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 13 22:29:43 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001727.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001729.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1728">[ date ]</a>
+ <a href="thread.html#1728">[ thread ]</a>
+ <a href="subject.html#1728">[ subject ]</a>
+ <a href="author.html#1728">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2997">https://bugs.mageia.org/show_bug.cgi?id=2997</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</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="001727.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001729.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1728">[ date ]</a>
+ <a href="thread.html#1728">[ thread ]</a>
+ <a href="subject.html#1728">[ subject ]</a>
+ <a href="author.html#1728">[ 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/2012-January/001729.html b/zarb-ml/mageia-webteam/2012-January/001729.html
new file mode 100644
index 000000000..c0413f7f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001729.html
@@ -0,0 +1,68 @@
+<!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=%3C20120113220459.67E1648E95%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="001728.html">
+ <LINK REL="Next" HREF="001730.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=%3C20120113220459.67E1648E95%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 13 23:04:59 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001728.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001730.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#1729">[ date ]</a>
+ <a href="thread.html#1729">[ thread ]</a>
+ <a href="subject.html#1729">[ subject ]</a>
+ <a href="author.html#1729">[ 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
+----------------------------------------------------------------------------
+ Status|NEW |ASSIGNED
+
+--
+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="001728.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A></li>
+ <LI>Next message: <A HREF="001730.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#1729">[ date ]</a>
+ <a href="thread.html#1729">[ thread ]</a>
+ <a href="subject.html#1729">[ subject ]</a>
+ <a href="author.html#1729">[ 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/2012-January/001730.html b/zarb-ml/mageia-webteam/2012-January/001730.html
new file mode 100644
index 000000000..1d244a31d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001730.html
@@ -0,0 +1,69 @@
+<!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=%3C20120113220533.B755448E94%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="001729.html">
+ <LINK REL="Next" HREF="001731.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain</H1>
+ <B>Nicolas Vigier</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=%3C20120113220533.B755448E94%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>Fri Jan 13 23:05:33 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001729.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="001731.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1730">[ date ]</a>
+ <a href="thread.html#1730">[ thread ]</a>
+ <a href="subject.html#1730">[ subject ]</a>
+ <a href="author.html#1730">[ 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>
+
+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 |ASSIGNED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</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="001729.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="001731.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1730">[ date ]</a>
+ <a href="thread.html#1730">[ thread ]</a>
+ <a href="subject.html#1730">[ subject ]</a>
+ <a href="author.html#1730">[ 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/2012-January/001731.html b/zarb-ml/mageia-webteam/2012-January/001731.html
new file mode 100644
index 000000000..eeb271e23
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001731.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in 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%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20120113220613.337A448E97%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="001730.html">
+ <LINK REL="Next" HREF="001732.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20120113220613.337A448E97%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 13 23:06:13 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001730.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001732.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1731">[ date ]</a>
+ <a href="thread.html#1731">[ thread ]</a>
+ <a href="subject.html#1731">[ subject ]</a>
+ <a href="author.html#1731">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1118">https://bugs.mageia.org/show_bug.cgi?id=1118</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 |ASSIGNED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</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="001730.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001732.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1731">[ date ]</a>
+ <a href="thread.html#1731">[ thread ]</a>
+ <a href="subject.html#1731">[ subject ]</a>
+ <a href="author.html#1731">[ 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/2012-January/001732.html b/zarb-ml/mageia-webteam/2012-January/001732.html
new file mode 100644
index 000000000..dd2f762f4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001732.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+ </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%201734%5D%20Wrong%20link%20for%20%22forgot%20password%22&In-Reply-To=%3C20120113220816.484CC48E9D%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="001731.html">
+ <LINK REL="Next" HREF="001733.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201734%5D%20Wrong%20link%20for%20%22forgot%20password%22&In-Reply-To=%3C20120113220816.484CC48E9D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 13 23:08:16 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001731.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001733.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1732">[ date ]</a>
+ <a href="thread.html#1732">[ thread ]</a>
+ <a href="subject.html#1732">[ subject ]</a>
+ <a href="author.html#1732">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1734">https://bugs.mageia.org/show_bug.cgi?id=1734</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 |ASSIGNED
+
+--
+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="001731.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001733.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1732">[ date ]</a>
+ <a href="thread.html#1732">[ thread ]</a>
+ <a href="subject.html#1732">[ subject ]</a>
+ <a href="author.html#1732">[ 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/2012-January/001733.html b/zarb-ml/mageia-webteam/2012-January/001733.html
new file mode 100644
index 000000000..077d71ee8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001733.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+ </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%201868%5D%20drakbug%20should%20first%20check%20if%20a%20bug%20has%0A%20already%20been%20filed%20about%20some%20given%20error%20before%20filing%20a%20new%20one&In-Reply-To=%3C20120113221446.5AB2B48EAA%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="001732.html">
+ <LINK REL="Next" HREF="001734.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201868%5D%20drakbug%20should%20first%20check%20if%20a%20bug%20has%0A%20already%20been%20filed%20about%20some%20given%20error%20before%20filing%20a%20new%20one&In-Reply-To=%3C20120113221446.5AB2B48EAA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 13 23:14:46 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001732.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI>Next message: <A HREF="001734.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#1733">[ date ]</a>
+ <a href="thread.html#1733">[ thread ]</a>
+ <a href="subject.html#1733">[ subject ]</a>
+ <a href="author.html#1733">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1868">https://bugs.mageia.org/show_bug.cgi?id=1868</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 |ASSIGNED
+ 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; 2012-01-14 00:14:44 CET ---
+Do you know how this could be done in Bugzilla ?
+
+--
+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="001732.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A></li>
+ <LI>Next message: <A HREF="001734.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#1733">[ date ]</a>
+ <a href="thread.html#1733">[ thread ]</a>
+ <a href="subject.html#1733">[ subject ]</a>
+ <a href="author.html#1733">[ 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/2012-January/001734.html b/zarb-ml/mageia-webteam/2012-January/001734.html
new file mode 100644
index 000000000..5332a2762
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001734.html
@@ -0,0 +1,68 @@
+<!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=%3C20120113234555.2C1B248EBA%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="001733.html">
+ <LINK REL="Next" HREF="001735.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain</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%20907%5D%20text/x-log%20attachments%20aren%27t%20opened%20in%0A%20Firefox%20like%20text/plain&In-Reply-To=%3C20120113234555.2C1B248EBA%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>Sat Jan 14 00:45:55 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001733.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI>Next message: <A HREF="001735.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#1734">[ date ]</a>
+ <a href="thread.html#1734">[ thread ]</a>
+ <a href="subject.html#1734">[ subject ]</a>
+ <a href="author.html#1734">[ 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>
+
+--- 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; 2012-01-14 00:45:54 CET ---
+(In reply to comment #4)
+&gt;<i> Will this extension be needed in Bugzilla 4, too?
+</I>
+Yes, the MIME type detection didn't change between 3.6 and 4.0.
+
+--
+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="001733.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI>Next message: <A HREF="001735.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#1734">[ date ]</a>
+ <a href="thread.html#1734">[ thread ]</a>
+ <a href="subject.html#1734">[ subject ]</a>
+ <a href="author.html#1734">[ 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/2012-January/001735.html b/zarb-ml/mageia-webteam/2012-January/001735.html
new file mode 100644
index 000000000..59e01604e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001735.html
@@ -0,0 +1,68 @@
+<!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=%3C20120114093006.17D6648EA5%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="001734.html">
+ <LINK REL="Next" HREF="001736.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain</H1>
+ <B>Romain d'Alverny</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=%3C20120114093006.17D6648EA5%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>Sat Jan 14 10:30:06 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001734.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001736.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1735">[ date ]</a>
+ <a href="thread.html#1735">[ thread ]</a>
+ <a href="subject.html#1735">[ subject ]</a>
+ <a href="author.html#1735">[ 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>
+
+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">mageia-webteam at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="001734.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001736.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1735">[ date ]</a>
+ <a href="thread.html#1735">[ thread ]</a>
+ <a href="subject.html#1735">[ subject ]</a>
+ <a href="author.html#1735">[ 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/2012-January/001736.html b/zarb-ml/mageia-webteam/2012-January/001736.html
new file mode 100644
index 000000000..2853a0a71
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001736.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+ </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%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20120116202427.0CD6B49387%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="001735.html">
+ <LINK REL="Next" HREF="001737.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201171%5D%20Bugzilla%20should%20let%20people%20use%20their%0A%09email%20to%20login%20too&In-Reply-To=%3C20120116202427.0CD6B49387%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 16 21:24:27 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001735.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001737.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1736">[ date ]</a>
+ <a href="thread.html#1736">[ thread ]</a>
+ <a href="subject.html#1736">[ subject ]</a>
+ <a href="author.html#1736">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1171">https://bugs.mageia.org/show_bug.cgi?id=1171</A>
+
+--- Comment #8 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-16 21:24:27 CET ---
+Pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED.
+
+Please set status to ASSIGNED. If for work flow reasons you can't do that, then
+please put OK on the whiteboard instead.
+
+--
+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="001735.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI>Next message: <A HREF="001737.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1736">[ date ]</a>
+ <a href="thread.html#1736">[ thread ]</a>
+ <a href="subject.html#1736">[ subject ]</a>
+ <a href="author.html#1736">[ 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/2012-January/001737.html b/zarb-ml/mageia-webteam/2012-January/001737.html
new file mode 100644
index 000000000..e614d596f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001737.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+ </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%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20120118072106.9079349551%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="001736.html">
+ <LINK REL="Next" HREF="001738.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201568%5D%20Upgrading%20from%20Mandriva%202010.x%20using%0A%20mgaonline%20does%20not%20work&In-Reply-To=%3C20120118072106.9079349551%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 18 08:21:06 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001736.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="001738.html">[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1737">[ date ]</a>
+ <a href="thread.html#1737">[ thread ]</a>
+ <a href="subject.html#1737">[ subject ]</a>
+ <a href="author.html#1737">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1568">https://bugs.mageia.org/show_bug.cgi?id=1568</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |OLD
+
+--- Comment #12 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-18 09:21:06 CET ---
+(In reply to comment #11)
+&gt;<i> actually, since this is a mdv upgrade issue, i assume mdv upgrades aren't
+</I>&gt;<i> supported in 2 or cauldron, only 1, so either we fix this for 1 or we close as
+</I>&gt;<i> OLD?
+</I>
+And the past months no one confirmed it still exists, so either no one chooses
+this way to upgrade anymore, or it got 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="001736.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A></li>
+ <LI>Next message: <A HREF="001738.html">[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1737">[ date ]</a>
+ <a href="thread.html#1737">[ thread ]</a>
+ <a href="subject.html#1737">[ subject ]</a>
+ <a href="author.html#1737">[ 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/2012-January/001738.html b/zarb-ml/mageia-webteam/2012-January/001738.html
new file mode 100644
index 000000000..c407b8dc6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001738.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks
+ </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%204183%5D%20%5BNew%5D%20https%3A//forums.mageia.org/en/%20has%0A%09gone%20all%20blocks&In-Reply-To=%3Cbug-4183-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="001737.html">
+ <LINK REL="Next" HREF="001739.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks</H1>
+ <B>William Kenney</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204183%5D%20%5BNew%5D%20https%3A//forums.mageia.org/en/%20has%0A%09gone%20all%20blocks&In-Reply-To=%3Cbug-4183-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 18 17:35:41 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001737.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001739.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1738">[ date ]</a>
+ <a href="thread.html#1738">[ thread ]</a>
+ <a href="subject.html#1738">[ subject ]</a>
+ <a href="author.html#1738">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4183">https://bugs.mageia.org/show_bug.cgi?id=4183</A>
+
+ Summary: <A HREF="https://forums.mageia.org/en/">https://forums.mageia.org/en/</A> has gone all blocks
+ 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">wilcal.int at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">forums-discuss at ml.mageia.org</A>
+
+
+I've tried three different browsers and
+they're all the same.
+
+--
+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="001737.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A></li>
+ <LI>Next message: <A HREF="001739.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1738">[ date ]</a>
+ <a href="thread.html#1738">[ thread ]</a>
+ <a href="subject.html#1738">[ subject ]</a>
+ <a href="author.html#1738">[ 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/2012-January/001739.html b/zarb-ml/mageia-webteam/2012-January/001739.html
new file mode 100644
index 000000000..5a464742e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001739.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+ </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%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118163726.375E34963C%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="001738.html">
+ <LINK REL="Next" HREF="001740.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks</H1>
+ <B>William Kenney</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118163726.375E34963C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 18 17:37:26 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001738.html">[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001740.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1739">[ date ]</a>
+ <a href="thread.html#1739">[ thread ]</a>
+ <a href="subject.html#1739">[ subject ]</a>
+ <a href="author.html#1739">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4183">https://bugs.mageia.org/show_bug.cgi?id=4183</A>
+
+--- Comment #1 from William Kenney &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">wilcal.int at gmail.com</A>&gt; 2012-01-18 17:37:26 CET ---
+Maybe this is a SOPA protest thing.
+
+--
+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="001738.html">[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001740.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1739">[ date ]</a>
+ <a href="thread.html#1739">[ thread ]</a>
+ <a href="subject.html#1739">[ subject ]</a>
+ <a href="author.html#1739">[ 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/2012-January/001740.html b/zarb-ml/mageia-webteam/2012-January/001740.html
new file mode 100644
index 000000000..e8bd284fe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001740.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+ </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%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118164128.E294749643%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="001739.html">
+ <LINK REL="Next" HREF="001741.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118164128.E294749643%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 18 17:41:28 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001739.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001741.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1740">[ date ]</a>
+ <a href="thread.html#1740">[ thread ]</a>
+ <a href="subject.html#1740">[ subject ]</a>
+ <a href="author.html#1740">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4183">https://bugs.mageia.org/show_bug.cgi?id=4183</A>
+
+Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>
+
+--- Comment #2 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2012-01-18 17:41:29 CET ---
+Not &quot;may be&quot; but yes, it is. It was announced yesterday evening on
+mageia-discuss and in the forums and the blog page.
+
+--
+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="001739.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001741.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1740">[ date ]</a>
+ <a href="thread.html#1740">[ thread ]</a>
+ <a href="subject.html#1740">[ subject ]</a>
+ <a href="author.html#1740">[ 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/2012-January/001741.html b/zarb-ml/mageia-webteam/2012-January/001741.html
new file mode 100644
index 000000000..7380f001c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001741.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+ </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%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118164226.CE4394964D%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="001740.html">
+ <LINK REL="Next" HREF="001742.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118164226.CE4394964D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 18 17:42:26 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001740.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001742.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1741">[ date ]</a>
+ <a href="thread.html#1741">[ thread ]</a>
+ <a href="subject.html#1741">[ subject ]</a>
+ <a href="author.html#1741">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4183">https://bugs.mageia.org/show_bug.cgi?id=4183</A>
+
+--- Comment #3 from Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; 2012-01-18 17:42:27 CET ---
+BTW: on top of the pages is a link &quot;Remove this&quot; - click it and the page goes
+back to normal.
+
+--
+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="001740.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001742.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1741">[ date ]</a>
+ <a href="thread.html#1741">[ thread ]</a>
+ <a href="subject.html#1741">[ subject ]</a>
+ <a href="author.html#1741">[ 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/2012-January/001742.html b/zarb-ml/mageia-webteam/2012-January/001742.html
new file mode 100644
index 000000000..a0425b03a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001742.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+ </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%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118164329.8F61149654%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="001741.html">
+ <LINK REL="Next" HREF="001743.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks</H1>
+ <B>Maat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118164329.8F61149654%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 18 17:43:29 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001741.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001743.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1742">[ date ]</a>
+ <a href="thread.html#1742">[ thread ]</a>
+ <a href="subject.html#1742">[ subject ]</a>
+ <a href="author.html#1742">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4183">https://bugs.mageia.org/show_bug.cgi?id=4183</A>
+
+Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |INVALID
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>
+
+--- Comment #4 from Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; 2012-01-18 17:43:29 CET ---
+on black header the top of the page you can click on &quot;remove this&quot; to use the
+forum...
+
+--
+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="001741.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001743.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1742">[ date ]</a>
+ <a href="thread.html#1742">[ thread ]</a>
+ <a href="subject.html#1742">[ subject ]</a>
+ <a href="author.html#1742">[ 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/2012-January/001743.html b/zarb-ml/mageia-webteam/2012-January/001743.html
new file mode 100644
index 000000000..bba94cffa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001743.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+ </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%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118164425.C417E49650%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="001742.html">
+ <LINK REL="Next" HREF="001744.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks</H1>
+ <B>Maat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118164425.C417E49650%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 18 17:44:25 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001742.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001744.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1743">[ date ]</a>
+ <a href="thread.html#1743">[ thread ]</a>
+ <a href="subject.html#1743">[ subject ]</a>
+ <a href="author.html#1743">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4183">https://bugs.mageia.org/show_bug.cgi?id=4183</A>
+
+--- Comment #5 from Maat &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; 2012-01-18 17:44:25 CET ---
+Wolfgang was quicker than i ^^
+
+--
+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="001742.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001744.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1743">[ date ]</a>
+ <a href="thread.html#1743">[ thread ]</a>
+ <a href="subject.html#1743">[ subject ]</a>
+ <a href="author.html#1743">[ 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/2012-January/001744.html b/zarb-ml/mageia-webteam/2012-January/001744.html
new file mode 100644
index 000000000..bdc5bedfc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001744.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+ </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%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118170125.6EC6549657%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="001743.html">
+ <LINK REL="Next" HREF="001745.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118170125.6EC6549657%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 18 18:01:25 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001743.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001745.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1744">[ date ]</a>
+ <a href="thread.html#1744">[ thread ]</a>
+ <a href="subject.html#1744">[ subject ]</a>
+ <a href="author.html#1744">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4183">https://bugs.mageia.org/show_bug.cgi?id=4183</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>
+
+--- Comment #6 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2012-01-18 18:01:25 CET ---
+Already answered him via PM in the forums ;)
+
+--
+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="001743.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001745.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1744">[ date ]</a>
+ <a href="thread.html#1744">[ thread ]</a>
+ <a href="subject.html#1744">[ subject ]</a>
+ <a href="author.html#1744">[ 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/2012-January/001745.html b/zarb-ml/mageia-webteam/2012-January/001745.html
new file mode 100644
index 000000000..e5d26285e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001745.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+ </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%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118170549.52D1D4965C%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="001744.html">
+ <LINK REL="Next" HREF="001746.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks</H1>
+ <B>William Kenney</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204183%5D%20https%3A//forums.mageia.org/en/%20has%20gone%0A%09all%20blocks&In-Reply-To=%3C20120118170549.52D1D4965C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 18 18:05:49 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001744.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001746.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1745">[ date ]</a>
+ <a href="thread.html#1745">[ thread ]</a>
+ <a href="subject.html#1745">[ subject ]</a>
+ <a href="author.html#1745">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4183">https://bugs.mageia.org/show_bug.cgi?id=4183</A>
+
+--- Comment #7 from William Kenney &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">wilcal.int at gmail.com</A>&gt; 2012-01-18 19:05:49 CET ---
+Thanks, got it. Sorry I'm asleep when you
+guys announced this 9hrs difference.
+
+--
+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="001744.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001746.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1745">[ date ]</a>
+ <a href="thread.html#1745">[ thread ]</a>
+ <a href="subject.html#1745">[ subject ]</a>
+ <a href="author.html#1745">[ 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/2012-January/001746.html b/zarb-ml/mageia-webteam/2012-January/001746.html
new file mode 100644
index 000000000..c19073273
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001746.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+ </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%201529%5D%20bad%20encoding%20for%20ru%20and%20ua&In-Reply-To=%3C20120120071845.82CAD491ED%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="001745.html">
+ <LINK REL="Next" HREF="001747.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1529] bad encoding for ru and ua</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201529%5D%20bad%20encoding%20for%20ru%20and%20ua&In-Reply-To=%3C20120120071845.82CAD491ED%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1529] bad encoding for ru and ua">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 20 08:18:45 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001745.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001747.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1746">[ date ]</a>
+ <a href="thread.html#1746">[ thread ]</a>
+ <a href="subject.html#1746">[ subject ]</a>
+ <a href="author.html#1746">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</A>
+
+--- Comment #2 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-20 08:18:45 CET ---
+I understand this is about identity.mageia.org
+
+Pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED.
+
+Didn't it get solved yet?
+
+--
+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="001745.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A></li>
+ <LI>Next message: <A HREF="001747.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1746">[ date ]</a>
+ <a href="thread.html#1746">[ thread ]</a>
+ <a href="subject.html#1746">[ subject ]</a>
+ <a href="author.html#1746">[ 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/2012-January/001747.html b/zarb-ml/mageia-webteam/2012-January/001747.html
new file mode 100644
index 000000000..ebbcb6b02
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001747.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+ </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%201529%5D%20bad%20encoding%20for%20ru%20and%20ua&In-Reply-To=%3C20120120083059.DDC78497E1%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="001746.html">
+ <LINK REL="Next" HREF="001748.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1529] bad encoding for ru and ua</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201529%5D%20bad%20encoding%20for%20ru%20and%20ua&In-Reply-To=%3C20120120083059.DDC78497E1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1529] bad encoding for ru and ua">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 20 09:30:59 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001746.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI>Next message: <A HREF="001748.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1747">[ date ]</a>
+ <a href="thread.html#1747">[ thread ]</a>
+ <a href="subject.html#1747">[ subject ]</a>
+ <a href="author.html#1747">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1529">https://bugs.mageia.org/show_bug.cgi?id=1529</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">bgmilne at zarb.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="001746.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI>Next message: <A HREF="001748.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1747">[ date ]</a>
+ <a href="thread.html#1747">[ thread ]</a>
+ <a href="subject.html#1747">[ subject ]</a>
+ <a href="author.html#1747">[ 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/2012-January/001748.html b/zarb-ml/mageia-webteam/2012-January/001748.html
new file mode 100644
index 000000000..c0c4a28c4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001748.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20120120124517.3973749844%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="001747.html">
+ <LINK REL="Next" HREF="001749.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20120120124517.3973749844%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 20 13:45:17 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001747.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI>Next message: <A HREF="001749.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1748">[ date ]</a>
+ <a href="thread.html#1748">[ thread ]</a>
+ <a href="subject.html#1748">[ subject ]</a>
+ <a href="author.html#1748">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</A>
+
+--- Comment #10 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-20 14:45:16 CET ---
+Pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED.
+
+What are the plans for Mageia 2, in this regard?
+
+--
+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="001747.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A></li>
+ <LI>Next message: <A HREF="001749.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1748">[ date ]</a>
+ <a href="thread.html#1748">[ thread ]</a>
+ <a href="subject.html#1748">[ subject ]</a>
+ <a href="author.html#1748">[ 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/2012-January/001749.html b/zarb-ml/mageia-webteam/2012-January/001749.html
new file mode 100644
index 000000000..a2ca4f2d1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001749.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki 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%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20120120142327.EB2F4498C8%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="001748.html">
+ <LINK REL="Next" HREF="001750.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201541%5D%20Sync%20the%20release%20notes%20with%20the%20release%0A%09notes%20wiki%20page&In-Reply-To=%3C20120120142327.EB2F4498C8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 20 15:23:27 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001748.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001750.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1749">[ date ]</a>
+ <a href="thread.html#1749">[ thread ]</a>
+ <a href="subject.html#1749">[ subject ]</a>
+ <a href="author.html#1749">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1541">https://bugs.mageia.org/show_bug.cgi?id=1541</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|NEW |RESOLVED
+ Resolution| |WONTFIX
+
+--- Comment #11 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-20 15:23:27 CET ---
+WONTFIX for Mageia 1.
+
+As for next time (Mageia 2) :
+ - if release notes are to change after the release (which I still find
+strange), I would have suggested that we kill the product release pages from
+www and let this live only on the wiki.
+ - but I don't think it will fix the whole thing.
+ - this may be related to bug 2565 where there's a proposed design to always
+show version of &quot;big&quot; components of a given release, once they are updated.
+
+--
+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="001748.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001750.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1749">[ date ]</a>
+ <a href="thread.html#1749">[ thread ]</a>
+ <a href="subject.html#1749">[ subject ]</a>
+ <a href="author.html#1749">[ 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/2012-January/001750.html b/zarb-ml/mageia-webteam/2012-January/001750.html
new file mode 100644
index 000000000..d609c1ba4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001750.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+ </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%201868%5D%20drakbug%20should%20first%20check%20if%20a%20bug%20has%0A%20already%20been%20filed%20about%20some%20given%20error%20before%20filing%20a%20new%20one&In-Reply-To=%3C20120120190558.AA5A7498D5%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="001749.html">
+ <LINK REL="Next" HREF="001751.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one</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%201868%5D%20drakbug%20should%20first%20check%20if%20a%20bug%20has%0A%20already%20been%20filed%20about%20some%20given%20error%20before%20filing%20a%20new%20one&In-Reply-To=%3C20120120190558.AA5A7498D5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 20 20:05:58 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001749.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001751.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1750">[ date ]</a>
+ <a href="thread.html#1750">[ thread ]</a>
+ <a href="subject.html#1750">[ subject ]</a>
+ <a href="author.html#1750">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1868">https://bugs.mageia.org/show_bug.cgi?id=1868</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
+----------------------------------------------------------------------------
+ Depends on| |40
+
+--- Comment #3 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-01-20 20:05:58 CET ---
+(In reply to comment #2)
+&gt;<i> Do you know how this could be done in Bugzilla ?
+</I>
+With an extension. This shouldn't be too hard to do. But first upgrade to
+Bugzilla 4.0.
+
+--
+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="001749.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A></li>
+ <LI>Next message: <A HREF="001751.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1750">[ date ]</a>
+ <a href="thread.html#1750">[ thread ]</a>
+ <a href="subject.html#1750">[ subject ]</a>
+ <a href="author.html#1750">[ 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/2012-January/001751.html b/zarb-ml/mageia-webteam/2012-January/001751.html
new file mode 100644
index 000000000..6fd8df16d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001751.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+ </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.3&In-Reply-To=%3C20120120190559.5EE61498DB%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="001750.html">
+ <LINK REL="Next" HREF="001752.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3</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.3&In-Reply-To=%3C20120120190559.5EE61498DB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 20 20:05:59 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001750.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI>Next message: <A HREF="001752.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1751">[ date ]</a>
+ <a href="thread.html#1751">[ thread ]</a>
+ <a href="subject.html#1751">[ subject ]</a>
+ <a href="author.html#1751">[ 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>
+
+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
+----------------------------------------------------------------------------
+ Blocks| |1868
+
+--
+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="001750.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A></li>
+ <LI>Next message: <A HREF="001752.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1751">[ date ]</a>
+ <a href="thread.html#1751">[ thread ]</a>
+ <a href="subject.html#1751">[ subject ]</a>
+ <a href="author.html#1751">[ 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/2012-January/001752.html b/zarb-ml/mageia-webteam/2012-January/001752.html
new file mode 100644
index 000000000..07f928c1a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001752.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+ </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.3&In-Reply-To=%3C20120120190627.79C85498E2%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="001751.html">
+ <LINK REL="Next" HREF="001753.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3</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.3&In-Reply-To=%3C20120120190627.79C85498E2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jan 20 20:06:27 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001751.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001753.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1752">[ date ]</a>
+ <a href="thread.html#1752">[ thread ]</a>
+ <a href="subject.html#1752">[ subject ]</a>
+ <a href="author.html#1752">[ 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 #24 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-01-20 20:06:27 CET ---
+(In reply to comment #23)
+&gt;<i> our templates will be compatible ?
+</I>
+Which templates?
+
+--
+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="001751.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001753.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1752">[ date ]</a>
+ <a href="thread.html#1752">[ thread ]</a>
+ <a href="subject.html#1752">[ subject ]</a>
+ <a href="author.html#1752">[ 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/2012-January/001753.html b/zarb-ml/mageia-webteam/2012-January/001753.html
new file mode 100644
index 000000000..797f95416
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001753.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1797] All forums need to refer to each other
+ </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%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20120123190947.F084249E53%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="001752.html">
+ <LINK REL="Next" HREF="001754.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1797] All forums need to refer to each other</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20120123190947.F084249E53%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1797] All forums need to refer to each other">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 23 20:09:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001752.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001754.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1753">[ date ]</a>
+ <a href="thread.html#1753">[ thread ]</a>
+ <a href="subject.html#1753">[ subject ]</a>
+ <a href="author.html#1753">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</A>
+
+--- Comment #4 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-23 20:09:47 CET ---
+Pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED.
+
+Please set status to ASSIGNED, or, if for work flow reasons you can't do that,
+put OK on the whiteboard instead.
+
+--
+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="001752.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A></li>
+ <LI>Next message: <A HREF="001754.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1753">[ date ]</a>
+ <a href="thread.html#1753">[ thread ]</a>
+ <a href="subject.html#1753">[ subject ]</a>
+ <a href="author.html#1753">[ 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/2012-January/001754.html b/zarb-ml/mageia-webteam/2012-January/001754.html
new file mode 100644
index 000000000..ad35b0589
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001754.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+ </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%201798%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3C20120123191033.347BC49E34%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="001753.html">
+ <LINK REL="Next" HREF="001755.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201798%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3C20120123191033.347BC49E34%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 23 20:10:33 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001753.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001755.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1754">[ date ]</a>
+ <a href="thread.html#1754">[ thread ]</a>
+ <a href="subject.html#1754">[ subject ]</a>
+ <a href="author.html#1754">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-23 21:10:33 CET ---
+Pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED.
+
+Please set status to ASSIGNED,or, if for work flow reasons you can't do that,
+put OK on the whiteboard instead.
+
+--
+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="001753.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001755.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1754">[ date ]</a>
+ <a href="thread.html#1754">[ thread ]</a>
+ <a href="subject.html#1754">[ subject ]</a>
+ <a href="author.html#1754">[ 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/2012-January/001755.html b/zarb-ml/mageia-webteam/2012-January/001755.html
new file mode 100644
index 000000000..38924e2f9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001755.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+ </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%203049%5D%20%22simple%22%20bug-entry%20form%20doesn%27t%20allow%0A%20direct%20attachment%20%28and%20shows%20URL%20entry%2C%0A%20while%20it%20is%20an%20%22advanced%22%20field%20in%20the%20expert%27s%20version%29&In-Reply-To=%3C20120123193715.9AF2A49E73%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="001754.html">
+ <LINK REL="Next" HREF="001756.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203049%5D%20%22simple%22%20bug-entry%20form%20doesn%27t%20allow%0A%20direct%20attachment%20%28and%20shows%20URL%20entry%2C%0A%20while%20it%20is%20an%20%22advanced%22%20field%20in%20the%20expert%27s%20version%29&In-Reply-To=%3C20120123193715.9AF2A49E73%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 23 20:37:15 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001754.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001756.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1755">[ date ]</a>
+ <a href="thread.html#1755">[ thread ]</a>
+ <a href="subject.html#1755">[ subject ]</a>
+ <a href="author.html#1755">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3049">https://bugs.mageia.org/show_bug.cgi?id=3049</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-23 20:37:15 CET ---
+Mageia Bugzilla will be upgraded to version 4.0.x soon. Let's wait and see
+whether any of this works different, then :)
+
+--
+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="001754.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001756.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1755">[ date ]</a>
+ <a href="thread.html#1755">[ thread ]</a>
+ <a href="subject.html#1755">[ subject ]</a>
+ <a href="author.html#1755">[ 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/2012-January/001756.html b/zarb-ml/mageia-webteam/2012-January/001756.html
new file mode 100644
index 000000000..203549f1c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001756.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+ </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%203144%5D%20svn%3Alog%20edits%20not%20reflected%20in%0A%09svnweb.mageia.org&In-Reply-To=%3C20120125071556.5A10E4A029%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="001755.html">
+ <LINK REL="Next" HREF="001757.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203144%5D%20svn%3Alog%20edits%20not%20reflected%20in%0A%09svnweb.mageia.org&In-Reply-To=%3C20120125071556.5A10E4A029%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 25 08:15:56 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001755.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI>Next message: <A HREF="001757.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1756">[ date ]</a>
+ <a href="thread.html#1756">[ thread ]</a>
+ <a href="subject.html#1756">[ subject ]</a>
+ <a href="author.html#1756">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3144">https://bugs.mageia.org/show_bug.cgi?id=3144</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-25 08:15:56 CET ---
+Pinging. because nothing happened to this report since more than 3 months ago,
+and it still has the status NEW or REOPENED.
+
+Please set status to ASSIGNED if you think this bug was assigned correctly. If
+for work flow reasons you can't do that, then please put OK on the whiteboard
+instead. Don't change anything if you want to be pinged by me here again ;)
+
+TBH, I don't understand this bug report (I should learn to package, there are
+more bug reports I don't understand because I haven't learnt to), but my
+ignorant mind wonders whether this isn't a Infrastructure - Buildsystem bug.
+
+--
+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="001755.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A></li>
+ <LI>Next message: <A HREF="001757.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1756">[ date ]</a>
+ <a href="thread.html#1756">[ thread ]</a>
+ <a href="subject.html#1756">[ subject ]</a>
+ <a href="author.html#1756">[ 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/2012-January/001757.html b/zarb-ml/mageia-webteam/2012-January/001757.html
new file mode 100644
index 000000000..a119ab3af
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001757.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+ </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%203144%5D%20svn%3Alog%20edits%20not%20reflected%20in%0A%09svnweb.mageia.org&In-Reply-To=%3C20120125120532.766F24A520%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="001756.html">
+ <LINK REL="Next" HREF="001758.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203144%5D%20svn%3Alog%20edits%20not%20reflected%20in%0A%09svnweb.mageia.org&In-Reply-To=%3C20120125120532.766F24A520%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 25 13:05:32 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001756.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001758.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1757">[ date ]</a>
+ <a href="thread.html#1757">[ thread ]</a>
+ <a href="subject.html#1757">[ subject ]</a>
+ <a href="author.html#1757">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3144">https://bugs.mageia.org/show_bug.cgi?id=3144</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-25 14:05:32 CET ---
+Reassigning. But this looks more like a upstream bug.
+
+--
+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="001756.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001758.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1757">[ date ]</a>
+ <a href="thread.html#1757">[ thread ]</a>
+ <a href="subject.html#1757">[ subject ]</a>
+ <a href="author.html#1757">[ 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/2012-January/001758.html b/zarb-ml/mageia-webteam/2012-January/001758.html
new file mode 100644
index 000000000..48f18680b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001758.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+ </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%203144%5D%20svn%3Alog%20edits%20not%20reflected%20in%0A%09svnweb.mageia.org&In-Reply-To=%3C20120125123817.4158A4A557%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="001757.html">
+ <LINK REL="Next" HREF="001759.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203144%5D%20svn%3Alog%20edits%20not%20reflected%20in%0A%09svnweb.mageia.org&In-Reply-To=%3C20120125123817.4158A4A557%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jan 25 13:38:17 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001757.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001759.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1758">[ date ]</a>
+ <a href="thread.html#1758">[ thread ]</a>
+ <a href="subject.html#1758">[ subject ]</a>
+ <a href="author.html#1758">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3144">https://bugs.mageia.org/show_bug.cgi?id=3144</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">mageia-sysadm at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="001757.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001759.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1758">[ date ]</a>
+ <a href="thread.html#1758">[ thread ]</a>
+ <a href="subject.html#1758">[ subject ]</a>
+ <a href="author.html#1758">[ 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/2012-January/001759.html b/zarb-ml/mageia-webteam/2012-January/001759.html
new file mode 100644
index 000000000..37b0e9843
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001759.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+ </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%201798%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3C20120126173758.899DC4A1FB%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="001758.html">
+ <LINK REL="Next" HREF="001760.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201798%5D%20Define%20http%3A//forums.mageia.org/%0A%09default%20behaviour&In-Reply-To=%3C20120126173758.899DC4A1FB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jan 26 18:37:58 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001758.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001760.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1759">[ date ]</a>
+ <a href="thread.html#1759">[ thread ]</a>
+ <a href="subject.html#1759">[ subject ]</a>
+ <a href="author.html#1759">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1798">https://bugs.mageia.org/show_bug.cgi?id=1798</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|NEW |RESOLVED
+ Resolution| |OLD
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-26 18:37:58 CET ---
+Lost in 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001758.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001760.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1759">[ date ]</a>
+ <a href="thread.html#1759">[ thread ]</a>
+ <a href="subject.html#1759">[ subject ]</a>
+ <a href="author.html#1759">[ 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/2012-January/001760.html b/zarb-ml/mageia-webteam/2012-January/001760.html
new file mode 100644
index 000000000..102ce0c7d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001760.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1797] All forums need to refer to each other
+ </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%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20120126173822.31BCB4A205%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="001759.html">
+ <LINK REL="Next" HREF="001761.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1797] All forums need to refer to each other</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201797%5D%20All%20forums%20need%20to%20refer%20to%20each%20other&In-Reply-To=%3C20120126173822.31BCB4A205%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1797] All forums need to refer to each other">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jan 26 18:38:22 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001759.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001761.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1760">[ date ]</a>
+ <a href="thread.html#1760">[ thread ]</a>
+ <a href="subject.html#1760">[ subject ]</a>
+ <a href="author.html#1760">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1797">https://bugs.mageia.org/show_bug.cgi?id=1797</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|NEW |RESOLVED
+ Resolution| |OLD
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-01-26 18:38:22 CET ---
+Will reconsider this issue 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001759.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A></li>
+ <LI>Next message: <A HREF="001761.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1760">[ date ]</a>
+ <a href="thread.html#1760">[ thread ]</a>
+ <a href="subject.html#1760">[ subject ]</a>
+ <a href="author.html#1760">[ 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/2012-January/001761.html b/zarb-ml/mageia-webteam/2012-January/001761.html
new file mode 100644
index 000000000..881fadb57
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001761.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] Add distrib links to first 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%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20120128125203.191604A730%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="001760.html">
+ <LINK REL="Next" HREF="001762.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] Add distrib links to first page</H1>
+ <B>Malo Deni&#195;&#169;lou</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20Add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20120128125203.191604A730%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] Add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jan 28 13:52:03 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001760.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001762.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1761">[ date ]</a>
+ <a href="thread.html#1761">[ thread ]</a>
+ <a href="subject.html#1761">[ subject ]</a>
+ <a href="author.html#1761">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+
+Malo Deni&#233;lou &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">malo at doc.ic.ac.uk</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">malo at doc.ic.ac.uk</A>
+
+--- Comment #7 from Malo Deni&#233;lou &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">malo at doc.ic.ac.uk</A>&gt; 2012-01-28 14:52:02 CET ---
+It'd be great to have a good interface for Mageia 2 (and even better for Beta
+1, when more people will start upgrading and testing).
+
+--
+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="001760.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A></li>
+ <LI>Next message: <A HREF="001762.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1761">[ date ]</a>
+ <a href="thread.html#1761">[ thread ]</a>
+ <a href="subject.html#1761">[ subject ]</a>
+ <a href="author.html#1761">[ 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/2012-January/001762.html b/zarb-ml/mageia-webteam/2012-January/001762.html
new file mode 100644
index 000000000..c12128147
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001762.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 910] Add a check box for security issue
+ </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%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20120128142315.C5B334A81E%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="001761.html">
+ <LINK REL="Next" HREF="001763.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 910] Add a check box for security issue</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20910%5D%20Add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20120128142315.C5B334A81E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 910] Add a check box for security issue">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jan 28 15:23:15 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001761.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="001763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1762">[ date ]</a>
+ <a href="thread.html#1762">[ thread ]</a>
+ <a href="subject.html#1762">[ subject ]</a>
+ <a href="author.html#1762">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=910">https://bugs.mageia.org/show_bug.cgi?id=910</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-sysadm at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</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="001761.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="001763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1762">[ date ]</a>
+ <a href="thread.html#1762">[ thread ]</a>
+ <a href="subject.html#1762">[ subject ]</a>
+ <a href="author.html#1762">[ 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/2012-January/001763.html b/zarb-ml/mageia-webteam/2012-January/001763.html
new file mode 100644
index 000000000..167dd8c81
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001763.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 912] Custom field for CVE
+ </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%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20120128142318.57DA64A836%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="001762.html">
+ <LINK REL="Next" HREF="001764.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 912] Custom field for CVE</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20912%5D%20Custom%20field%20for%20CVE&In-Reply-To=%3C20120128142318.57DA64A836%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 912] Custom field for CVE">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jan 28 15:23:18 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001762.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="001764.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1763">[ date ]</a>
+ <a href="thread.html#1763">[ thread ]</a>
+ <a href="subject.html#1763">[ subject ]</a>
+ <a href="author.html#1763">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=912">https://bugs.mageia.org/show_bug.cgi?id=912</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-sysadm at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</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="001762.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="001764.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1763">[ date ]</a>
+ <a href="thread.html#1763">[ thread ]</a>
+ <a href="subject.html#1763">[ subject ]</a>
+ <a href="author.html#1763">[ 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/2012-January/001764.html b/zarb-ml/mageia-webteam/2012-January/001764.html
new file mode 100644
index 000000000..e4174e297
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001764.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120129170828.062A74A8F0%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="001763.html">
+ <LINK REL="Next" HREF="001765.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120129170828.062A74A8F0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 29 18:08:28 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="001765.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1764">[ date ]</a>
+ <a href="thread.html#1764">[ thread ]</a>
+ <a href="subject.html#1764">[ subject ]</a>
+ <a href="author.html#1764">[ 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>
+
+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
+----------------------------------------------------------------------------
+ Summary|Upgrade to Bugzilla 4.0.3 |Upgrade to Bugzilla 4.2
+
+--- Comment #25 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-01-29 18:08:28 CET ---
+We are going to release Bugzilla 4.2rc2 tomorrow. This will be our last RC
+before 4.2 final, which should be released mid-February. Due to all the
+improvements it has, including security-related improvements, you should
+consider upgrading to 4,2 directly (much more efficient than the 3.6 -&gt; 4.0 -&gt;
+4.2 transition).
+
+--
+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="001763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A></li>
+ <LI>Next message: <A HREF="001765.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1764">[ date ]</a>
+ <a href="thread.html#1764">[ thread ]</a>
+ <a href="subject.html#1764">[ subject ]</a>
+ <a href="author.html#1764">[ 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/2012-January/001765.html b/zarb-ml/mageia-webteam/2012-January/001765.html
new file mode 100644
index 000000000..bdba3b556
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001765.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120129172038.4F4024A906%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="001764.html">
+ <LINK REL="Next" HREF="001766.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120129172038.4F4024A906%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 29 18:20:38 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001764.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001766.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1765">[ date ]</a>
+ <a href="thread.html#1765">[ thread ]</a>
+ <a href="subject.html#1765">[ subject ]</a>
+ <a href="author.html#1765">[ 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 #26 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-01-29 18:20:38 CET ---
+@ Fr&#233;d&#233;ric
+
+Great :)
+
+I just pinged DMorgan on IRC, I hope I can point him to your question:
+
+
+(In reply to comment #24)
+&gt;<i> (In reply to comment #23)
+</I>&gt;<i> &gt; our templates will be compatible ?
+</I>&gt;<i>
+</I>&gt;<i> Which templates?
+</I>
+Of course, when he answers, answer it for 4.2, too :)
+
+--
+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="001764.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001766.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1765">[ date ]</a>
+ <a href="thread.html#1765">[ thread ]</a>
+ <a href="subject.html#1765">[ subject ]</a>
+ <a href="author.html#1765">[ 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/2012-January/001766.html b/zarb-ml/mageia-webteam/2012-January/001766.html
new file mode 100644
index 000000000..ea3d8af1f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001766.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120129204530.5D0884A9AD%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="001765.html">
+ <LINK REL="Next" HREF="001767.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120129204530.5D0884A9AD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jan 29 21:45:30 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001765.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001767.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1766">[ date ]</a>
+ <a href="thread.html#1766">[ thread ]</a>
+ <a href="subject.html#1766">[ subject ]</a>
+ <a href="author.html#1766">[ 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 #27 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2012-01-29 21:45:30 CET ---
+yes we wil go to 4.2 directly. I started a thread on mageia-sysadm to talk
+about how to proceed
+
+--
+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="001765.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001767.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1766">[ date ]</a>
+ <a href="thread.html#1766">[ thread ]</a>
+ <a href="subject.html#1766">[ subject ]</a>
+ <a href="author.html#1766">[ 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/2012-January/001767.html b/zarb-ml/mageia-webteam/2012-January/001767.html
new file mode 100644
index 000000000..df4bb7b7e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001767.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120130100103.ECAEE4AA9A%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="001766.html">
+ <LINK REL="Next" HREF="001768.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120130100103.ECAEE4AA9A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 30 11:01:03 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001766.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001768.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1767">[ date ]</a>
+ <a href="thread.html#1767">[ thread ]</a>
+ <a href="subject.html#1767">[ subject ]</a>
+ <a href="author.html#1767">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #11 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-01-30 11:01:03 CET ---
+any news about this wish?
+
+--
+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="001766.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001768.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1767">[ date ]</a>
+ <a href="thread.html#1767">[ thread ]</a>
+ <a href="subject.html#1767">[ subject ]</a>
+ <a href="author.html#1767">[ 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/2012-January/001768.html b/zarb-ml/mageia-webteam/2012-January/001768.html
new file mode 100644
index 000000000..f0a738890
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/001768.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3879] Improve component selection in 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%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120130101445.3C9BA4AAA0%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="001767.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203879%5D%20Improve%20component%20selection%20in%20Bugzilla&In-Reply-To=%3C20120130101445.3C9BA4AAA0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jan 30 11:14:45 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001767.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1768">[ date ]</a>
+ <a href="thread.html#1768">[ thread ]</a>
+ <a href="subject.html#1768">[ subject ]</a>
+ <a href="author.html#1768">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3879">https://bugs.mageia.org/show_bug.cgi?id=3879</A>
+
+--- Comment #12 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-01-30 11:14:44 CET ---
+no
+
+--
+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="001767.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1768">[ date ]</a>
+ <a href="thread.html#1768">[ thread ]</a>
+ <a href="subject.html#1768">[ subject ]</a>
+ <a href="author.html#1768">[ 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/2012-January/author.html b/zarb-ml/mageia-webteam/2012-January/author.html
new file mode 100644
index 000000000..9c12a9e9c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/author.html
@@ -0,0 +1,567 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam January 2012 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>January 2012 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>Sun Jan 1 00:01:29 CET 2012</i><br>
+ <b>Ending:</b> <i>Mon Jan 30 11:14:45 CET 2012</i><br>
+ <b>Messages:</b> 104<p>
+ <ul>
+
+<LI><A HREF="001709.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1709">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001713.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1713">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001690.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1690">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001767.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1767">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001665.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1665">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001678.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1678">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001682.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1682">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001687.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1687">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001715.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1715">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001740.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1740">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001741.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1741">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001700.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1700">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001734.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1734">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001750.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1750">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001751.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1751">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001752.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1752">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001764.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1764">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001694.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1694">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001761.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="1761">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<LI><A HREF="001686.html">[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1686">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001689.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1689">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001667.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1667">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001672.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1672">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001674.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1674">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001693.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1693">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001762.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1762">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1763">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001744.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1744">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001720.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1720">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<LI><A HREF="001738.html">[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1738">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<LI><A HREF="001739.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1739">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<LI><A HREF="001745.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1745">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<LI><A HREF="001695.html">[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website
+</A><A NAME="1695">&nbsp;</A>
+<I>Josh King
+</I>
+
+<LI><A HREF="001703.html">[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view
+</A><A NAME="1703">&nbsp;</A>
+<I>Josh King
+</I>
+
+<LI><A HREF="001677.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1677">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001742.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1742">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001743.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1743">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001766.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1766">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001684.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1684">&nbsp;</A>
+<I>Bicycle RepairMan
+</I>
+
+<LI><A HREF="001714.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A><A NAME="1714">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001668.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1668">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001670.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1670">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001671.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1671">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001673.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1673">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001691.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1691">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001721.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1721">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001729.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1729">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001730.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1730">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001731.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1731">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001732.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1732">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001733.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1733">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001768.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1768">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001669.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1669">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001679.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1679">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001680.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1680">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001696.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1696">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001698.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1698">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001699.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1699">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001701.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1701">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001718.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1718">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001719.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1719">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001722.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1722">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001723.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1723">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001724.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1724">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001725.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1725">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001726.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1726">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001727.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1727">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001736.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="1736">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001737.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1737">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001746.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1746">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001748.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1748">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001753.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1753">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001754.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1754">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001755.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1755">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001756.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1756">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001765.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1765">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001666.html">[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1666">&nbsp;</A>
+<I>David Walser
+</I>
+
+<LI><A HREF="001675.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1675">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001676.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1676">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001683.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1683">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001681.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1681">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001685.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1685">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001688.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1688">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001697.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1697">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001702.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1702">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001704.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1704">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001705.html">[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view
+</A><A NAME="1705">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001707.html">[Mageia-webteam] [Bug 4048] Planet not listed on main website
+</A><A NAME="1707">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001716.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1716">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001717.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A><A NAME="1717">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001728.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1728">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001735.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1735">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001747.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1747">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001749.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1749">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001757.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1757">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001758.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1758">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001759.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1759">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001760.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1760">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001706.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1706">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001708.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1708">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001710.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1710">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001711.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1711">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001712.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A><A NAME="1712">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001692.html">[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1692">&nbsp;</A>
+<I>ovi onico
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Jan 30 11:14:45 CET 2012</i><br>
+ <b>Archived on:</b> <i>Mon Jan 30 11:14:50 CET 2012</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/2012-January/date.html b/zarb-ml/mageia-webteam/2012-January/date.html
new file mode 100644
index 000000000..fb792c928
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/date.html
@@ -0,0 +1,567 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam January 2012 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>January 2012 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>Sun Jan 1 00:01:29 CET 2012</i><br>
+ <b>Ending:</b> <i>Mon Jan 30 11:14:45 CET 2012</i><br>
+ <b>Messages:</b> 104<p>
+ <ul>
+
+<LI><A HREF="001665.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1665">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001666.html">[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1666">&nbsp;</A>
+<I>David Walser
+</I>
+
+<LI><A HREF="001667.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1667">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001668.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1668">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001669.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1669">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001670.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1670">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001671.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1671">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001672.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1672">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001673.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1673">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001674.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1674">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001675.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1675">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001676.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1676">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001677.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1677">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001678.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1678">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001679.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1679">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001680.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1680">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001681.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1681">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001682.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1682">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001683.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1683">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001684.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1684">&nbsp;</A>
+<I>Bicycle RepairMan
+</I>
+
+<LI><A HREF="001685.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1685">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001686.html">[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1686">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001687.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1687">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001688.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1688">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001689.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1689">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001690.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1690">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001691.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1691">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001692.html">[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1692">&nbsp;</A>
+<I>ovi onico
+</I>
+
+<LI><A HREF="001693.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1693">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001694.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1694">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001695.html">[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website
+</A><A NAME="1695">&nbsp;</A>
+<I>Josh King
+</I>
+
+<LI><A HREF="001696.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1696">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001697.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1697">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001698.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1698">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001699.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1699">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001700.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1700">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001701.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1701">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001702.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1702">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001703.html">[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view
+</A><A NAME="1703">&nbsp;</A>
+<I>Josh King
+</I>
+
+<LI><A HREF="001704.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1704">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001705.html">[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view
+</A><A NAME="1705">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001706.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1706">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001707.html">[Mageia-webteam] [Bug 4048] Planet not listed on main website
+</A><A NAME="1707">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001708.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1708">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001709.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1709">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001710.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1710">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001711.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1711">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001712.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A><A NAME="1712">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001713.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1713">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001714.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A><A NAME="1714">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001715.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1715">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001716.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1716">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001717.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A><A NAME="1717">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001718.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1718">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001719.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1719">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001720.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1720">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<LI><A HREF="001721.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1721">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001722.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1722">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001723.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1723">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001724.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1724">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001725.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1725">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001726.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1726">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001727.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1727">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001728.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1728">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001729.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1729">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001730.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1730">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001731.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1731">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001732.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1732">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001733.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1733">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001734.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1734">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001735.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1735">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001736.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="1736">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001737.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1737">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001738.html">[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1738">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<LI><A HREF="001739.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1739">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<LI><A HREF="001740.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1740">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001741.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1741">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001742.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1742">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001743.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1743">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001744.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1744">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001745.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1745">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<LI><A HREF="001746.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1746">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001747.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1747">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001748.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1748">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001749.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1749">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001750.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1750">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001751.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1751">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001752.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1752">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001753.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1753">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001754.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1754">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001755.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1755">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001756.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1756">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001757.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1757">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001758.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1758">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001759.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1759">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001760.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1760">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001761.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="1761">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<LI><A HREF="001762.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1762">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1763">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001764.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1764">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001765.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1765">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001766.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1766">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001767.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1767">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001768.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1768">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Jan 30 11:14:45 CET 2012</i><br>
+ <b>Archived on:</b> <i>Mon Jan 30 11:14:50 CET 2012</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/2012-January/index.html b/zarb-ml/mageia-webteam/2012-January/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-January/subject.html b/zarb-ml/mageia-webteam/2012-January/subject.html
new file mode 100644
index 000000000..0ba2222aa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/subject.html
@@ -0,0 +1,567 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam January 2012 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>January 2012 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>Sun Jan 1 00:01:29 CET 2012</i><br>
+ <b>Ending:</b> <i>Mon Jan 30 11:14:45 CET 2012</i><br>
+ <b>Messages:</b> 104<p>
+ <ul>
+
+<LI><A HREF="001731.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1731">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001736.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="1736">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001761.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="1761">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<LI><A HREF="001746.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1746">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001747.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1747">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001748.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1748">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001749.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1749">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001737.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1737">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001732.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1732">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001753.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1753">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001760.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1760">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001754.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1754">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001759.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1759">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001733.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1733">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001750.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1750">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001675.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1675">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001676.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1676">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001677.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1677">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001678.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1678">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001679.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1679">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001680.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1680">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001681.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1681">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001682.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1682">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001683.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1683">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<LI><A HREF="001684.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1684">&nbsp;</A>
+<I>Bicycle RepairMan
+</I>
+
+<LI><A HREF="001685.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1685">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001665.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1665">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="001668.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1668">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001669.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1669">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001670.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1670">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001727.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1727">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001728.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1728">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001714.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A><A NAME="1714">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001717.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A><A NAME="1717">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001755.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1755">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001756.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1756">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001757.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1757">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001758.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1758">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001671.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1671">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001672.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1672">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001673.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1673">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001674.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1674">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001690.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1690">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001691.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1691">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001767.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1767">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001768.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1768">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001696.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1696">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001697.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1697">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001666.html">[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1666">&nbsp;</A>
+<I>David Walser
+</I>
+
+<LI><A HREF="001667.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1667">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001686.html">[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1686">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001687.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1687">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001688.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1688">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001689.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1689">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001692.html">[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1692">&nbsp;</A>
+<I>ovi onico
+</I>
+
+<LI><A HREF="001693.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1693">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001694.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1694">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001704.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1704">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001695.html">[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website
+</A><A NAME="1695">&nbsp;</A>
+<I>Josh King
+</I>
+
+<LI><A HREF="001707.html">[Mageia-webteam] [Bug 4048] Planet not listed on main website
+</A><A NAME="1707">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001703.html">[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view
+</A><A NAME="1703">&nbsp;</A>
+<I>Josh King
+</I>
+
+<LI><A HREF="001705.html">[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view
+</A><A NAME="1705">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001726.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1726">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001751.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1751">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001752.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1752">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001764.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1764">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001765.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1765">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001766.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1766">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<LI><A HREF="001698.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1698">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001700.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1700">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001701.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1701">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001702.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1702">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001706.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1706">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001709.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1709">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001710.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1710">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001713.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1713">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001738.html">[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1738">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<LI><A HREF="001739.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1739">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<LI><A HREF="001740.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1740">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001741.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1741">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001742.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1742">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001743.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1743">&nbsp;</A>
+<I>Maat
+</I>
+
+<LI><A HREF="001744.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1744">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001745.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1745">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<LI><A HREF="001699.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1699">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001708.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1708">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001716.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1716">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001711.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1711">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001715.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1715">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<LI><A HREF="001712.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A><A NAME="1712">&nbsp;</A>
+<I>marja
+</I>
+
+<LI><A HREF="001718.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1718">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001720.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1720">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<LI><A HREF="001719.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1719">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001721.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1721">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001729.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1729">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001722.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1722">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001723.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1723">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001730.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1730">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001734.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1734">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="001735.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1735">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001724.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1724">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001762.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1762">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001725.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1725">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1763">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Jan 30 11:14:45 CET 2012</i><br>
+ <b>Archived on:</b> <i>Mon Jan 30 11:14:50 CET 2012</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/2012-January/thread.html b/zarb-ml/mageia-webteam/2012-January/thread.html
new file mode 100644
index 000000000..3ee6e32ce
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-January/thread.html
@@ -0,0 +1,683 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam January 2012 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>January 2012 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>Sun Jan 1 00:01:29 CET 2012</i><br>
+ <b>Ending:</b> <i>Mon Jan 30 11:14:45 CET 2012</i><br>
+ <b>Messages:</b> 104<p>
+ <ul>
+
+<!--0 01325372489- -->
+<LI><A HREF="001665.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1665">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<!--0 01325386138- -->
+<LI><A HREF="001666.html">[Mageia-webteam] [Bug 3981] [New] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1666">&nbsp;</A>
+<I>David Walser
+</I>
+
+<UL>
+<!--1 01325386138-01325417144- -->
+<LI><A HREF="001667.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="1667">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01325432199- -->
+<LI><A HREF="001668.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1668">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01325438365- -->
+<LI><A HREF="001669.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1669">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325441387- -->
+<LI><A HREF="001670.html">[Mageia-webteam] [Bug 2565] Add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1670">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01325448359- -->
+<LI><A HREF="001671.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1671">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01325449029- -->
+<LI><A HREF="001672.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1672">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01325449307- -->
+<LI><A HREF="001673.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1673">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01325454148- -->
+<LI><A HREF="001674.html">[Mageia-webteam] [Bug 3840] security[AT]groups.mageia don't work change the account
+</A><A NAME="1674">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01325505202- -->
+<LI><A HREF="001675.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1675">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<!--0 01325506256- -->
+<LI><A HREF="001676.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1676">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<!--0 01325513164- -->
+<LI><A HREF="001677.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1677">&nbsp;</A>
+<I>Maat
+</I>
+
+<!--0 01325520328- -->
+<LI><A HREF="001678.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1678">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--0 01325521860- -->
+<LI><A HREF="001679.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1679">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325522062- -->
+<LI><A HREF="001680.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1680">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325523214- -->
+<LI><A HREF="001681.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1681">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01325524169- -->
+<LI><A HREF="001682.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1682">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--0 01325541823- -->
+<LI><A HREF="001683.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1683">&nbsp;</A>
+<I>thomas bjo
+</I>
+
+<!--0 01325542442- -->
+<LI><A HREF="001684.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1684">&nbsp;</A>
+<I>Bicycle RepairMan
+</I>
+
+<!--0 01325542746- -->
+<LI><A HREF="001685.html">[Mageia-webteam] [Bug 1956] Can not edit posts in forum (after timeout)
+</A><A NAME="1685">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01325675007- -->
+<LI><A HREF="001686.html">[Mageia-webteam] [Bug 4016] [New] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1686">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<UL>
+<!--1 01325675007-01325675746- -->
+<LI><A HREF="001687.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1687">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01325675007-01325675977- -->
+<LI><A HREF="001688.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1688">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01325675007-01325676248- -->
+<LI><A HREF="001689.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1689">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+</UL>
+<!--0 01325686881- -->
+<LI><A HREF="001690.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1690">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01325687036- -->
+<LI><A HREF="001691.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1691">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01325775407- -->
+<LI><A HREF="001692.html">[Mageia-webteam] [Bug 4033] [New] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1692">&nbsp;</A>
+<I>ovi onico
+</I>
+
+<UL>
+<!--1 01325775407-01325775800- -->
+<LI><A HREF="001693.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1693">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01325775407-01325776658- -->
+<LI><A HREF="001694.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1694">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01325775407-01326097858- -->
+<LI><A HREF="001704.html">[Mageia-webteam] [Bug 4033] Can't follow the link to mailing-lists. Page doesn't exist
+</A><A NAME="1704">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01325907208- -->
+<LI><A HREF="001695.html">[Mageia-webteam] [Bug 4048] [New] Planet not listed on main website
+</A><A NAME="1695">&nbsp;</A>
+<I>Josh King
+</I>
+
+<UL>
+<!--1 01325907208-01326128191- -->
+<LI><A HREF="001707.html">[Mageia-webteam] [Bug 4048] Planet not listed on main website
+</A><A NAME="1707">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01325972560- -->
+<LI><A HREF="001696.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1696">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01325976098- -->
+<LI><A HREF="001697.html">[Mageia-webteam] [Bug 387] Setting the preferedLanguage of a user cause a error in the current trunk
+</A><A NAME="1697">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01326025963- -->
+<LI><A HREF="001698.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1698">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326026304- -->
+<LI><A HREF="001699.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1699">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326027147- -->
+<LI><A HREF="001700.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1700">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01326027903- -->
+<LI><A HREF="001701.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1701">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326036267- -->
+<LI><A HREF="001702.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1702">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01326088103- -->
+<LI><A HREF="001703.html">[Mageia-webteam] [Bug 4080] [New] mailman shows 404 error when trying to view
+</A><A NAME="1703">&nbsp;</A>
+<I>Josh King
+</I>
+
+<UL>
+<!--1 01326088103-01326097945- -->
+<LI><A HREF="001705.html">[Mageia-webteam] [Bug 4080] mailman shows 404 error when trying to view
+</A><A NAME="1705">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01326125929- -->
+<LI><A HREF="001706.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1706">&nbsp;</A>
+<I>marja
+</I>
+
+<!--0 01326138357- -->
+<LI><A HREF="001708.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1708">&nbsp;</A>
+<I>marja
+</I>
+
+<!--0 01326138553- -->
+<LI><A HREF="001709.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1709">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01326139203- -->
+<LI><A HREF="001710.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1710">&nbsp;</A>
+<I>marja
+</I>
+
+<!--0 01326140588- -->
+<LI><A HREF="001711.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1711">&nbsp;</A>
+<I>marja
+</I>
+
+<!--0 01326140693- -->
+<LI><A HREF="001712.html">[Mageia-webteam] [Bug 543] Allow to promote a user directly from the user edition page
+</A><A NAME="1712">&nbsp;</A>
+<I>marja
+</I>
+
+<!--0 01326146034- -->
+<LI><A HREF="001713.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="1713">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01326174438- -->
+<LI><A HREF="001714.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A><A NAME="1714">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--0 01326178393- -->
+<LI><A HREF="001715.html">[Mageia-webteam] [Bug 465] captcha is annoying
+</A><A NAME="1715">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--0 01326192684- -->
+<LI><A HREF="001716.html">[Mageia-webteam] [Bug 451] FAQ should be refreshed
+</A><A NAME="1716">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01326193031- -->
+<LI><A HREF="001717.html">[Mageia-webteam] [Bug 3025] English page has different donated amount than other localised versions
+</A><A NAME="1717">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01326312126- -->
+<LI><A HREF="001718.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1718">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326312396- -->
+<LI><A HREF="001719.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1719">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326312590- -->
+<LI><A HREF="001720.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A><A NAME="1720">&nbsp;</A>
+<I>Fran&#195;&#167;ois Jaouen
+</I>
+
+<!--0 01326313273- -->
+<LI><A HREF="001721.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments can be wrong
+</A><A NAME="1721">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01326488868- -->
+<LI><A HREF="001722.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1722">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326488924- -->
+<LI><A HREF="001723.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1723">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326489021- -->
+<LI><A HREF="001724.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1724">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326489188- -->
+<LI><A HREF="001725.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1725">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326489188- -->
+<LI><A HREF="001726.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1726">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326489625- -->
+<LI><A HREF="001727.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1727">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326490183- -->
+<LI><A HREF="001728.html">[Mageia-webteam] [Bug 2997] Top banner in blog page not complete in english, and totally missing for all other languages
+</A><A NAME="1728">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01326492299- -->
+<LI><A HREF="001729.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A><A NAME="1729">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01326492333- -->
+<LI><A HREF="001730.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1730">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01326492373- -->
+<LI><A HREF="001731.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1731">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01326492496- -->
+<LI><A HREF="001732.html">[Mageia-webteam] [Bug 1734] Wrong link for &quot;forgot password&quot;
+</A><A NAME="1732">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01326492886- -->
+<LI><A HREF="001733.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1733">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01326498355- -->
+<LI><A HREF="001734.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1734">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01326533406- -->
+<LI><A HREF="001735.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A><A NAME="1735">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01326745467- -->
+<LI><A HREF="001736.html">[Mageia-webteam] [Bug 1171] Bugzilla should let people use their email to login too
+</A><A NAME="1736">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326871266- -->
+<LI><A HREF="001737.html">[Mageia-webteam] [Bug 1568] Upgrading from Mandriva 2010.x using mgaonline does not work
+</A><A NAME="1737">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01326904541- -->
+<LI><A HREF="001738.html">[Mageia-webteam] [Bug 4183] [New] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1738">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<UL>
+<!--1 01326904541-01326904646- -->
+<LI><A HREF="001739.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1739">&nbsp;</A>
+<I>William Kenney
+</I>
+
+<!--1 01326904541-01326904888- -->
+<LI><A HREF="001740.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1740">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01326904541-01326904946- -->
+<LI><A HREF="001741.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1741">&nbsp;</A>
+<I>Wolfgang Bornath
+</I>
+
+<!--1 01326904541-01326905009- -->
+<LI><A HREF="001742.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1742">&nbsp;</A>
+<I>Maat
+</I>
+
+<!--1 01326904541-01326905065- -->
+<LI><A HREF="001743.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1743">&nbsp;</A>
+<I>Maat
+</I>
+
+<!--1 01326904541-01326906085- -->
+<LI><A HREF="001744.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1744">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--1 01326904541-01326906349- -->
+<LI><A HREF="001745.html">[Mageia-webteam] [Bug 4183] https://forums.mageia.org/en/ has gone all blocks
+</A><A NAME="1745">&nbsp;</A>
+<I>William Kenney
+</I>
+
+</UL>
+<!--0 01327043925- -->
+<LI><A HREF="001746.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1746">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01327048259- -->
+<LI><A HREF="001747.html">[Mageia-webteam] [Bug 1529] bad encoding for ru and ua
+</A><A NAME="1747">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01327063517- -->
+<LI><A HREF="001748.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1748">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01327069407- -->
+<LI><A HREF="001749.html">[Mageia-webteam] [Bug 1541] Sync the release notes with the release notes wiki page
+</A><A NAME="1749">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01327086358- -->
+<LI><A HREF="001750.html">[Mageia-webteam] [Bug 1868] drakbug should first check if a bug has already been filed about some given error before filing a new one
+</A><A NAME="1750">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01327086359- -->
+<LI><A HREF="001751.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1751">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01327086387- -->
+<LI><A HREF="001752.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.3
+</A><A NAME="1752">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01327345787- -->
+<LI><A HREF="001753.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1753">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01327345833- -->
+<LI><A HREF="001754.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1754">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01327347435- -->
+<LI><A HREF="001755.html">[Mageia-webteam] [Bug 3049] &quot;simple&quot; bug-entry form doesn't allow direct attachment (and shows URL entry, while it is an &quot;advanced&quot; field in the expert's version)
+</A><A NAME="1755">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01327475756- -->
+<LI><A HREF="001756.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1756">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01327493132- -->
+<LI><A HREF="001757.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1757">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01327495097- -->
+<LI><A HREF="001758.html">[Mageia-webteam] [Bug 3144] svn:log edits not reflected in svnweb.mageia.org
+</A><A NAME="1758">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01327599478- -->
+<LI><A HREF="001759.html">[Mageia-webteam] [Bug 1798] Define http://forums.mageia.org/ default behaviour
+</A><A NAME="1759">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01327599502- -->
+<LI><A HREF="001760.html">[Mageia-webteam] [Bug 1797] All forums need to refer to each other
+</A><A NAME="1760">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01327755123- -->
+<LI><A HREF="001761.html">[Mageia-webteam] [Bug 1386] Add distrib links to first page
+</A><A NAME="1761">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<!--0 01327760595- -->
+<LI><A HREF="001762.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
+</A><A NAME="1762">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01327760598- -->
+<LI><A HREF="001763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
+</A><A NAME="1763">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01327856908- -->
+<LI><A HREF="001764.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1764">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01327857638- -->
+<LI><A HREF="001765.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1765">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01327869930- -->
+<LI><A HREF="001766.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1766">&nbsp;</A>
+<I>D Morgan
+</I>
+
+<!--0 01327917663- -->
+<LI><A HREF="001767.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1767">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01327918485- -->
+<LI><A HREF="001768.html">[Mageia-webteam] [Bug 3879] Improve component selection in Bugzilla
+</A><A NAME="1768">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Jan 30 11:14:45 CET 2012</i><br>
+ <b>Archived on:</b> <i>Mon Jan 30 11:14:50 CET 2012</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/2012-July.txt.gz b/zarb-ml/mageia-webteam/2012-July.txt.gz
new file mode 100644
index 000000000..683f85aaa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-July/002097.html b/zarb-ml/mageia-webteam/2012-July/002097.html
new file mode 100644
index 000000000..5f9e7c414
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002097.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Introducing Myself
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Introducing%20Myself&In-Reply-To=%3C20120701091600.5f058a04%40hermes.lan%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+
+ <LINK REL="Next" HREF="002098.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Introducing Myself</H1>
+ <B>Patricia Fraser</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Introducing%20Myself&In-Reply-To=%3C20120701091600.5f058a04%40hermes.lan%3E"
+ TITLE="[Mageia-webteam] Introducing Myself">trish at thefrasers.org
+ </A><BR>
+ <I>Sun Jul 1 01:16:00 CEST 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="002098.html">[Mageia-webteam] Introducing Myself
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2097">[ date ]</a>
+ <a href="thread.html#2097">[ thread ]</a>
+ <a href="subject.html#2097">[ subject ]</a>
+ <a href="author.html#2097">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi Angel,
+
+Welcome!
+
+&gt;<i> I am exploring Mageia Project since it&#180;s birth even before releasing
+</I>&gt;<i> the Mageia 1. And finally I have decided to contribute. As a starter,
+</I>&gt;<i> I want to work with Bug Squad and Web Team. I have already an account
+</I>&gt;<i> at Mageia (username: angel). And already subscribed the Bug Squad
+</I>&gt;<i> Mailing List. Please let me know as a start, where I can help.
+</I>
+Webteam has been merged into the Atelier team which is made up of
+webteam, artwork and marcom under Romain's leadership.
+
+So you could subscribe to the atelier ml here:
+
+<A HREF="https://ml.mageia.org/l/arc/atelier-discuss">https://ml.mageia.org/l/arc/atelier-discuss</A>
+
+Looking forward to working with you!
+
+--
+Trish Fraser, VVMZ4 91L2V -35.67910, 142.66607
+Sun Jul 1 09:12:29 EST 2012
+GNU/Linux 1997-2012 #283226 counter.li.org
+hermes up 1 hour(s), 5 min.
+Mageia release 2 (Official) for x86_64
+kernel 3.3.6-desktop-2.mga2
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: signature.asc
+Type: application/pgp-signature
+Size: 490 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20120701/21994098/attachment.asc&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="002098.html">[Mageia-webteam] Introducing Myself
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2097">[ date ]</a>
+ <a href="thread.html#2097">[ thread ]</a>
+ <a href="subject.html#2097">[ subject ]</a>
+ <a href="author.html#2097">[ 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/2012-July/002098.html b/zarb-ml/mageia-webteam/2012-July/002098.html
new file mode 100644
index 000000000..815b9f526
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002098.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Introducing Myself
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Introducing%20Myself&In-Reply-To=%3CCAEfn7sAgjcbgEN%3DYmCYBGozBkXJo4fqdVh2BCZhw2h72BsJ-Lw%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="002097.html">
+ <LINK REL="Next" HREF="002099.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Introducing Myself</H1>
+ <B>Angel Ashiqur Rahman</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Introducing%20Myself&In-Reply-To=%3CCAEfn7sAgjcbgEN%3DYmCYBGozBkXJo4fqdVh2BCZhw2h72BsJ-Lw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Introducing Myself">mail at angelinux.net
+ </A><BR>
+ <I>Sun Jul 1 04:01:45 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002097.html">[Mageia-webteam] Introducing Myself
+</A></li>
+ <LI>Next message: <A HREF="002099.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2098">[ date ]</a>
+ <a href="thread.html#2098">[ thread ]</a>
+ <a href="subject.html#2098">[ subject ]</a>
+ <a href="author.html#2098">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Thanks. Just subscribed to the atelier ml. Ignore my previous mail,
+sent mistakenly from my another Mail Address.
+
+-- Angel
+ Give me Linux.. ..or give me death
+ C9A2 44E1 4B6A DB50 381C 1F3B A8F8 D51E E6AC 1942
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002097.html">[Mageia-webteam] Introducing Myself
+</A></li>
+ <LI>Next message: <A HREF="002099.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2098">[ date ]</a>
+ <a href="thread.html#2098">[ thread ]</a>
+ <a href="subject.html#2098">[ subject ]</a>
+ <a href="author.html#2098">[ 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/2012-July/002099.html b/zarb-ml/mageia-webteam/2012-July/002099.html
new file mode 100644
index 000000000..62ec25275
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002099.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+ </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%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20120704115757.C06A5452BE%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="002098.html">
+ <LINK REL="Next" HREF="002100.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20998%5D%20O%20Brother%2C%20Where%20Art%20Thou%3F&In-Reply-To=%3C20120704115757.C06A5452BE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jul 4 13:57:57 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002098.html">[Mageia-webteam] Introducing Myself
+</A></li>
+ <LI>Next message: <A HREF="002100.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2099">[ date ]</a>
+ <a href="thread.html#2099">[ thread ]</a>
+ <a href="subject.html#2099">[ subject ]</a>
+ <a href="author.html#2099">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</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
+----------------------------------------------------------------------------
+ Keywords| |Atelier
+
+--
+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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002098.html">[Mageia-webteam] Introducing Myself
+</A></li>
+ <LI>Next message: <A HREF="002100.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2099">[ date ]</a>
+ <a href="thread.html#2099">[ thread ]</a>
+ <a href="subject.html#2099">[ subject ]</a>
+ <a href="author.html#2099">[ 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/2012-July/002100.html b/zarb-ml/mageia-webteam/2012-July/002100.html
new file mode 100644
index 000000000..32aa60ccc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002100.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+ </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%206579%5D%20Google%20does%20not%20index%20bugs.mageia.org&In-Reply-To=%3C20120705102352.67BCD44E9F%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="002099.html">
+ <LINK REL="Next" HREF="002101.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206579%5D%20Google%20does%20not%20index%20bugs.mageia.org&In-Reply-To=%3C20120705102352.67BCD44E9F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 5 12:23:52 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002099.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="002101.html">[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2100">[ date ]</a>
+ <a href="thread.html#2100">[ thread ]</a>
+ <a href="subject.html#2100">[ subject ]</a>
+ <a href="author.html#2100">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6579">https://bugs.mageia.org/show_bug.cgi?id=6579</A>
+
+--- Comment #1 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-07-05 12:23:52 CEST ---
+Using <A HREF="http://code.google.com/p/bugzilla-sitemap/">http://code.google.com/p/bugzilla-sitemap/</A> might be a fix.
+
+--
+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="002099.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A></li>
+ <LI>Next message: <A HREF="002101.html">[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2100">[ date ]</a>
+ <a href="thread.html#2100">[ thread ]</a>
+ <a href="subject.html#2100">[ subject ]</a>
+ <a href="author.html#2100">[ 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/2012-July/002101.html b/zarb-ml/mageia-webteam/2012-July/002101.html
new file mode 100644
index 000000000..dc94e984c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002101.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; 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%206701%5D%20%5BNew%5D%20Make%20a%20%22news%20central%22%20page&In-Reply-To=%3Cbug-6701-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="002100.html">
+ <LINK REL="Next" HREF="002102.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206701%5D%20%5BNew%5D%20Make%20a%20%22news%20central%22%20page&In-Reply-To=%3Cbug-6701-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 5 12:48:28 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002100.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002102.html">[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2101">[ date ]</a>
+ <a href="thread.html#2101">[ thread ]</a>
+ <a href="subject.html#2101">[ subject ]</a>
+ <a href="author.html#2101">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6701">https://bugs.mageia.org/show_bug.cgi?id=6701</A>
+
+ Summary: Make a &quot;news central&quot; page
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/news/">http://www.mageia.org/news/</A>
+ 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">rdalverny at gmail.com</A>
+
+
+Role of this page: provide instant overview of news about Mageia &amp; media tools
+&amp; direct access to press contacts for the project.
+
+Contents to aggregate _and_ filter/repurpose for the page (so it looks nice and
+is informative):
+* articles from our Planets (<A HREF="http://planet.mageia.org/">http://planet.mageia.org/</A>) - note our blogs are
+already in there
+ - <A HREF="http://planet.mageia.org/en/?type=atom10">http://planet.mageia.org/en/?type=atom10</A>
+* activity from our forums &amp; mailing-lists
+ - <A HREF="https://forums.mageia.org/en/feed.php?mode=topics_active">https://forums.mageia.org/en/feed.php?mode=topics_active</A>
+ - <A HREF="https://ml.mageia.org/l/rss/active_lists?count=20&amp;for=10">https://ml.mageia.org/l/rss/active_lists?count=20&amp;for=10</A> (or better?)
+* top news from outside sites about Mageia
+ - TBD
+* top articles from Wiki, top pages from www
+ - <A HREF="http://www.mediawiki.org/wiki/Extension:TopTenPages">http://www.mediawiki.org/wiki/Extension:TopTenPages</A>
+* downloads/usage stats summary (report to a dedicated page)
+ - TBD, see bug 2330
+* donations summary
+ - TBD, see bug 6084
+
+--
+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="002100.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002102.html">[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2101">[ date ]</a>
+ <a href="thread.html#2101">[ thread ]</a>
+ <a href="subject.html#2101">[ subject ]</a>
+ <a href="author.html#2101">[ 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/2012-July/002102.html b/zarb-ml/mageia-webteam/2012-July/002102.html
new file mode 100644
index 000000000..ed1f32b9e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002102.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; 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%206701%5D%20Make%20a%20%22news%20central%22%20page&In-Reply-To=%3C20120705105323.038BE452DE%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="002101.html">
+ <LINK REL="Next" HREF="002103.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206701%5D%20Make%20a%20%22news%20central%22%20page&In-Reply-To=%3C20120705105323.038BE452DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 5 12:53:22 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002101.html">[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page
+</A></li>
+ <LI>Next message: <A HREF="002103.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2102">[ date ]</a>
+ <a href="thread.html#2102">[ thread ]</a>
+ <a href="subject.html#2102">[ subject ]</a>
+ <a href="author.html#2102">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6701">https://bugs.mageia.org/show_bug.cgi?id=6701</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
+----------------------------------------------------------------------------
+ Keywords| |Atelier, Junior_job
+
+--
+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="002101.html">[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page
+</A></li>
+ <LI>Next message: <A HREF="002103.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2102">[ date ]</a>
+ <a href="thread.html#2102">[ thread ]</a>
+ <a href="subject.html#2102">[ subject ]</a>
+ <a href="author.html#2102">[ 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/2012-July/002103.html b/zarb-ml/mageia-webteam/2012-July/002103.html
new file mode 100644
index 000000000..cb32a0a7b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002103.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+ </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%206579%5D%20Google%20does%20not%20index%20bugs.mageia.org&In-Reply-To=%3C20120705121058.D872545061%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="002102.html">
+ <LINK REL="Next" HREF="002104.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206579%5D%20Google%20does%20not%20index%20bugs.mageia.org&In-Reply-To=%3C20120705121058.D872545061%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 5 14:10:58 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002102.html">[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page
+</A></li>
+ <LI>Next message: <A HREF="002104.html">[Mageia-webteam] [Bug 6826] [New] Broken banner on forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2103">[ date ]</a>
+ <a href="thread.html#2103">[ thread ]</a>
+ <a href="subject.html#2103">[ subject ]</a>
+ <a href="author.html#2103">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6579">https://bugs.mageia.org/show_bug.cgi?id=6579</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|NEW |ASSIGNED
+ Keywords| |Atelier
+ AssignedTo|<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">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-07-05 16:10:58 CEST ---
+So, the plugin was there, dmorgan resubmitted it and we have those updated:
+ * <A HREF="https://bugs.mageia.org/page.cgi?id=sitemap/sitemap.xml">https://bugs.mageia.org/page.cgi?id=sitemap/sitemap.xml</A>
+ * <A HREF="https://bugs.mageia.org/robots.txt">https://bugs.mageia.org/robots.txt</A>
+
+I added it to the Google Webmasters account to. So we need a few hours to wait
+before seeing any progress here.
+
+--
+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="002102.html">[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page
+</A></li>
+ <LI>Next message: <A HREF="002104.html">[Mageia-webteam] [Bug 6826] [New] Broken banner on forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2103">[ date ]</a>
+ <a href="thread.html#2103">[ thread ]</a>
+ <a href="subject.html#2103">[ subject ]</a>
+ <a href="author.html#2103">[ 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/2012-July/002104.html b/zarb-ml/mageia-webteam/2012-July/002104.html
new file mode 100644
index 000000000..a98104b6e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002104.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6826] [New] Broken banner on 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%206826%5D%20%5BNew%5D%20Broken%20banner%20on%20forum&In-Reply-To=%3Cbug-6826-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="002103.html">
+ <LINK REL="Next" HREF="002123.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6826] [New] Broken banner on forum</H1>
+ <B>Max</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206826%5D%20%5BNew%5D%20Broken%20banner%20on%20forum&In-Reply-To=%3Cbug-6826-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6826] [New] Broken banner on forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 19 15:19:52 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002103.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002123.html">[Mageia-webteam] [Bug 6826] Broken banner on forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2104">[ date ]</a>
+ <a href="thread.html#2104">[ thread ]</a>
+ <a href="subject.html#2104">[ subject ]</a>
+ <a href="author.html#2104">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6826">https://bugs.mageia.org/show_bug.cgi?id=6826</A>
+
+ Summary: Broken banner on forum
+ Product: Websites
+ Version: trunk
+ Platform: All
+ 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">bogusman222 at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">forums-discuss at ml.mageia.org</A>
+
+
+Description of problem:
+For some reason the banner on the top of the forum site extends too far beyond
+the edge of the screen.
+
+<A HREF="http://i.imgur.com/nAIHX.png">http://i.imgur.com/nAIHX.png</A>
+Note the left-to-right scrollbar on the bottom of the screen.
+
+<A HREF="http://i.imgur.com/gYkmI.png">http://i.imgur.com/gYkmI.png</A>
+When scrolling to the far right nothing except too much banner is visible.
+
+<A HREF="http://i.imgur.com/eF7Tk.png">http://i.imgur.com/eF7Tk.png</A>
+Any other page does not have this behavior. Notice the lack of left-to-right
+scrollbar.
+
+--
+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="002103.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002123.html">[Mageia-webteam] [Bug 6826] Broken banner on forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2104">[ date ]</a>
+ <a href="thread.html#2104">[ thread ]</a>
+ <a href="subject.html#2104">[ subject ]</a>
+ <a href="author.html#2104">[ 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/2012-July/002105.html b/zarb-ml/mageia-webteam/2012-July/002105.html
new file mode 100644
index 000000000..80a5eb8f2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002105.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] italian localisation of the wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C50083716.4090607%40alice.it%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002123.html">
+ <LINK REL="Next" HREF="002106.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] italian localisation of the wiki</H1>
+ <B>Marcello</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C50083716.4090607%40alice.it%3E"
+ TITLE="[Mageia-webteam] italian localisation of the wiki">marcello.anni at alice.it
+ </A><BR>
+ <I>Thu Jul 19 18:34:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002123.html">[Mageia-webteam] [Bug 6826] Broken banner on forum
+</A></li>
+ <LI>Next message: <A HREF="002106.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2105">[ date ]</a>
+ <a href="thread.html#2105">[ thread ]</a>
+ <a href="subject.html#2105">[ subject ]</a>
+ <a href="author.html#2105">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>hi all,
+
+i've seen there is available the german version of the wiki. could you
+add also the italian version? i'll take care about it with Matteo
+Pasotti (and hopefully with other people)
+
+
+cheers,
+Marcello
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002123.html">[Mageia-webteam] [Bug 6826] Broken banner on forum
+</A></li>
+ <LI>Next message: <A HREF="002106.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2105">[ date ]</a>
+ <a href="thread.html#2105">[ thread ]</a>
+ <a href="subject.html#2105">[ subject ]</a>
+ <a href="author.html#2105">[ 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/2012-July/002106.html b/zarb-ml/mageia-webteam/2012-July/002106.html
new file mode 100644
index 000000000..5a4fd41b7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002106.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] italian localisation of the wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C500845CD.2000008%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002105.html">
+ <LINK REL="Next" HREF="002107.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] italian localisation of the wiki</H1>
+ <B>Matteo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C500845CD.2000008%40gmail.com%3E"
+ TITLE="[Mageia-webteam] italian localisation of the wiki">pasotti.matteo at gmail.com
+ </A><BR>
+ <I>Thu Jul 19 19:37:17 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002105.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002107.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2106">[ date ]</a>
+ <a href="thread.html#2106">[ thread ]</a>
+ <a href="subject.html#2106">[ subject ]</a>
+ <a href="author.html#2106">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On 19/07/2012 18:34, Marcello wrote:
+&gt;<i> hi all,
+</I>&gt;<i>
+</I>&gt;<i> i've seen there is available the german version of the wiki. could
+</I>&gt;<i> you add also the italian version? i'll take care about it with
+</I>&gt;<i> Matteo Pasotti (and hopefully with other people)
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> cheers, Marcello
+</I>
+I have no much time to start working on a localized wiki (I'm already
+overloaded by packaging and by translating blog posts) so don't
+consider me right now, please.
+
+I think that before asking for the activation of an italian wiki we
+should have enough resources (human) to properly handle already
+existing stuff, but this is my humble opinion.
+
+Clarified this I would ask if it is already available a policy that we
+should follow for its population and if someone can point me some
+references.
+
+Regards
+- --
+Matteo
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.12 (GNU/Linux)
+Comment: Using GnuPG with Mozilla - <A HREF="http://enigmail.mozdev.org/">http://enigmail.mozdev.org/</A>
+
+iQEcBAEBAgAGBQJQCEXKAAoJED3LowjDDWbNb5IIAKS2TtiUN8hI/mBGVw4t++X1
+9TCc7H5CbibHP0qPHugPfoAB+vIPaksHLq2/gB8aQbAhCIKHMkwo8ug6rJ0fVSar
+C0BPXXRDElKJWgEHUl5+ljVpuIvGYxvt38UlKYYxvDKdGm3m8+ZVh25QE+F/FFDC
+W8HFb/4hun+gXEympWRXkisJI/IVvRB+zkYqVimFV2zLvAt9W5gsYzRtiLbLYs1F
+LF2YQ9lvqonUvtRJ2o9r6x8ix/79NR/A9PfkAuLka+DQsUHpn96vE0XSon9CeiNN
+oD5KZsGW7+SSylCFs42rhPHigrCkXBigT1B3Q9dLRQK2pbgW576JIeuswZjoEmg=
+=P84k
+-----END PGP SIGNATURE-----
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002105.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002107.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2106">[ date ]</a>
+ <a href="thread.html#2106">[ thread ]</a>
+ <a href="subject.html#2106">[ subject ]</a>
+ <a href="author.html#2106">[ 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/2012-July/002107.html b/zarb-ml/mageia-webteam/2012-July/002107.html
new file mode 100644
index 000000000..bdadd4c86
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002107.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] italian localisation of the wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C50084ACF.4000209%40zarb.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002106.html">
+ <LINK REL="Next" HREF="002108.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] italian localisation of the wiki</H1>
+ <B>Claire Revillet</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C50084ACF.4000209%40zarb.org%3E"
+ TITLE="[Mageia-webteam] italian localisation of the wiki">grenoya at zarb.org
+ </A><BR>
+ <I>Thu Jul 19 19:58:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002106.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002108.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2107">[ date ]</a>
+ <a href="thread.html#2107">[ thread ]</a>
+ <a href="subject.html#2107">[ subject ]</a>
+ <a href="author.html#2107">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi
+
+Le 19/07/2012 19:37, Matteo a &#233;crit :
+&gt;<i> -----BEGIN PGP SIGNED MESSAGE-----
+</I>&gt;<i> Hash: SHA1
+</I>&gt;<i>
+</I>&gt;<i> On 19/07/2012 18:34, Marcello wrote:
+</I>&gt;&gt;<i> hi all,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> i've seen there is available the german version of the wiki. could
+</I>&gt;&gt;<i> you add also the italian version? i'll take care about it with
+</I>&gt;&gt;<i> Matteo Pasotti (and hopefully with other people)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> cheers, Marcello
+</I>&gt;<i> I have no much time to start working on a localized wiki (I'm already
+</I>&gt;<i> overloaded by packaging and by translating blog posts) so don't
+</I>&gt;<i> consider me right now, please.
+</I>&gt;<i>
+</I>&gt;<i> I think that before asking for the activation of an italian wiki we
+</I>&gt;<i> should have enough resources (human) to properly handle already
+</I>&gt;<i> existing stuff, but this is my humble opinion.
+</I>&gt;<i>
+</I>&gt;<i> Clarified this I would ask if it is already available a policy that we
+</I>&gt;<i> should follow for its population and if someone can point me some
+</I>&gt;<i> references.
+</I>I think the first step would be to come on the doc-discuss ML and
+discuss about it.
+Wiki translation is to be done in close relation with doc team and other
+&quot;wiki workers&quot; will be able to advice you :)
+And due to technical bloking actions, no translated wiki can be
+officially open yet (but you could begin the translation)
+And for the policy : <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-discuss at ml.mageia.org</A>
+
+grenoya
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002106.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002108.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2107">[ date ]</a>
+ <a href="thread.html#2107">[ thread ]</a>
+ <a href="subject.html#2107">[ subject ]</a>
+ <a href="author.html#2107">[ 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/2012-July/002108.html b/zarb-ml/mageia-webteam/2012-July/002108.html
new file mode 100644
index 000000000..825cd2244
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002108.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] italian localisation of the wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C50093596.4070900%40alice.it%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002107.html">
+ <LINK REL="Next" HREF="002109.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] italian localisation of the wiki</H1>
+ <B>Marcello</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C50093596.4070900%40alice.it%3E"
+ TITLE="[Mageia-webteam] italian localisation of the wiki">marcello.anni at alice.it
+ </A><BR>
+ <I>Fri Jul 20 12:40:22 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002107.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002109.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2108">[ date ]</a>
+ <a href="thread.html#2108">[ thread ]</a>
+ <a href="subject.html#2108">[ subject ]</a>
+ <a href="author.html#2108">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Il 19/07/2012 19:58, Claire Revillet ha scritto:
+&gt;<i> Hi
+</I>&gt;<i>
+</I>&gt;<i> Le 19/07/2012 19:37, Matteo a &#233;crit :
+</I>&gt;&gt;<i> -----BEGIN PGP SIGNED MESSAGE-----
+</I>&gt;&gt;<i> Hash: SHA1
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> On 19/07/2012 18:34, Marcello wrote:
+</I>&gt;&gt;&gt;<i> hi all,
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> i've seen there is available the german version of the wiki. could
+</I>&gt;&gt;&gt;<i> you add also the italian version? i'll take care about it with
+</I>&gt;&gt;&gt;<i> Matteo Pasotti (and hopefully with other people)
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> cheers, Marcello
+</I>&gt;&gt;<i> I have no much time to start working on a localized wiki (I'm already
+</I>&gt;&gt;<i> overloaded by packaging and by translating blog posts) so don't
+</I>&gt;&gt;<i> consider me right now, please.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I think that before asking for the activation of an italian wiki we
+</I>&gt;&gt;<i> should have enough resources (human) to properly handle already
+</I>&gt;&gt;<i> existing stuff, but this is my humble opinion.
+</I>
+ok, i understand your doubts, but i think that, even if we are a few
+(and also if i'm alone!), we should open it anyway, because if no one
+starts people won't join to contribute. this happened with mandriva
+wiki, when i started alone and in the last times we were 3-4.
+&gt;&gt;<i>
+</I>&gt;&gt;<i> Clarified this I would ask if it is already available a policy that we
+</I>&gt;&gt;<i> should follow for its population and if someone can point me some
+</I>&gt;&gt;<i> references.
+</I>&gt;<i> I think the first step would be to come on the doc-discuss ML and
+</I>&gt;<i> discuss about it.
+</I>&gt;<i> Wiki translation is to be done in close relation with doc team and other
+</I>&gt;<i> &quot;wiki workers&quot; will be able to advice you :)
+</I>&gt;<i> And due to technical bloking actions, no translated wiki can be
+</I>&gt;<i> officially open yet (but you could begin the translation)
+</I>&gt;<i> And for the policy : <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-discuss at ml.mageia.org</A>
+</I>&gt;<i>
+</I>&gt;<i> grenoya
+</I>
+do you mean that before opening it, we must translate everything? i had
+in mind to translate page per page, this could be difficult to do...
+
+cheers,
+Marcello
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002107.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002109.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2108">[ date ]</a>
+ <a href="thread.html#2108">[ thread ]</a>
+ <a href="subject.html#2108">[ subject ]</a>
+ <a href="author.html#2108">[ 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/2012-July/002109.html b/zarb-ml/mageia-webteam/2012-July/002109.html
new file mode 100644
index 000000000..b37f878a5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002109.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] italian localisation of the wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C5009607A.6050009%40xs4all.nl%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002108.html">
+ <LINK REL="Next" HREF="002110.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] italian localisation of the wiki</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C5009607A.6050009%40xs4all.nl%3E"
+ TITLE="[Mageia-webteam] italian localisation of the wiki">marja11 at xs4all.nl
+ </A><BR>
+ <I>Fri Jul 20 15:43:22 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002108.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002110.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2109">[ date ]</a>
+ <a href="thread.html#2109">[ thread ]</a>
+ <a href="subject.html#2109">[ subject ]</a>
+ <a href="author.html#2109">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 20/07/2012 12:40, Marcello wrote:
+&gt;<i> Il 19/07/2012 19:58, Claire Revillet ha scritto:
+</I>&gt;&gt;<i> Hi
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Le 19/07/2012 19:37, Matteo a &#233;crit :
+</I>&gt;&gt;&gt;<i> -----BEGIN PGP SIGNED MESSAGE-----
+</I>&gt;&gt;&gt;<i> Hash: SHA1
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> On 19/07/2012 18:34, Marcello wrote:
+</I>&gt;&gt;&gt;&gt;<i> hi all,
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> i've seen there is available the german version of the wiki. could
+</I>&gt;&gt;&gt;&gt;<i> you add also the italian version? i'll take care about it with
+</I>&gt;&gt;&gt;&gt;<i> Matteo Pasotti (and hopefully with other people)
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> cheers, Marcello
+</I>&gt;&gt;&gt;<i> I have no much time to start working on a localized wiki (I'm already
+</I>&gt;&gt;&gt;<i> overloaded by packaging and by translating blog posts) so don't
+</I>&gt;&gt;&gt;<i> consider me right now, please.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> I think that before asking for the activation of an italian wiki we
+</I>&gt;&gt;&gt;<i> should have enough resources (human) to properly handle already
+</I>&gt;&gt;&gt;<i> existing stuff, but this is my humble opinion.
+</I>&gt;<i>
+</I>&gt;<i> ok, i understand your doubts, but i think that, even if we are a few
+</I>&gt;<i> (and also if i'm alone!), we should open it anyway, because if no one
+</I>&gt;<i> starts people won't join to contribute. this happened with mandriva
+</I>&gt;<i> wiki, when i started alone and in the last times we were 3-4.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Clarified this I would ask if it is already available a policy that we
+</I>&gt;&gt;&gt;<i> should follow for its population and if someone can point me some
+</I>&gt;&gt;&gt;<i> references.
+</I>&gt;&gt;<i> I think the first step would be to come on the doc-discuss ML and
+</I>&gt;&gt;<i> discuss about it.
+</I>&gt;&gt;<i> Wiki translation is to be done in close relation with doc team and other
+</I>&gt;&gt;<i> &quot;wiki workers&quot; will be able to advice you :)
+</I>&gt;&gt;<i> And due to technical bloking actions, no translated wiki can be
+</I>&gt;&gt;<i> officially open yet (but you could begin the translation)
+</I>&gt;&gt;<i> And for the policy : <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-discuss at ml.mageia.org</A>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> grenoya
+</I>&gt;<i>
+</I>&gt;<i> do you mean that before opening it, we must translate everything? i had
+</I>&gt;<i> in mind to translate page per page, this could be difficult to do...
+</I>&gt;<i>
+</I>
+No, she was referring to the current problems there are. The wiki needs
+to be upgraded, so that we can start using the translate extension.
+However, there are problems with the upgrade.
+
+Although the German wiki is there, it hasn't been opened officially
+because of the upgrade problem, but also because interlinking doesn't
+work as expected, yet.
+
+The German wiki was meant to test everything with and get everything
+right, so that the wiki's in other languages will work without major flaws.
+
+Cheers,
+marja
+
+
+
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002108.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002110.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2109">[ date ]</a>
+ <a href="thread.html#2109">[ thread ]</a>
+ <a href="subject.html#2109">[ subject ]</a>
+ <a href="author.html#2109">[ 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/2012-July/002110.html b/zarb-ml/mageia-webteam/2012-July/002110.html
new file mode 100644
index 000000000..8d7b0e788
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002110.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] italian localisation of the wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C50099F8B.9030004%40alice.it%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002109.html">
+ <LINK REL="Next" HREF="002112.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] italian localisation of the wiki</H1>
+ <B>Marcello</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C50099F8B.9030004%40alice.it%3E"
+ TITLE="[Mageia-webteam] italian localisation of the wiki">marcello.anni at alice.it
+ </A><BR>
+ <I>Fri Jul 20 20:12:27 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002109.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002112.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2110">[ date ]</a>
+ <a href="thread.html#2110">[ thread ]</a>
+ <a href="subject.html#2110">[ subject ]</a>
+ <a href="author.html#2110">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Il 20/07/2012 15:43, Marja van Waes ha scritto:
+&gt;<i> On 20/07/2012 12:40, Marcello wrote:
+</I>&gt;&gt;<i> Il 19/07/2012 19:58, Claire Revillet ha scritto:
+</I>&gt;&gt;&gt;<i> Hi
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Le 19/07/2012 19:37, Matteo a &#233;crit :
+</I>&gt;&gt;&gt;&gt;<i> -----BEGIN PGP SIGNED MESSAGE-----
+</I>&gt;&gt;&gt;&gt;<i> Hash: SHA1
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> On 19/07/2012 18:34, Marcello wrote:
+</I>&gt;&gt;&gt;&gt;&gt;<i> hi all,
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;&gt;<i> i've seen there is available the german version of the wiki. could
+</I>&gt;&gt;&gt;&gt;&gt;<i> you add also the italian version? i'll take care about it with
+</I>&gt;&gt;&gt;&gt;&gt;<i> Matteo Pasotti (and hopefully with other people)
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;&gt;<i> cheers, Marcello
+</I>&gt;&gt;&gt;&gt;<i> I have no much time to start working on a localized wiki (I'm already
+</I>&gt;&gt;&gt;&gt;<i> overloaded by packaging and by translating blog posts) so don't
+</I>&gt;&gt;&gt;&gt;<i> consider me right now, please.
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> I think that before asking for the activation of an italian wiki we
+</I>&gt;&gt;&gt;&gt;<i> should have enough resources (human) to properly handle already
+</I>&gt;&gt;&gt;&gt;<i> existing stuff, but this is my humble opinion.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> ok, i understand your doubts, but i think that, even if we are a few
+</I>&gt;&gt;<i> (and also if i'm alone!), we should open it anyway, because if no one
+</I>&gt;&gt;<i> starts people won't join to contribute. this happened with mandriva
+</I>&gt;&gt;<i> wiki, when i started alone and in the last times we were 3-4.
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> Clarified this I would ask if it is already available a policy that we
+</I>&gt;&gt;&gt;&gt;<i> should follow for its population and if someone can point me some
+</I>&gt;&gt;&gt;&gt;<i> references.
+</I>&gt;&gt;&gt;<i> I think the first step would be to come on the doc-discuss ML and
+</I>&gt;&gt;&gt;<i> discuss about it.
+</I>&gt;&gt;&gt;<i> Wiki translation is to be done in close relation with doc team and other
+</I>&gt;&gt;&gt;<i> &quot;wiki workers&quot; will be able to advice you :)
+</I>&gt;&gt;&gt;<i> And due to technical bloking actions, no translated wiki can be
+</I>&gt;&gt;&gt;<i> officially open yet (but you could begin the translation)
+</I>&gt;&gt;&gt;<i> And for the policy : <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-discuss at ml.mageia.org</A>
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> grenoya
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> do you mean that before opening it, we must translate everything? i had
+</I>&gt;&gt;<i> in mind to translate page per page, this could be difficult to do...
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> No, she was referring to the current problems there are. The wiki needs
+</I>&gt;<i> to be upgraded, so that we can start using the translate extension.
+</I>&gt;<i> However, there are problems with the upgrade.
+</I>&gt;<i>
+</I>&gt;<i> Although the German wiki is there, it hasn't been opened officially
+</I>&gt;<i> because of the upgrade problem, but also because interlinking doesn't
+</I>&gt;<i> work as expected, yet.
+</I>&gt;<i>
+</I>&gt;<i> The German wiki was meant to test everything with and get everything
+</I>&gt;<i> right, so that the wiki's in other languages will work without major flaws.
+</I>&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i> marja
+</I>&gt;<i>
+</I>
+so, marja, do you think is it better to wait that problems get fixed? if
+there are issues, i can wait without problems, i only saw that german
+wiki was up and i thought everything was in place for all the
+localisations...
+
+cheers,
+Marcello
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002109.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002112.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2110">[ date ]</a>
+ <a href="thread.html#2110">[ thread ]</a>
+ <a href="subject.html#2110">[ subject ]</a>
+ <a href="author.html#2110">[ 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/2012-July/002111.html b/zarb-ml/mageia-webteam/2012-July/002111.html
new file mode 100644
index 000000000..afe2f9a9f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002111.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] italian localisation of the wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3CCANa9xwtfLhm8Ey-f66qEtmBM%2BnLJkTt%2Bi4sr3Qm8YAXsd_5vbw%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="002112.html">
+ <LINK REL="Next" HREF="002113.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] italian localisation of the wiki</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3CCANa9xwtfLhm8Ey-f66qEtmBM%2BnLJkTt%2Bi4sr3Qm8YAXsd_5vbw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] italian localisation of the wiki">rda at mageia.org
+ </A><BR>
+ <I>Fri Jul 20 20:16:50 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002112.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002113.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2111">[ date ]</a>
+ <a href="thread.html#2111">[ thread ]</a>
+ <a href="subject.html#2111">[ subject ]</a>
+ <a href="author.html#2111">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, Jul 20, 2012 at 3:43 PM, Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; wrote:
+&gt;<i> No, she was referring to the current problems there are. The wiki needs to
+</I>&gt;<i> be upgraded, so that we can start using the translate extension. However,
+</I>&gt;<i> there are problems with the upgrade.
+</I>&gt;<i>
+</I>&gt;<i> Although the German wiki is there, it hasn't been opened officially because
+</I>&gt;<i> of the upgrade problem, but also because interlinking doesn't work as
+</I>&gt;<i> expected, yet.
+</I>
+Note that using the translate extension and interwiki links are two
+options, exclusive from each other. But indeed, the steps are: upgrade
+the wiki, evaluate the translate extension, and if satisfying, migrate
+the wiki base URL and use it this way.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002112.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002113.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2111">[ date ]</a>
+ <a href="thread.html#2111">[ thread ]</a>
+ <a href="subject.html#2111">[ subject ]</a>
+ <a href="author.html#2111">[ 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/2012-July/002112.html b/zarb-ml/mageia-webteam/2012-July/002112.html
new file mode 100644
index 000000000..737e0ecfd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002112.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] italian localisation of the wiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C5009A4F6.50807%40xs4all.nl%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002110.html">
+ <LINK REL="Next" HREF="002111.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] italian localisation of the wiki</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20italian%20localisation%20of%20the%20wiki&In-Reply-To=%3C5009A4F6.50807%40xs4all.nl%3E"
+ TITLE="[Mageia-webteam] italian localisation of the wiki">marja11 at xs4all.nl
+ </A><BR>
+ <I>Fri Jul 20 20:35:34 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002110.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002111.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2112">[ date ]</a>
+ <a href="thread.html#2112">[ thread ]</a>
+ <a href="subject.html#2112">[ subject ]</a>
+ <a href="author.html#2112">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 20/07/2012 20:12, Marcello wrote:
+
+&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> so, marja, do you think is it better to wait that problems get fixed? if
+</I>&gt;<i> there are issues, i can wait without problems, i only saw that german
+</I>&gt;<i> wiki was up and i thought everything was in place for all the
+</I>&gt;<i> localisations...
+</I>&gt;<i>
+</I>
+Yes, I think it is better to wait.
+
+However, you might want to help obgr_seneca (Oliver Burger) with testing
+the Mediawiki package.
+
+IIRC, the last I heard about it was, that because of upstream changes he
+had to change the package layout and needed to make sure the new
+packages would safely replace the old ones on an update.
+Besides that the math extension didn't work, and he couldn't find out why.
+
+I'll cc him.
+
+Cheers,
+marja
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002110.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002111.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2112">[ date ]</a>
+ <a href="thread.html#2112">[ thread ]</a>
+ <a href="subject.html#2112">[ subject ]</a>
+ <a href="author.html#2112">[ 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/2012-July/002113.html b/zarb-ml/mageia-webteam/2012-July/002113.html
new file mode 100644
index 000000000..7690946d6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002113.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120725120008.6047C45B43%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="002111.html">
+ <LINK REL="Next" HREF="002114.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120725120008.6047C45B43%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jul 25 14:00:08 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002111.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002114.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2113">[ date ]</a>
+ <a href="thread.html#2113">[ thread ]</a>
+ <a href="subject.html#2113">[ subject ]</a>
+ <a href="author.html#2113">[ 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 #32 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-07-25 14:00:08 CEST ---
+news? i've just seen <A HREF="https://bugs.kde.org/">https://bugs.kde.org/</A> it's impressive the difference
+between our bugzilla tracker and their. is there a lack of manpower? i see even
+more packagers coming, but it seems that real developers and web-designers are
+lacking...
+
+
+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="002111.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI>Next message: <A HREF="002114.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2113">[ date ]</a>
+ <a href="thread.html#2113">[ thread ]</a>
+ <a href="subject.html#2113">[ subject ]</a>
+ <a href="author.html#2113">[ 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/2012-July/002114.html b/zarb-ml/mageia-webteam/2012-July/002114.html
new file mode 100644
index 000000000..6e272cfb6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002114.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120725220144.1F8C945B3E%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="002113.html">
+ <LINK REL="Next" HREF="002115.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120725220144.1F8C945B3E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jul 26 00:01:44 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002113.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002115.html">[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2114">[ date ]</a>
+ <a href="thread.html#2114">[ thread ]</a>
+ <a href="subject.html#2114">[ subject ]</a>
+ <a href="author.html#2114">[ 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 #33 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2012-07-26 02:01:44 CEST ---
+I don't think it's related to a lack of manpower, see the thread at:
+
+<A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2012-June/004473.html">https://www.mageia.org/pipermail/mageia-sysadm/2012-June/004473.html</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="002113.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002115.html">[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2114">[ date ]</a>
+ <a href="thread.html#2114">[ thread ]</a>
+ <a href="subject.html#2114">[ subject ]</a>
+ <a href="author.html#2114">[ 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/2012-July/002115.html b/zarb-ml/mageia-webteam/2012-July/002115.html
new file mode 100644
index 000000000..525d015d2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002115.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break
+ </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%206890%5D%20%5BNew%5D%20Financial%20report%20%3A%20Link%20contact%0A%09us%20break&In-Reply-To=%3Cbug-6890-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="002114.html">
+ <LINK REL="Next" HREF="002117.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break</H1>
+ <B>Arnaud Vacquier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206890%5D%20%5BNew%5D%20Financial%20report%20%3A%20Link%20contact%0A%09us%20break&In-Reply-To=%3Cbug-6890-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 28 07:19:01 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002114.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002117.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2115">[ date ]</a>
+ <a href="thread.html#2115">[ thread ]</a>
+ <a href="subject.html#2115">[ subject ]</a>
+ <a href="author.html#2115">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6890">https://bugs.mageia.org/show_bug.cgi?id=6890</A>
+
+ Summary: Financial report : Link contact us break
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/en/about/reports/2012/">http://www.mageia.org/en/about/reports/2012/</A>
+ 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">inster.css at gmail.com</A>
+
+
+hi,
+
+Description of problem:
+
+on this url : <A HREF="http://www.mageia.org/en/about/reports/2012/">http://www.mageia.org/en/about/reports/2012/</A>
+link &quot;contact us&quot; in the left is break
+
+thank 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 the assignee for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002114.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002117.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2115">[ date ]</a>
+ <a href="thread.html#2115">[ thread ]</a>
+ <a href="subject.html#2115">[ subject ]</a>
+ <a href="author.html#2115">[ 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/2012-July/002116.html b/zarb-ml/mageia-webteam/2012-July/002116.html
new file mode 100644
index 000000000..4d0c43e09
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002116.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error
+ </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%206891%5D%20%5BNew%5D%20Financial%20report%20%3A%20Many%20language%0A%09are%20404%20error&In-Reply-To=%3Cbug-6891-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="002117.html">
+ <LINK REL="Next" HREF="002118.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error</H1>
+ <B>Arnaud Vacquier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206891%5D%20%5BNew%5D%20Financial%20report%20%3A%20Many%20language%0A%09are%20404%20error&In-Reply-To=%3Cbug-6891-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 28 07:22:17 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002117.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A></li>
+ <LI>Next message: <A HREF="002118.html">[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2116">[ date ]</a>
+ <a href="thread.html#2116">[ thread ]</a>
+ <a href="subject.html#2116">[ subject ]</a>
+ <a href="author.html#2116">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6891">https://bugs.mageia.org/show_bug.cgi?id=6891</A>
+
+ Summary: Financial report : Many language are 404 error
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">inster.css at gmail.com</A>
+
+
+hi,
+
+Description of problem:
+Many languages are 404 error on this url :
+<A HREF="http://www.mageia.org/en/about/reports/2012/">http://www.mageia.org/en/about/reports/2012/</A>
+
+when you select right top
+french, german ...
+
+but for example esperanto running :
+<A HREF="http://www.mageia.org/eo/about/reports/2012/">http://www.mageia.org/eo/about/reports/2012/</A> (not translate)
+
+thank 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 the assignee for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002117.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A></li>
+ <LI>Next message: <A HREF="002118.html">[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2116">[ date ]</a>
+ <a href="thread.html#2116">[ thread ]</a>
+ <a href="subject.html#2116">[ subject ]</a>
+ <a href="author.html#2116">[ 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/2012-July/002117.html b/zarb-ml/mageia-webteam/2012-July/002117.html
new file mode 100644
index 000000000..9085064bf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002117.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+ </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%206890%5D%20Financial%20report%20%3A%20Link%20contact%20us%20break&In-Reply-To=%3C20120728115538.EFD2E45A64%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="002115.html">
+ <LINK REL="Next" HREF="002116.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6890] Financial report : Link contact us break</H1>
+ <B>R&#195;&#169;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206890%5D%20Financial%20report%20%3A%20Link%20contact%20us%20break&In-Reply-To=%3C20120728115538.EFD2E45A64%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6890] Financial report : Link contact us break">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 28 13:55:38 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002115.html">[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break
+</A></li>
+ <LI>Next message: <A HREF="002116.html">[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2117">[ date ]</a>
+ <a href="thread.html#2117">[ thread ]</a>
+ <a href="subject.html#2117">[ subject ]</a>
+ <a href="author.html#2117">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6890">https://bugs.mageia.org/show_bug.cgi?id=6890</A>
+
+R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>
+
+--- Comment #1 from R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>&gt; 2012-07-28 13:55:38 CEST ---
+Broken on the site map too.
+There is currently nothing in www/en/contact.
+
+@Romain: As a quick fix we could redirect to
+<A HREF="https://wiki.mageia.org/en/Contacts,">https://wiki.mageia.org/en/Contacts,</A> though you probably have a new contact
+page in mind?
+
+--
+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="002115.html">[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break
+</A></li>
+ <LI>Next message: <A HREF="002116.html">[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2117">[ date ]</a>
+ <a href="thread.html#2117">[ thread ]</a>
+ <a href="subject.html#2117">[ subject ]</a>
+ <a href="author.html#2117">[ 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/2012-July/002118.html b/zarb-ml/mageia-webteam/2012-July/002118.html
new file mode 100644
index 000000000..2645d6de4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002118.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos
+ </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%206894%5D%20%5BNew%5D%20Minitube%20does%20not%20load%20the%20videos&In-Reply-To=%3Cbug-6894-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="002116.html">
+ <LINK REL="Next" HREF="002119.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos</H1>
+ <B>Michael Martins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206894%5D%20%5BNew%5D%20Minitube%20does%20not%20load%20the%20videos&In-Reply-To=%3Cbug-6894-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 28 18:36:46 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002116.html">[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error
+</A></li>
+ <LI>Next message: <A HREF="002119.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2118">[ date ]</a>
+ <a href="thread.html#2118">[ thread ]</a>
+ <a href="subject.html#2118">[ subject ]</a>
+ <a href="author.html#2118">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6894">https://bugs.mageia.org/show_bug.cgi?id=6894</A>
+
+ Summary: Minitube does not load the videos
+ 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">michaelfm21 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>
+
+
+Description of problem: Minitube does not load the videos
+
+
+Version-Release number of selected component (if applicable): 1.7.1
+
+
+How reproducible:
+
+Minitube does not load the videos
+
+
+Steps to Reproduce:
+1.Everytime I will use it
+2.
+3.
+
+--
+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="002116.html">[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error
+</A></li>
+ <LI>Next message: <A HREF="002119.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2118">[ date ]</a>
+ <a href="thread.html#2118">[ thread ]</a>
+ <a href="subject.html#2118">[ subject ]</a>
+ <a href="author.html#2118">[ 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/2012-July/002119.html b/zarb-ml/mageia-webteam/2012-July/002119.html
new file mode 100644
index 000000000..4e2acb876
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002119.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6894] Minitube does not load the videos
+ </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%206894%5D%20Minitube%20does%20not%20load%20the%20videos&In-Reply-To=%3C20120728163815.E1A8645A12%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="002118.html">
+ <LINK REL="Next" HREF="002120.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6894] Minitube does not load the videos</H1>
+ <B>Michael Martins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206894%5D%20Minitube%20does%20not%20load%20the%20videos&In-Reply-To=%3C20120728163815.E1A8645A12%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6894] Minitube does not load the videos">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 28 18:38:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002118.html">[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos
+</A></li>
+ <LI>Next message: <A HREF="002120.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2119">[ date ]</a>
+ <a href="thread.html#2119">[ thread ]</a>
+ <a href="subject.html#2119">[ subject ]</a>
+ <a href="author.html#2119">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6894">https://bugs.mageia.org/show_bug.cgi?id=6894</A>
+
+--- Comment #1 from Michael Martins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">michaelfm21 at gmail.com</A>&gt; 2012-07-28 18:38:16 CEST ---
+I already fix, but wanted also knew how to fix.
+Open the terminal and type: $ export QT_PLUGIN_PATH=/usr/lib/kde4/plugins
+
+--
+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="002118.html">[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos
+</A></li>
+ <LI>Next message: <A HREF="002120.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2119">[ date ]</a>
+ <a href="thread.html#2119">[ thread ]</a>
+ <a href="subject.html#2119">[ subject ]</a>
+ <a href="author.html#2119">[ 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/2012-July/002120.html b/zarb-ml/mageia-webteam/2012-July/002120.html
new file mode 100644
index 000000000..54004c594
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002120.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6894] Minitube does not load the videos
+ </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%206894%5D%20Minitube%20does%20not%20load%20the%20videos&In-Reply-To=%3C20120728171242.DA8BA459CF%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="002119.html">
+ <LINK REL="Next" HREF="002121.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6894] Minitube does not load the videos</H1>
+ <B>Michael Martins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206894%5D%20Minitube%20does%20not%20load%20the%20videos&In-Reply-To=%3C20120728171242.DA8BA459CF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6894] Minitube does not load the videos">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 28 19:12:42 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002119.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI>Next message: <A HREF="002121.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2120">[ date ]</a>
+ <a href="thread.html#2120">[ thread ]</a>
+ <a href="subject.html#2120">[ subject ]</a>
+ <a href="author.html#2120">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6894">https://bugs.mageia.org/show_bug.cgi?id=6894</A>
+
+--- Comment #2 from Michael Martins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">michaelfm21 at gmail.com</A>&gt; 2012-07-28 19:12:42 CEST ---
+It is actually the minitube 1.8, but still the error. Everytime I open it, I
+have to type the command before.
+
+--
+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="002119.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI>Next message: <A HREF="002121.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2120">[ date ]</a>
+ <a href="thread.html#2120">[ thread ]</a>
+ <a href="subject.html#2120">[ subject ]</a>
+ <a href="author.html#2120">[ 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/2012-July/002121.html b/zarb-ml/mageia-webteam/2012-July/002121.html
new file mode 100644
index 000000000..fdff8ec68
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002121.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6894] Minitube does not load the videos
+ </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%206894%5D%20Minitube%20does%20not%20load%20the%20videos&In-Reply-To=%3C20120728171819.29FBE45A67%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="002120.html">
+ <LINK REL="Next" HREF="002122.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6894] Minitube does not load the videos</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206894%5D%20Minitube%20does%20not%20load%20the%20videos&In-Reply-To=%3C20120728171819.29FBE45A67%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6894] Minitube does not load the videos">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jul 28 19:18:19 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002120.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI>Next message: <A HREF="002122.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2121">[ date ]</a>
+ <a href="thread.html#2121">[ thread ]</a>
+ <a href="subject.html#2121">[ subject ]</a>
+ <a href="author.html#2121">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6894">https://bugs.mageia.org/show_bug.cgi?id=6894</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
+----------------------------------------------------------------------------
+ Product|Infrastructure |Mageia
+ Version|unspecified |Cauldron
+ Component|Bugzilla |RPM Packages
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.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">rdalverny at gmail.com</A>
+ |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</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="002120.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+ <LI>Next message: <A HREF="002122.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2121">[ date ]</a>
+ <a href="thread.html#2121">[ thread ]</a>
+ <a href="subject.html#2121">[ subject ]</a>
+ <a href="author.html#2121">[ 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/2012-July/002122.html b/zarb-ml/mageia-webteam/2012-July/002122.html
new file mode 100644
index 000000000..687307ff2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002122.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120731154430.8534E45BDE%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="002121.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120731154430.8534E45BDE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jul 31 17:44:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002121.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2122">[ date ]</a>
+ <a href="thread.html#2122">[ thread ]</a>
+ <a href="subject.html#2122">[ subject ]</a>
+ <a href="author.html#2122">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Severity|normal |enhancement
+ Priority|Normal |Low
+ AssignedTo|<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">forums-bugs at ml.mageia.org</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="002121.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2122">[ date ]</a>
+ <a href="thread.html#2122">[ thread ]</a>
+ <a href="subject.html#2122">[ subject ]</a>
+ <a href="author.html#2122">[ 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/2012-July/002123.html b/zarb-ml/mageia-webteam/2012-July/002123.html
new file mode 100644
index 000000000..a0a27ef5c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/002123.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6826] Broken banner on 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%206826%5D%20Broken%20banner%20on%20forum&In-Reply-To=%3C20120731162435.98AA845BCC%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="002104.html">
+ <LINK REL="Next" HREF="002105.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6826] Broken banner on forum</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206826%5D%20Broken%20banner%20on%20forum&In-Reply-To=%3C20120731162435.98AA845BCC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6826] Broken banner on forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jul 31 18:24:35 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002104.html">[Mageia-webteam] [Bug 6826] [New] Broken banner on forum
+</A></li>
+ <LI>Next message: <A HREF="002105.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2123">[ date ]</a>
+ <a href="thread.html#2123">[ thread ]</a>
+ <a href="subject.html#2123">[ subject ]</a>
+ <a href="author.html#2123">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6826">https://bugs.mageia.org/show_bug.cgi?id=6826</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-07-31 18:24:35 CEST ---
+AFAIK there is nothing forum admin can do about this, so assigning to rda who
+is the one who was working on the layout of all parts of mageia.org
+
+@ Romain
+
+Please set status to ASSIGNED if you agree with the assignment, or put OK on
+the whiteboard instead :)
+
+--
+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="002104.html">[Mageia-webteam] [Bug 6826] [New] Broken banner on forum
+</A></li>
+ <LI>Next message: <A HREF="002105.html">[Mageia-webteam] italian localisation of the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2123">[ date ]</a>
+ <a href="thread.html#2123">[ thread ]</a>
+ <a href="subject.html#2123">[ subject ]</a>
+ <a href="author.html#2123">[ 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/2012-July/author.html b/zarb-ml/mageia-webteam/2012-July/author.html
new file mode 100644
index 000000000..ea691f1ba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/author.html
@@ -0,0 +1,182 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam July 2012 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>July 2012 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>Sun Jul 1 01:16:00 CEST 2012</i><br>
+ <b>Ending:</b> <i>Tue Jul 31 18:24:35 CEST 2012</i><br>
+ <b>Messages:</b> 27<p>
+ <ul>
+
+<LI><A HREF="002113.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2113">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002114.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2114">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002097.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2097">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="002105.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2105">&nbsp;</A>
+<I>Marcello
+</I>
+
+<LI><A HREF="002108.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2108">&nbsp;</A>
+<I>Marcello
+</I>
+
+<LI><A HREF="002110.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2110">&nbsp;</A>
+<I>Marcello
+</I>
+
+<LI><A HREF="002118.html">[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos
+</A><A NAME="2118">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002119.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2119">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002120.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2120">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002106.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2106">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="002104.html">[Mageia-webteam] [Bug 6826] [New] Broken banner on forum
+</A><A NAME="2104">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002098.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2098">&nbsp;</A>
+<I>Angel Ashiqur Rahman
+</I>
+
+<LI><A HREF="002107.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2107">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="002115.html">[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break
+</A><A NAME="2115">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002116.html">[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error
+</A><A NAME="2116">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002117.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A><A NAME="2117">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002109.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2109">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002112.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2112">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002122.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="2122">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002123.html">[Mageia-webteam] [Bug 6826] Broken banner on forum
+</A><A NAME="2123">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002099.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="2099">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002100.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A><A NAME="2100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002101.html">[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page
+</A><A NAME="2101">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002102.html">[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page
+</A><A NAME="2102">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002103.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A><A NAME="2103">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002111.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2111">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002121.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2121">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Jul 31 18:24:35 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Tue Jul 31 18:24:39 CEST 2012</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/2012-July/date.html b/zarb-ml/mageia-webteam/2012-July/date.html
new file mode 100644
index 000000000..cdef2b462
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/date.html
@@ -0,0 +1,182 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam July 2012 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>July 2012 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>Sun Jul 1 01:16:00 CEST 2012</i><br>
+ <b>Ending:</b> <i>Tue Jul 31 18:24:35 CEST 2012</i><br>
+ <b>Messages:</b> 27<p>
+ <ul>
+
+<LI><A HREF="002097.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2097">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="002098.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2098">&nbsp;</A>
+<I>Angel Ashiqur Rahman
+</I>
+
+<LI><A HREF="002099.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="2099">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002100.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A><A NAME="2100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002101.html">[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page
+</A><A NAME="2101">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002102.html">[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page
+</A><A NAME="2102">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002103.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A><A NAME="2103">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002104.html">[Mageia-webteam] [Bug 6826] [New] Broken banner on forum
+</A><A NAME="2104">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002105.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2105">&nbsp;</A>
+<I>Marcello
+</I>
+
+<LI><A HREF="002106.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2106">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="002107.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2107">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="002108.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2108">&nbsp;</A>
+<I>Marcello
+</I>
+
+<LI><A HREF="002109.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2109">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002110.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2110">&nbsp;</A>
+<I>Marcello
+</I>
+
+<LI><A HREF="002111.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2111">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002112.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2112">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002113.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2113">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002114.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2114">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002115.html">[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break
+</A><A NAME="2115">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002116.html">[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error
+</A><A NAME="2116">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002117.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A><A NAME="2117">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002118.html">[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos
+</A><A NAME="2118">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002119.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2119">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002120.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2120">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002121.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2121">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002122.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="2122">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002123.html">[Mageia-webteam] [Bug 6826] Broken banner on forum
+</A><A NAME="2123">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Jul 31 18:24:35 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Tue Jul 31 18:24:39 CEST 2012</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/2012-July/index.html b/zarb-ml/mageia-webteam/2012-July/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-July/subject.html b/zarb-ml/mageia-webteam/2012-July/subject.html
new file mode 100644
index 000000000..29c3da79d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/subject.html
@@ -0,0 +1,182 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam July 2012 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>July 2012 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>Sun Jul 1 01:16:00 CEST 2012</i><br>
+ <b>Ending:</b> <i>Tue Jul 31 18:24:35 CEST 2012</i><br>
+ <b>Messages:</b> 27<p>
+ <ul>
+
+<LI><A HREF="002113.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2113">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002114.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2114">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002122.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="2122">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002100.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A><A NAME="2100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002103.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A><A NAME="2103">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002101.html">[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page
+</A><A NAME="2101">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002102.html">[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page
+</A><A NAME="2102">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002104.html">[Mageia-webteam] [Bug 6826] [New] Broken banner on forum
+</A><A NAME="2104">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002123.html">[Mageia-webteam] [Bug 6826] Broken banner on forum
+</A><A NAME="2123">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002115.html">[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break
+</A><A NAME="2115">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002117.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A><A NAME="2117">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002116.html">[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error
+</A><A NAME="2116">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002118.html">[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos
+</A><A NAME="2118">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002119.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2119">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002120.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2120">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<LI><A HREF="002121.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2121">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002099.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="2099">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002097.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2097">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="002098.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2098">&nbsp;</A>
+<I>Angel Ashiqur Rahman
+</I>
+
+<LI><A HREF="002105.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2105">&nbsp;</A>
+<I>Marcello
+</I>
+
+<LI><A HREF="002106.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2106">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="002107.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2107">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="002108.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2108">&nbsp;</A>
+<I>Marcello
+</I>
+
+<LI><A HREF="002109.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2109">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002110.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2110">&nbsp;</A>
+<I>Marcello
+</I>
+
+<LI><A HREF="002111.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2111">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002112.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2112">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Jul 31 18:24:35 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Tue Jul 31 18:24:39 CEST 2012</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/2012-July/thread.html b/zarb-ml/mageia-webteam/2012-July/thread.html
new file mode 100644
index 000000000..f56c2d14a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-July/thread.html
@@ -0,0 +1,223 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam July 2012 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>July 2012 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>Sun Jul 1 01:16:00 CEST 2012</i><br>
+ <b>Ending:</b> <i>Tue Jul 31 18:24:35 CEST 2012</i><br>
+ <b>Messages:</b> 27<p>
+ <ul>
+
+<!--0 01341098160- -->
+<LI><A HREF="002097.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2097">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<!--0 01341108105- -->
+<LI><A HREF="002098.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2098">&nbsp;</A>
+<I>Angel Ashiqur Rahman
+</I>
+
+<!--0 01341403077- -->
+<LI><A HREF="002099.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
+</A><A NAME="2099">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01341483832- -->
+<LI><A HREF="002100.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A><A NAME="2100">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01341485308- -->
+<LI><A HREF="002101.html">[Mageia-webteam] [Bug 6701] [New] Make a &quot;news central&quot; page
+</A><A NAME="2101">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01341485308-01341485602- -->
+<LI><A HREF="002102.html">[Mageia-webteam] [Bug 6701] Make a &quot;news central&quot; page
+</A><A NAME="2102">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01341490258- -->
+<LI><A HREF="002103.html">[Mageia-webteam] [Bug 6579] Google does not index bugs.mageia.org
+</A><A NAME="2103">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01342703992- -->
+<LI><A HREF="002104.html">[Mageia-webteam] [Bug 6826] [New] Broken banner on forum
+</A><A NAME="2104">&nbsp;</A>
+<I>Max
+</I>
+
+<UL>
+<!--1 01342703992-01343751875- -->
+<LI><A HREF="002123.html">[Mageia-webteam] [Bug 6826] Broken banner on forum
+</A><A NAME="2123">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01342715670- -->
+<LI><A HREF="002105.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2105">&nbsp;</A>
+<I>Marcello
+</I>
+
+<UL>
+<!--1 01342715670-01342719437- -->
+<LI><A HREF="002106.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2106">&nbsp;</A>
+<I>Matteo
+</I>
+
+<UL>
+<!--2 01342715670-01342719437-01342720719- -->
+<LI><A HREF="002107.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2107">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<UL>
+<!--3 01342715670-01342719437-01342720719-01342780822- -->
+<LI><A HREF="002108.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2108">&nbsp;</A>
+<I>Marcello
+</I>
+
+<!--3 01342715670-01342719437-01342720719-01342780822-01342791802- -->
+<LI><A HREF="002109.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2109">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--3 01342715670-01342719437-01342720719-01342780822-01342791802-01342807947- -->
+<LI><A HREF="002110.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2110">&nbsp;</A>
+<I>Marcello
+</I>
+
+<!--3 01342715670-01342719437-01342720719-01342780822-01342791802-01342807947-01342809334- -->
+<LI><A HREF="002112.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2112">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--3 01342715670-01342719437-01342720719-01342780822-01342791802-01342808210- -->
+<LI><A HREF="002111.html">[Mageia-webteam] italian localisation of the wiki
+</A><A NAME="2111">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01343217608- -->
+<LI><A HREF="002113.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2113">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01343253704- -->
+<LI><A HREF="002114.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2114">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--0 01343452741- -->
+<LI><A HREF="002115.html">[Mageia-webteam] [Bug 6890] [New] Financial report : Link contact us break
+</A><A NAME="2115">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<UL>
+<!--1 01343452741-01343476538- -->
+<LI><A HREF="002117.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A><A NAME="2117">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+</UL>
+<!--0 01343452937- -->
+<LI><A HREF="002116.html">[Mageia-webteam] [Bug 6891] [New] Financial report : Many language are 404 error
+</A><A NAME="2116">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<!--0 01343493406- -->
+<LI><A HREF="002118.html">[Mageia-webteam] [Bug 6894] [New] Minitube does not load the videos
+</A><A NAME="2118">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<UL>
+<!--1 01343493406-01343493495- -->
+<LI><A HREF="002119.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2119">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<!--1 01343493406-01343495562- -->
+<LI><A HREF="002120.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2120">&nbsp;</A>
+<I>Michael Martins
+</I>
+
+<!--1 01343493406-01343495899- -->
+<LI><A HREF="002121.html">[Mageia-webteam] [Bug 6894] Minitube does not load the videos
+</A><A NAME="2121">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01343749470- -->
+<LI><A HREF="002122.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="2122">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Jul 31 18:24:35 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Tue Jul 31 18:24:39 CEST 2012</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/2012-June.txt.gz b/zarb-ml/mageia-webteam/2012-June.txt.gz
new file mode 100644
index 000000000..b2b1040eb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-June/002016.html b/zarb-ml/mageia-webteam/2012-June/002016.html
new file mode 100644
index 000000000..adb22e986
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002016.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120603045742.0EB6144B1E%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="002017.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120603045742.0EB6144B1E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 3 06:57:42 CEST 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="002017.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2016">[ date ]</a>
+ <a href="thread.html#2016">[ thread ]</a>
+ <a href="subject.html#2016">[ subject ]</a>
+ <a href="author.html#2016">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+--- Comment #13 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-06-03 08:57:41 CEST ---
+@ Romain or someone else from web team
+
+Is there any news on this bug?
+
+I just saw the button in <A HREF="https://identity.mageia.org/register">https://identity.mageia.org/register</A> still links to
+<A HREF="http://mageia.org/wiki/doku.php?id=faq:accounts">http://mageia.org/wiki/doku.php?id=faq:accounts</A>
+instead of to
+<A HREF="https://wiki.mageia.org/en/Mageia.org_user_account">https://wiki.mageia.org/en/Mageia.org_user_account</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>Next message: <A HREF="002017.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2016">[ date ]</a>
+ <a href="thread.html#2016">[ thread ]</a>
+ <a href="subject.html#2016">[ subject ]</a>
+ <a href="author.html#2016">[ 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/2012-June/002017.html b/zarb-ml/mageia-webteam/2012-June/002017.html
new file mode 100644
index 000000000..e13942256
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002017.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120604001227.EB6A744B28%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="002016.html">
+ <LINK REL="Next" HREF="002018.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120604001227.EB6A744B28%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 4 02:12:27 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002016.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002018.html">[Mageia-webteam] [Bug 4735] exception in svnweb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2017">[ date ]</a>
+ <a href="thread.html#2017">[ thread ]</a>
+ <a href="subject.html#2017">[ subject ]</a>
+ <a href="author.html#2017">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</A>
+
+--- Comment #5 from Ken Bergen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>&gt; 2012-06-04 02:12:27 CEST ---
+Created attachment 2421
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=2421">https://bugs.mageia.org/attachment.cgi?id=2421</A>
+console output
+
+New install and test.
+
+Manuel you where correct in that there were lots of failures reported at the
+end of the first run.
+
+However all of the packages that failed in the first run installed in the
+second run.
+
+Here's the console output.
+
+--
+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="002016.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002018.html">[Mageia-webteam] [Bug 4735] exception in svnweb
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2017">[ date ]</a>
+ <a href="thread.html#2017">[ thread ]</a>
+ <a href="subject.html#2017">[ subject ]</a>
+ <a href="author.html#2017">[ 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/2012-June/002018.html b/zarb-ml/mageia-webteam/2012-June/002018.html
new file mode 100644
index 000000000..398ab5edf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002018.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4735] exception in svnweb
+ </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%204735%5D%20exception%20in%20svnweb&In-Reply-To=%3C20120604143254.69BDD44B21%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="002017.html">
+ <LINK REL="Next" HREF="002019.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4735] exception in svnweb</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204735%5D%20exception%20in%20svnweb&In-Reply-To=%3C20120604143254.69BDD44B21%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4735] exception in svnweb">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 4 16:32:54 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002017.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002019.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2018">[ date ]</a>
+ <a href="thread.html#2018">[ thread ]</a>
+ <a href="subject.html#2018">[ subject ]</a>
+ <a href="author.html#2018">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4735">https://bugs.mageia.org/show_bug.cgi?id=4735</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
+----------------------------------------------------------------------------
+ AssignedTo|<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>
+
+--
+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="002017.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002019.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2018">[ date ]</a>
+ <a href="thread.html#2018">[ thread ]</a>
+ <a href="subject.html#2018">[ subject ]</a>
+ <a href="author.html#2018">[ 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/2012-June/002019.html b/zarb-ml/mageia-webteam/2012-June/002019.html
new file mode 100644
index 000000000..d107f6cb3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002019.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] SSL for checksums
+ </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%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20120605070633.0137844AF2%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="002018.html">
+ <LINK REL="Next" HREF="002021.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] SSL for checksums</H1>
+ <B>Jeff Robins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20120605070633.0137844AF2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 09:06:32 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002018.html">[Mageia-webteam] [Bug 4735] exception in svnweb
+</A></li>
+ <LI>Next message: <A HREF="002021.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2019">[ date ]</a>
+ <a href="thread.html#2019">[ thread ]</a>
+ <a href="subject.html#2019">[ subject ]</a>
+ <a href="author.html#2019">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+
+--- Comment #8 from Jeff Robins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jeffrobinsSAE at gmail.com</A>&gt; 2012-06-05 09:06:32 CEST ---
+I don't know that the increase in load will be that great, most websites that I
+have heard of switching to https exclusively (google, facebook, twitter, etc),
+reported only about a 1% to 2% increase in server load.
+
+TBH, I would be much happier if the entire website was in https, but that's
+just on principle.
+
+--
+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="002018.html">[Mageia-webteam] [Bug 4735] exception in svnweb
+</A></li>
+ <LI>Next message: <A HREF="002021.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2019">[ date ]</a>
+ <a href="thread.html#2019">[ thread ]</a>
+ <a href="subject.html#2019">[ subject ]</a>
+ <a href="author.html#2019">[ 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/2012-June/002020.html b/zarb-ml/mageia-webteam/2012-June/002020.html
new file mode 100644
index 000000000..6bab56f89
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002020.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection
+ </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%206340%5D%20%5BNew%5D%20enable%20the%20automatic%20duplicate%0A%09detection&In-Reply-To=%3Cbug-6340-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="002021.html">
+ <LINK REL="Next" HREF="002022.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206340%5D%20%5BNew%5D%20enable%20the%20automatic%20duplicate%0A%09detection&In-Reply-To=%3Cbug-6340-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 13:07:20 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002021.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002022.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2020">[ date ]</a>
+ <a href="thread.html#2020">[ thread ]</a>
+ <a href="subject.html#2020">[ subject ]</a>
+ <a href="author.html#2020">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6340">https://bugs.mageia.org/show_bug.cgi?id=6340</A>
+
+ Summary: enable the automatic duplicate detection
+ 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">manuel at hiebel.eu</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>
+ Depends on: 40
+
+
+<A HREF="http://www.bugzilla.org/releases/4.2/release-notes.html#v40_introduction">http://www.bugzilla.org/releases/4.2/release-notes.html#v40_introduction</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="002021.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002022.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2020">[ date ]</a>
+ <a href="thread.html#2020">[ thread ]</a>
+ <a href="subject.html#2020">[ subject ]</a>
+ <a href="author.html#2020">[ 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/2012-June/002021.html b/zarb-ml/mageia-webteam/2012-June/002021.html
new file mode 100644
index 000000000..2f535f49a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002021.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120605110720.8747344B2A%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="002019.html">
+ <LINK REL="Next" HREF="002020.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120605110720.8747344B2A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 13:07:20 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002019.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="002020.html">[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2021">[ date ]</a>
+ <a href="thread.html#2021">[ thread ]</a>
+ <a href="subject.html#2021">[ subject ]</a>
+ <a href="author.html#2021">[ 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>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |6340
+
+--
+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="002019.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="002020.html">[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2021">[ date ]</a>
+ <a href="thread.html#2021">[ thread ]</a>
+ <a href="subject.html#2021">[ subject ]</a>
+ <a href="author.html#2021">[ 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/2012-June/002022.html b/zarb-ml/mageia-webteam/2012-June/002022.html
new file mode 100644
index 000000000..f4f556556
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002022.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+ </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%206340%5D%20enable%20the%20automatic%20duplicate%20detection&In-Reply-To=%3C20120605142556.5197444AE7%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="002020.html">
+ <LINK REL="Next" HREF="002023.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection</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%206340%5D%20enable%20the%20automatic%20duplicate%20detection&In-Reply-To=%3C20120605142556.5197444AE7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 16:25:56 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002020.html">[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection
+</A></li>
+ <LI>Next message: <A HREF="002023.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2022">[ date ]</a>
+ <a href="thread.html#2022">[ thread ]</a>
+ <a href="subject.html#2022">[ subject ]</a>
+ <a href="author.html#2022">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6340">https://bugs.mageia.org/show_bug.cgi?id=6340</A>
+
+--- 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; 2012-06-05 18:25:56 CEST ---
+This is a duplicate of bug 40, see bug 40 comment 29. :)
+
+--
+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="002020.html">[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection
+</A></li>
+ <LI>Next message: <A HREF="002023.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2022">[ date ]</a>
+ <a href="thread.html#2022">[ thread ]</a>
+ <a href="subject.html#2022">[ subject ]</a>
+ <a href="author.html#2022">[ 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/2012-June/002023.html b/zarb-ml/mageia-webteam/2012-June/002023.html
new file mode 100644
index 000000000..9852b7f0c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002023.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+ </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%206340%5D%20enable%20the%20automatic%20duplicate%20detection&In-Reply-To=%3C20120605144710.7664944AB7%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="002022.html">
+ <LINK REL="Next" HREF="002024.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206340%5D%20enable%20the%20automatic%20duplicate%20detection&In-Reply-To=%3C20120605144710.7664944AB7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 16:47:10 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002022.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A></li>
+ <LI>Next message: <A HREF="002024.html">[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2023">[ date ]</a>
+ <a href="thread.html#2023">[ thread ]</a>
+ <a href="subject.html#2023">[ subject ]</a>
+ <a href="author.html#2023">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6340">https://bugs.mageia.org/show_bug.cgi?id=6340</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-06-05 16:47:10 CEST ---
+but it's enable as default with bugzilla &gt; 4.0 ?
+
+--
+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="002022.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A></li>
+ <LI>Next message: <A HREF="002024.html">[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2023">[ date ]</a>
+ <a href="thread.html#2023">[ thread ]</a>
+ <a href="subject.html#2023">[ subject ]</a>
+ <a href="author.html#2023">[ 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/2012-June/002024.html b/zarb-ml/mageia-webteam/2012-June/002024.html
new file mode 100644
index 000000000..c60171de0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002024.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect
+ </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%206345%5D%20%5BNew%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3Cbug-6345-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="002023.html">
+ <LINK REL="Next" HREF="002025.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect</H1>
+ <B>Grant van Gelder</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206345%5D%20%5BNew%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3Cbug-6345-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 18:39:28 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002023.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A></li>
+ <LI>Next message: <A HREF="002025.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2024">[ date ]</a>
+ <a href="thread.html#2024">[ thread ]</a>
+ <a href="subject.html#2024">[ subject ]</a>
+ <a href="author.html#2024">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6345">https://bugs.mageia.org/show_bug.cgi?id=6345</A>
+
+ Summary: SHA1 sum is incorrect
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/en/downloads/get/?q=Mageia-2-Liv">http://www.mageia.org/en/downloads/get/?q=Mageia-2-Liv</A>
+ eCD-GNOME-Europe1-Americas-x86_64-CD.iso
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">braindedd at gmail.com</A>
+
+
+The SHA1 checksum on the page is the same as the i586 page and is not correct
+for the x64 ISO.
+
+The correct SHA1 checksum: F9741792AA50B3C73C7C60AD2751FADAEC369BB4
+Incorrect SHA1 checksum: f0af3e4763d35329e21cea269688a0b2066014e3
+
+--
+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="002023.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A></li>
+ <LI>Next message: <A HREF="002025.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2024">[ date ]</a>
+ <a href="thread.html#2024">[ thread ]</a>
+ <a href="subject.html#2024">[ subject ]</a>
+ <a href="author.html#2024">[ 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/2012-June/002025.html b/zarb-ml/mageia-webteam/2012-June/002025.html
new file mode 100644
index 000000000..e80e38d03
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002025.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+ </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%206345%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3C20120605164109.D45D644B3C%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="002024.html">
+ <LINK REL="Next" HREF="002026.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect</H1>
+ <B>Grant van Gelder</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206345%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3C20120605164109.D45D644B3C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 18:41:09 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002024.html">[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002026.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2025">[ date ]</a>
+ <a href="thread.html#2025">[ thread ]</a>
+ <a href="subject.html#2025">[ subject ]</a>
+ <a href="author.html#2025">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6345">https://bugs.mageia.org/show_bug.cgi?id=6345</A>
+
+Grant van Gelder &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">braindedd at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |High
+
+--- Comment #1 from Grant van Gelder &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">braindedd at gmail.com</A>&gt; 2012-06-05 18:41:10 CEST ---
+Marked high priority since the site states not to use a release if it fails the
+checksum test and it will always fail.
+
+--
+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="002024.html">[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002026.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2025">[ date ]</a>
+ <a href="thread.html#2025">[ thread ]</a>
+ <a href="subject.html#2025">[ subject ]</a>
+ <a href="author.html#2025">[ 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/2012-June/002026.html b/zarb-ml/mageia-webteam/2012-June/002026.html
new file mode 100644
index 000000000..5d3cd1235
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002026.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+ </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%206345%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3C20120605165048.DD97444ADB%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="002025.html">
+ <LINK REL="Next" HREF="002027.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206345%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3C20120605165048.DD97444ADB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 18:50:48 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002025.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002027.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2026">[ date ]</a>
+ <a href="thread.html#2026">[ thread ]</a>
+ <a href="subject.html#2026">[ subject ]</a>
+ <a href="author.html#2026">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6345">https://bugs.mageia.org/show_bug.cgi?id=6345</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-06-05 18:50:48 CEST ---
+indeed thanks
+
+[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manu at vosdook</A> ~]$ grep GNOME-Europe1 /mnt/data/iso/final/*/*sha1
+/mnt/data/iso/final/Mageia-2-LiveCD-GNOME-Europe1-Americas-i586-CD/Mageia-2-LiveCD-GNOME-Europe1-Americas-i586-CD.iso.sha1:f0af3e4763d35329e21cea269688a0b2066014e3
+ Mageia-2-LiveCD-GNOME-Europe1-Americas-i586-CD.iso
+/mnt/data/iso/final/Mageia-2-LiveCD-GNOME-Europe1-Americas-x86_64-CD/Mageia-2-LiveCD-GNOME-Europe1-Americas-x86_64-CD.iso.sha1:f9741792aa50b3c73c7c60ad2751fadaec369bb4
+ Mageia-2-LiveCD-GNOME-Europe1-Americas-x86_64-CD.iso
+
+--
+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="002025.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002027.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2026">[ date ]</a>
+ <a href="thread.html#2026">[ thread ]</a>
+ <a href="subject.html#2026">[ subject ]</a>
+ <a href="author.html#2026">[ 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/2012-June/002027.html b/zarb-ml/mageia-webteam/2012-June/002027.html
new file mode 100644
index 000000000..869952d88
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002027.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+ </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%206345%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3C20120605185813.AFBCB44B3A%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="002026.html">
+ <LINK REL="Next" HREF="002028.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206345%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3C20120605185813.AFBCB44B3A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 20:58:13 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002026.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002028.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2027">[ date ]</a>
+ <a href="thread.html#2027">[ thread ]</a>
+ <a href="subject.html#2027">[ subject ]</a>
+ <a href="author.html#2027">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6345">https://bugs.mageia.org/show_bug.cgi?id=6345</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-06-05 20:58:12 CEST ---
+Fix committed (online in a few minutes), 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="002026.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002028.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2027">[ date ]</a>
+ <a href="thread.html#2027">[ thread ]</a>
+ <a href="subject.html#2027">[ subject ]</a>
+ <a href="author.html#2027">[ 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/2012-June/002028.html b/zarb-ml/mageia-webteam/2012-June/002028.html
new file mode 100644
index 000000000..7141ac96c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002028.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+ </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%206345%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3C20120605192454.BE2B644B3C%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="002027.html">
+ <LINK REL="Next" HREF="002029.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect</H1>
+ <B>Grant van Gelder</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206345%5D%20SHA1%20sum%20is%20incorrect&In-Reply-To=%3C20120605192454.BE2B644B3C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 5 21:24:54 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002027.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002029.html">[Mageia-webteam] Greetings Fellow Penguin Lovers...
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2028">[ date ]</a>
+ <a href="thread.html#2028">[ thread ]</a>
+ <a href="subject.html#2028">[ subject ]</a>
+ <a href="author.html#2028">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6345">https://bugs.mageia.org/show_bug.cgi?id=6345</A>
+
+--- Comment #4 from Grant van Gelder &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">braindedd at gmail.com</A>&gt; 2012-06-05 21:24:54 CEST ---
+Fixed :)
+That was quick ;)
+
+--
+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="002027.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002029.html">[Mageia-webteam] Greetings Fellow Penguin Lovers...
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2028">[ date ]</a>
+ <a href="thread.html#2028">[ thread ]</a>
+ <a href="subject.html#2028">[ subject ]</a>
+ <a href="author.html#2028">[ 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/2012-June/002029.html b/zarb-ml/mageia-webteam/2012-June/002029.html
new file mode 100644
index 000000000..5dc60b77c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002029.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Greetings Fellow Penguin Lovers...
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Greetings%20Fellow%20Penguin%20Lovers...&In-Reply-To=%3C4FCF6B1E.1050506%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002028.html">
+ <LINK REL="Next" HREF="002030.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Greetings Fellow Penguin Lovers...</H1>
+ <B>Jonathan Ingold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Greetings%20Fellow%20Penguin%20Lovers...&In-Reply-To=%3C4FCF6B1E.1050506%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Greetings Fellow Penguin Lovers...">ingoldjo at gmail.com
+ </A><BR>
+ <I>Wed Jun 6 16:37:18 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002028.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002030.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2029">[ date ]</a>
+ <a href="thread.html#2029">[ thread ]</a>
+ <a href="subject.html#2029">[ subject ]</a>
+ <a href="author.html#2029">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hey Folks,
+
+ I'm a System Admin from MI, USA. For work I have always had to use
+RHEL or a clone like CentOS/Scientific almost exclusively. I have
+started running Mageia w/KDE on my laptop starting at beta-2. Was
+running it along side Bodhi w/E17 and Win7, now my laptop runs Mageia only.
+ I never got into Mandriva/Mandrake too much before, mostly because I
+started with SUSE back in '03 and then spent most of my time learning
+RHEL &amp; clones as they are pretty dominant here in the U.S. or at least
+those that I have worked at.
+ At any rate I am very impressed with Mageia, and figure with the time
+I'm spending on it I may as well pitch in a little as well. I am pretty
+capable, but like I said more used to the RH way of things is all. I am
+more an operations/server admin, and am not too into development, with
+the exception of front-end web-dev.
+ I am sending this off to a few lists and look forward to working with
+you all.
+
+Regards,
+
+Jonathan Ingold (Digigold)
+--
+
+
+ /&quot;A mind that is stretched by a new experience can never go back
+ to its old dimensions.&quot;/
+
+
+ *~Oliver Wendell Holmes, Jr.*
+
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20120606/7224607f/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002028.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A></li>
+ <LI>Next message: <A HREF="002030.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2029">[ date ]</a>
+ <a href="thread.html#2029">[ thread ]</a>
+ <a href="subject.html#2029">[ subject ]</a>
+ <a href="author.html#2029">[ 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/2012-June/002030.html b/zarb-ml/mageia-webteam/2012-June/002030.html
new file mode 100644
index 000000000..216b30810
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002030.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+ </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%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120606194123.5218F44B65%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="002029.html">
+ <LINK REL="Next" HREF="002031.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20415%5D%20Use%20common%20name%20%28cn%29%20instead%20of%20login%0A%20%28uid%29%20for%20user%20public%20name&In-Reply-To=%3C20120606194123.5218F44B65%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 6 21:41:23 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002029.html">[Mageia-webteam] Greetings Fellow Penguin Lovers...
+</A></li>
+ <LI>Next message: <A HREF="002031.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2030">[ date ]</a>
+ <a href="thread.html#2030">[ thread ]</a>
+ <a href="subject.html#2030">[ subject ]</a>
+ <a href="author.html#2030">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status Whiteboard| |OK
+
+--- Comment #12 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-06-06 21:41:22 CEST ---
+3-monthly ping, two months late
+
+Putting &quot;OK&quot; on the whiteboard (because it is certain this request was assigned
+correctly) so this bug won't show up in my standard stale bug search anymore
+
+--
+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="002029.html">[Mageia-webteam] Greetings Fellow Penguin Lovers...
+</A></li>
+ <LI>Next message: <A HREF="002031.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2030">[ date ]</a>
+ <a href="thread.html#2030">[ thread ]</a>
+ <a href="subject.html#2030">[ subject ]</a>
+ <a href="author.html#2030">[ 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/2012-June/002031.html b/zarb-ml/mageia-webteam/2012-June/002031.html
new file mode 100644
index 000000000..0a2ae500f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002031.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 966] Name check on identity should be more open
+ </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%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20120606195211.3B42744B6C%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="002030.html">
+ <LINK REL="Next" HREF="002032.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 966] Name check on identity should be more open</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20966%5D%20Name%20check%20on%20identity%20should%20be%20more%0A%09open&In-Reply-To=%3C20120606195211.3B42744B6C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 966] Name check on identity should be more open">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 6 21:52:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002030.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="002032.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2031">[ date ]</a>
+ <a href="thread.html#2031">[ thread ]</a>
+ <a href="subject.html#2031">[ subject ]</a>
+ <a href="author.html#2031">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=966">https://bugs.mageia.org/show_bug.cgi?id=966</A>
+
+--- Comment #5 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-06-06 21:52:10 CEST ---
+3 monthly ping (belated)
+
+Is this bug still valid?
+
+--
+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="002030.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A></li>
+ <LI>Next message: <A HREF="002032.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2031">[ date ]</a>
+ <a href="thread.html#2031">[ thread ]</a>
+ <a href="subject.html#2031">[ subject ]</a>
+ <a href="author.html#2031">[ 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/2012-June/002032.html b/zarb-ml/mageia-webteam/2012-June/002032.html
new file mode 100644
index 000000000..70e348e15
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002032.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6070] identity-trunk is random
+ </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%206070%5D%20identity-trunk%20is%20random&In-Reply-To=%3C20120608071409.7F6EF44B5A%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="002031.html">
+ <LINK REL="Next" HREF="002033.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6070] identity-trunk is random</H1>
+ <B>R&#195;&#169;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206070%5D%20identity-trunk%20is%20random&In-Reply-To=%3C20120608071409.7F6EF44B5A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6070] identity-trunk is random">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 8 09:14:09 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002031.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="002033.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2032">[ date ]</a>
+ <a href="thread.html#2032">[ thread ]</a>
+ <a href="subject.html#2032">[ subject ]</a>
+ <a href="author.html#2032">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6070">https://bugs.mageia.org/show_bug.cgi?id=6070</A>
+
+--- Comment #2 from R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>&gt; 2012-06-08 09:14:09 CEST ---
+I did a clean install of Mageia 2, now I can't reach identity-trunk with
+Firefox, Chromium, Konqueror nor Opera.
+I get a 500 error at each attempt.
+
+--
+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="002031.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A></li>
+ <LI>Next message: <A HREF="002033.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2032">[ date ]</a>
+ <a href="thread.html#2032">[ thread ]</a>
+ <a href="subject.html#2032">[ subject ]</a>
+ <a href="author.html#2032">[ 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/2012-June/002033.html b/zarb-ml/mageia-webteam/2012-June/002033.html
new file mode 100644
index 000000000..d2c90a599
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002033.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6070] identity-trunk is random
+ </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%206070%5D%20identity-trunk%20is%20random&In-Reply-To=%3C20120608072124.6567D44B7C%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="002032.html">
+ <LINK REL="Next" HREF="002034.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6070] identity-trunk is random</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206070%5D%20identity-trunk%20is%20random&In-Reply-To=%3C20120608072124.6567D44B7C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6070] identity-trunk is random">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 8 09:21:24 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002032.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI>Next message: <A HREF="002034.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2033">[ date ]</a>
+ <a href="thread.html#2033">[ thread ]</a>
+ <a href="subject.html#2033">[ subject ]</a>
+ <a href="author.html#2033">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6070">https://bugs.mageia.org/show_bug.cgi?id=6070</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">bgmilne at staff.telkomsa.net</A>
+
+--- Comment #3 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-06-08 09:21:24 CEST ---
+Are there any debug or error message in a log on the server that could bring
+some light to this?
+
+--
+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="002032.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI>Next message: <A HREF="002034.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2033">[ date ]</a>
+ <a href="thread.html#2033">[ thread ]</a>
+ <a href="subject.html#2033">[ subject ]</a>
+ <a href="author.html#2033">[ 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/2012-June/002034.html b/zarb-ml/mageia-webteam/2012-June/002034.html
new file mode 100644
index 000000000..60da2dea4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002034.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20120608205615.AB09C44BCB%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="002033.html">
+ <LINK REL="Next" HREF="002035.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20120608205615.AB09C44BCB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 8 22:56:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002033.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI>Next message: <A HREF="002035.html">[Mageia-webteam] marcom + artwork + web =&gt; atelier ?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2034">[ date ]</a>
+ <a href="thread.html#2034">[ thread ]</a>
+ <a href="subject.html#2034">[ subject ]</a>
+ <a href="author.html#2034">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+--- Comment #11 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-06-08 22:56:15 CEST ---
+In <A HREF="http://www.mageia.org/fr/community/">http://www.mageia.org/fr/community/</A> :
+
+If I click on &quot;Forum&quot; in the &quot;Bo&#238;te &#224; outils&quot;, I end up in the *English* forum.
+The link is to <A HREF="https://forums.mageia.org">https://forums.mageia.org</A> (so without &quot;/en/&quot;)
+
+But if I go to the bottom of the page, to &quot;Planet | Blog | Forum&quot;, and choose
+&quot;Forum&quot; there, I end up where I should go, in the *French* forum
+The link is to <A HREF="https://forums.mageia.org/fr/">https://forums.mageia.org/fr/</A>
+
+The &quot;forum&quot; link in &quot;Conversations&quot; works the same, It links to
+<A HREF="https://forums.mageia.org/fr/">https://forums.mageia.org/fr/</A> and you end up in
+<A HREF="http://www.mageialinux-online.org/forum/">http://www.mageialinux-online.org/forum/</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="002033.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI>Next message: <A HREF="002035.html">[Mageia-webteam] marcom + artwork + web =&gt; atelier ?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2034">[ date ]</a>
+ <a href="thread.html#2034">[ thread ]</a>
+ <a href="subject.html#2034">[ subject ]</a>
+ <a href="author.html#2034">[ 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/2012-June/002035.html b/zarb-ml/mageia-webteam/2012-June/002035.html
new file mode 100644
index 000000000..e138bf527
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002035.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] marcom + artwork + web =&gt; atelier ?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20marcom%20%2B%20artwork%20%2B%20web%20%3D%3E%20atelier%20%3F&In-Reply-To=%3CCANa9xwtG%3DA5L6HKxBeGiaU38myW1%3D8g8C6P68xX1RY0nL0ZLKA%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="002034.html">
+ <LINK REL="Next" HREF="002036.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] marcom + artwork + web =&gt; atelier ?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20marcom%20%2B%20artwork%20%2B%20web%20%3D%3E%20atelier%20%3F&In-Reply-To=%3CCANa9xwtG%3DA5L6HKxBeGiaU38myW1%3D8g8C6P68xX1RY0nL0ZLKA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] marcom + artwork + web =&gt; atelier ?">rdalverny at gmail.com
+ </A><BR>
+ <I>Sat Jun 9 18:27:01 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002034.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="002036.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2035">[ date ]</a>
+ <a href="thread.html#2035">[ thread ]</a>
+ <a href="subject.html#2035">[ subject ]</a>
+ <a href="author.html#2035">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi everyone, (xposted on -marketing, -artwork and -webteam; if
+possible, please follow-up in -marketing)
+
+So here's the plan (actually, that's a suggestion of a plan):
+ - we make a new team; which role is to think, design, produce and
+maintain the identity of the project and its declinations in messages,
+graphics, Web and print [1];
+ - this team is named &quot;atelier&quot;;
+ - a new mailing-list is open for that;
+ - it practically merges responsibilities from artwork, web and marcom teams;
+ - it integrates roles as diverse as: design, marketing, graphic
+research and production, copy writing, web design, integration and
+development, curation, etc.
+ - existing web, marcom and artwork lists are kept for archive, but
+locked down and all subscribers are unsubscribed;
+ - will have a say in whatever happens in this team, only those making
+and contributing things (so here, actionable designs, working code,
+graphics or copy, etc.); opinions and feedback from others still
+welcome, but not enough to move forward;
+ - external contributions are a true option; that is, one team peer
+getting in touch/inviting a professional person to propose and work on
+a specific, focused topic, from overall project identity design, down
+to a specific production. It only needs to be stated within the team
+first so that everyone is in sync;
+ - formatting our resources so that one-shot contributions from
+external people are made easier is a true option too (that means
+things easier to grasp, understand and update);
+ - no more meeting, we plan and do things, and update everyone through
+the mailing-list (or other, but asynchronous); so being on IRC is not
+a must, just good to have;
+ - no more than 10 hours a week on Mageia.
+
+Questions:
+ - who's going to lead this?
+ - what's the plan up to Mageia 3? several things at least in several
+regards (identity, print, web, distribution), but that will highly
+depend on who lead(s) the team.
+
+[1] ideally, everything that's the public face of Mageia.Org, the
+Mageia distribution and the Mageia project should go through this
+team; that does not mean that things will not be flexible, but if
+there's one place to discuss, document and synchronize all this work,
+it's here. That, in turn, requires some responsiveness and initiative
+from the team members.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002034.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="002036.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2035">[ date ]</a>
+ <a href="thread.html#2035">[ thread ]</a>
+ <a href="subject.html#2035">[ subject ]</a>
+ <a href="author.html#2035">[ 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/2012-June/002036.html b/zarb-ml/mageia-webteam/2012-June/002036.html
new file mode 100644
index 000000000..8fb0e667f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002036.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank 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%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120610173511.4B67D44C9B%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="002035.html">
+ <LINK REL="Next" HREF="002037.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120610173511.4B67D44C9B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 10 19:35:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002035.html">[Mageia-webteam] marcom + artwork + web =&gt; atelier ?
+</A></li>
+ <LI>Next message: <A HREF="002037.html">[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2036">[ date ]</a>
+ <a href="thread.html#2036">[ thread ]</a>
+ <a href="subject.html#2036">[ subject ]</a>
+ <a href="author.html#2036">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6139">https://bugs.mageia.org/show_bug.cgi?id=6139</A>
+
+Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |OLD
+
+--- Comment #7 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2012-06-10 21:35:11 CEST ---
+Due to Bug 4797, I had to start with a fresh opera profile, and am no
+longer seeing this problem. I'd been using the same profile since
+whatever version of opera was available with Mandrake 10.
+
+--
+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="002035.html">[Mageia-webteam] marcom + artwork + web =&gt; atelier ?
+</A></li>
+ <LI>Next message: <A HREF="002037.html">[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2036">[ date ]</a>
+ <a href="thread.html#2036">[ thread ]</a>
+ <a href="subject.html#2036">[ subject ]</a>
+ <a href="author.html#2036">[ 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/2012-June/002037.html b/zarb-ml/mageia-webteam/2012-June/002037.html
new file mode 100644
index 000000000..970f1bb3c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002037.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+ </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%206401%5D%20%5BNew%5D%20http%3A//check.mageia.org/%20should%0A%20either%20list%20%222%22%20or%20not%20list%20%221%22%20%28aka%20only%20list%20%22cauldron%22%29&In-Reply-To=%3Cbug-6401-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="002036.html">
+ <LINK REL="Next" HREF="002038.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206401%5D%20%5BNew%5D%20http%3A//check.mageia.org/%20should%0A%20either%20list%20%222%22%20or%20not%20list%20%221%22%20%28aka%20only%20list%20%22cauldron%22%29&In-Reply-To=%3Cbug-6401-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 10 20:47:50 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002036.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002038.html">[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2037">[ date ]</a>
+ <a href="thread.html#2037">[ thread ]</a>
+ <a href="subject.html#2037">[ subject ]</a>
+ <a href="author.html#2037">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6401">https://bugs.mageia.org/show_bug.cgi?id=6401</A>
+
+ Summary: <A HREF="http://check.mageia.org/">http://check.mageia.org/</A> should either list &quot;2&quot; or not
+ list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">thierry.vignaud at gmail.com</A>
+
+
+<A HREF="http://check.mageia.org/">http://check.mageia.org/</A> should either list &quot;2&quot; or not list &quot;1&quot; (aka only list
+&quot;cauldron&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="002036.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002038.html">[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2037">[ date ]</a>
+ <a href="thread.html#2037">[ thread ]</a>
+ <a href="subject.html#2037">[ subject ]</a>
+ <a href="author.html#2037">[ 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/2012-June/002038.html b/zarb-ml/mageia-webteam/2012-June/002038.html
new file mode 100644
index 000000000..b6e0b5b59
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002038.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+ </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%206401%5D%20http%3A//check.mageia.org/%20should%20either%0A%20list%20%222%22%20or%20not%20list%20%221%22%20%28aka%20only%20list%20%22cauldron%22%29&In-Reply-To=%3C20120610202602.83C6D44CCD%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="002037.html">
+ <LINK REL="Next" HREF="002039.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206401%5D%20http%3A//check.mageia.org/%20should%20either%0A%20list%20%222%22%20or%20not%20list%20%221%22%20%28aka%20only%20list%20%22cauldron%22%29&In-Reply-To=%3C20120610202602.83C6D44CCD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Jun 10 22:26:02 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002037.html">[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A></li>
+ <LI>Next message: <A HREF="002039.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2038">[ date ]</a>
+ <a href="thread.html#2038">[ thread ]</a>
+ <a href="subject.html#2038">[ subject ]</a>
+ <a href="author.html#2038">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6401">https://bugs.mageia.org/show_bug.cgi?id=6401</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">pterjan at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="002037.html">[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A></li>
+ <LI>Next message: <A HREF="002039.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2038">[ date ]</a>
+ <a href="thread.html#2038">[ thread ]</a>
+ <a href="subject.html#2038">[ subject ]</a>
+ <a href="author.html#2038">[ 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/2012-June/002039.html b/zarb-ml/mageia-webteam/2012-June/002039.html
new file mode 100644
index 000000000..eea03922b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002039.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+ </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%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120612195504.9C16A447E7%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="002038.html">
+ <LINK REL="Next" HREF="002040.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120612195504.9C16A447E7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 12 21:55:04 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002038.html">[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A></li>
+ <LI>Next message: <A HREF="002040.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2039">[ date ]</a>
+ <a href="thread.html#2039">[ thread ]</a>
+ <a href="subject.html#2039">[ subject ]</a>
+ <a href="author.html#2039">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |WORKSFORME
+
+--- Comment #8 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-06-12 21:55:04 CEST ---
+so
+
+--
+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="002038.html">[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A></li>
+ <LI>Next message: <A HREF="002040.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2039">[ date ]</a>
+ <a href="thread.html#2039">[ thread ]</a>
+ <a href="subject.html#2039">[ subject ]</a>
+ <a href="author.html#2039">[ 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/2012-June/002040.html b/zarb-ml/mageia-webteam/2012-June/002040.html
new file mode 100644
index 000000000..d05a7ba7b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002040.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+ </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%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20120612223213.8264144D25%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="002039.html">
+ <LINK REL="Next" HREF="002041.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201964%5D%20Devise%20and%20implement%20how%20to%20manage%0A%20mageia.%24tld%20%3D%3E%20mageia.org%20redirection&In-Reply-To=%3C20120612223213.8264144D25%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 13 00:32:13 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002039.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="002041.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2040">[ date ]</a>
+ <a href="thread.html#2040">[ thread ]</a>
+ <a href="subject.html#2040">[ subject ]</a>
+ <a href="author.html#2040">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1964">https://bugs.mageia.org/show_bug.cgi?id=1964</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|NEW |RESOLVED
+ Resolution| |OLD
+
+--
+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="002039.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="002041.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2040">[ date ]</a>
+ <a href="thread.html#2040">[ thread ]</a>
+ <a href="subject.html#2040">[ subject ]</a>
+ <a href="author.html#2040">[ 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/2012-June/002041.html b/zarb-ml/mageia-webteam/2012-June/002041.html
new file mode 100644
index 000000000..189cb62e3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002041.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6037] The french page is in english
+ </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%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120612223304.9162B44D21%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="002040.html">
+ <LINK REL="Next" HREF="002042.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6037] The french page is in english</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120612223304.9162B44D21%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6037] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 13 00:33:04 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002040.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="002042.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2041">[ date ]</a>
+ <a href="thread.html#2041">[ thread ]</a>
+ <a href="subject.html#2041">[ subject ]</a>
+ <a href="author.html#2041">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6037">https://bugs.mageia.org/show_bug.cgi?id=6037</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|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="002040.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A></li>
+ <LI>Next message: <A HREF="002042.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2041">[ date ]</a>
+ <a href="thread.html#2041">[ thread ]</a>
+ <a href="subject.html#2041">[ subject ]</a>
+ <a href="author.html#2041">[ 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/2012-June/002042.html b/zarb-ml/mageia-webteam/2012-June/002042.html
new file mode 100644
index 000000000..f528d56d6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002042.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120612223423.43F4444D26%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="002041.html">
+ <LINK REL="Next" HREF="002043.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120612223423.43F4444D26%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 13 00:34:23 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002041.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="002043.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2042">[ date ]</a>
+ <a href="thread.html#2042">[ thread ]</a>
+ <a href="subject.html#2042">[ subject ]</a>
+ <a href="author.html#2042">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</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 #6 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-06-13 00:34:22 CEST ---
+The upgrade procedure is described in the wiki. Should this bug be closed or?
+
+--
+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="002041.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="002043.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2042">[ date ]</a>
+ <a href="thread.html#2042">[ thread ]</a>
+ <a href="subject.html#2042">[ subject ]</a>
+ <a href="author.html#2042">[ 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/2012-June/002043.html b/zarb-ml/mageia-webteam/2012-June/002043.html
new file mode 100644
index 000000000..089549332
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002043.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20120612225058.D83B544D39%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="002042.html">
+ <LINK REL="Next" HREF="002044.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20120612225058.D83B544D39%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 13 00:50:58 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002042.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002044.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2043">[ date ]</a>
+ <a href="thread.html#2043">[ thread ]</a>
+ <a href="subject.html#2043">[ subject ]</a>
+ <a href="author.html#2043">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</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|ASSIGNED |RESOLVED
+ Resolution| |WORKSFORME
+
+--- Comment #9 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-06-13 00:50:58 CEST ---
+Closing.
+
+--
+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="002042.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002044.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2043">[ date ]</a>
+ <a href="thread.html#2043">[ thread ]</a>
+ <a href="subject.html#2043">[ subject ]</a>
+ <a href="author.html#2043">[ 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/2012-June/002044.html b/zarb-ml/mageia-webteam/2012-June/002044.html
new file mode 100644
index 000000000..c66d129b7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002044.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20120612225328.E180C44D3E%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="002043.html">
+ <LINK REL="Next" HREF="002045.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20120612225328.E180C44D3E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 13 00:53:28 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002043.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="002045.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2044">[ date ]</a>
+ <a href="thread.html#2044">[ thread ]</a>
+ <a href="subject.html#2044">[ subject ]</a>
+ <a href="author.html#2044">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</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|ASSIGNED |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #12 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-06-13 00:53:28 CEST ---
+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="002043.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="002045.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2044">[ date ]</a>
+ <a href="thread.html#2044">[ thread ]</a>
+ <a href="subject.html#2044">[ subject ]</a>
+ <a href="author.html#2044">[ 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/2012-June/002045.html b/zarb-ml/mageia-webteam/2012-June/002045.html
new file mode 100644
index 000000000..dec6305c5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002045.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120612225439.0E2D444D3E%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="002044.html">
+ <LINK REL="Next" HREF="002046.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120612225439.0E2D444D3E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 13 00:54:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002044.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="002046.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2045">[ date ]</a>
+ <a href="thread.html#2045">[ thread ]</a>
+ <a href="subject.html#2045">[ subject ]</a>
+ <a href="author.html#2045">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</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
+----------------------------------------------------------------------------
+ Depends on| |6070
+
+--
+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="002044.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="002046.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2045">[ date ]</a>
+ <a href="thread.html#2045">[ thread ]</a>
+ <a href="subject.html#2045">[ subject ]</a>
+ <a href="author.html#2045">[ 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/2012-June/002046.html b/zarb-ml/mageia-webteam/2012-June/002046.html
new file mode 100644
index 000000000..28ad063f4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002046.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120612230704.D808644D41%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="002045.html">
+ <LINK REL="Next" HREF="002047.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120612230704.D808644D41%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 13 01:07:04 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002045.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002047.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2046">[ date ]</a>
+ <a href="thread.html#2046">[ thread ]</a>
+ <a href="subject.html#2046">[ subject ]</a>
+ <a href="author.html#2046">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</A>
+
+--- Comment #7 from Ken Bergen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>&gt; 2012-06-13 03:07:04 CEST ---
+(In reply to comment #6)
+&gt;<i> The upgrade procedure is described in the wiki. Should this bug be closed or?
+</I>
+I added the advice to run the command twice to the wiki and as no one else has
+reported a problem it might as well by closed for now.
+
+--
+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="002045.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002047.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2046">[ date ]</a>
+ <a href="thread.html#2046">[ thread ]</a>
+ <a href="subject.html#2046">[ subject ]</a>
+ <a href="author.html#2046">[ 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/2012-June/002047.html b/zarb-ml/mageia-webteam/2012-June/002047.html
new file mode 100644
index 000000000..a0b761db5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002047.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120612230819.F27E744D42%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="002046.html">
+ <LINK REL="Next" HREF="002048.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120612230819.F27E744D42%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 13 01:08:19 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002046.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002048.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2047">[ date ]</a>
+ <a href="thread.html#2047">[ thread ]</a>
+ <a href="subject.html#2047">[ subject ]</a>
+ <a href="author.html#2047">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</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|NEW |RESOLVED
+ Resolution| |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="002046.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002048.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2047">[ date ]</a>
+ <a href="thread.html#2047">[ thread ]</a>
+ <a href="subject.html#2047">[ subject ]</a>
+ <a href="author.html#2047">[ 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/2012-June/002048.html b/zarb-ml/mageia-webteam/2012-June/002048.html
new file mode 100644
index 000000000..1ae44d07e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002048.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Status on several bugs, re Web sites
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Status%20on%20several%20bugs%2C%20re%20Web%20sites&In-Reply-To=%3CCANa9xwsy5te_7O_6gQwGeoryZd4X60RnoS5%3D2fNMGgeF8cvg8w%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="002047.html">
+ <LINK REL="Next" HREF="002065.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Status on several bugs, re Web sites</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Status%20on%20several%20bugs%2C%20re%20Web%20sites&In-Reply-To=%3CCANa9xwsy5te_7O_6gQwGeoryZd4X60RnoS5%3D2fNMGgeF8cvg8w%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Status on several bugs, re Web sites">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jun 13 11:21:35 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002047.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002065.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2048">[ date ]</a>
+ <a href="thread.html#2048">[ thread ]</a>
+ <a href="subject.html#2048">[ subject ]</a>
+ <a href="author.html#2048">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi guys,
+
+could you review a bit the following list of bugs related to Websites
+products on bugs.m.o and see what you can do to reduce it (what can be
+closed, what needs more info, what needs more discussion, comments,
+etc.)? Full list here: <A HREF="http://bit.ly/M0CESr">http://bit.ly/M0CESr</A>
+
+And, I would like to know if at least the following ones could receive
+your particular attention:
+
+ - <A HREF="https://bugs.mageia.org/show_bug.cgi?id=6027">https://bugs.mageia.org/show_bug.cgi?id=6027</A> (redirect
+start.mageia.org to www.mageia.org/community/) - currently, it only
+redirects to www.mageia.org/ - and, I could not find where it was
+defined in puppet)
+ - <A HREF="https://bugs.mageia.org/show_bug.cgi?id=6070">https://bugs.mageia.org/show_bug.cgi?id=6070</A> (identity-trunk does
+not work for some of us, could some logs be made available or
+investigated to know what could be the reason?) - this prevents from
+testing trunk and merging back into live branch; and there are a few
+important UI tweaks needed here (global nav, theming, adding info/faq
+links)
+ - <A HREF="https://bugs.mageia.org/show_bug.cgi?id=998">https://bugs.mageia.org/show_bug.cgi?id=998</A> (Please open de wiki)
+ - <A HREF="https://bugs.mageia.org/show_bug.cgi?id=4034">https://bugs.mageia.org/show_bug.cgi?id=4034</A> (central repository
+for [sanitized] logs and public data)
+ - plus, is there a status on Piwik - <A HREF="http://fr.piwik.org/">http://fr.piwik.org/</A> ? (it was
+discussed as an alternative to Google Analytics at a previous Council
+meeting - see <A HREF="http://meetbot.mageia.org/mageia-meeting/2012/mageia-meeting.2012-05-28-19.11.html">http://meetbot.mageia.org/mageia-meeting/2012/mageia-meeting.2012-05-28-19.11.html</A>)
+- if not, I shall keep on using GA.
+
+Thanks a lot!
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002047.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002065.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2048">[ date ]</a>
+ <a href="thread.html#2048">[ thread ]</a>
+ <a href="subject.html#2048">[ subject ]</a>
+ <a href="author.html#2048">[ 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/2012-June/002049.html b/zarb-ml/mageia-webteam/2012-June/002049.html
new file mode 100644
index 000000000..739f6c63d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002049.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120615093949.EF82E44D9F%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="002065.html">
+ <LINK REL="Next" HREF="002050.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120615093949.EF82E44D9F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 15 11:39:49 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002065.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A></li>
+ <LI>Next message: <A HREF="002050.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2049">[ date ]</a>
+ <a href="thread.html#2049">[ thread ]</a>
+ <a href="subject.html#2049">[ subject ]</a>
+ <a href="author.html#2049">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+Bug 3674 depends on bug 6070, which changed state.
+
+Bug 6070 Summary: identity-trunk is random
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=6070">https://bugs.mageia.org/show_bug.cgi?id=6070</A>
+
+ What |Old Value |New Value
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ 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="002065.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A></li>
+ <LI>Next message: <A HREF="002050.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2049">[ date ]</a>
+ <a href="thread.html#2049">[ thread ]</a>
+ <a href="subject.html#2049">[ subject ]</a>
+ <a href="author.html#2049">[ 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/2012-June/002050.html b/zarb-ml/mageia-webteam/2012-June/002050.html
new file mode 100644
index 000000000..7b1cf9775
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002050.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+ </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-blogteam%5D%20Improving%20Mageia%20Blog%20in%0A%09portuguese&In-Reply-To=%3C4FDCF3BC.5060304%40xs4all.nl%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002049.html">
+ <LINK REL="Next" HREF="002051.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-blogteam%5D%20Improving%20Mageia%20Blog%20in%0A%09portuguese&In-Reply-To=%3C4FDCF3BC.5060304%40xs4all.nl%3E"
+ TITLE="[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese">marja11 at xs4all.nl
+ </A><BR>
+ <I>Sat Jun 16 22:59:40 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002049.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002051.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2050">[ date ]</a>
+ <a href="thread.html#2050">[ thread ]</a>
+ <a href="subject.html#2050">[ subject ]</a>
+ <a href="author.html#2050">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 16-06-12 11:42, Macxi wrote:
+&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> Can anyone help me to add to the Mageia Blog in portuguese (in the right column
+</I>&gt;<i> of the blog) the option to:
+</I>&gt;<i>
+</I>&gt;<i> - &quot;search&quot;,
+</I>&gt;<i> - &quot;recent posts&quot;,
+</I>&gt;<i> - &quot;tags&quot; and
+</I>&gt;<i> - &quot;files&quot;
+</I>&gt;<i>
+</I>
+Those options are missing in more languages. I'll cc web team.
+
+Only the English and the French Blog page seem complete.
+
+Cheers,
+marja
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002049.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002051.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2050">[ date ]</a>
+ <a href="thread.html#2050">[ thread ]</a>
+ <a href="subject.html#2050">[ subject ]</a>
+ <a href="author.html#2050">[ 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/2012-June/002051.html b/zarb-ml/mageia-webteam/2012-June/002051.html
new file mode 100644
index 000000000..616566bd8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002051.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+ </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-blogteam%5D%20Improving%20Mageia%20Blog%20in%0A%09portuguese&In-Reply-To=%3CCANa9xwt9EZkyc4U0ZXJaT5HuvH506G2fF9gOZzs6rn2Xou%3DqQA%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="002050.html">
+ <LINK REL="Next" HREF="002052.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-blogteam%5D%20Improving%20Mageia%20Blog%20in%0A%09portuguese&In-Reply-To=%3CCANa9xwt9EZkyc4U0ZXJaT5HuvH506G2fF9gOZzs6rn2Xou%3DqQA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese">rda at mageia.org
+ </A><BR>
+ <I>Sun Jun 17 00:02:29 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002050.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A></li>
+ <LI>Next message: <A HREF="002052.html">[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2051">[ date ]</a>
+ <a href="thread.html#2051">[ thread ]</a>
+ <a href="subject.html#2051">[ subject ]</a>
+ <a href="author.html#2051">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Sat, Jun 16, 2012 at 10:59 PM, Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; wrote:
+&gt;<i> On 16-06-12 11:42, Macxi wrote:
+</I>&gt;&gt;<i> Can anyone help me to add to the Mageia Blog in portuguese (in the right
+</I>&gt;&gt;<i> column
+</I>&gt;&gt;<i> of the blog) the option to:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> - &#160;&quot;search&quot;,
+</I>&gt;&gt;<i> - &#160;&quot;recent posts&quot;,
+</I>&gt;&gt;<i> - &#160;&quot;tags&quot; and
+</I>&gt;&gt;<i> - &#160;&quot;files&quot;
+</I>&gt;<i>
+</I>&gt;<i> Those options are missing in more languages. I'll cc web team.
+</I>&gt;<i>
+</I>&gt;<i> Only the English and the French Blog page seem complete.
+</I>
+This is normally manageable from the theme settings in the admin
+section of the blog (so it should be each to each language team to set
+it up). Damien?
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002050.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A></li>
+ <LI>Next message: <A HREF="002052.html">[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2051">[ date ]</a>
+ <a href="thread.html#2051">[ thread ]</a>
+ <a href="subject.html#2051">[ subject ]</a>
+ <a href="author.html#2051">[ 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/2012-June/002052.html b/zarb-ml/mageia-webteam/2012-June/002052.html
new file mode 100644
index 000000000..cfa4769c4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002052.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.
+ </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%206506%5D%20%5BNew%5D%20There%20is%20no%20easy%20to%20find%20link%20to%0A%09the%20wiki.&In-Reply-To=%3Cbug-6506-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="002051.html">
+ <LINK REL="Next" HREF="002053.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20%5BNew%5D%20There%20is%20no%20easy%20to%20find%20link%20to%0A%09the%20wiki.&In-Reply-To=%3Cbug-6506-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 19 00:38:27 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002051.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A></li>
+ <LI>Next message: <A HREF="002053.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2052">[ date ]</a>
+ <a href="thread.html#2052">[ thread ]</a>
+ <a href="subject.html#2052">[ subject ]</a>
+ <a href="author.html#2052">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</A>
+
+ Summary: There is no easy to find link to the wiki.
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: All
+ 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">kbergen at telus.net</A>
+
+
+Description of problem:
+
+Currently users have to go through &quot;About us&quot;, &quot;Support&quot; or &quot;Community&quot; to find
+the wiki whereas it should be one click away.
+Perhaps &quot;Documentation&quot; would be a good name for the link but whatever the name
+it should be on most every Mageia web page.
+
+--
+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="002051.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A></li>
+ <LI>Next message: <A HREF="002053.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2052">[ date ]</a>
+ <a href="thread.html#2052">[ thread ]</a>
+ <a href="subject.html#2052">[ subject ]</a>
+ <a href="author.html#2052">[ 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/2012-June/002053.html b/zarb-ml/mageia-webteam/2012-June/002053.html
new file mode 100644
index 000000000..ffd1977fb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002053.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+ </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%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620075040.E27EC44D81%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="002052.html">
+ <LINK REL="Next" HREF="002054.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.</H1>
+ <B>Max</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620075040.E27EC44D81%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 09:50:40 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002052.html">[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002054.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2053">[ date ]</a>
+ <a href="thread.html#2053">[ thread ]</a>
+ <a href="subject.html#2053">[ subject ]</a>
+ <a href="author.html#2053">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</A>
+
+Max &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bogusman222 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bogusman222 at gmail.com</A>
+
+--- Comment #1 from Max &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bogusman222 at gmail.com</A>&gt; 2012-06-20 09:50:40 CEST ---
+Here's a thought: rolldown menu items.
+The banner has the main menu headers, and when you mouse over them a menu rolls
+down with links.
+So to get to the wiki in one click just mouse over Support and click the Wiki
+link.
+There was a time when I knew the JS code to do this, but it shouldn't be too
+difficult to look for.
+
+--
+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="002052.html">[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002054.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2053">[ date ]</a>
+ <a href="thread.html#2053">[ thread ]</a>
+ <a href="subject.html#2053">[ subject ]</a>
+ <a href="author.html#2053">[ 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/2012-June/002054.html b/zarb-ml/mageia-webteam/2012-June/002054.html
new file mode 100644
index 000000000..cfdd49920
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002054.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+ </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%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620080139.1A54244E7A%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="002053.html">
+ <LINK REL="Next" HREF="002055.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620080139.1A54244E7A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 10:01:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002053.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002055.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2054">[ date ]</a>
+ <a href="thread.html#2054">[ thread ]</a>
+ <a href="subject.html#2054">[ subject ]</a>
+ <a href="author.html#2054">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</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 #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-06-20 12:01:39 CEST ---
+(In reply to comment #0)
+&gt;<i> Currently users have to go through &quot;About us&quot;, &quot;Support&quot; or &quot;Community&quot; to find
+</I>&gt;<i> the wiki whereas it should be one click away.
+</I>
+That was on purpose. The wiki isn't, in itself, a goal, but a support of
+various types of documentation.
+
+&gt;<i> Perhaps &quot;Documentation&quot; would be a good name for the link but whatever the name
+</I>&gt;<i> it should be on most every Mageia web page.
+</I>
+If it's for documentation, for now, it goes under Support or Community.
+
+If we are to add Wiki again in the top level of navigation, why not add IRC,
+forums, blog, mailing-lists, calendar, etc. ? However, the sub-nav of the
+Community section could be improved (with such tabs as above).
+
+--
+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="002053.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002055.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2054">[ date ]</a>
+ <a href="thread.html#2054">[ thread ]</a>
+ <a href="subject.html#2054">[ subject ]</a>
+ <a href="author.html#2054">[ 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/2012-June/002055.html b/zarb-ml/mageia-webteam/2012-June/002055.html
new file mode 100644
index 000000000..0c6146f6b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002055.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+ </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%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620080225.A7FB944E84%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="002054.html">
+ <LINK REL="Next" HREF="002056.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620080225.A7FB944E84%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 10:02:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002054.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002056.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2055">[ date ]</a>
+ <a href="thread.html#2055">[ thread ]</a>
+ <a href="subject.html#2055">[ subject ]</a>
+ <a href="author.html#2055">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #3 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2012-06-20 10:02:25 CEST ---
+It's actually quite easy using jquery (or rather one of its plugins). I once
+did that somewhere else but I have to look up the name.
+Any thoughts, Romain?
+
+--
+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="002054.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002056.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2055">[ date ]</a>
+ <a href="thread.html#2055">[ thread ]</a>
+ <a href="subject.html#2055">[ subject ]</a>
+ <a href="author.html#2055">[ 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/2012-June/002056.html b/zarb-ml/mageia-webteam/2012-June/002056.html
new file mode 100644
index 000000000..b2e90853e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002056.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+ </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%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620080554.B3DCB44E89%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="002055.html">
+ <LINK REL="Next" HREF="002057.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620080554.B3DCB44E89%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 10:05:54 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002055.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002057.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2056">[ date ]</a>
+ <a href="thread.html#2056">[ thread ]</a>
+ <a href="subject.html#2056">[ subject ]</a>
+ <a href="author.html#2056">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-06-20 10:05:54 CEST ---
+Could be done, yes. But, I'm not sure mouse* callbacks are so nice now that
+there are touch devices; better have a consistent behaviour between click and
+touch. And I'm not sure either about such modal navigation.
+
+Prototypes welcome.
+
+--
+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="002055.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002057.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2056">[ date ]</a>
+ <a href="thread.html#2056">[ thread ]</a>
+ <a href="subject.html#2056">[ subject ]</a>
+ <a href="author.html#2056">[ 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/2012-June/002057.html b/zarb-ml/mageia-webteam/2012-June/002057.html
new file mode 100644
index 000000000..5f10c5a17
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002057.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+ </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%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620090250.71A6544E84%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="002056.html">
+ <LINK REL="Next" HREF="002058.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620090250.71A6544E84%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 11:02:50 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002056.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002058.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2057">[ date ]</a>
+ <a href="thread.html#2057">[ thread ]</a>
+ <a href="subject.html#2057">[ subject ]</a>
+ <a href="author.html#2057">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</A>
+
+--- Comment #5 from Ken Bergen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>&gt; 2012-06-20 11:02:50 CEST ---
+(In reply to comment #2)
+&gt;<i> (In reply to comment #0)
+</I>&gt;<i> &gt; Currently users have to go through &quot;About us&quot;, &quot;Support&quot; or &quot;Community&quot; to find
+</I>&gt;<i> &gt; the wiki whereas it should be one click away.
+</I>&gt;<i>
+</I>&gt;<i> That was on purpose. The wiki isn't, in itself, a goal, but a support of
+</I>&gt;<i> various types of documentation.
+</I>&gt;<i>
+</I>
+I'm puzzled. As a community driven distribution does the wiki which is written
+by/for the community take second place to other documentation which by the way
+I haven't found?
+
+&gt;<i> If it's for documentation, for now, it goes under Support or Community.
+</I>&gt;<i>
+</I>&gt;<i> If we are to add Wiki again in the top level of navigation, why not add IRC,
+</I>&gt;<i> forums, blog, mailing-lists, calendar, etc. ?
+</I>
+As I see it the wiki should be a first stop for &quot;How do I?&quot; help.
+The forum and IRC are for interactive help on things not yet covered in the
+wiki.
+
+The blog, mailing-lists, calendar, etc. are as I see it for announcements and
+an overview of what's happening in/to &quot;OUR&quot; as a community distribution.
+
+--
+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="002056.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002058.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2057">[ date ]</a>
+ <a href="thread.html#2057">[ thread ]</a>
+ <a href="subject.html#2057">[ subject ]</a>
+ <a href="author.html#2057">[ 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/2012-June/002058.html b/zarb-ml/mageia-webteam/2012-June/002058.html
new file mode 100644
index 000000000..f592895e7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002058.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+ </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%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620115233.694DD44F16%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="002057.html">
+ <LINK REL="Next" HREF="002059.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620115233.694DD44F16%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 13:52:33 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002057.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002059.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2058">[ date ]</a>
+ <a href="thread.html#2058">[ thread ]</a>
+ <a href="subject.html#2058">[ subject ]</a>
+ <a href="author.html#2058">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</A>
+
+Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>
+
+--- Comment #6 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2012-06-20 13:52:33 CEST ---
++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 the assignee for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002057.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002059.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2058">[ date ]</a>
+ <a href="thread.html#2058">[ thread ]</a>
+ <a href="subject.html#2058">[ subject ]</a>
+ <a href="author.html#2058">[ 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/2012-June/002059.html b/zarb-ml/mageia-webteam/2012-June/002059.html
new file mode 100644
index 000000000..dcd0aff32
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002059.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+ </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%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620115554.066DE44F1D%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="002058.html">
+ <LINK REL="Next" HREF="002060.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.</H1>
+ <B>Max</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620115554.066DE44F1D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 13:55:54 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002058.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002060.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2059">[ date ]</a>
+ <a href="thread.html#2059">[ thread ]</a>
+ <a href="subject.html#2059">[ subject ]</a>
+ <a href="author.html#2059">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</A>
+
+--- Comment #7 from Max &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bogusman222 at gmail.com</A>&gt; 2012-06-20 13:55:54 CEST ---
+The problem is that the wiki, as it is structured right now, is not really
+built to offer HOWTO stuff. The content just isn't there.
+Most of that content can be found in the forums, though.
+The way I see it, the first step to getting help is the forum, with the
+occasional link to a wiki age that will hold stuff that people frequently have
+trouble with, like the Maqeia section in the forums.
+
+--
+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="002058.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002060.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2059">[ date ]</a>
+ <a href="thread.html#2059">[ thread ]</a>
+ <a href="subject.html#2059">[ subject ]</a>
+ <a href="author.html#2059">[ 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/2012-June/002060.html b/zarb-ml/mageia-webteam/2012-June/002060.html
new file mode 100644
index 000000000..541caac24
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002060.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+ </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%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620144656.8F70844F17%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="002059.html">
+ <LINK REL="Next" HREF="002063.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.</H1>
+ <B>Max</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620144656.8F70844F17%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 16:46:56 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002059.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002063.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2060">[ date ]</a>
+ <a href="thread.html#2060">[ thread ]</a>
+ <a href="subject.html#2060">[ subject ]</a>
+ <a href="author.html#2060">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</A>
+
+--- Comment #8 from Max &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bogusman222 at gmail.com</A>&gt; 2012-06-20 16:46:56 CEST ---
+Created attachment 2477
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=2477">https://bugs.mageia.org/attachment.cgi?id=2477</A>
+Possible hack for rolldown menu
+
+Since my CSS skills are a bit rusty, this doesn't really work well, but as a
+proof of concept, I think it's enough.
+I took the source for <A HREF="https://www.mageia.org/en/map/">https://www.mageia.org/en/map/</A> and modified it a little
+bit.
+I added a few JS functions to manipulate hiding/unhiding the pulldown menus.
+I added a rolldown menu for Support. It's actually an invisible table.
+If you mouse over it you'll see a previously invisible table with links.
+The problem is that for some reason there is some padding between the li and
+the table it contains, I'm not sure why. So that you can't actually click the
+links there, but it's a step in the right direction (I think).
+(Ignore the fact that the rest of the page looks all funky, that's not the
+point.)
+
+--
+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="002059.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002063.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2060">[ date ]</a>
+ <a href="thread.html#2060">[ thread ]</a>
+ <a href="subject.html#2060">[ subject ]</a>
+ <a href="author.html#2060">[ 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/2012-June/002061.html b/zarb-ml/mageia-webteam/2012-June/002061.html
new file mode 100644
index 000000000..eac8f715c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002061.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6522] [New] No favicon
+ </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%206522%5D%20%5BNew%5D%20No%20favicon&In-Reply-To=%3Cbug-6522-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="002063.html">
+ <LINK REL="Next" HREF="002062.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6522] [New] No favicon</H1>
+ <B>Max</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206522%5D%20%5BNew%5D%20No%20favicon&In-Reply-To=%3Cbug-6522-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6522] [New] No favicon">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 16:59:24 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002063.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002062.html">[Mageia-webteam] [Bug 6522] No favicon
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2061">[ date ]</a>
+ <a href="thread.html#2061">[ thread ]</a>
+ <a href="subject.html#2061">[ subject ]</a>
+ <a href="author.html#2061">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6522">https://bugs.mageia.org/show_bug.cgi?id=6522</A>
+
+ Summary: No favicon
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/en/community/">http://www.mageia.org/en/community/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">bogusman222 at gmail.com</A>
+
+
+Description of problem:
+The favicon is missing from <A HREF="http://www.mageia.org/en/community/">http://www.mageia.org/en/community/</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="002063.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002062.html">[Mageia-webteam] [Bug 6522] No favicon
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2061">[ date ]</a>
+ <a href="thread.html#2061">[ thread ]</a>
+ <a href="subject.html#2061">[ subject ]</a>
+ <a href="author.html#2061">[ 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/2012-June/002062.html b/zarb-ml/mageia-webteam/2012-June/002062.html
new file mode 100644
index 000000000..66906136b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002062.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6522] No favicon
+ </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%206522%5D%20No%20favicon&In-Reply-To=%3C20120620183029.0C07E44F39%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="002061.html">
+ <LINK REL="Next" HREF="002064.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6522] No favicon</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206522%5D%20No%20favicon&In-Reply-To=%3C20120620183029.0C07E44F39%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6522] No favicon">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 20:30:29 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002061.html">[Mageia-webteam] [Bug 6522] [New] No favicon
+</A></li>
+ <LI>Next message: <A HREF="002064.html">[Mageia-webteam] Mageia Atelier IRC channel
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2062">[ date ]</a>
+ <a href="thread.html#2062">[ thread ]</a>
+ <a href="subject.html#2062">[ subject ]</a>
+ <a href="author.html#2062">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6522">https://bugs.mageia.org/show_bug.cgi?id=6522</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-06-20 20:30:29 CEST ---
+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="002061.html">[Mageia-webteam] [Bug 6522] [New] No favicon
+</A></li>
+ <LI>Next message: <A HREF="002064.html">[Mageia-webteam] Mageia Atelier IRC channel
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2062">[ date ]</a>
+ <a href="thread.html#2062">[ thread ]</a>
+ <a href="subject.html#2062">[ subject ]</a>
+ <a href="author.html#2062">[ 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/2012-June/002063.html b/zarb-ml/mageia-webteam/2012-June/002063.html
new file mode 100644
index 000000000..2224825d3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002063.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+ </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%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620185548.3CF9744F45%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="002060.html">
+ <LINK REL="Next" HREF="002061.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206506%5D%20There%20is%20no%20easy%20to%20find%20link%20to%20the%0A%09wiki.&In-Reply-To=%3C20120620185548.3CF9744F45%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 20 20:55:48 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002060.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002061.html">[Mageia-webteam] [Bug 6522] [New] No favicon
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2063">[ date ]</a>
+ <a href="thread.html#2063">[ thread ]</a>
+ <a href="subject.html#2063">[ subject ]</a>
+ <a href="author.html#2063">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6506">https://bugs.mageia.org/show_bug.cgi?id=6506</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>
+
+--- Comment #9 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2012-06-20 20:55:47 CEST ---
+@Romain: As an interim solution, as for many areas there's no other
+documentation for endusers exccept the wiki, why do you want to hide it? I
+think that's no good idea, if there are no other platforms with documentation
+(currently we only have the installer documentation, which is also not that
+visible IMHO) AND no content.
+
+So why make it harder for the users currently to reach documentation that we
+currently have and users helped to created? Sounds really strange to me ...
+
+Also i think it's quite bogus to say this is because of the switch to the new
+navbar, as that was mainly your decision from what i remember. And i still
+think it uses more space for less useability, the previous one was much better
+and had more links to important stuff, and it needed less space.
+But what do i know ... :/
+
+--
+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="002060.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A></li>
+ <LI>Next message: <A HREF="002061.html">[Mageia-webteam] [Bug 6522] [New] No favicon
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2063">[ date ]</a>
+ <a href="thread.html#2063">[ thread ]</a>
+ <a href="subject.html#2063">[ subject ]</a>
+ <a href="author.html#2063">[ 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/2012-June/002064.html b/zarb-ml/mageia-webteam/2012-June/002064.html
new file mode 100644
index 000000000..c72ae4cf0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002064.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia Atelier IRC channel
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Atelier%20IRC%20channel&In-Reply-To=%3C4FE21C8C.4040408%40gmx.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002062.html">
+ <LINK REL="Next" HREF="002066.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia Atelier IRC channel</H1>
+ <B>Sebastian</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20Atelier%20IRC%20channel&In-Reply-To=%3C4FE21C8C.4040408%40gmx.com%3E"
+ TITLE="[Mageia-webteam] Mageia Atelier IRC channel">sebsebseb_mageia at gmx.com
+ </A><BR>
+ <I>Wed Jun 20 20:55:08 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002062.html">[Mageia-webteam] [Bug 6522] No favicon
+</A></li>
+ <LI>Next message: <A HREF="002066.html">[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2064">[ date ]</a>
+ <a href="thread.html#2064">[ thread ]</a>
+ <a href="subject.html#2064">[ subject ]</a>
+ <a href="author.html#2064">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi
+
+For those that don't know three Mageia teams are merging into the
+Atelier team, and they are, artwork, marketing and communications, and
+web team.
+
+On Sunday I thought about setting up the IRC channel myself, and then on
+Monday I helped RDA set it up properly, and then got some people to join.
+
+The idea of the Atelier IRC channel is to replace separate team channels
+with it, so please stop using the separate team channels, and start
+using the #mageia-atelier channel instead.
+
+Sebastian
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002062.html">[Mageia-webteam] [Bug 6522] No favicon
+</A></li>
+ <LI>Next message: <A HREF="002066.html">[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2064">[ date ]</a>
+ <a href="thread.html#2064">[ thread ]</a>
+ <a href="subject.html#2064">[ subject ]</a>
+ <a href="author.html#2064">[ 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/2012-June/002065.html b/zarb-ml/mageia-webteam/2012-June/002065.html
new file mode 100644
index 000000000..c58692883
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002065.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Status on several bugs, re Web sites
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Status%20on%20several%20bugs%2C%20re%20Web%20sites&In-Reply-To=%3CCANa9xwu71VvzP2K8cA3jzQjCNeMagQ-b_sKC61Rswz-ahgOgNQ%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="002048.html">
+ <LINK REL="Next" HREF="002049.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Status on several bugs, re Web sites</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Status%20on%20several%20bugs%2C%20re%20Web%20sites&In-Reply-To=%3CCANa9xwu71VvzP2K8cA3jzQjCNeMagQ-b_sKC61Rswz-ahgOgNQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Status on several bugs, re Web sites">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Jun 20 21:24:17 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002048.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A></li>
+ <LI>Next message: <A HREF="002049.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2065">[ date ]</a>
+ <a href="thread.html#2065">[ thread ]</a>
+ <a href="subject.html#2065">[ subject ]</a>
+ <a href="author.html#2065">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>It's me again! :-)
+
+On Wed, Jun 13, 2012 at 11:21 AM, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> &#160;- <A HREF="https://bugs.mageia.org/show_bug.cgi?id=6027">https://bugs.mageia.org/show_bug.cgi?id=6027</A> (redirect
+</I>&gt;<i> start.mageia.org to www.mageia.org/community/)
+</I>
+That was done, thanks a lot boklm!
+
+&gt;<i> &#160;- <A HREF="https://bugs.mageia.org/show_bug.cgi?id=6070">https://bugs.mageia.org/show_bug.cgi?id=6070</A> (identity-trunk does
+</I>&gt;<i> not work for some of us, could some logs be made available or
+</I>&gt;<i> investigated to know what could be the reason?)
+</I>
+This is fixed too, thanks a lot to bgmilne. Left to me is the task to
+merge trunk into live.
+
+Left are the next two:
+
+&gt;<i> &#160;- <A HREF="https://bugs.mageia.org/show_bug.cgi?id=4034">https://bugs.mageia.org/show_bug.cgi?id=4034</A> (central repository
+</I>&gt;<i> for [sanitized] logs and public data)
+</I>
+&gt;<i> &#160;- plus, is there a status on Piwik - <A HREF="http://fr.piwik.org/">http://fr.piwik.org/</A> ? (it was
+</I>&gt;<i> discussed as an alternative to Google Analytics at a previous Council
+</I>&gt;<i> meeting - see <A HREF="http://meetbot.mageia.org/mageia-meeting/2012/mageia-meeting.2012-05-28-19.11.html">http://meetbot.mageia.org/mageia-meeting/2012/mageia-meeting.2012-05-28-19.11.html</A>)
+</I>&gt;<i> - if not, I shall keep on using GA.
+</I>
+Plus one more: a budget for:
+- what new hardware is needed now, or projected in the next 1 or 2
+years (that's a projection, it does not need to be perfectly defined,
+but a rough envelope is welcome).
+- what would it cost to replace what existing hardware (it's not a 1-1
+replacement, as today's hw may replace 2+ existing units).
+
+Or, I will put a wild-guess of 20 k&#8364; to provision within the next year
+(10k for new hw, 10k for existing hw), but without more precise
+targets (what type of hw, what uses).
+
+Thanks!
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002048.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A></li>
+ <LI>Next message: <A HREF="002049.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2065">[ date ]</a>
+ <a href="thread.html#2065">[ thread ]</a>
+ <a href="subject.html#2065">[ subject ]</a>
+ <a href="author.html#2065">[ 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/2012-June/002066.html b/zarb-ml/mageia-webteam/2012-June/002066.html
new file mode 100644
index 000000000..1776f40cd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002066.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to 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%206547%5D%20%5BNew%5D%20Missing%20links%20%22Reply%22%20to%20comment&In-Reply-To=%3Cbug-6547-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="002064.html">
+ <LINK REL="Next" HREF="002081.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment</H1>
+ <B>Matteo Pasotti</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206547%5D%20%5BNew%5D%20Missing%20links%20%22Reply%22%20to%20comment&In-Reply-To=%3Cbug-6547-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 23 16:11:20 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002064.html">[Mageia-webteam] Mageia Atelier IRC channel
+</A></li>
+ <LI>Next message: <A HREF="002081.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2066">[ date ]</a>
+ <a href="thread.html#2066">[ thread ]</a>
+ <a href="subject.html#2066">[ subject ]</a>
+ <a href="author.html#2066">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6547">https://bugs.mageia.org/show_bug.cgi?id=6547</A>
+
+ Summary: Missing links &quot;Reply&quot; to comment
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ Priority: Normal
+ Component: blog.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">pasotti.matteo at gmail.com</A>
+
+
+Description of problem:
+Italian blog localization (<A HREF="http://blog.mageia.org/it">http://blog.mageia.org/it</A>) misses the &quot;reply&quot; link
+used to reply to previous comments.
+
+Steps to Reproduce:
+1. go to
+blog.mageia.org/it/2012/05/23/la-nostra-bimba-sta-crescendo-mageia-2-e-tra-noi/#comments
+2. try to reply to one of the already available comments
+
+As I can see the Polski localization suffer of a similar issue here
+<A HREF="http://blog.mageia.org/pl/2011/02/15/wystartuj-z-mageia-sciagnij-ja/#comments">http://blog.mageia.org/pl/2011/02/15/wystartuj-z-mageia-sciagnij-ja/#comments</A>
+
+Regards,
+matteo
+
+--
+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="002064.html">[Mageia-webteam] Mageia Atelier IRC channel
+</A></li>
+ <LI>Next message: <A HREF="002081.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2066">[ date ]</a>
+ <a href="thread.html#2066">[ thread ]</a>
+ <a href="subject.html#2066">[ subject ]</a>
+ <a href="author.html#2066">[ 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/2012-June/002067.html b/zarb-ml/mageia-webteam/2012-June/002067.html
new file mode 100644
index 000000000..8bb300f1a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002067.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120623171925.216E044FA8%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="002095.html">
+ <LINK REL="Next" HREF="002068.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120623171925.216E044FA8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Jun 23 19:19:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002095.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI>Next message: <A HREF="002068.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2067">[ date ]</a>
+ <a href="thread.html#2067">[ thread ]</a>
+ <a href="subject.html#2067">[ subject ]</a>
+ <a href="author.html#2067">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Attachment #2421|application/octet-stream |text/plain
+ mime type| |
+
+--
+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="002095.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI>Next message: <A HREF="002068.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2067">[ date ]</a>
+ <a href="thread.html#2067">[ thread ]</a>
+ <a href="subject.html#2067">[ subject ]</a>
+ <a href="author.html#2067">[ 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/2012-June/002068.html b/zarb-ml/mageia-webteam/2012-June/002068.html
new file mode 100644
index 000000000..1d8a8bc51
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002068.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering 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%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20120625005920.6F46F44E6A%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="002067.html">
+ <LINK REL="Next" HREF="002069.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201364%5D%20Bug%20reported%20can%27t%20be%20%22Resolved%0A%20Duplicate%22%20without%20entering%20a%20comment&In-Reply-To=%3C20120625005920.6F46F44E6A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 25 02:59:20 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002067.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002069.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2068">[ date ]</a>
+ <a href="thread.html#2068">[ thread ]</a>
+ <a href="subject.html#2068">[ subject ]</a>
+ <a href="author.html#2068">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1364">https://bugs.mageia.org/show_bug.cgi?id=1364</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Resolution|WONTFIX |FIXED
+
+--- Comment #18 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-06-25 02:59:19 CEST ---
+fixed in fact..
+
+--
+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="002067.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002069.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2068">[ date ]</a>
+ <a href="thread.html#2068">[ thread ]</a>
+ <a href="subject.html#2068">[ subject ]</a>
+ <a href="author.html#2068">[ 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/2012-June/002069.html b/zarb-ml/mageia-webteam/2012-June/002069.html
new file mode 100644
index 000000000..6bf3eace1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002069.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+ </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%203981%5D%20Bugzilla%20should%20add%20CCs%20to%20new%20bug%20when%0A%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3C20120625010038.435E244EF9%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="002068.html">
+ <LINK REL="Next" HREF="002070.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203981%5D%20Bugzilla%20should%20add%20CCs%20to%20new%20bug%20when%0A%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3C20120625010038.435E244EF9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 25 03:00:38 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002068.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="002070.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2069">[ date ]</a>
+ <a href="thread.html#2069">[ thread ]</a>
+ <a href="subject.html#2069">[ subject ]</a>
+ <a href="author.html#2069">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3981">https://bugs.mageia.org/show_bug.cgi?id=3981</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |WONTFIX
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-06-25 05:00:38 CEST ---
+so not a bug for us
+
+--
+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="002068.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A></li>
+ <LI>Next message: <A HREF="002070.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2069">[ date ]</a>
+ <a href="thread.html#2069">[ thread ]</a>
+ <a href="subject.html#2069">[ subject ]</a>
+ <a href="author.html#2069">[ 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/2012-June/002070.html b/zarb-ml/mageia-webteam/2012-June/002070.html
new file mode 100644
index 000000000..03750c346
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002070.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+ </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%203981%5D%20Bugzilla%20should%20add%20CCs%20to%20new%20bug%20when%0A%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3C20120625112645.BFB7E44FAB%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="002069.html">
+ <LINK REL="Next" HREF="002071.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203981%5D%20Bugzilla%20should%20add%20CCs%20to%20new%20bug%20when%0A%20old%20one%20marked%20as%20duplicate&In-Reply-To=%3C20120625112645.BFB7E44FAB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Jun 25 13:26:45 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002069.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="002071.html">[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2070">[ date ]</a>
+ <a href="thread.html#2070">[ thread ]</a>
+ <a href="subject.html#2070">[ subject ]</a>
+ <a href="author.html#2070">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3981">https://bugs.mageia.org/show_bug.cgi?id=3981</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>
+
+--- Comment #4 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2012-06-25 13:26:45 CEST ---
+so, it's not something that a new bugzilla version can fix?
+
+--
+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="002069.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="002071.html">[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2070">[ date ]</a>
+ <a href="thread.html#2070">[ thread ]</a>
+ <a href="subject.html#2070">[ subject ]</a>
+ <a href="author.html#2070">[ 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/2012-June/002071.html b/zarb-ml/mageia-webteam/2012-June/002071.html
new file mode 100644
index 000000000..fd37f7aef
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002071.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?
+ </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%206578%5D%20%5BNew%5D%20Can%20we%20have%20the%20Cite%20extension%0A%09installed%3F&In-Reply-To=%3Cbug-6578-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="002070.html">
+ <LINK REL="Next" HREF="002072.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206578%5D%20%5BNew%5D%20Can%20we%20have%20the%20Cite%20extension%0A%09installed%3F&In-Reply-To=%3Cbug-6578-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 26 09:26:54 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002070.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="002072.html">[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2071">[ date ]</a>
+ <a href="thread.html#2071">[ thread ]</a>
+ <a href="subject.html#2071">[ subject ]</a>
+ <a href="author.html#2071">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6578">https://bugs.mageia.org/show_bug.cgi?id=6578</A>
+
+ Summary: Can we have the Cite extension installed?
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mediawiki.org/wiki/Extension:Cite/Cite.php">http://www.mediawiki.org/wiki/Extension:Cite/Cite.php</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">rdalverny at gmail.com</A>
+
+
+This extension enables footnotes in the wiki.
+
+--
+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="002070.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A></li>
+ <LI>Next message: <A HREF="002072.html">[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2071">[ date ]</a>
+ <a href="thread.html#2071">[ thread ]</a>
+ <a href="subject.html#2071">[ subject ]</a>
+ <a href="author.html#2071">[ 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/2012-June/002072.html b/zarb-ml/mageia-webteam/2012-June/002072.html
new file mode 100644
index 000000000..e8b43debb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002072.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?
+ </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%206578%5D%20Can%20we%20have%20the%20Cite%20extension%0A%09installed%3F&In-Reply-To=%3C20120626073006.6C5EF44F30%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="002071.html">
+ <LINK REL="Next" HREF="002073.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206578%5D%20Can%20we%20have%20the%20Cite%20extension%0A%09installed%3F&In-Reply-To=%3C20120626073006.6C5EF44F30%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 26 09:30:06 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002071.html">[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?
+</A></li>
+ <LI>Next message: <A HREF="002073.html">[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2072">[ date ]</a>
+ <a href="thread.html#2072">[ thread ]</a>
+ <a href="subject.html#2072">[ subject ]</a>
+ <a href="author.html#2072">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6578">https://bugs.mageia.org/show_bug.cgi?id=6578</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
+----------------------------------------------------------------------------
+ AssignedTo|<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>
+
+--
+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="002071.html">[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?
+</A></li>
+ <LI>Next message: <A HREF="002073.html">[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2072">[ date ]</a>
+ <a href="thread.html#2072">[ thread ]</a>
+ <a href="subject.html#2072">[ subject ]</a>
+ <a href="author.html#2072">[ 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/2012-June/002073.html b/zarb-ml/mageia-webteam/2012-June/002073.html
new file mode 100644
index 000000000..5fa80a4e8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002073.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org
+ </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%206579%5D%20%5BNew%5D%20Google%20does%20not%20index%0A%09bugs.mageia.org&In-Reply-To=%3Cbug-6579-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="002072.html">
+ <LINK REL="Next" HREF="002074.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206579%5D%20%5BNew%5D%20Google%20does%20not%20index%0A%09bugs.mageia.org&In-Reply-To=%3Cbug-6579-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 26 09:53:59 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002072.html">[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?
+</A></li>
+ <LI>Next message: <A HREF="002074.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2073">[ date ]</a>
+ <a href="thread.html#2073">[ thread ]</a>
+ <a href="subject.html#2073">[ subject ]</a>
+ <a href="author.html#2073">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6579">https://bugs.mageia.org/show_bug.cgi?id=6579</A>
+
+ Summary: Google does not index bugs.mageia.org
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">rdalverny at gmail.com</A>
+
+
+Searching for site:bugs.mageia.org on Google returns no result. There is a list
+of URLs, but no title, so no interesting info indexed.
+
+--
+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="002072.html">[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?
+</A></li>
+ <LI>Next message: <A HREF="002074.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2073">[ date ]</a>
+ <a href="thread.html#2073">[ thread ]</a>
+ <a href="subject.html#2073">[ subject ]</a>
+ <a href="author.html#2073">[ 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/2012-June/002074.html b/zarb-ml/mageia-webteam/2012-June/002074.html
new file mode 100644
index 000000000..eee1b7b0a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002074.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1914] Display of user details/avatars
+ </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%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20120626142127.05C0F450B2%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="002073.html">
+ <LINK REL="Next" HREF="002075.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1914] Display of user details/avatars</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201914%5D%20Display%20of%20user%20details/avatars&In-Reply-To=%3C20120626142127.05C0F450B2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1914] Display of user details/avatars">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 26 16:21:26 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002073.html">[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002075.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2074">[ date ]</a>
+ <a href="thread.html#2074">[ thread ]</a>
+ <a href="subject.html#2074">[ subject ]</a>
+ <a href="author.html#2074">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1914">https://bugs.mageia.org/show_bug.cgi?id=1914</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<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">forums-discuss at ml.mageia.or</A>
+ | |g
+
+--
+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="002073.html">[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002075.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2074">[ date ]</a>
+ <a href="thread.html#2074">[ thread ]</a>
+ <a href="subject.html#2074">[ subject ]</a>
+ <a href="author.html#2074">[ 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/2012-June/002075.html b/zarb-ml/mageia-webteam/2012-June/002075.html
new file mode 100644
index 000000000..d1253ae8e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002075.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120626151655.F4126450C7%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="002074.html">
+ <LINK REL="Next" HREF="002076.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120626151655.F4126450C7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 26 17:16:55 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002074.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="002076.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2075">[ date ]</a>
+ <a href="thread.html#2075">[ thread ]</a>
+ <a href="subject.html#2075">[ subject ]</a>
+ <a href="author.html#2075">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+Bug 2565 depends on bug 3964, which changed state.
+
+Bug 3964 Summary: add version of updates to the subject line of updates-announce mails
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=3964">https://bugs.mageia.org/show_bug.cgi?id=3964</A>
+
+ What |Old Value |New Value
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ Status|ASSIGNED |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="002074.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A></li>
+ <LI>Next message: <A HREF="002076.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2075">[ date ]</a>
+ <a href="thread.html#2075">[ thread ]</a>
+ <a href="subject.html#2075">[ subject ]</a>
+ <a href="author.html#2075">[ 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/2012-June/002076.html b/zarb-ml/mageia-webteam/2012-June/002076.html
new file mode 100644
index 000000000..8482f162b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002076.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+ </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%204517%5D%20Wrong%20description%20for%20the%20tainted%0A%09repository.&In-Reply-To=%3C20120626154131.3B77C44E9F%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="002075.html">
+ <LINK REL="Next" HREF="002077.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204517%5D%20Wrong%20description%20for%20the%20tainted%0A%09repository.&In-Reply-To=%3C20120626154131.3B77C44E9F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Jun 26 17:41:31 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002075.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="002077.html">[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2076">[ date ]</a>
+ <a href="thread.html#2076">[ thread ]</a>
+ <a href="subject.html#2076">[ subject ]</a>
+ <a href="author.html#2076">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4517">https://bugs.mageia.org/show_bug.cgi?id=4517</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |WORKSFORME
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-06-26 19:41:31 CEST ---
+closing nobody see it anymore, and it's ok in the wiki
+
+--
+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="002075.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="002077.html">[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2076">[ date ]</a>
+ <a href="thread.html#2076">[ thread ]</a>
+ <a href="subject.html#2076">[ subject ]</a>
+ <a href="author.html#2076">[ 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/2012-June/002077.html b/zarb-ml/mageia-webteam/2012-June/002077.html
new file mode 100644
index 000000000..d2efc8242
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002077.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable
+ </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%206595%5D%20%5BNew%5D%20Wrong%20zh-tw%20translation%20encoding%0A%20causes%20nav-bar%20unreadable&In-Reply-To=%3Cbug-6595-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="002076.html">
+ <LINK REL="Next" HREF="002078.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable</H1>
+ <B>You-Cheng Hsieh</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206595%5D%20%5BNew%5D%20Wrong%20zh-tw%20translation%20encoding%0A%20causes%20nav-bar%20unreadable&In-Reply-To=%3Cbug-6595-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 27 04:22:07 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002076.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI>Next message: <A HREF="002078.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2077">[ date ]</a>
+ <a href="thread.html#2077">[ thread ]</a>
+ <a href="subject.html#2077">[ subject ]</a>
+ <a href="author.html#2077">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6595">https://bugs.mageia.org/show_bug.cgi?id=6595</A>
+
+ Summary: Wrong zh-tw translation encoding causes nav-bar
+ unreadable
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/zh-tw/map/">http://www.mageia.org/zh-tw/map/</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">yochenhsieh at gmail.com</A>
+
+
+Description of problem:
+The zh-tw translation of nav-bar is not UTF-8 encoded so it would display
+incorrectly.
+
+Version-Release number of selected component (if applicable):
+Current version of www.mageia.org website.
+
+How reproducible:
+Always.
+
+Steps to Reproduce:
+1.Browse <A HREF="http://www.mageia.org/zh-tw/map/">http://www.mageia.org/zh-tw/map/</A>
+2.Note that the nav-bar cannot display correct Chinese characters.
+
+--
+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="002076.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A></li>
+ <LI>Next message: <A HREF="002078.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2077">[ date ]</a>
+ <a href="thread.html#2077">[ thread ]</a>
+ <a href="subject.html#2077">[ subject ]</a>
+ <a href="author.html#2077">[ 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/2012-June/002078.html b/zarb-ml/mageia-webteam/2012-June/002078.html
new file mode 100644
index 000000000..1f00e6494
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002078.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+ </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%206595%5D%20Wrong%20zh-tw%20translation%20encoding%20causes%0A%20nav-bar%20unreadable&In-Reply-To=%3C20120627024018.6A08444E39%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="002077.html">
+ <LINK REL="Next" HREF="002079.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable</H1>
+ <B>You-Cheng Hsieh</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206595%5D%20Wrong%20zh-tw%20translation%20encoding%20causes%0A%20nav-bar%20unreadable&In-Reply-To=%3C20120627024018.6A08444E39%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 27 04:40:18 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002077.html">[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI>Next message: <A HREF="002079.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2078">[ date ]</a>
+ <a href="thread.html#2078">[ thread ]</a>
+ <a href="subject.html#2078">[ subject ]</a>
+ <a href="author.html#2078">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6595">https://bugs.mageia.org/show_bug.cgi?id=6595</A>
+
+--- Comment #1 from You-Cheng Hsieh &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">yochenhsieh at gmail.com</A>&gt; 2012-06-27 04:40:18 CEST ---
+Created attachment 2497
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=2497">https://bugs.mageia.org/attachment.cgi?id=2497</A>
+fixed zh-tw translation of nav-bar
+
+--
+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="002077.html">[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI>Next message: <A HREF="002079.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2078">[ date ]</a>
+ <a href="thread.html#2078">[ thread ]</a>
+ <a href="subject.html#2078">[ subject ]</a>
+ <a href="author.html#2078">[ 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/2012-June/002079.html b/zarb-ml/mageia-webteam/2012-June/002079.html
new file mode 100644
index 000000000..dca2e3b3b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002079.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+ </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%206595%5D%20Wrong%20zh-tw%20translation%20encoding%20causes%0A%20nav-bar%20unreadable&In-Reply-To=%3C20120627024254.481EC44E39%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="002078.html">
+ <LINK REL="Next" HREF="002080.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable</H1>
+ <B>You-Cheng Hsieh</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206595%5D%20Wrong%20zh-tw%20translation%20encoding%20causes%0A%20nav-bar%20unreadable&In-Reply-To=%3C20120627024254.481EC44E39%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 27 04:42:54 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002078.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI>Next message: <A HREF="002080.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2079">[ date ]</a>
+ <a href="thread.html#2079">[ thread ]</a>
+ <a href="subject.html#2079">[ subject ]</a>
+ <a href="author.html#2079">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6595">https://bugs.mageia.org/show_bug.cgi?id=6595</A>
+
+--- Comment #2 from You-Cheng Hsieh &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">yochenhsieh at gmail.com</A>&gt; 2012-06-27 06:42:54 CEST ---
+Created attachment 2498
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=2498">https://bugs.mageia.org/attachment.cgi?id=2498</A>
+Current zh-tw nav-bar screenshot
+
+--
+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="002078.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI>Next message: <A HREF="002080.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2079">[ date ]</a>
+ <a href="thread.html#2079">[ thread ]</a>
+ <a href="subject.html#2079">[ subject ]</a>
+ <a href="author.html#2079">[ 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/2012-June/002080.html b/zarb-ml/mageia-webteam/2012-June/002080.html
new file mode 100644
index 000000000..4b73f928a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002080.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+ </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%206595%5D%20Wrong%20zh-tw%20translation%20encoding%20causes%0A%20nav-bar%20unreadable&In-Reply-To=%3C20120627091124.5766844E89%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="002079.html">
+ <LINK REL="Next" HREF="002082.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206595%5D%20Wrong%20zh-tw%20translation%20encoding%20causes%0A%20nav-bar%20unreadable&In-Reply-To=%3C20120627091124.5766844E89%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 27 11:11:24 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002079.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI>Next message: <A HREF="002082.html">[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2080">[ date ]</a>
+ <a href="thread.html#2080">[ thread ]</a>
+ <a href="subject.html#2080">[ subject ]</a>
+ <a href="author.html#2080">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6595">https://bugs.mageia.org/show_bug.cgi?id=6595</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="002079.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI>Next message: <A HREF="002082.html">[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2080">[ date ]</a>
+ <a href="thread.html#2080">[ thread ]</a>
+ <a href="subject.html#2080">[ subject ]</a>
+ <a href="author.html#2080">[ 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/2012-June/002081.html b/zarb-ml/mageia-webteam/2012-June/002081.html
new file mode 100644
index 000000000..5f9c02c0b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002081.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to 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%206547%5D%20Missing%20links%20%22Reply%22%20to%20comment&In-Reply-To=%3C20120627194240.CB06245100%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="002066.html">
+ <LINK REL="Next" HREF="002094.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206547%5D%20Missing%20links%20%22Reply%22%20to%20comment&In-Reply-To=%3C20120627194240.CB06245100%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Jun 27 21:42:40 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002066.html">[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI>Next message: <A HREF="002094.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2081">[ date ]</a>
+ <a href="thread.html#2081">[ thread ]</a>
+ <a href="subject.html#2081">[ subject ]</a>
+ <a href="author.html#2081">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6547">https://bugs.mageia.org/show_bug.cgi?id=6547</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; 2012-06-27 21:42:40 CEST ---
+This is not a bug but a config option, to close comments past a certain time
+(likely to be the default 15 days here). I'm not sure if that's deliberate
+though.
+
+--
+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="002066.html">[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI>Next message: <A HREF="002094.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2081">[ date ]</a>
+ <a href="thread.html#2081">[ thread ]</a>
+ <a href="subject.html#2081">[ subject ]</a>
+ <a href="author.html#2081">[ 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/2012-June/002082.html b/zarb-ml/mageia-webteam/2012-June/002082.html
new file mode 100644
index 000000000..7de119b97
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002082.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/
+ </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%206606%5D%20%5BNew%5D%20no%20navbar%20on%0A%09https%3A//identity.mageia.org/&In-Reply-To=%3Cbug-6606-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="002080.html">
+ <LINK REL="Next" HREF="002084.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/</H1>
+ <B>Claire Revillet</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206606%5D%20%5BNew%5D%20no%20navbar%20on%0A%09https%3A//identity.mageia.org/&In-Reply-To=%3Cbug-6606-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 10:19:38 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002080.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI>Next message: <A HREF="002084.html">[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2082">[ date ]</a>
+ <a href="thread.html#2082">[ thread ]</a>
+ <a href="subject.html#2082">[ subject ]</a>
+ <a href="author.html#2082">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6606">https://bugs.mageia.org/show_bug.cgi?id=6606</A>
+
+ Summary: no navbar on <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A>
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">grenoya at zarb.org</A>
+
+
+Hi
+There is no navbar on identity and the link to mageia.org is not big...
+
+I think something has to be done, but i don't know if there is any technical
+limitation.
+
+Claire
+
+--
+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="002080.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A></li>
+ <LI>Next message: <A HREF="002084.html">[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2082">[ date ]</a>
+ <a href="thread.html#2082">[ thread ]</a>
+ <a href="subject.html#2082">[ subject ]</a>
+ <a href="author.html#2082">[ 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/2012-June/002083.html b/zarb-ml/mageia-webteam/2012-June/002083.html
new file mode 100644
index 000000000..905d9dda8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002083.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+ </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%206607%5D%20%5BNew%5D%20Bugzilla%20link%20only%20in%20%22Community%22%2C%0A%09not%20in%20%22Support%22&In-Reply-To=%3Cbug-6607-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="002084.html">
+ <LINK REL="Next" HREF="002085.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;</H1>
+ <B>Claire Revillet</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206607%5D%20%5BNew%5D%20Bugzilla%20link%20only%20in%20%22Community%22%2C%0A%09not%20in%20%22Support%22&In-Reply-To=%3Cbug-6607-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 10:22:21 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002084.html">[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/
+</A></li>
+ <LI>Next message: <A HREF="002085.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2083">[ date ]</a>
+ <a href="thread.html#2083">[ thread ]</a>
+ <a href="subject.html#2083">[ subject ]</a>
+ <a href="author.html#2083">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6607">https://bugs.mageia.org/show_bug.cgi?id=6607</A>
+
+ Summary: Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">grenoya at zarb.org</A>
+
+
+While looking for bugzilla on the web site, i went instinctivly to &quot;Support&quot;.
+I don't know if my instinct is representative of user instinct...
+
+Maybe we could have the link in both ? wdyt ?
+
+Claire
+
+--
+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="002084.html">[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/
+</A></li>
+ <LI>Next message: <A HREF="002085.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2083">[ date ]</a>
+ <a href="thread.html#2083">[ thread ]</a>
+ <a href="subject.html#2083">[ subject ]</a>
+ <a href="author.html#2083">[ 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/2012-June/002084.html b/zarb-ml/mageia-webteam/2012-June/002084.html
new file mode 100644
index 000000000..61e149287
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002084.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/
+ </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%206606%5D%20no%20navbar%20on%0A%09https%3A//identity.mageia.org/&In-Reply-To=%3C20120628084728.6C44644F72%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="002082.html">
+ <LINK REL="Next" HREF="002083.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206606%5D%20no%20navbar%20on%0A%09https%3A//identity.mageia.org/&In-Reply-To=%3C20120628084728.6C44644F72%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 10:47:28 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002082.html">[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/
+</A></li>
+ <LI>Next message: <A HREF="002083.html">[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2084">[ date ]</a>
+ <a href="thread.html#2084">[ thread ]</a>
+ <a href="subject.html#2084">[ subject ]</a>
+ <a href="author.html#2084">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6606">https://bugs.mageia.org/show_bug.cgi?id=6606</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ 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; 2012-06-28 10:47:28 CEST ---
+The navbar actually waits in the trunk branch of identity, but it has to be
+merged into the live branch. However, I didn't take the time to do it (and to
+be around if anything breaks). Can try today.
+
+--
+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="002082.html">[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/
+</A></li>
+ <LI>Next message: <A HREF="002083.html">[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2084">[ date ]</a>
+ <a href="thread.html#2084">[ thread ]</a>
+ <a href="subject.html#2084">[ subject ]</a>
+ <a href="author.html#2084">[ 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/2012-June/002085.html b/zarb-ml/mageia-webteam/2012-June/002085.html
new file mode 100644
index 000000000..834c7b86f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002085.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+ </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%206607%5D%20Bugzilla%20link%20only%20in%20%22Community%22%2C%0A%09not%20in%20%22Support%22&In-Reply-To=%3C20120628084749.A01D445056%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="002083.html">
+ <LINK REL="Next" HREF="002089.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206607%5D%20Bugzilla%20link%20only%20in%20%22Community%22%2C%0A%09not%20in%20%22Support%22&In-Reply-To=%3C20120628084749.A01D445056%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 10:47:49 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002083.html">[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI>Next message: <A HREF="002089.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2085">[ date ]</a>
+ <a href="thread.html#2085">[ thread ]</a>
+ <a href="subject.html#2085">[ subject ]</a>
+ <a href="author.html#2085">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6607">https://bugs.mageia.org/show_bug.cgi?id=6607</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #1 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-06-28 10:47:49 CEST ---
+(In reply to comment #0)
+&gt;<i> While looking for bugzilla on the web site, i went instinctivly to &quot;Support&quot;.
+</I>&gt;<i> I don't know if my instinct is representative of user instinct...
+</I>&gt;<i>
+</I>&gt;<i> Maybe we could have the link in both ? wdyt ?
+</I>&gt;<i>
+</I>
+
+Good idea, provided we find a way to make it very clear that Bugzilla exists
+mainly to support Mageia, to help improve the distribution and not to help
+individual users.
+
+Maybe say something like:
+
+&quot;For advanced users, who understand what the purpose of Bugzilla is, and for
+others after they were advised in the Forum to file a bug report&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="002083.html">[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI>Next message: <A HREF="002089.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2085">[ date ]</a>
+ <a href="thread.html#2085">[ thread ]</a>
+ <a href="subject.html#2085">[ subject ]</a>
+ <a href="author.html#2085">[ 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/2012-June/002086.html b/zarb-ml/mageia-webteam/2012-June/002086.html
new file mode 100644
index 000000000..ee77627ac
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002086.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120628085949.F3B4045102%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="002091.html">
+ <LINK REL="Next" HREF="002087.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120628085949.F3B4045102%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 10:59:49 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002091.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI>Next message: <A HREF="002087.html">[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2086">[ date ]</a>
+ <a href="thread.html#2086">[ thread ]</a>
+ <a href="subject.html#2086">[ subject ]</a>
+ <a href="author.html#2086">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+--- Comment #14 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-06-28 10:59:49 CEST ---
+pinging because in bug 6606 Romain said he'll try to work on
+<A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A> today
+
+Although this issue is unrelated, it is maybe a nice moment to solve this too
+(there isn't another bug blocking this one anymore)
+
+--
+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="002091.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI>Next message: <A HREF="002087.html">[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2086">[ date ]</a>
+ <a href="thread.html#2086">[ thread ]</a>
+ <a href="subject.html#2086">[ subject ]</a>
+ <a href="author.html#2086">[ 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/2012-June/002087.html b/zarb-ml/mageia-webteam/2012-June/002087.html
new file mode 100644
index 000000000..15494f32d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002087.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki
+ </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%206608%5D%20%5BNew%5D%20Wrong%20navbar%20on%20the%20wiki&In-Reply-To=%3Cbug-6608-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="002086.html">
+ <LINK REL="Next" HREF="002088.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki</H1>
+ <B>R&#195;&#169;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206608%5D%20%5BNew%5D%20Wrong%20navbar%20on%20the%20wiki&In-Reply-To=%3Cbug-6608-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 11:14:44 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002086.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002088.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2087">[ date ]</a>
+ <a href="thread.html#2087">[ thread ]</a>
+ <a href="subject.html#2087">[ subject ]</a>
+ <a href="author.html#2087">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6608">https://bugs.mageia.org/show_bug.cgi?id=6608</A>
+
+ Summary: Wrong navbar on the wiki
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="https://wiki.mageia.org/en/Main_Page">https://wiki.mageia.org/en/Main_Page</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">remi at verschelde.fr</A>
+
+
+Mageia's wiki should use the new navbar from nav.mageia.org instead of the
+previous navbar (still linking to 1 instead 2 and the new pages).
+
+--
+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="002086.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002088.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2087">[ date ]</a>
+ <a href="thread.html#2087">[ thread ]</a>
+ <a href="subject.html#2087">[ subject ]</a>
+ <a href="author.html#2087">[ 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/2012-June/002088.html b/zarb-ml/mageia-webteam/2012-June/002088.html
new file mode 100644
index 000000000..b666dd39b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002088.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+ </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%206608%5D%20Wrong%20navbar%20on%20the%20wiki&In-Reply-To=%3C20120628104430.3C57544F7A%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="002087.html">
+ <LINK REL="Next" HREF="002090.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206608%5D%20Wrong%20navbar%20on%20the%20wiki&In-Reply-To=%3C20120628104430.3C57544F7A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 12:44:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002087.html">[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki
+</A></li>
+ <LI>Next message: <A HREF="002090.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2088">[ date ]</a>
+ <a href="thread.html#2088">[ thread ]</a>
+ <a href="subject.html#2088">[ subject ]</a>
+ <a href="author.html#2088">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6608">https://bugs.mageia.org/show_bug.cgi?id=6608</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; 2012-06-28 12:44:30 CEST ---
+Indeed. I tested the new navbar on the Vector theme (most likely, default theme
+to use with it) but it still breaks.
+
+I tested it before on the Cavendish theme, but some elements selectors were
+overlapping and the whole page layout was broken.
+
+So far, I'd like to see the Vector theme properly integrated (with no jumping
+bar) and then see how to port it to cavendish - or make vector the default one.
+
+What do you think?
+
+--
+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="002087.html">[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki
+</A></li>
+ <LI>Next message: <A HREF="002090.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2088">[ date ]</a>
+ <a href="thread.html#2088">[ thread ]</a>
+ <a href="subject.html#2088">[ subject ]</a>
+ <a href="author.html#2088">[ 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/2012-June/002089.html b/zarb-ml/mageia-webteam/2012-June/002089.html
new file mode 100644
index 000000000..a0262b219
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002089.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+ </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%206607%5D%20Bugzilla%20link%20only%20in%20%22Community%22%2C%0A%09not%20in%20%22Support%22&In-Reply-To=%3C20120628133311.DE12F45131%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="002085.html">
+ <LINK REL="Next" HREF="002091.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206607%5D%20Bugzilla%20link%20only%20in%20%22Community%22%2C%0A%09not%20in%20%22Support%22&In-Reply-To=%3C20120628133311.DE12F45131%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 15:33:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002085.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI>Next message: <A HREF="002091.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2089">[ date ]</a>
+ <a href="thread.html#2089">[ thread ]</a>
+ <a href="subject.html#2089">[ subject ]</a>
+ <a href="author.html#2089">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6607">https://bugs.mageia.org/show_bug.cgi?id=6607</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
+----------------------------------------------------------------------------
+ URL| |<A HREF="http://www.mageia.org/en/su">http://www.mageia.org/en/su</A>
+ | |pport/
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-06-28 15:33:11 CEST ---
+Fixed. I left it at the end of the support page (may be changed); since
+community support is explained before already (with links to forums
+mailing-lists).
+
+--
+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="002085.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI>Next message: <A HREF="002091.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2089">[ date ]</a>
+ <a href="thread.html#2089">[ thread ]</a>
+ <a href="subject.html#2089">[ subject ]</a>
+ <a href="author.html#2089">[ 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/2012-June/002090.html b/zarb-ml/mageia-webteam/2012-June/002090.html
new file mode 100644
index 000000000..16a18423e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002090.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120628135042.2AE5045170%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="002088.html">
+ <LINK REL="Next" HREF="002092.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120628135042.2AE5045170%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 15:50:42 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002088.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A></li>
+ <LI>Next message: <A HREF="002092.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2090">[ date ]</a>
+ <a href="thread.html#2090">[ thread ]</a>
+ <a href="subject.html#2090">[ subject ]</a>
+ <a href="author.html#2090">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+--- Comment #15 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-06-28 15:50:41 CEST ---
+Merge done. *fear* Please check the page.
+
+--
+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="002088.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A></li>
+ <LI>Next message: <A HREF="002092.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2090">[ date ]</a>
+ <a href="thread.html#2090">[ thread ]</a>
+ <a href="subject.html#2090">[ subject ]</a>
+ <a href="author.html#2090">[ 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/2012-June/002091.html b/zarb-ml/mageia-webteam/2012-June/002091.html
new file mode 100644
index 000000000..77e881374
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002091.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+ </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%206607%5D%20Bugzilla%20link%20only%20in%20%22Community%22%2C%0A%09not%20in%20%22Support%22&In-Reply-To=%3C20120628140329.52D0545138%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="002089.html">
+ <LINK REL="Next" HREF="002086.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206607%5D%20Bugzilla%20link%20only%20in%20%22Community%22%2C%0A%09not%20in%20%22Support%22&In-Reply-To=%3C20120628140329.52D0545138%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 16:03:29 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002089.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI>Next message: <A HREF="002086.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2091">[ date ]</a>
+ <a href="thread.html#2091">[ thread ]</a>
+ <a href="subject.html#2091">[ subject ]</a>
+ <a href="author.html#2091">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6607">https://bugs.mageia.org/show_bug.cgi?id=6607</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-06-28 16:03:29 CEST ---
+(In reply to comment #2)
+&gt;<i> Fixed. I left it at the end of the support page (may be changed); since
+</I>&gt;<i> community support is explained before already (with links to forums
+</I>&gt;<i> mailing-lists).
+</I>
+This is a nice solution, too. 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="002089.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A></li>
+ <LI>Next message: <A HREF="002086.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2091">[ date ]</a>
+ <a href="thread.html#2091">[ thread ]</a>
+ <a href="subject.html#2091">[ subject ]</a>
+ <a href="author.html#2091">[ 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/2012-June/002092.html b/zarb-ml/mageia-webteam/2012-June/002092.html
new file mode 100644
index 000000000..0c2cf7826
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002092.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120628140822.DB06045171%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="002090.html">
+ <LINK REL="Next" HREF="002093.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120628140822.DB06045171%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 16:08:22 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002090.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002093.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2092">[ date ]</a>
+ <a href="thread.html#2092">[ thread ]</a>
+ <a href="subject.html#2092">[ subject ]</a>
+ <a href="author.html#2092">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+--- Comment #16 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-06-28 16:08:22 CEST ---
+It seems your fear is justified :(
+
+Nothing seems to have changed, the FAQ link still points to
+<A HREF="http://mageia.org/wiki/doku.php?id=faq:accounts">http://mageia.org/wiki/doku.php?id=faq:accounts</A> which is redirected to
+<A HREF="https://wiki.mageia.org/en/Main_Page#/doku.php?id=faq:accounts">https://wiki.mageia.org/en/Main_Page#/doku.php?id=faq:accounts</A> (so to
+<A HREF="https://wiki.mageia.org/en/Main_Page">https://wiki.mageia.org/en/Main_Page</A>) instead of to
+<A HREF="https://wiki.mageia.org/en/Mageia.org_user_account">https://wiki.mageia.org/en/Mageia.org_user_account</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="002090.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002093.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2092">[ date ]</a>
+ <a href="thread.html#2092">[ thread ]</a>
+ <a href="subject.html#2092">[ subject ]</a>
+ <a href="author.html#2092">[ 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/2012-June/002093.html b/zarb-ml/mageia-webteam/2012-June/002093.html
new file mode 100644
index 000000000..2a4144a76
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002093.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120628181045.807D245145%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="002092.html">
+ <LINK REL="Next" HREF="002096.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120628181045.807D245145%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Jun 28 20:10:45 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002092.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002096.html">[Mageia-webteam] Introducing Myself
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2093">[ date ]</a>
+ <a href="thread.html#2093">[ thread ]</a>
+ <a href="subject.html#2093">[ subject ]</a>
+ <a href="author.html#2093">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</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|ASSIGNED |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #17 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-06-28 20:10:44 CEST ---
+Fixed now.
+
+--
+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="002092.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="002096.html">[Mageia-webteam] Introducing Myself
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2093">[ date ]</a>
+ <a href="thread.html#2093">[ thread ]</a>
+ <a href="subject.html#2093">[ subject ]</a>
+ <a href="author.html#2093">[ 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/2012-June/002094.html b/zarb-ml/mageia-webteam/2012-June/002094.html
new file mode 100644
index 000000000..6f5f180e1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002094.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to 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%206547%5D%20Missing%20links%20%22Reply%22%20to%20comment&In-Reply-To=%3C20120629172114.6E64D451EF%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="002081.html">
+ <LINK REL="Next" HREF="002095.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment</H1>
+ <B>Matteo Pasotti</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206547%5D%20Missing%20links%20%22Reply%22%20to%20comment&In-Reply-To=%3C20120629172114.6E64D451EF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 29 19:21:14 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002081.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI>Next message: <A HREF="002095.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2094">[ date ]</a>
+ <a href="thread.html#2094">[ thread ]</a>
+ <a href="subject.html#2094">[ subject ]</a>
+ <a href="author.html#2094">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6547">https://bugs.mageia.org/show_bug.cgi?id=6547</A>
+
+--- Comment #2 from Matteo Pasotti &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pasotti.matteo at gmail.com</A>&gt; 2012-06-29 19:21:14 CEST ---
+Fine, you can close this bug report then.
+Thank 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002081.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI>Next message: <A HREF="002095.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2094">[ date ]</a>
+ <a href="thread.html#2094">[ thread ]</a>
+ <a href="subject.html#2094">[ subject ]</a>
+ <a href="author.html#2094">[ 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/2012-June/002095.html b/zarb-ml/mageia-webteam/2012-June/002095.html
new file mode 100644
index 000000000..34a148f87
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002095.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to 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%206547%5D%20Missing%20links%20%22Reply%22%20to%20comment&In-Reply-To=%3C20120629172406.85B8D451F3%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="002094.html">
+ <LINK REL="Next" HREF="002067.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206547%5D%20Missing%20links%20%22Reply%22%20to%20comment&In-Reply-To=%3C20120629172406.85B8D451F3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Jun 29 19:24:06 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002094.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI>Next message: <A HREF="002067.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2095">[ date ]</a>
+ <a href="thread.html#2095">[ thread ]</a>
+ <a href="subject.html#2095">[ subject ]</a>
+ <a href="author.html#2095">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6547">https://bugs.mageia.org/show_bug.cgi?id=6547</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |INVALID
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-06-29 19:24:06 CEST ---
+(In reply to comment #2)
+&gt;<i> Fine, you can close this bug report then.
+</I>&gt;<i> Thank you
+</I>
+So closing :)
+
+--
+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="002094.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A></li>
+ <LI>Next message: <A HREF="002067.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2095">[ date ]</a>
+ <a href="thread.html#2095">[ thread ]</a>
+ <a href="subject.html#2095">[ subject ]</a>
+ <a href="author.html#2095">[ 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/2012-June/002096.html b/zarb-ml/mageia-webteam/2012-June/002096.html
new file mode 100644
index 000000000..0faeae10a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/002096.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Introducing Myself
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Introducing%20Myself&In-Reply-To=%3CCAEfn7sAvTnPNA90XLAGcONVzTrM2d%2BJeM1OQud1%3D6S_ikxdJ3w%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="002093.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Introducing Myself</H1>
+ <B>Angel Ashiqur Rahman</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Introducing%20Myself&In-Reply-To=%3CCAEfn7sAvTnPNA90XLAGcONVzTrM2d%2BJeM1OQud1%3D6S_ikxdJ3w%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Introducing Myself">mail at angelinux.net
+ </A><BR>
+ <I>Sat Jun 30 15:56:16 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002093.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2096">[ date ]</a>
+ <a href="thread.html#2096">[ thread ]</a>
+ <a href="subject.html#2096">[ subject ]</a>
+ <a href="author.html#2096">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello Everyone,
+
+My name is Ashiqur Rahman Angel (You can call me Angel). I am from
+Bangladesh. I am working with various FOSS Projects since 2004. I was
+an Ambassador of Fedora since 2006. In Fedora [1] I also worked with
+Fedora Web Team and Documentation Team. Also was a Fedora Free Media
+Coordinator of Bangladesh. Currently I am inactive there for various
+reasons.
+
+I am exploring Mageia Project since it&#180;s birth even before releasing
+the Mageia 1. And finally I have decided to contribute. As a starter,
+I want to work with Bug Squad and Web Team. I have already an account
+at Mageia (username: angel). And already subscribed the Bug Squad
+Mailing List. Please let me know as a start, where I can help.
+
+[1] <A HREF="https://fedoraproject.org/wiki/Angel">https://fedoraproject.org/wiki/Angel</A>
+
+-- Angel
+&#160;&#160; Give me Linux.. ..or give me death
+&#160;&#160; C9A2 44E1 4B6A DB50 381C 1F3B A8F8 D51E E6AC 1942
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002093.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2096">[ date ]</a>
+ <a href="thread.html#2096">[ thread ]</a>
+ <a href="subject.html#2096">[ subject ]</a>
+ <a href="author.html#2096">[ 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/2012-June/author.html b/zarb-ml/mageia-webteam/2012-June/author.html
new file mode 100644
index 000000000..bfcdc6f62
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/author.html
@@ -0,0 +1,452 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam June 2012 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>June 2012 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>Sun Jun 3 06:57:42 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sat Jun 30 15:56:16 CEST 2012</i><br>
+ <b>Messages:</b> 81<p>
+ <ul>
+
+<LI><A HREF="002070.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="2070">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="002017.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2017">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002046.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2046">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002052.html">[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.
+</A><A NAME="2052">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002057.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2057">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002022.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A><A NAME="2022">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002055.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2055">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="002024.html">[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect
+</A><A NAME="2024">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<LI><A HREF="002025.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2025">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<LI><A HREF="002028.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2028">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<LI><A HREF="002021.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2021">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002020.html">[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection
+</A><A NAME="2020">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002023.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A><A NAME="2023">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002026.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2026">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002039.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="2039">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002068.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="2068">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002069.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="2069">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002074.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="2074">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002075.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="2075">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002076.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="2076">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002036.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2036">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002077.html">[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2077">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<LI><A HREF="002078.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2078">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<LI><A HREF="002079.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2079">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<LI><A HREF="002063.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2063">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="002029.html">[Mageia-webteam] Greetings Fellow Penguin Lovers...
+</A><A NAME="2029">&nbsp;</A>
+<I>Jonathan Ingold
+</I>
+
+<LI><A HREF="002058.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2058">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="002053.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2053">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002059.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2059">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002060.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2060">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002061.html">[Mageia-webteam] [Bug 6522] [New] No favicon
+</A><A NAME="2061">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002066.html">[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2066">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002094.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2094">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002096.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2096">&nbsp;</A>
+<I>Angel Ashiqur Rahman
+</I>
+
+<LI><A HREF="002082.html">[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/
+</A><A NAME="2082">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="002083.html">[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2083">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="002019.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="2019">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<LI><A HREF="002064.html">[Mageia-webteam] Mageia Atelier IRC channel
+</A><A NAME="2064">&nbsp;</A>
+<I>Sebastian
+</I>
+
+<LI><A HREF="002032.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="2032">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002087.html">[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki
+</A><A NAME="2087">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002018.html">[Mageia-webteam] [Bug 4735] exception in svnweb
+</A><A NAME="2018">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002037.html">[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A><A NAME="2037">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002016.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2016">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002030.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="2030">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002031.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="2031">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002034.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="2034">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002050.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A><A NAME="2050">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002067.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2067">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002085.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2085">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002086.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2086">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002091.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2091">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002092.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2092">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002095.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2095">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002027.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2027">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002033.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="2033">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002035.html">[Mageia-webteam] marcom + artwork + web =&gt; atelier ?
+</A><A NAME="2035">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002038.html">[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A><A NAME="2038">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002040.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="2040">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002041.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="2041">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002042.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2042">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002043.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="2043">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002044.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="2044">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002045.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2045">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002047.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2047">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002048.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A><A NAME="2048">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002049.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2049">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002051.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A><A NAME="2051">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002054.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2054">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002056.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2056">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002062.html">[Mageia-webteam] [Bug 6522] No favicon
+</A><A NAME="2062">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002065.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A><A NAME="2065">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002071.html">[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?
+</A><A NAME="2071">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002072.html">[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?
+</A><A NAME="2072">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002073.html">[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org
+</A><A NAME="2073">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002080.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2080">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002081.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2081">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002084.html">[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/
+</A><A NAME="2084">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002088.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A><A NAME="2088">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002089.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2089">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002090.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2090">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002093.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2093">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Jun 30 15:56:16 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sat Jun 30 15:56:51 CEST 2012</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/2012-June/date.html b/zarb-ml/mageia-webteam/2012-June/date.html
new file mode 100644
index 000000000..470fee6f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/date.html
@@ -0,0 +1,452 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam June 2012 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>June 2012 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>Sun Jun 3 06:57:42 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sat Jun 30 15:56:16 CEST 2012</i><br>
+ <b>Messages:</b> 81<p>
+ <ul>
+
+<LI><A HREF="002016.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2016">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002017.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2017">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002018.html">[Mageia-webteam] [Bug 4735] exception in svnweb
+</A><A NAME="2018">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002019.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="2019">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<LI><A HREF="002021.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2021">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002020.html">[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection
+</A><A NAME="2020">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002022.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A><A NAME="2022">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002023.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A><A NAME="2023">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002024.html">[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect
+</A><A NAME="2024">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<LI><A HREF="002025.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2025">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<LI><A HREF="002026.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2026">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002027.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2027">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002028.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2028">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<LI><A HREF="002029.html">[Mageia-webteam] Greetings Fellow Penguin Lovers...
+</A><A NAME="2029">&nbsp;</A>
+<I>Jonathan Ingold
+</I>
+
+<LI><A HREF="002030.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="2030">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002031.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="2031">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002032.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="2032">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002033.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="2033">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002034.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="2034">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002035.html">[Mageia-webteam] marcom + artwork + web =&gt; atelier ?
+</A><A NAME="2035">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002036.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2036">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002037.html">[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A><A NAME="2037">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002038.html">[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A><A NAME="2038">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002039.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="2039">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002040.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="2040">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002041.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="2041">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002042.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2042">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002043.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="2043">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002044.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="2044">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002045.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2045">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002046.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2046">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002047.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2047">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002048.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A><A NAME="2048">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002049.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2049">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002050.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A><A NAME="2050">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002051.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A><A NAME="2051">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002052.html">[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.
+</A><A NAME="2052">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002053.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2053">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002054.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2054">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002055.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2055">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="002056.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2056">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002057.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2057">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002058.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2058">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="002059.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2059">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002060.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2060">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002061.html">[Mageia-webteam] [Bug 6522] [New] No favicon
+</A><A NAME="2061">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002062.html">[Mageia-webteam] [Bug 6522] No favicon
+</A><A NAME="2062">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002064.html">[Mageia-webteam] Mageia Atelier IRC channel
+</A><A NAME="2064">&nbsp;</A>
+<I>Sebastian
+</I>
+
+<LI><A HREF="002063.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2063">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="002065.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A><A NAME="2065">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002066.html">[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2066">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002067.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2067">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002068.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="2068">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002069.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="2069">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002070.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="2070">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="002071.html">[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?
+</A><A NAME="2071">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002072.html">[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?
+</A><A NAME="2072">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002073.html">[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org
+</A><A NAME="2073">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002074.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="2074">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002075.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="2075">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002076.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="2076">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002077.html">[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2077">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<LI><A HREF="002078.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2078">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<LI><A HREF="002079.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2079">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<LI><A HREF="002080.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2080">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002081.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2081">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002082.html">[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/
+</A><A NAME="2082">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="002083.html">[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2083">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="002084.html">[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/
+</A><A NAME="2084">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002085.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2085">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002086.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2086">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002087.html">[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki
+</A><A NAME="2087">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002088.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A><A NAME="2088">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002089.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2089">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002090.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2090">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002091.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2091">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002092.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2092">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002093.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2093">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002094.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2094">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002095.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2095">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002096.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2096">&nbsp;</A>
+<I>Angel Ashiqur Rahman
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Jun 30 15:56:16 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sat Jun 30 15:56:51 CEST 2012</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/2012-June/index.html b/zarb-ml/mageia-webteam/2012-June/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-June/subject.html b/zarb-ml/mageia-webteam/2012-June/subject.html
new file mode 100644
index 000000000..566541a91
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/subject.html
@@ -0,0 +1,452 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam June 2012 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>June 2012 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>Sun Jun 3 06:57:42 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sat Jun 30 15:56:16 CEST 2012</i><br>
+ <b>Messages:</b> 81<p>
+ <ul>
+
+<LI><A HREF="002068.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="2068">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002019.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="2019">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<LI><A HREF="002043.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="2043">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002074.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="2074">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002034.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="2034">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002044.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="2044">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002040.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="2040">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002075.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="2075">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002016.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2016">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002045.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2045">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002049.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2049">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002086.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2086">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002090.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2090">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002092.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2092">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002093.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2093">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002069.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="2069">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002070.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="2070">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="002021.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2021">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002030.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="2030">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002076.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="2076">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002018.html">[Mageia-webteam] [Bug 4735] exception in svnweb
+</A><A NAME="2018">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002039.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="2039">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002041.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="2041">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002032.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="2032">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002033.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="2033">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002017.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2017">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002042.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2042">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002046.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2046">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002047.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2047">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002067.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2067">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002036.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2036">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002020.html">[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection
+</A><A NAME="2020">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002022.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A><A NAME="2022">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002023.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A><A NAME="2023">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002024.html">[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect
+</A><A NAME="2024">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<LI><A HREF="002025.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2025">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<LI><A HREF="002026.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2026">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002027.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2027">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002028.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2028">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<LI><A HREF="002037.html">[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A><A NAME="2037">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002038.html">[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A><A NAME="2038">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002052.html">[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.
+</A><A NAME="2052">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002053.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2053">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002054.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2054">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002055.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2055">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="002056.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2056">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002057.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2057">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002058.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2058">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="002059.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2059">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002060.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2060">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002063.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2063">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="002061.html">[Mageia-webteam] [Bug 6522] [New] No favicon
+</A><A NAME="2061">&nbsp;</A>
+<I>Max
+</I>
+
+<LI><A HREF="002062.html">[Mageia-webteam] [Bug 6522] No favicon
+</A><A NAME="2062">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002066.html">[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2066">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002081.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2081">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002094.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2094">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<LI><A HREF="002095.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2095">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002071.html">[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?
+</A><A NAME="2071">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002072.html">[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?
+</A><A NAME="2072">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002073.html">[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org
+</A><A NAME="2073">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002077.html">[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2077">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<LI><A HREF="002078.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2078">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<LI><A HREF="002079.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2079">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<LI><A HREF="002080.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2080">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002082.html">[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/
+</A><A NAME="2082">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="002084.html">[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/
+</A><A NAME="2084">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002083.html">[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2083">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<LI><A HREF="002085.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2085">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002089.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2089">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002091.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2091">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002087.html">[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki
+</A><A NAME="2087">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="002088.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A><A NAME="2088">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002031.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="2031">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002050.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A><A NAME="2050">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002051.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A><A NAME="2051">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002029.html">[Mageia-webteam] Greetings Fellow Penguin Lovers...
+</A><A NAME="2029">&nbsp;</A>
+<I>Jonathan Ingold
+</I>
+
+<LI><A HREF="002096.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2096">&nbsp;</A>
+<I>Angel Ashiqur Rahman
+</I>
+
+<LI><A HREF="002064.html">[Mageia-webteam] Mageia Atelier IRC channel
+</A><A NAME="2064">&nbsp;</A>
+<I>Sebastian
+</I>
+
+<LI><A HREF="002035.html">[Mageia-webteam] marcom + artwork + web =&gt; atelier ?
+</A><A NAME="2035">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002048.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A><A NAME="2048">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002065.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A><A NAME="2065">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Jun 30 15:56:16 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sat Jun 30 15:56:51 CEST 2012</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/2012-June/thread.html b/zarb-ml/mageia-webteam/2012-June/thread.html
new file mode 100644
index 000000000..a321f3b16
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-June/thread.html
@@ -0,0 +1,559 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam June 2012 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>June 2012 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>Sun Jun 3 06:57:42 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sat Jun 30 15:56:16 CEST 2012</i><br>
+ <b>Messages:</b> 81<p>
+ <ul>
+
+<!--0 01338699462- -->
+<LI><A HREF="002016.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2016">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01338768747- -->
+<LI><A HREF="002017.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2017">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<!--0 01338820374- -->
+<LI><A HREF="002018.html">[Mageia-webteam] [Bug 4735] exception in svnweb
+</A><A NAME="2018">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--0 01338879992- -->
+<LI><A HREF="002019.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="2019">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<!--0 01338894440- -->
+<LI><A HREF="002021.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2021">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01338894440- -->
+<LI><A HREF="002020.html">[Mageia-webteam] [Bug 6340] [New] enable the automatic duplicate detection
+</A><A NAME="2020">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<UL>
+<!--1 01338894440-01338906356- -->
+<LI><A HREF="002022.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A><A NAME="2022">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<!--1 01338894440-01338907630- -->
+<LI><A HREF="002023.html">[Mageia-webteam] [Bug 6340] enable the automatic duplicate detection
+</A><A NAME="2023">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01338914368- -->
+<LI><A HREF="002024.html">[Mageia-webteam] [Bug 6345] [New] SHA1 sum is incorrect
+</A><A NAME="2024">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<UL>
+<!--1 01338914368-01338914469- -->
+<LI><A HREF="002025.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2025">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+<!--1 01338914368-01338915048- -->
+<LI><A HREF="002026.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2026">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01338914368-01338922693- -->
+<LI><A HREF="002027.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2027">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01338914368-01338924294- -->
+<LI><A HREF="002028.html">[Mageia-webteam] [Bug 6345] SHA1 sum is incorrect
+</A><A NAME="2028">&nbsp;</A>
+<I>Grant van Gelder
+</I>
+
+</UL>
+<!--0 01338993438- -->
+<LI><A HREF="002029.html">[Mageia-webteam] Greetings Fellow Penguin Lovers...
+</A><A NAME="2029">&nbsp;</A>
+<I>Jonathan Ingold
+</I>
+
+<!--0 01339011683- -->
+<LI><A HREF="002030.html">[Mageia-webteam] [Bug 415] Use common name (cn) instead of login (uid) for user public name
+</A><A NAME="2030">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01339012331- -->
+<LI><A HREF="002031.html">[Mageia-webteam] [Bug 966] Name check on identity should be more open
+</A><A NAME="2031">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01339139649- -->
+<LI><A HREF="002032.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="2032">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<!--0 01339140084- -->
+<LI><A HREF="002033.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="2033">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339188975- -->
+<LI><A HREF="002034.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="2034">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01339259221- -->
+<LI><A HREF="002035.html">[Mageia-webteam] marcom + artwork + web =&gt; atelier ?
+</A><A NAME="2035">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339349711- -->
+<LI><A HREF="002036.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2036">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--0 01339354070- -->
+<LI><A HREF="002037.html">[Mageia-webteam] [Bug 6401] [New] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A><A NAME="2037">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<UL>
+<!--1 01339354070-01339359962- -->
+<LI><A HREF="002038.html">[Mageia-webteam] [Bug 6401] http://check.mageia.org/ should either list &quot;2&quot; or not list &quot;1&quot; (aka only list &quot;cauldron&quot;)
+</A><A NAME="2038">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01339530904- -->
+<LI><A HREF="002039.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="2039">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01339540333- -->
+<LI><A HREF="002040.html">[Mageia-webteam] [Bug 1964] Devise and implement how to manage mageia.$tld =&gt; mageia.org redirection
+</A><A NAME="2040">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339540384- -->
+<LI><A HREF="002041.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="2041">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339540463- -->
+<LI><A HREF="002042.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2042">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339541458- -->
+<LI><A HREF="002043.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="2043">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339541608- -->
+<LI><A HREF="002044.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="2044">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339541679- -->
+<LI><A HREF="002045.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2045">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339542424- -->
+<LI><A HREF="002046.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2046">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<!--0 01339542499- -->
+<LI><A HREF="002047.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2047">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339579295- -->
+<LI><A HREF="002048.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A><A NAME="2048">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01339579295-01340220257- -->
+<LI><A HREF="002065.html">[Mageia-webteam] Status on several bugs, re Web sites
+</A><A NAME="2065">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01339753189- -->
+<LI><A HREF="002049.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2049">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01339880380- -->
+<LI><A HREF="002050.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A><A NAME="2050">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<UL>
+<!--1 01339880380-01339884149- -->
+<LI><A HREF="002051.html">[Mageia-webteam] [Mageia-blogteam] Improving Mageia Blog in portuguese
+</A><A NAME="2051">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01340059107- -->
+<LI><A HREF="002052.html">[Mageia-webteam] [Bug 6506] [New] There is no easy to find link to the wiki.
+</A><A NAME="2052">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<UL>
+<!--1 01340059107-01340178640- -->
+<LI><A HREF="002053.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2053">&nbsp;</A>
+<I>Max
+</I>
+
+<!--1 01340059107-01340179299- -->
+<LI><A HREF="002054.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2054">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01340059107-01340179345- -->
+<LI><A HREF="002055.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2055">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01340059107-01340179554- -->
+<LI><A HREF="002056.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2056">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01340059107-01340182970- -->
+<LI><A HREF="002057.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2057">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<!--1 01340059107-01340193153- -->
+<LI><A HREF="002058.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2058">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--1 01340059107-01340193354- -->
+<LI><A HREF="002059.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2059">&nbsp;</A>
+<I>Max
+</I>
+
+<!--1 01340059107-01340203616- -->
+<LI><A HREF="002060.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2060">&nbsp;</A>
+<I>Max
+</I>
+
+<!--1 01340059107-01340218548- -->
+<LI><A HREF="002063.html">[Mageia-webteam] [Bug 6506] There is no easy to find link to the wiki.
+</A><A NAME="2063">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+</UL>
+<!--0 01340204364- -->
+<LI><A HREF="002061.html">[Mageia-webteam] [Bug 6522] [New] No favicon
+</A><A NAME="2061">&nbsp;</A>
+<I>Max
+</I>
+
+<UL>
+<!--1 01340204364-01340217029- -->
+<LI><A HREF="002062.html">[Mageia-webteam] [Bug 6522] No favicon
+</A><A NAME="2062">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01340218508- -->
+<LI><A HREF="002064.html">[Mageia-webteam] Mageia Atelier IRC channel
+</A><A NAME="2064">&nbsp;</A>
+<I>Sebastian
+</I>
+
+<!--0 01340460680- -->
+<LI><A HREF="002066.html">[Mageia-webteam] [Bug 6547] [New] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2066">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<UL>
+<!--1 01340460680-01340826160- -->
+<LI><A HREF="002081.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2081">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01340460680-01340990474- -->
+<LI><A HREF="002094.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2094">&nbsp;</A>
+<I>Matteo Pasotti
+</I>
+
+<!--1 01340460680-01340990646- -->
+<LI><A HREF="002095.html">[Mageia-webteam] [Bug 6547] Missing links &quot;Reply&quot; to comment
+</A><A NAME="2095">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01340471965- -->
+<LI><A HREF="002067.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2067">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01340585960- -->
+<LI><A HREF="002068.html">[Mageia-webteam] [Bug 1364] Bug reported can't be &quot;Resolved Duplicate&quot; without entering a comment
+</A><A NAME="2068">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01340586038- -->
+<LI><A HREF="002069.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="2069">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01340623605- -->
+<LI><A HREF="002070.html">[Mageia-webteam] [Bug 3981] Bugzilla should add CCs to new bug when old one marked as duplicate
+</A><A NAME="2070">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--0 01340695614- -->
+<LI><A HREF="002071.html">[Mageia-webteam] [Bug 6578] [New] Can we have the Cite extension installed?
+</A><A NAME="2071">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01340695614-01340695806- -->
+<LI><A HREF="002072.html">[Mageia-webteam] [Bug 6578] Can we have the Cite extension installed?
+</A><A NAME="2072">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01340697239- -->
+<LI><A HREF="002073.html">[Mageia-webteam] [Bug 6579] [New] Google does not index bugs.mageia.org
+</A><A NAME="2073">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01340720486- -->
+<LI><A HREF="002074.html">[Mageia-webteam] [Bug 1914] Display of user details/avatars
+</A><A NAME="2074">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01340723815- -->
+<LI><A HREF="002075.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="2075">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01340725291- -->
+<LI><A HREF="002076.html">[Mageia-webteam] [Bug 4517] Wrong description for the tainted repository.
+</A><A NAME="2076">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01340763727- -->
+<LI><A HREF="002077.html">[Mageia-webteam] [Bug 6595] [New] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2077">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<UL>
+<!--1 01340763727-01340764818- -->
+<LI><A HREF="002078.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2078">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<!--1 01340763727-01340764974- -->
+<LI><A HREF="002079.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2079">&nbsp;</A>
+<I>You-Cheng Hsieh
+</I>
+
+<!--1 01340763727-01340788284- -->
+<LI><A HREF="002080.html">[Mageia-webteam] [Bug 6595] Wrong zh-tw translation encoding causes nav-bar unreadable
+</A><A NAME="2080">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01340871578- -->
+<LI><A HREF="002082.html">[Mageia-webteam] [Bug 6606] [New] no navbar on https://identity.mageia.org/
+</A><A NAME="2082">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<UL>
+<!--1 01340871578-01340873248- -->
+<LI><A HREF="002084.html">[Mageia-webteam] [Bug 6606] no navbar on https://identity.mageia.org/
+</A><A NAME="2084">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01340871741- -->
+<LI><A HREF="002083.html">[Mageia-webteam] [Bug 6607] [New] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2083">&nbsp;</A>
+<I>Claire Revillet
+</I>
+
+<UL>
+<!--1 01340871741-01340873269- -->
+<LI><A HREF="002085.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2085">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--1 01340871741-01340890391- -->
+<LI><A HREF="002089.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2089">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01340871741-01340892209- -->
+<LI><A HREF="002091.html">[Mageia-webteam] [Bug 6607] Bugzilla link only in &quot;Community&quot;, not in &quot;Support&quot;
+</A><A NAME="2091">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01340873989- -->
+<LI><A HREF="002086.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2086">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01340874884- -->
+<LI><A HREF="002087.html">[Mageia-webteam] [Bug 6608] [New] Wrong navbar on the wiki
+</A><A NAME="2087">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<UL>
+<!--1 01340874884-01340880270- -->
+<LI><A HREF="002088.html">[Mageia-webteam] [Bug 6608] Wrong navbar on the wiki
+</A><A NAME="2088">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01340891442- -->
+<LI><A HREF="002090.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2090">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01340892502- -->
+<LI><A HREF="002092.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2092">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01340907045- -->
+<LI><A HREF="002093.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="2093">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01341064576- -->
+<LI><A HREF="002096.html">[Mageia-webteam] Introducing Myself
+</A><A NAME="2096">&nbsp;</A>
+<I>Angel Ashiqur Rahman
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Jun 30 15:56:16 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sat Jun 30 15:56:51 CEST 2012</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/2012-March.txt.gz b/zarb-ml/mageia-webteam/2012-March.txt.gz
new file mode 100644
index 000000000..036e3357b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-March/001811.html b/zarb-ml/mageia-webteam/2012-March/001811.html
new file mode 100644
index 000000000..db5d4e749
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001811.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+ </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%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120301161523.D19274200B%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="001812.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203674%5D%20No%20good%20FAQ%20link%20for%20Mageia%20identity%0A%09management&In-Reply-To=%3C20120301161523.D19274200B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 1 17:15:23 CET 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001812.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1811">[ date ]</a>
+ <a href="thread.html#1811">[ thread ]</a>
+ <a href="subject.html#1811">[ subject ]</a>
+ <a href="author.html#1811">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3674">https://bugs.mageia.org/show_bug.cgi?id=3674</A>
+
+--- Comment #12 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-03-01 18:15:23 CET ---
+Maybe we can fix that before mageia 2 ?
+
+--
+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>Next message: <A HREF="001812.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1811">[ date ]</a>
+ <a href="thread.html#1811">[ thread ]</a>
+ <a href="subject.html#1811">[ subject ]</a>
+ <a href="author.html#1811">[ 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/2012-March/001812.html b/zarb-ml/mageia-webteam/2012-March/001812.html
new file mode 100644
index 000000000..821cdd573
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001812.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+ </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%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20120303171710.CDFF24209F%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="001811.html">
+ <LINK REL="Next" HREF="001813.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203515%5D%20Wiki%20returns%20invalid%20certificate&In-Reply-To=%3C20120303171710.CDFF24209F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 3 18:17:10 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001811.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001813.html">[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1812">[ date ]</a>
+ <a href="thread.html#1812">[ thread ]</a>
+ <a href="subject.html#1812">[ subject ]</a>
+ <a href="author.html#1812">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3515">https://bugs.mageia.org/show_bug.cgi?id=3515</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|UNCONFIRMED |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #6 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-03-03 19:17:10 CET ---
+I just checked in a browser (Konqueror) I hadn't used yet since installing
+Mga2b1 and visited the forum, wiki, blog, bugzilla and the downloads page.
+There were no messages at all about an invalid certificate.
+
+I can confirm though, that this problem did exist in the past ;)
+
+--
+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="001811.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A></li>
+ <LI>Next message: <A HREF="001813.html">[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1812">[ date ]</a>
+ <a href="thread.html#1812">[ thread ]</a>
+ <a href="subject.html#1812">[ subject ]</a>
+ <a href="author.html#1812">[ 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/2012-March/001813.html b/zarb-ml/mageia-webteam/2012-March/001813.html
new file mode 100644
index 000000000..8fe55a19b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001813.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address
+ </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%204831%5D%20%5BNew%5D%20The%20url%20for%20registration%0A%20confirmation%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3Cbug-4831-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="001812.html">
+ <LINK REL="Next" HREF="001823.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address</H1>
+ <B>Pinco Pallo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204831%5D%20%5BNew%5D%20The%20url%20for%20registration%0A%20confirmation%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3Cbug-4831-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 6 23:16:13 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001812.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001823.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1813">[ date ]</a>
+ <a href="thread.html#1813">[ thread ]</a>
+ <a href="subject.html#1813">[ subject ]</a>
+ <a href="author.html#1813">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4831">https://bugs.mageia.org/show_bug.cgi?id=4831</A>
+
+ Summary: The url for registration confirmation and password
+ reset is not entirely an internet address
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="https://identity.mageia.org/register">https://identity.mageia.org/register</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">il.maury at virgilio.it</A>
+
+
+Description of problem:
+The url in the email registration confirmation and password reset is not
+entirely an internet address
+
+Version-Release number of selected component (if applicable):
+-
+
+How reproducible:
+Request of a password reset
+New registration
+
+Steps to Reproduce:
+1.
+2.
+3.
+
+--
+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="001812.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A></li>
+ <LI>Next message: <A HREF="001823.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1813">[ date ]</a>
+ <a href="thread.html#1813">[ thread ]</a>
+ <a href="subject.html#1813">[ subject ]</a>
+ <a href="author.html#1813">[ 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/2012-March/001814.html b/zarb-ml/mageia-webteam/2012-March/001814.html
new file mode 100644
index 000000000..9d31a01a3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001814.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 910] add a check box for security issue
+ </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%20910%5D%20add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20120307101547.344D3420E9%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="001827.html">
+ <LINK REL="Next" HREF="001815.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 910] add a check box for security issue</H1>
+ <B>Dan Joita</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20910%5D%20add%20a%20check%20box%20for%20security%20issue&In-Reply-To=%3C20120307101547.344D3420E9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 910] add a check box for security issue">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 11:15:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001827.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001815.html">[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1814">[ date ]</a>
+ <a href="thread.html#1814">[ thread ]</a>
+ <a href="subject.html#1814">[ subject ]</a>
+ <a href="author.html#1814">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=910">https://bugs.mageia.org/show_bug.cgi?id=910</A>
+
+Dan Joita &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Add a check box for |add a check box for
+ |security issue |security issue
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</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="001827.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001815.html">[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1814">[ date ]</a>
+ <a href="thread.html#1814">[ thread ]</a>
+ <a href="subject.html#1814">[ subject ]</a>
+ <a href="author.html#1814">[ 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/2012-March/001815.html b/zarb-ml/mageia-webteam/2012-March/001815.html
new file mode 100644
index 000000000..5b2b5d067
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001815.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl
+ </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%203288%5D%20add%20an%20cronjob%20for%20collectstats.pl&In-Reply-To=%3C20120307101557.0E1A6420D6%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="001814.html">
+ <LINK REL="Next" HREF="001816.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl</H1>
+ <B>Dan Joita</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203288%5D%20add%20an%20cronjob%20for%20collectstats.pl&In-Reply-To=%3C20120307101557.0E1A6420D6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 11:15:57 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001814.html">[Mageia-webteam] [Bug 910] add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="001816.html">[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1815">[ date ]</a>
+ <a href="thread.html#1815">[ thread ]</a>
+ <a href="subject.html#1815">[ subject ]</a>
+ <a href="author.html#1815">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3288">https://bugs.mageia.org/show_bug.cgi?id=3288</A>
+
+Dan Joita &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Add an cronjob for |add an cronjob for
+ |collectstats.pl |collectstats.pl
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</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="001814.html">[Mageia-webteam] [Bug 910] add a check box for security issue
+</A></li>
+ <LI>Next message: <A HREF="001816.html">[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1815">[ date ]</a>
+ <a href="thread.html#1815">[ thread ]</a>
+ <a href="subject.html#1815">[ subject ]</a>
+ <a href="author.html#1815">[ 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/2012-March/001816.html b/zarb-ml/mageia-webteam/2012-March/001816.html
new file mode 100644
index 000000000..b43f663ec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001816.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects
+ </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%2013%5D%20add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20120307101626.7DA7F420E8%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="001815.html">
+ <LINK REL="Next" HREF="001817.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects</H1>
+ <B>Dan Joita</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2013%5D%20add%20component%20name%20or%20package%20name%20in%0A%20notification%20mail%20subjects&In-Reply-To=%3C20120307101626.7DA7F420E8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 11:16:26 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001815.html">[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl
+</A></li>
+ <LI>Next message: <A HREF="001817.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1816">[ date ]</a>
+ <a href="thread.html#1816">[ thread ]</a>
+ <a href="subject.html#1816">[ subject ]</a>
+ <a href="author.html#1816">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=13">https://bugs.mageia.org/show_bug.cgi?id=13</A>
+
+Dan Joita &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Add component name or |add component name or
+ |package name in |package name in
+ |notification mail subjects |notification mail subjects
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</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="001815.html">[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl
+</A></li>
+ <LI>Next message: <A HREF="001817.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1816">[ date ]</a>
+ <a href="thread.html#1816">[ thread ]</a>
+ <a href="subject.html#1816">[ subject ]</a>
+ <a href="author.html#1816">[ 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/2012-March/001817.html b/zarb-ml/mageia-webteam/2012-March/001817.html
new file mode 100644
index 000000000..5b323c949
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001817.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1386] add distrib links to first 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%201386%5D%20add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20120307101711.05F6541EE2%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="001816.html">
+ <LINK REL="Next" HREF="001818.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1386] add distrib links to first page</H1>
+ <B>Dan Joita</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201386%5D%20add%20distrib%20links%20to%20first%20page&In-Reply-To=%3C20120307101711.05F6541EE2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1386] add distrib links to first page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 11:17:11 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001816.html">[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="001818.html">[Mageia-webteam] [Bug 3287] add header on the guided template
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1817">[ date ]</a>
+ <a href="thread.html#1817">[ thread ]</a>
+ <a href="subject.html#1817">[ subject ]</a>
+ <a href="author.html#1817">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1386">https://bugs.mageia.org/show_bug.cgi?id=1386</A>
+
+Dan Joita &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Add distrib links to first |add distrib links to first
+ |page |page
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</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="001816.html">[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects
+</A></li>
+ <LI>Next message: <A HREF="001818.html">[Mageia-webteam] [Bug 3287] add header on the guided template
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1817">[ date ]</a>
+ <a href="thread.html#1817">[ thread ]</a>
+ <a href="subject.html#1817">[ subject ]</a>
+ <a href="author.html#1817">[ 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/2012-March/001818.html b/zarb-ml/mageia-webteam/2012-March/001818.html
new file mode 100644
index 000000000..6cd66a111
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001818.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3287] add header on the guided template
+ </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%203287%5D%20add%20header%20on%20the%20guided%20template&In-Reply-To=%3C20120307101731.DB3B0420C7%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="001817.html">
+ <LINK REL="Next" HREF="001819.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3287] add header on the guided template</H1>
+ <B>Dan Joita</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203287%5D%20add%20header%20on%20the%20guided%20template&In-Reply-To=%3C20120307101731.DB3B0420C7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3287] add header on the guided template">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 11:17:31 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001817.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="001819.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1818">[ date ]</a>
+ <a href="thread.html#1818">[ thread ]</a>
+ <a href="subject.html#1818">[ subject ]</a>
+ <a href="author.html#1818">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3287">https://bugs.mageia.org/show_bug.cgi?id=3287</A>
+
+Dan Joita &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Add header on the guided |add header on the guided
+ |template |template
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</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="001817.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A></li>
+ <LI>Next message: <A HREF="001819.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1818">[ date ]</a>
+ <a href="thread.html#1818">[ thread ]</a>
+ <a href="subject.html#1818">[ subject ]</a>
+ <a href="author.html#1818">[ 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/2012-March/001819.html b/zarb-ml/mageia-webteam/2012-March/001819.html
new file mode 100644
index 000000000..183855de0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001819.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+ </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%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120307101825.A3F58420F9%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="001818.html">
+ <LINK REL="Next" HREF="001820.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4483] add the Graphical Reports feature</H1>
+ <B>Dan Joita</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120307101825.A3F58420F9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4483] add the Graphical Reports feature">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 11:18:25 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001818.html">[Mageia-webteam] [Bug 3287] add header on the guided template
+</A></li>
+ <LI>Next message: <A HREF="001820.html">[Mageia-webteam] [Bug 3576] add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1819">[ date ]</a>
+ <a href="thread.html#1819">[ thread ]</a>
+ <a href="subject.html#1819">[ subject ]</a>
+ <a href="author.html#1819">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4483">https://bugs.mageia.org/show_bug.cgi?id=4483</A>
+
+Dan Joita &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Add the Graphical Reports |add the Graphical Reports
+ |feature |feature
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</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="001818.html">[Mageia-webteam] [Bug 3287] add header on the guided template
+</A></li>
+ <LI>Next message: <A HREF="001820.html">[Mageia-webteam] [Bug 3576] add the keyword Errata
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1819">[ date ]</a>
+ <a href="thread.html#1819">[ thread ]</a>
+ <a href="subject.html#1819">[ subject ]</a>
+ <a href="author.html#1819">[ 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/2012-March/001820.html b/zarb-ml/mageia-webteam/2012-March/001820.html
new file mode 100644
index 000000000..6c03dc04a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001820.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3576] add the keyword Errata
+ </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%203576%5D%20add%20the%20keyword%20Errata&In-Reply-To=%3C20120307101830.9BFF742100%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="001819.html">
+ <LINK REL="Next" HREF="001821.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3576] add the keyword Errata</H1>
+ <B>Dan Joita</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203576%5D%20add%20the%20keyword%20Errata&In-Reply-To=%3C20120307101830.9BFF742100%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3576] add the keyword Errata">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 11:18:30 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001819.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001821.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1820">[ date ]</a>
+ <a href="thread.html#1820">[ thread ]</a>
+ <a href="subject.html#1820">[ subject ]</a>
+ <a href="author.html#1820">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3576">https://bugs.mageia.org/show_bug.cgi?id=3576</A>
+
+Dan Joita &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Add the keyword Errata |add the keyword Errata
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</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="001819.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001821.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1820">[ date ]</a>
+ <a href="thread.html#1820">[ thread ]</a>
+ <a href="subject.html#1820">[ subject ]</a>
+ <a href="author.html#1820">[ 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/2012-March/001821.html b/zarb-ml/mageia-webteam/2012-March/001821.html
new file mode 100644
index 000000000..dbb050859
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001821.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120307101839.4ADA6403DE%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="001820.html">
+ <LINK REL="Next" HREF="001822.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Dan Joita</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120307101839.4ADA6403DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 11:18:39 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001820.html">[Mageia-webteam] [Bug 3576] add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001822.html">[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1821">[ date ]</a>
+ <a href="thread.html#1821">[ thread ]</a>
+ <a href="subject.html#1821">[ subject ]</a>
+ <a href="author.html#1821">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</A>
+
+Dan Joita &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Add to Mageia 1 release |add to Mageia 1 release
+ |notes and to news/blog that |notes and to news/blog that
+ |it has KDE 4.6.5 updates |it has KDE 4.6.5 updates
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</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="001820.html">[Mageia-webteam] [Bug 3576] add the keyword Errata
+</A></li>
+ <LI>Next message: <A HREF="001822.html">[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1821">[ date ]</a>
+ <a href="thread.html#1821">[ thread ]</a>
+ <a href="subject.html#1821">[ subject ]</a>
+ <a href="author.html#1821">[ 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/2012-March/001822.html b/zarb-ml/mageia-webteam/2012-March/001822.html
new file mode 100644
index 000000000..197e4bd7c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001822.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition 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%20543%5D%20allow%20to%20promote%20a%20user%20directly%20from%0A%20the%20user%20edition%20page&In-Reply-To=%3C20120307102047.2B9734210B%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="001821.html">
+ <LINK REL="Next" HREF="001828.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page</H1>
+ <B>Dan Joita</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20543%5D%20allow%20to%20promote%20a%20user%20directly%20from%0A%20the%20user%20edition%20page&In-Reply-To=%3C20120307102047.2B9734210B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 11:20:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001821.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001828.html">[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1822">[ date ]</a>
+ <a href="thread.html#1822">[ thread ]</a>
+ <a href="subject.html#1822">[ subject ]</a>
+ <a href="author.html#1822">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+
+Dan Joita &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Allow to promote a user |allow to promote a user
+ |directly from the user |directly from the user
+ |edition page |edition page
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">djmarian4u at hotmail.com</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="001821.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001828.html">[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1822">[ date ]</a>
+ <a href="thread.html#1822">[ thread ]</a>
+ <a href="subject.html#1822">[ subject ]</a>
+ <a href="author.html#1822">[ 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/2012-March/001823.html b/zarb-ml/mageia-webteam/2012-March/001823.html
new file mode 100644
index 000000000..bc2c744f2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001823.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+ </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%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120307115104.0BF93420FF%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="001813.html">
+ <LINK REL="Next" HREF="001824.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120307115104.0BF93420FF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 12:51:04 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001813.html">[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001824.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1823">[ date ]</a>
+ <a href="thread.html#1823">[ thread ]</a>
+ <a href="subject.html#1823">[ subject ]</a>
+ <a href="author.html#1823">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4831">https://bugs.mageia.org/show_bug.cgi?id=4831</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-03-07 12:51:04 CET ---
+I see
+
+&quot;Dear Manuel Hiebel,
+Your Mageia account has been requested to change the password. If you did not
+do this, or you do not want to change your password; you can just do nothing.
+To reset your password, please follow the link below.
+<A HREF="https://identity.mageia.org/forgot_password/confirm?secret">https://identity.mageia.org/forgot_password/confirm?secret</A>
+
+Why it's not an internet address ?
+
+--
+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="001813.html">[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001824.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1823">[ date ]</a>
+ <a href="thread.html#1823">[ thread ]</a>
+ <a href="subject.html#1823">[ subject ]</a>
+ <a href="author.html#1823">[ 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/2012-March/001824.html b/zarb-ml/mageia-webteam/2012-March/001824.html
new file mode 100644
index 000000000..aa1baf713
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001824.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+ </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%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120307130656.4A88141FF9%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="001823.html">
+ <LINK REL="Next" HREF="001825.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120307130656.4A88141FF9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 14:06:56 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001823.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001825.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1824">[ date ]</a>
+ <a href="thread.html#1824">[ thread ]</a>
+ <a href="subject.html#1824">[ subject ]</a>
+ <a href="author.html#1824">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4831">https://bugs.mageia.org/show_bug.cgi?id=4831</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
+----------------------------------------------------------------------------
+ Keywords| |NEEDINFO
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="001823.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001825.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1824">[ date ]</a>
+ <a href="thread.html#1824">[ thread ]</a>
+ <a href="subject.html#1824">[ subject ]</a>
+ <a href="author.html#1824">[ 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/2012-March/001825.html b/zarb-ml/mageia-webteam/2012-March/001825.html
new file mode 100644
index 000000000..736989817
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001825.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+ </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%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120307215201.9758F421E7%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="001824.html">
+ <LINK REL="Next" HREF="001826.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120307215201.9758F421E7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 22:52:01 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001824.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001826.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1825">[ date ]</a>
+ <a href="thread.html#1825">[ thread ]</a>
+ <a href="subject.html#1825">[ subject ]</a>
+ <a href="author.html#1825">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4831">https://bugs.mageia.org/show_bug.cgi?id=4831</A>
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-03-07 23:52:01 CET ---
+Reported from a private mail, the issue is that the full URL, with the full
+secret, exceeds 80 characters. Some mailer agents wrap the URL or fail to
+properly parse the full URL.
+
+So that's a minor issue, but indeed, reducing the length of the URL (the path
+or the secret or both) could help in this regard.
+
+--
+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="001824.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001826.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1825">[ date ]</a>
+ <a href="thread.html#1825">[ thread ]</a>
+ <a href="subject.html#1825">[ subject ]</a>
+ <a href="author.html#1825">[ 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/2012-March/001826.html b/zarb-ml/mageia-webteam/2012-March/001826.html
new file mode 100644
index 000000000..6a05dcb50
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001826.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+ </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%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120307222537.845A742179%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="001825.html">
+ <LINK REL="Next" HREF="001827.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120307222537.845A742179%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 7 23:25:37 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001825.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001827.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1826">[ date ]</a>
+ <a href="thread.html#1826">[ thread ]</a>
+ <a href="subject.html#1826">[ subject ]</a>
+ <a href="author.html#1826">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4831">https://bugs.mageia.org/show_bug.cgi?id=4831</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Keywords|NEEDINFO |
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</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="001825.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001827.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1826">[ date ]</a>
+ <a href="thread.html#1826">[ thread ]</a>
+ <a href="subject.html#1826">[ subject ]</a>
+ <a href="author.html#1826">[ 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/2012-March/001827.html b/zarb-ml/mageia-webteam/2012-March/001827.html
new file mode 100644
index 000000000..f08e0dafd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001827.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+ </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%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120308094010.46C594212A%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="001826.html">
+ <LINK REL="Next" HREF="001814.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address</H1>
+ <B>Pinco Pallo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204831%5D%20The%20url%20for%20registration%20confirmation%0A%20and%20password%20reset%20is%20not%20entirely%20an%20internet%20address&In-Reply-To=%3C20120308094010.46C594212A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Mar 8 10:40:10 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001826.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001814.html">[Mageia-webteam] [Bug 910] add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1827">[ date ]</a>
+ <a href="thread.html#1827">[ thread ]</a>
+ <a href="subject.html#1827">[ subject ]</a>
+ <a href="author.html#1827">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4831">https://bugs.mageia.org/show_bug.cgi?id=4831</A>
+
+--- Comment #3 from Pinco Pallo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">il.maury at virgilio.it</A>&gt; 2012-03-08 10:40:10 CET ---
+(In reply to comment #1)
+&gt;<i> I see
+</I>&gt;<i>
+</I>&gt;<i> &quot;Dear Manuel Hiebel,
+</I>&gt;<i> Your Mageia account has been requested to change the password. If you did not
+</I>&gt;<i> do this, or you do not want to change your password; you can just do nothing.
+</I>&gt;<i> To reset your password, please follow the link below.
+</I>&gt;<i> <A HREF="https://identity.mageia.org/forgot_password/confirm?secret">https://identity.mageia.org/forgot_password/confirm?secret</A>
+</I>&gt;<i>
+</I>&gt;<i> Why it's not an internet address ?
+</I>
+
+I received the following:
+
+Dear Pinco Pallo,
+Your Mageia account has been requested to change the password. If
+you did not do this, or you do not want to change your password; you
+can just do nothing.
+To reset your password, please follow the link below.
+<A HREF="https://identity.mageia.org/forgot_password/confirm?secret=95B95A02">https://identity.mageia.org/forgot_password/confirm?secret=95B95A02</A>
+-67D7-11E1-9277-E744B5518DFA
+
+--
+<A HREF="http://www.mageia.org/">http://www.mageia.org/</A>
+
+where up to A02 is an hyperlink and from -67 is plain text (it's an example).
+As you can see not all the link is reported as an Internet address. Tried
+yesterday 3 times with the service of recover password. I used
+workaround of copy and paste the rest of url in address bar. The same happened
+during the registration confirmation.
+
+--
+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="001826.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A></li>
+ <LI>Next message: <A HREF="001814.html">[Mageia-webteam] [Bug 910] add a check box for security issue
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1827">[ date ]</a>
+ <a href="thread.html#1827">[ thread ]</a>
+ <a href="subject.html#1827">[ subject ]</a>
+ <a href="author.html#1827">[ 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/2012-March/001828.html b/zarb-ml/mageia-webteam/2012-March/001828.html
new file mode 100644
index 000000000..62044a427
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001828.html
@@ -0,0 +1,103 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;
+ </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%204876%5D%20%5BNew%5D%20Downloaded%20net%20install%20iso%20is%0A%20always%20named%20%22boot.iso%22&In-Reply-To=%3Cbug-4876-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="001822.html">
+ <LINK REL="Next" HREF="001831.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;</H1>
+ <B>Feth Arezki</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204876%5D%20%5BNew%5D%20Downloaded%20net%20install%20iso%20is%0A%20always%20named%20%22boot.iso%22&In-Reply-To=%3Cbug-4876-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 11 16:36:21 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001822.html">[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page
+</A></li>
+ <LI>Next message: <A HREF="001831.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1828">[ date ]</a>
+ <a href="thread.html#1828">[ thread ]</a>
+ <a href="subject.html#1828">[ subject ]</a>
+ <a href="author.html#1828">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4876">https://bugs.mageia.org/show_bug.cgi?id=4876</A>
+
+ Summary: Downloaded net install iso is always named &quot;boot.iso&quot;
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://www.mageia.org/en/downloads/get/?q=Mageia-2-bet">http://www.mageia.org/en/downloads/get/?q=Mageia-2-bet</A>
+ a1-Boot-x86_64-CD.iso
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">feth+mageia at tuttu.info</A>
+
+
+Description of problem:
+
+Downloaded net install iso is always named &quot;boot.iso&quot;.
+The page url is
+www.mageia.org/en/downloads/get/?q=Mageia-2-beta1-Boot-x86_64-CD.iso.
+I'd rather have the downloaded file be named Mageia-2-beta1-Boot-x86_64-CD.iso.
+
+Also, the iso is advertised as being only 40 MB large, which is wrong: it's
+only 17 MB large!
+
+Version-Release number of selected component (if applicable):
+Mageia-2-beta1-Boot-x86_64-CD.iso.
+
+How reproducible:
+always
+
+Steps to Reproduce:
+1. go to <A HREF="http://www.mageia.org/en/2/">http://www.mageia.org/en/2/</A>
+2. select a net install iso
+3. wait for the d/l to happen, note page url and file name... :)
+
+regards,
+
+Feth
+
+--
+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="001822.html">[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page
+</A></li>
+ <LI>Next message: <A HREF="001831.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1828">[ date ]</a>
+ <a href="thread.html#1828">[ thread ]</a>
+ <a href="subject.html#1828">[ subject ]</a>
+ <a href="author.html#1828">[ 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/2012-March/001829.html b/zarb-ml/mageia-webteam/2012-March/001829.html
new file mode 100644
index 000000000..107cf4c39
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001829.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing
+ </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%204885%5D%20%5BNew%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3Cbug-4885-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="001836.html">
+ <LINK REL="Next" HREF="001830.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204885%5D%20%5BNew%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3Cbug-4885-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 11 21:17:24 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001836.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001830.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1829">[ date ]</a>
+ <a href="thread.html#1829">[ thread ]</a>
+ <a href="subject.html#1829">[ subject ]</a>
+ <a href="author.html#1829">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4885">https://bugs.mageia.org/show_bug.cgi?id=4885</A>
+
+ Summary: Mageia bugzilla favicon missing
+ 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">zen25000 at zen.co.uk</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>
+
+
+Description of problem:
+The Mageia bugzilla favicon somehow got removed a month or so back and was
+never replaced.
+
+Using this bug as a reminder ;)
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1.
+2.
+3.
+
+--
+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="001836.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001830.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1829">[ date ]</a>
+ <a href="thread.html#1829">[ thread ]</a>
+ <a href="subject.html#1829">[ subject ]</a>
+ <a href="author.html#1829">[ 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/2012-March/001830.html b/zarb-ml/mageia-webteam/2012-March/001830.html
new file mode 100644
index 000000000..812f39357
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001830.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+ </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%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120311213138.9D41240E37%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="001829.html">
+ <LINK REL="Next" HREF="001832.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4483] add the Graphical Reports feature</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120311213138.9D41240E37%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4483] add the Graphical Reports feature">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 11 22:31:38 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001829.html">[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="001832.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1830">[ date ]</a>
+ <a href="thread.html#1830">[ thread ]</a>
+ <a href="subject.html#1830">[ subject ]</a>
+ <a href="author.html#1830">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4483">https://bugs.mageia.org/show_bug.cgi?id=4483</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; 2012-03-11 22:31:38 CET ---
+That's a rather short explanation. Checksetup.pl will also create databases,
+etc, so i would not run it just to install some package or see what is missing.
+
+--
+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="001829.html">[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="001832.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1830">[ date ]</a>
+ <a href="thread.html#1830">[ thread ]</a>
+ <a href="subject.html#1830">[ subject ]</a>
+ <a href="author.html#1830">[ 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/2012-March/001831.html b/zarb-ml/mageia-webteam/2012-March/001831.html
new file mode 100644
index 000000000..a92c671ae
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001831.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+ </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%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120311215227.B0E0642263%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="001828.html">
+ <LINK REL="Next" HREF="001834.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120311215227.B0E0642263%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 11 22:52:27 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001828.html">[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001834.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1831">[ date ]</a>
+ <a href="thread.html#1831">[ thread ]</a>
+ <a href="subject.html#1831">[ subject ]</a>
+ <a href="author.html#1831">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4876">https://bugs.mageia.org/show_bug.cgi?id=4876</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>
+
+--- Comment #1 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">alien at rmail.be</A>&gt; 2012-03-11 22:52:27 CET ---
+IIUC, this &quot;netinstall iso&quot; which should be only for advanced users, is
+actually a link to the boot.iso on the cauldron mirrors, which i think has been
+frequently updated since. (it's also been cleaned up bigtime).
+
+This is of course just an addition of information. The size is mentioned
+wrongly and I also did notice that different name that you get. Though, IMHO
+this is a rather low priority minor bug.
+
+--
+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="001828.html">[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001834.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1831">[ date ]</a>
+ <a href="thread.html#1831">[ thread ]</a>
+ <a href="subject.html#1831">[ subject ]</a>
+ <a href="author.html#1831">[ 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/2012-March/001832.html b/zarb-ml/mageia-webteam/2012-March/001832.html
new file mode 100644
index 000000000..1be1fc323
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001832.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+ </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%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120311215436.BBC0D42273%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="001830.html">
+ <LINK REL="Next" HREF="001833.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4483] add the Graphical Reports feature</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120311215436.BBC0D42273%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4483] add the Graphical Reports feature">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 11 22:54:36 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001830.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001833.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1832">[ date ]</a>
+ <a href="thread.html#1832">[ thread ]</a>
+ <a href="subject.html#1832">[ subject ]</a>
+ <a href="author.html#1832">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4483">https://bugs.mageia.org/show_bug.cgi?id=4483</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-03-11 23:54:36 CET ---
+well I don't know how works the bugzilla..
+
+***********************************************************************
+* OPTIONAL MODULES *
+***********************************************************************
+* Certain Perl modules are not required by Bugzilla, but by *
+* installing the latest version you gain access to additional *
+* features. *
+* *
+* The optional modules you do not have installed are listed below, *
+* with the name of the feature they enable. Below that table are the *
+* commands to install each module. *
+***********************************************************************
+* MODULE NAME * ENABLES FEATURE(S) *
+***********************************************************************
+* Template-GD * Graphical Reports *
+* MIME-tools * Move Bugs Between Installations *
+* RadiusPerl * RADIUS Authentication *
+* SOAP-Lite * XML-RPC Interface *
+* JSON-RPC * JSON-RPC Interface *
+* JSON-XS * Make JSON-RPC Faster *
+* Test-Taint * JSON-RPC Interface, XML-RPC Interface *
+* HTML-Scrubber * More HTML in Product/Group Descriptions *
+* Email-MIME-Attachment-Stripper * Inbound Email *
+* Email-Reply * Inbound Email *
+* TheSchwartz * Mail Queueing *
+* Daemon-Generic * Mail Queueing *
+* mod_perl * mod_perl *
+* Apache-SizeLimit * mod_perl *
+* Math-Random-Secure * Improve cookie and token security *
+***********************************************************************
+COMMANDS TO INSTALL OPTIONAL MODULES:
+
+ Template-GD: urpmi 'perl(Template::Plugin::GD::Image)'
+ MIME-tools: urpmi 'perl(MIME::Parser)'
+ RadiusPerl: urpmi 'perl(Authen::Radius)'
+ SOAP-Lite: urpmi 'perl(SOAP::Lite)'
+ JSON-RPC: urpmi 'perl(JSON::RPC)'
+ JSON-XS: urpmi 'perl(JSON::XS)'
+ Test-Taint: urpmi 'perl(Test::Taint)'
+ HTML-Scrubber: urpmi 'perl(HTML::Scrubber)'
+Email-MIME-Attachment-Stripper: urpmi 'perl(Email::MIME::Attachment::Stripper)'
+ Email-Reply: urpmi 'perl(Email::Reply)'
+ TheSchwartz: urpmi 'perl(TheSchwartz)'
+ Daemon-Generic: urpmi 'perl(Daemon::Generic)'
+ mod_perl: urpmi 'perl(mod_perl2)'
+Apache-SizeLimit: urpmi 'perl(Apache2::SizeLimit)'
+Math-Random-Secure: urpmi 'perl(Math::Random::Secure)'
+
+--
+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="001830.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001833.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1832">[ date ]</a>
+ <a href="thread.html#1832">[ thread ]</a>
+ <a href="subject.html#1832">[ subject ]</a>
+ <a href="author.html#1832">[ 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/2012-March/001833.html b/zarb-ml/mageia-webteam/2012-March/001833.html
new file mode 100644
index 000000000..0e5950797
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001833.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+ </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%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120311220248.850754226D%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="001832.html">
+ <LINK REL="Next" HREF="001837.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4483] add the Graphical Reports feature</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204483%5D%20add%20the%20Graphical%20Reports%20feature&In-Reply-To=%3C20120311220248.850754226D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4483] add the Graphical Reports feature">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 11 23:02:48 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001832.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001837.html">[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1833">[ date ]</a>
+ <a href="thread.html#1833">[ thread ]</a>
+ <a href="subject.html#1833">[ subject ]</a>
+ <a href="author.html#1833">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4483">https://bugs.mageia.org/show_bug.cgi?id=4483</A>
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2012-03-12 00:02:48 CET ---
+Yes, i also did read the source code and was about to commit the installation
+of the missing rpm. but there is no picture with the test request you gave.
+
+So the error message is gone, but it doesn't work fine on firefox.
+
+--
+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="001832.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001837.html">[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1833">[ date ]</a>
+ <a href="thread.html#1833">[ thread ]</a>
+ <a href="subject.html#1833">[ subject ]</a>
+ <a href="author.html#1833">[ 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/2012-March/001834.html b/zarb-ml/mageia-webteam/2012-March/001834.html
new file mode 100644
index 000000000..e030e06cc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001834.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+ </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%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120311220801.5002D4226A%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="001831.html">
+ <LINK REL="Next" HREF="001835.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;</H1>
+ <B>Feth Arezki</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120311220801.5002D4226A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 11 23:08:01 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001831.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001835.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1834">[ date ]</a>
+ <a href="thread.html#1834">[ thread ]</a>
+ <a href="subject.html#1834">[ subject ]</a>
+ <a href="author.html#1834">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4876">https://bugs.mageia.org/show_bug.cgi?id=4876</A>
+
+Feth Arezki &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">feth+mageia at tuttu.info</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |Low
+
+--- Comment #2 from Feth Arezki &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">feth+mageia at tuttu.info</A>&gt; 2012-03-11 23:08:01 CET ---
+Yup, low priority. Bug anyway.
+There also are plenty of advanced users with broadband connection who may
+prefer a netinst iso :)
+
+--
+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="001831.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001835.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1834">[ date ]</a>
+ <a href="thread.html#1834">[ thread ]</a>
+ <a href="subject.html#1834">[ subject ]</a>
+ <a href="author.html#1834">[ 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/2012-March/001835.html b/zarb-ml/mageia-webteam/2012-March/001835.html
new file mode 100644
index 000000000..7feed5ce4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001835.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+ </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%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120311221846.AC4D14226A%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="001834.html">
+ <LINK REL="Next" HREF="001836.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120311221846.AC4D14226A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Mar 11 23:18:46 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001834.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001836.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1835">[ date ]</a>
+ <a href="thread.html#1835">[ thread ]</a>
+ <a href="subject.html#1835">[ subject ]</a>
+ <a href="author.html#1835">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4876">https://bugs.mageia.org/show_bug.cgi?id=4876</A>
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-03-11 23:18:46 CET ---
+for the size, all are different
+
+x86_64
+boot-nonfree.iso 23M
+boot.iso 17M
+
+i586
+boot-nonfree.iso 45M
+boot.iso 32M
+
+--
+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="001834.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001836.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1835">[ date ]</a>
+ <a href="thread.html#1835">[ thread ]</a>
+ <a href="subject.html#1835">[ subject ]</a>
+ <a href="author.html#1835">[ 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/2012-March/001836.html b/zarb-ml/mageia-webteam/2012-March/001836.html
new file mode 100644
index 000000000..2cc751180
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001836.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+ </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%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120312101001.04179422B5%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="001835.html">
+ <LINK REL="Next" HREF="001829.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120312101001.04179422B5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Mar 12 11:10:00 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001835.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001829.html">[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1836">[ date ]</a>
+ <a href="thread.html#1836">[ thread ]</a>
+ <a href="subject.html#1836">[ subject ]</a>
+ <a href="author.html#1836">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4876">https://bugs.mageia.org/show_bug.cgi?id=4876</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-03-12 11:10:00 CET ---
+Known, thanks for the tracker.
+
+There are actually two things to consider:
+ - reporting the right size of the ISO (that's more related to how the download
+index info is built and updated; this is still half automatic, half manual
+process);
+ - reporting the right name/version/release/build of the ISO (because it's
+frequently updated).
+
+--
+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="001835.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001829.html">[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1836">[ date ]</a>
+ <a href="thread.html#1836">[ thread ]</a>
+ <a href="subject.html#1836">[ subject ]</a>
+ <a href="author.html#1836">[ 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/2012-March/001837.html b/zarb-ml/mageia-webteam/2012-March/001837.html
new file mode 100644
index 000000000..4788ef37f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001837.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+ </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%204911%5D%20%5BNew%5D%20IPv6%20addresses%20on%20wiki%20%22personal%0A%20tools%22%20mess%20up%20the%20layout&In-Reply-To=%3Cbug-4911-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="001833.html">
+ <LINK REL="Next" HREF="001838.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204911%5D%20%5BNew%5D%20IPv6%20addresses%20on%20wiki%20%22personal%0A%20tools%22%20mess%20up%20the%20layout&In-Reply-To=%3Cbug-4911-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Mar 12 20:03:54 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001833.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001838.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1837">[ date ]</a>
+ <a href="thread.html#1837">[ thread ]</a>
+ <a href="subject.html#1837">[ subject ]</a>
+ <a href="author.html#1837">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4911">https://bugs.mageia.org/show_bug.cgi?id=4911</A>
+
+ Summary: IPv6 addresses on wiki &quot;personal tools&quot; mess up the
+ layout
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">remco at webconquest.com</A>
+
+
+Please see the attached screenshot for an issue with approaching the wiki over
+ipv6.
+
+--
+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="001833.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A></li>
+ <LI>Next message: <A HREF="001838.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1837">[ date ]</a>
+ <a href="thread.html#1837">[ thread ]</a>
+ <a href="subject.html#1837">[ subject ]</a>
+ <a href="author.html#1837">[ 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/2012-March/001838.html b/zarb-ml/mageia-webteam/2012-March/001838.html
new file mode 100644
index 000000000..694d82c82
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001838.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+ </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%204911%5D%20IPv6%20addresses%20on%20wiki%20%22personal%20tools%22%0A%20mess%20up%20the%20layout&In-Reply-To=%3C20120312190432.A97F242323%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="001837.html">
+ <LINK REL="Next" HREF="001839.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204911%5D%20IPv6%20addresses%20on%20wiki%20%22personal%20tools%22%0A%20mess%20up%20the%20layout&In-Reply-To=%3C20120312190432.A97F242323%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Mar 12 20:04:32 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001837.html">[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI>Next message: <A HREF="001839.html">[Mageia-webteam] [Bug 4979] [New] no connect update distrib1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1838">[ date ]</a>
+ <a href="thread.html#1838">[ thread ]</a>
+ <a href="subject.html#1838">[ subject ]</a>
+ <a href="author.html#1838">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4911">https://bugs.mageia.org/show_bug.cgi?id=4911</A>
+
+--- Comment #1 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-03-12 20:04:32 CET ---
+Created attachment 1738
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=1738">https://bugs.mageia.org/attachment.cgi?id=1738</A>
+Screenshot illustrating the 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001837.html">[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI>Next message: <A HREF="001839.html">[Mageia-webteam] [Bug 4979] [New] no connect update distrib1
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1838">[ date ]</a>
+ <a href="thread.html#1838">[ thread ]</a>
+ <a href="subject.html#1838">[ subject ]</a>
+ <a href="author.html#1838">[ 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/2012-March/001839.html b/zarb-ml/mageia-webteam/2012-March/001839.html
new file mode 100644
index 000000000..b89fa2316
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001839.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] [New] no connect update distrib1
+ </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%204979%5D%20%5BNew%5D%20no%20connect%20update%20distrib1&In-Reply-To=%3Cbug-4979-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="001838.html">
+ <LINK REL="Next" HREF="001840.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] [New] no connect update distrib1</H1>
+ <B>Ertan Demir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20%5BNew%5D%20no%20connect%20update%20distrib1&In-Reply-To=%3Cbug-4979-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] [New] no connect update distrib1">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 16 11:36:13 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001838.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI>Next message: <A HREF="001840.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1839">[ date ]</a>
+ <a href="thread.html#1839">[ thread ]</a>
+ <a href="subject.html#1839">[ subject ]</a>
+ <a href="author.html#1839">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+ Summary: no connect update distrib1
+ 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">thespooks at windowslive.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>
+
+
+15.03.2012 mageia beta 2
+
+Problem: No update connecting server(distrib1)
+
+
+Steps to Reproduce:
+1. no connect distrubitiun update server
+
+sample text:
+
+Ortam eklenemedi. A&#351;a&#287;&#305;da hatalar raporlanm&#305;&#351;t&#305;r:
+
+[<A HREF="ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/distrib/cauldron/i586/media/core/release/media_info/synthesis.hdlist.cz">ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/distrib/cauldron/i586/media/core/release/media_info/synthesis.hdlist.cz</A>]
+al&#305;m&#305; ba&#351;ar&#305;s&#305;z oldu. (md5sum e&#351;le&#351;medi.)
+&quot;Core Release (distrib1)&quot; ortam&#305;n&#305;n sentezleme dosyas&#305;n&#305;n okunmas&#305;nda hata
+...getirme ba&#351;ar&#305;s&#305;z: [aria2 hatas&#305;: 3 ile &#231;&#305;k&#305;ld&#305;.]
+&quot;Core Release Debug (distrib2)&quot; ortam&#305;n&#305;n sentezleme dosyas&#305;n&#305;n okunmas&#305;nda
+hata
+
+--
+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="001838.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A></li>
+ <LI>Next message: <A HREF="001840.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1839">[ date ]</a>
+ <a href="thread.html#1839">[ thread ]</a>
+ <a href="subject.html#1839">[ subject ]</a>
+ <a href="author.html#1839">[ 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/2012-March/001840.html b/zarb-ml/mageia-webteam/2012-March/001840.html
new file mode 100644
index 000000000..6d55a3f63
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001840.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+ </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%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120316170946.80B6842492%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="001839.html">
+ <LINK REL="Next" HREF="001842.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120316170946.80B6842492%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 16 18:09:46 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001839.html">[Mageia-webteam] [Bug 4979] [New] no connect update distrib1
+</A></li>
+ <LI>Next message: <A HREF="001842.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1840">[ date ]</a>
+ <a href="thread.html#1840">[ thread ]</a>
+ <a href="subject.html#1840">[ subject ]</a>
+ <a href="author.html#1840">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|no connect update distrib1 |can't connect mirror for
+ | |the update after the
+ | |install
+ Product|Infrastructure |Mageia
+ Version|unspecified |Cauldron
+ Keywords| |NEEDINFO
+ Component|Bugzilla |Release (media or process)
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+ Target Milestone|--- |Mageia 2
+ RPM Package| |drakx-installer-stage2
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-03-16 18:09:46 CET ---
+Thanks for the bug report.
+Could you provide the file /root/drakx/report.bug.gz as an attachment ?
+If you don't have the file, you can switch to console 2 (by pressing
+'Ctrl-Alt-F2') during installation, put a floppy in floppy drive or plug a USB
+key/stick and type: 'bug' then press Enter. It will put report.bug on the
+floppy/key.
+
+--
+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="001839.html">[Mageia-webteam] [Bug 4979] [New] no connect update distrib1
+</A></li>
+ <LI>Next message: <A HREF="001842.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1840">[ date ]</a>
+ <a href="thread.html#1840">[ thread ]</a>
+ <a href="subject.html#1840">[ subject ]</a>
+ <a href="author.html#1840">[ 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/2012-March/001841.html b/zarb-ml/mageia-webteam/2012-March/001841.html
new file mode 100644
index 000000000..d57acdaa4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001841.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+ </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%204966%5D%20Wired%20Network-based%20install%20CD%20%3E%0A%09error404&In-Reply-To=%3C20120316194849.148B14248F%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="001845.html">
+ <LINK REL="Next" HREF="001844.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204966%5D%20Wired%20Network-based%20install%20CD%20%3E%0A%09error404&In-Reply-To=%3C20120316194849.148B14248F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 16 20:48:49 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001845.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001844.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1841">[ date ]</a>
+ <a href="thread.html#1841">[ thread ]</a>
+ <a href="subject.html#1841">[ subject ]</a>
+ <a href="author.html#1841">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4966">https://bugs.mageia.org/show_bug.cgi?id=4966</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Mageia |Websites
+ Version|Cauldron |trunk
+ Component|Release (media or process) |www.mageia.org
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-03-16 20:48:48 CET ---
+sorry wrong assgnment
+
+--
+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="001845.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001844.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1841">[ date ]</a>
+ <a href="thread.html#1841">[ thread ]</a>
+ <a href="subject.html#1841">[ subject ]</a>
+ <a href="author.html#1841">[ 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/2012-March/001842.html b/zarb-ml/mageia-webteam/2012-March/001842.html
new file mode 100644
index 000000000..40f7b7c3d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001842.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+ </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%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120316203659.C2BDF4201E%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="001840.html">
+ <LINK REL="Next" HREF="001843.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120316203659.C2BDF4201E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 16 21:36:59 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001840.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001843.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1842">[ date ]</a>
+ <a href="thread.html#1842">[ thread ]</a>
+ <a href="subject.html#1842">[ subject ]</a>
+ <a href="author.html#1842">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>
+
+--- Comment #2 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2012-03-16 22:36:59 CET ---
+Looking at the date of
+<A HREF="ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/distrib/cauldron/i586/media/core/release/media_info/synthesis.hdlist.cz">ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/distrib/cauldron/i586/media/core/release/media_info/synthesis.hdlist.cz</A>
+It hasn't synced since Mar 14 11:24
+
+The mirror either has to get the sync process running again, or
+be removed from the mirror list.
+
+--
+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="001840.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001843.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1842">[ date ]</a>
+ <a href="thread.html#1842">[ thread ]</a>
+ <a href="subject.html#1842">[ subject ]</a>
+ <a href="author.html#1842">[ 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/2012-March/001843.html b/zarb-ml/mageia-webteam/2012-March/001843.html
new file mode 100644
index 000000000..d2dbea4c9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001843.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+ </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%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120316204904.89A0242470%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="001842.html">
+ <LINK REL="Next" HREF="001845.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120316204904.89A0242470%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 16 21:49:04 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001842.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001845.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1843">[ date ]</a>
+ <a href="thread.html#1843">[ thread ]</a>
+ <a href="subject.html#1843">[ subject ]</a>
+ <a href="author.html#1843">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-03-16 22:49:04 CET ---
+well it should be ok <A HREF="ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/mageia_timestamp">ftp://ftp.cc.uoc.gr/mirrors/linux/mageia/mageia_timestamp</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="001842.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001845.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1843">[ date ]</a>
+ <a href="thread.html#1843">[ thread ]</a>
+ <a href="subject.html#1843">[ subject ]</a>
+ <a href="author.html#1843">[ 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/2012-March/001844.html b/zarb-ml/mageia-webteam/2012-March/001844.html
new file mode 100644
index 000000000..adbdd268b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001844.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+ </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%204966%5D%20Wired%20Network-based%20install%20CD%20%3E%0A%09error404&In-Reply-To=%3C20120316223548.CA28442489%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="001841.html">
+ <LINK REL="Next" HREF="001846.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204966%5D%20Wired%20Network-based%20install%20CD%20%3E%0A%09error404&In-Reply-To=%3C20120316223548.CA28442489%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 16 23:35:48 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001841.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI>Next message: <A HREF="001846.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1844">[ date ]</a>
+ <a href="thread.html#1844">[ thread ]</a>
+ <a href="subject.html#1844">[ subject ]</a>
+ <a href="author.html#1844">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4966">https://bugs.mageia.org/show_bug.cgi?id=4966</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-03-17 00:35:48 CET ---
+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="001841.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI>Next message: <A HREF="001846.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1844">[ date ]</a>
+ <a href="thread.html#1844">[ thread ]</a>
+ <a href="subject.html#1844">[ subject ]</a>
+ <a href="author.html#1844">[ 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/2012-March/001845.html b/zarb-ml/mageia-webteam/2012-March/001845.html
new file mode 100644
index 000000000..45a9a0b8f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001845.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+ </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%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120316224101.639B942498%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="001843.html">
+ <LINK REL="Next" HREF="001841.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120316224101.639B942498%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 16 23:41:01 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001843.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001841.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1845">[ date ]</a>
+ <a href="thread.html#1845">[ thread ]</a>
+ <a href="subject.html#1845">[ subject ]</a>
+ <a href="author.html#1845">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+--- Comment #4 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2012-03-17 00:41:01 CET ---
+It now shows Mar 15 00:37 for synthesis.hdlist.cz,
+so it has synced since I posted.
+
+--
+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="001843.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001841.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1845">[ date ]</a>
+ <a href="thread.html#1845">[ thread ]</a>
+ <a href="subject.html#1845">[ subject ]</a>
+ <a href="author.html#1845">[ 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/2012-March/001846.html b/zarb-ml/mageia-webteam/2012-March/001846.html
new file mode 100644
index 000000000..6e6a5d058
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001846.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+ </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%204966%5D%20Wired%20Network-based%20install%20CD%20%3E%0A%09error404&In-Reply-To=%3C20120317000036.60EAA42488%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="001844.html">
+ <LINK REL="Next" HREF="001847.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404</H1>
+ <B>jon scsi</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204966%5D%20Wired%20Network-based%20install%20CD%20%3E%0A%09error404&In-Reply-To=%3C20120317000036.60EAA42488%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 17 01:00:36 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001844.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI>Next message: <A HREF="001847.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1846">[ date ]</a>
+ <a href="thread.html#1846">[ thread ]</a>
+ <a href="subject.html#1846">[ subject ]</a>
+ <a href="author.html#1846">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4966">https://bugs.mageia.org/show_bug.cgi?id=4966</A>
+
+--- Comment #4 from jon scsi &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">scsijon at lamiaworks.com.au</A>&gt; 2012-03-17 01:00:36 CET ---
+confirmed now working, 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="001844.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI>Next message: <A HREF="001847.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1846">[ date ]</a>
+ <a href="thread.html#1846">[ thread ]</a>
+ <a href="subject.html#1846">[ subject ]</a>
+ <a href="author.html#1846">[ 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/2012-March/001847.html b/zarb-ml/mageia-webteam/2012-March/001847.html
new file mode 100644
index 000000000..09fb01685
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001847.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317115951.E7FF2424BD%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="001846.html">
+ <LINK REL="Next" HREF="001848.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317115951.E7FF2424BD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 17 12:59:51 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001846.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI>Next message: <A HREF="001848.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1847">[ date ]</a>
+ <a href="thread.html#1847">[ thread ]</a>
+ <a href="subject.html#1847">[ subject ]</a>
+ <a href="author.html#1847">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #7 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2012-03-17 12:59:51 CET ---
+Nobody else interested in this?
+I've found one more reason to make this a reality:
+
+Lets say that you're at a public place were they don't allow either booting
+from USB or installing programs, but you still want to boot your appliance.
+
+--
+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="001846.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A></li>
+ <LI>Next message: <A HREF="001848.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1847">[ date ]</a>
+ <a href="thread.html#1847">[ thread ]</a>
+ <a href="subject.html#1847">[ subject ]</a>
+ <a href="author.html#1847">[ 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/2012-March/001848.html b/zarb-ml/mageia-webteam/2012-March/001848.html
new file mode 100644
index 000000000..1a4ceb6c2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001848.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317152403.6CA40424ED%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="001847.html">
+ <LINK REL="Next" HREF="001849.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Thomas Spuhler</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317152403.6CA40424ED%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 17 16:24:03 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001847.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001849.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1848">[ date ]</a>
+ <a href="thread.html#1848">[ thread ]</a>
+ <a href="subject.html#1848">[ subject ]</a>
+ <a href="author.html#1848">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+Thomas Spuhler &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thomas at btspuhler.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thomas at btspuhler.com</A>
+
+--- Comment #8 from Thomas Spuhler &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thomas at btspuhler.com</A>&gt; 2012-03-17 16:24:03 CET ---
+Unfortunately, the youtube video has been pulled
+
+--
+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="001847.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001849.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1848">[ date ]</a>
+ <a href="thread.html#1848">[ thread ]</a>
+ <a href="subject.html#1848">[ subject ]</a>
+ <a href="author.html#1848">[ 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/2012-March/001849.html b/zarb-ml/mageia-webteam/2012-March/001849.html
new file mode 100644
index 000000000..06ab35450
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001849.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317153459.A9F06424E3%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="001848.html">
+ <LINK REL="Next" HREF="001850.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Morgan Leijstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317153459.A9F06424E3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 17 16:34:59 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001848.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001850.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1849">[ date ]</a>
+ <a href="thread.html#1849">[ thread ]</a>
+ <a href="subject.html#1849">[ subject ]</a>
+ <a href="author.html#1849">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+Morgan Leijstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">fri at tribun.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">fri at tribun.eu</A>
+
+--- Comment #9 from Morgan Leijstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">fri at tribun.eu</A>&gt; 2012-03-17 17:34:59 CET ---
+Interesting, I may try if it exist, but personally feel no neeed now.
+A couple comments:
+
+For them who have mageia already, low bandwidth. and a local repo, an idea
+would be to have the image generating thingy able to run locally, get packages
+when possible, or simply use urpmi-proxy.
+
+As a complement, it would be nice if the Lice system could recreate its
+compressed image (like the old MCNLive) with latest updates, new program etc.
+(To save space and increase speed compared to having them separate from the
+image)
+
+--
+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="001848.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001850.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1849">[ date ]</a>
+ <a href="thread.html#1849">[ thread ]</a>
+ <a href="subject.html#1849">[ subject ]</a>
+ <a href="author.html#1849">[ 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/2012-March/001850.html b/zarb-ml/mageia-webteam/2012-March/001850.html
new file mode 100644
index 000000000..a9cec107e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001850.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317163522.96292424DC%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="001849.html">
+ <LINK REL="Next" HREF="001851.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317163522.96292424DC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 17 17:35:22 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001849.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001851.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1850">[ date ]</a>
+ <a href="thread.html#1850">[ thread ]</a>
+ <a href="subject.html#1850">[ subject ]</a>
+ <a href="author.html#1850">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>
+
+--- Comment #10 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2012-03-17 18:35:22 CET ---
+Yep, probably we should implement something which allows users to remaster
+their installation media, or at least the live cds, to allow them to add needed
+packages, updates or change some configurations and stuff like that, before we
+implement something public and server-based.
+
+FWIW there's already
+<A HREF="http://www.mandrivauser.de/doku/doku.php?id=allgemein:tutorials:selfmadeiso_en">http://www.mandrivauser.de/doku/doku.php?id=allgemein:tutorials:selfmadeiso_en</A>
+which allows experienced users to manually remaster live cds.
+
+--
+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="001849.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001851.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1850">[ date ]</a>
+ <a href="thread.html#1850">[ thread ]</a>
+ <a href="subject.html#1850">[ subject ]</a>
+ <a href="author.html#1850">[ 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/2012-March/001851.html b/zarb-ml/mageia-webteam/2012-March/001851.html
new file mode 100644
index 000000000..561ca8fa6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001851.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317194916.B1E06424F6%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="001850.html">
+ <LINK REL="Next" HREF="001852.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Morgan Leijstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120317194916.B1E06424F6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Mar 17 20:49:16 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001850.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001852.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1851">[ date ]</a>
+ <a href="thread.html#1851">[ thread ]</a>
+ <a href="subject.html#1851">[ subject ]</a>
+ <a href="author.html#1851">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #11 from Morgan Leijstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">fri at tribun.eu</A>&gt; 2012-03-17 20:49:16 CET ---
+Thanks for the link.
+What also would be nice to add in that case is persistent save of user data,
+and system settings and addings to the running live system, for use as live USB
+stick.
+(Oh, Sorry for hijacking the subject...)
+
+--
+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="001850.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001852.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1851">[ date ]</a>
+ <a href="thread.html#1851">[ thread ]</a>
+ <a href="subject.html#1851">[ subject ]</a>
+ <a href="author.html#1851">[ 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/2012-March/001852.html b/zarb-ml/mageia-webteam/2012-March/001852.html
new file mode 100644
index 000000000..ab7ee8634
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001852.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+ </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%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20120319054946.5B63742550%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="001851.html">
+ <LINK REL="Next" HREF="001853.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20120319054946.5B63742550%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Mar 19 06:49:46 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001851.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001853.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1852">[ date ]</a>
+ <a href="thread.html#1852">[ thread ]</a>
+ <a href="subject.html#1852">[ subject ]</a>
+ <a href="author.html#1852">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3737">https://bugs.mageia.org/show_bug.cgi?id=3737</A>
+
+--- Comment #5 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-03-19 07:49:45 CET ---
+Ping? Guys, are we going to fix this, or shall we set this bug to WONTFIX? Not
+much point in fixing this some months from now.
+
+--
+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="001851.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001853.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1852">[ date ]</a>
+ <a href="thread.html#1852">[ thread ]</a>
+ <a href="subject.html#1852">[ subject ]</a>
+ <a href="author.html#1852">[ 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/2012-March/001853.html b/zarb-ml/mageia-webteam/2012-March/001853.html
new file mode 100644
index 000000000..df5c03452
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001853.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120319112250.5CD94425AA%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="001852.html">
+ <LINK REL="Next" HREF="001854.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120319112250.5CD94425AA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Mar 19 12:22:50 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001852.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001854.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1853">[ date ]</a>
+ <a href="thread.html#1853">[ thread ]</a>
+ <a href="subject.html#1853">[ subject ]</a>
+ <a href="author.html#1853">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #12 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2012-03-19 12:22:50 CET ---
+(In reply to comment #11)
+&gt;<i> Thanks for the link.
+</I>&gt;<i> What also would be nice to add in that case is persistent save of user data,
+</I>&gt;<i> and system settings and addings to the running live system, for use as live USB
+</I>&gt;<i> stick.
+</I>&gt;<i> (Oh, Sorry for hijacking the subject...)
+</I>
+Wouldn't that mean that the other computer doesn't boot the system since the
+iso is built from another spec?
+
+Just curious.
+
+--
+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="001852.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001854.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1853">[ date ]</a>
+ <a href="thread.html#1853">[ thread ]</a>
+ <a href="subject.html#1853">[ subject ]</a>
+ <a href="author.html#1853">[ 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/2012-March/001854.html b/zarb-ml/mageia-webteam/2012-March/001854.html
new file mode 100644
index 000000000..0a6ccc445
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001854.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+ </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%203381%5D%20%5BWISH%5D%20easy%20tool%20for%20Mageia%20ISO%20creation&In-Reply-To=%3C20120320104520.CFCFA425C5%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="001853.html">
+ <LINK REL="Next" HREF="001855.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20easy%20tool%20for%20Mageia%20ISO%20creation&In-Reply-To=%3C20120320104520.CFCFA425C5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 20 11:45:20 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001853.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001855.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1854">[ date ]</a>
+ <a href="thread.html#1854">[ thread ]</a>
+ <a href="subject.html#1854">[ subject ]</a>
+ <a href="author.html#1854">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|[WISH] At least have this |[WISH] easy tool for Mageia
+ |under consideration as this |ISO creation
+ |is a great idea how to let |
+ |experienced people create |
+ |their own iso &amp; then boot |
+ |it with much less issues |
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</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="001853.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001855.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1854">[ date ]</a>
+ <a href="thread.html#1854">[ thread ]</a>
+ <a href="subject.html#1854">[ subject ]</a>
+ <a href="author.html#1854">[ 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/2012-March/001855.html b/zarb-ml/mageia-webteam/2012-March/001855.html
new file mode 100644
index 000000000..4de4c0a38
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001855.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+ </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%203381%5D%20%5BWISH%5D%20easy%20tool%20for%20Mageia%20ISO%20creation&In-Reply-To=%3C20120320123647.D6F32425D9%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="001854.html">
+ <LINK REL="Next" HREF="001856.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20easy%20tool%20for%20Mageia%20ISO%20creation&In-Reply-To=%3C20120320123647.D6F32425D9%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 20 13:36:47 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001854.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A></li>
+ <LI>Next message: <A HREF="001856.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1855">[ date ]</a>
+ <a href="thread.html#1855">[ thread ]</a>
+ <a href="subject.html#1855">[ subject ]</a>
+ <a href="author.html#1855">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #13 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2012-03-20 14:36:47 CET ---
+stormi: I don't think that you renamed it right. A tool like that exists
+already. It's called 2mandvd.
+
+This is for other purposes 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001854.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A></li>
+ <LI>Next message: <A HREF="001856.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1855">[ date ]</a>
+ <a href="thread.html#1855">[ thread ]</a>
+ <a href="subject.html#1855">[ subject ]</a>
+ <a href="author.html#1855">[ 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/2012-March/001856.html b/zarb-ml/mageia-webteam/2012-March/001856.html
new file mode 100644
index 000000000..31762d163
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001856.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+ </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%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120320123736.80935425E5%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="001855.html">
+ <LINK REL="Next" HREF="001857.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20At%20least%20have%20this%20under%0A%20consideration%20as%20this%20is%20a%20great%20idea%20how%20to%20let%20experienced%20people%20create%0A%20their%20own%20iso%20%26%20then%20boot%20it%20with%20much%20less%20issues&In-Reply-To=%3C20120320123736.80935425E5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 20 13:37:36 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001855.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A></li>
+ <LI>Next message: <A HREF="001857.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1856">[ date ]</a>
+ <a href="thread.html#1856">[ thread ]</a>
+ <a href="subject.html#1856">[ subject ]</a>
+ <a href="author.html#1856">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|[WISH] easy tool for Mageia |[WISH] At least have this
+ |ISO creation |under consideration as this
+ | |is a great idea how to let
+ | |experienced people create
+ | |their own iso &amp; then boot
+ | |it with much less issues
+
+--
+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="001855.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A></li>
+ <LI>Next message: <A HREF="001857.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1856">[ date ]</a>
+ <a href="thread.html#1856">[ thread ]</a>
+ <a href="subject.html#1856">[ subject ]</a>
+ <a href="author.html#1856">[ 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/2012-March/001857.html b/zarb-ml/mageia-webteam/2012-March/001857.html
new file mode 100644
index 000000000..3e7f3f1f4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001857.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+ </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%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20120320123818.03164425EF%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="001856.html">
+ <LINK REL="Next" HREF="001858.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20120320123818.03164425EF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 20 13:38:17 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001856.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001858.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1857">[ date ]</a>
+ <a href="thread.html#1857">[ thread ]</a>
+ <a href="subject.html#1857">[ subject ]</a>
+ <a href="author.html#1857">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|[WISH] At least have this |[WISH] Adapt the OpenSuse
+ |under consideration as this |Studio idea to Mageia
+ |is a great idea how to let |
+ |experienced people create |
+ |their own iso &amp; then boot |
+ |it with much less issues |
+
+--
+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="001856.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A></li>
+ <LI>Next message: <A HREF="001858.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1857">[ date ]</a>
+ <a href="thread.html#1857">[ thread ]</a>
+ <a href="subject.html#1857">[ subject ]</a>
+ <a href="author.html#1857">[ 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/2012-March/001858.html b/zarb-ml/mageia-webteam/2012-March/001858.html
new file mode 100644
index 000000000..1bfcbb6b4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001858.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+ </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%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20120320134403.399ED425EA%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="001857.html">
+ <LINK REL="Next" HREF="001859.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia</H1>
+ <B>Samuel VERSCHELDE</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20120320134403.399ED425EA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 20 14:44:03 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001857.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI>Next message: <A HREF="001859.html">[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1858">[ date ]</a>
+ <a href="thread.html#1858">[ thread ]</a>
+ <a href="subject.html#1858">[ subject ]</a>
+ <a href="author.html#1858">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #14 from Samuel VERSCHELDE &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; 2012-03-20 14:44:03 CET ---
+(In reply to comment #13)
+&gt;<i> stormi: I don't think that you renamed it right. A tool like that exists
+</I>&gt;<i> already. It's called 2mandvd.
+</I>&gt;<i>
+</I>&gt;<i> This is for other purposes as well.
+</I>
+Sorry if I renamed it wrong, but I think I shouldn't have had to rename it in
+the first place :)
+A bug report summary must be straight to the point with few words, not full
+sentences.
+
+--
+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="001857.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI>Next message: <A HREF="001859.html">[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1858">[ date ]</a>
+ <a href="thread.html#1858">[ thread ]</a>
+ <a href="subject.html#1858">[ subject ]</a>
+ <a href="author.html#1858">[ 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/2012-March/001859.html b/zarb-ml/mageia-webteam/2012-March/001859.html
new file mode 100644
index 000000000..be77b26c4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001859.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders
+ </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%205039%5D%20%5BNew%5D%20Give%20forum%20admin%20permissions%20to%0A%09doc%20team%20leaders&In-Reply-To=%3Cbug-5039-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="001858.html">
+ <LINK REL="Next" HREF="001860.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205039%5D%20%5BNew%5D%20Give%20forum%20admin%20permissions%20to%0A%09doc%20team%20leaders&In-Reply-To=%3Cbug-5039-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 21 09:44:28 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001858.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI>Next message: <A HREF="001860.html">[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1859">[ date ]</a>
+ <a href="thread.html#1859">[ thread ]</a>
+ <a href="subject.html#1859">[ subject ]</a>
+ <a href="author.html#1859">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5039">https://bugs.mageia.org/show_bug.cgi?id=5039</A>
+
+ Summary: Give forum admin permissions to doc team leaders
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ 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">oliver.bgr at googlemail.com</A>
+
+
+I'm currently trying to keep the wiki clean.
+But all I can do is mark pages for deletion, so boklm can delete them because
+he is the only admin/bureaucrat in our wiki.
+
+Would it be possible to promote the doc team leaders?
+
+This would be
+- marja
+- obgr (the wiki didn't like the &quot;_&quot; in obgr_seneca
+
+--
+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="001858.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI>Next message: <A HREF="001860.html">[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1859">[ date ]</a>
+ <a href="thread.html#1859">[ thread ]</a>
+ <a href="subject.html#1859">[ subject ]</a>
+ <a href="author.html#1859">[ 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/2012-March/001860.html b/zarb-ml/mageia-webteam/2012-March/001860.html
new file mode 100644
index 000000000..8ff9768e7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001860.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders
+ </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%205039%5D%20Give%20forum%20admin%20permissions%20to%20doc%0A%09team%20leaders&In-Reply-To=%3C20120321084537.E8ECA425E2%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="001859.html">
+ <LINK REL="Next" HREF="001861.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205039%5D%20Give%20forum%20admin%20permissions%20to%20doc%0A%09team%20leaders&In-Reply-To=%3C20120321084537.E8ECA425E2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Mar 21 09:45:37 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001859.html">[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders
+</A></li>
+ <LI>Next message: <A HREF="001861.html">[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1860">[ date ]</a>
+ <a href="thread.html#1860">[ thread ]</a>
+ <a href="subject.html#1860">[ subject ]</a>
+ <a href="author.html#1860">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5039">https://bugs.mageia.org/show_bug.cgi?id=5039</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<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>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</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="001859.html">[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders
+</A></li>
+ <LI>Next message: <A HREF="001861.html">[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1860">[ date ]</a>
+ <a href="thread.html#1860">[ thread ]</a>
+ <a href="subject.html#1860">[ subject ]</a>
+ <a href="author.html#1860">[ 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/2012-March/001861.html b/zarb-ml/mageia-webteam/2012-March/001861.html
new file mode 100644
index 000000000..b2f1e07dd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001861.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.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%205064%5D%20%5BNew%5D%20blog%20is%20crashing%20with%20the%20latest%0A%09firefox%2011.0.&In-Reply-To=%3Cbug-5064-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="001860.html">
+ <LINK REL="Next" HREF="001864.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.</H1>
+ <B>jon scsi</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205064%5D%20%5BNew%5D%20blog%20is%20crashing%20with%20the%20latest%0A%09firefox%2011.0.&In-Reply-To=%3Cbug-5064-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 23 03:30:58 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001860.html">[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders
+</A></li>
+ <LI>Next message: <A HREF="001864.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1861">[ date ]</a>
+ <a href="thread.html#1861">[ thread ]</a>
+ <a href="subject.html#1861">[ subject ]</a>
+ <a href="author.html#1861">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5064">https://bugs.mageia.org/show_bug.cgi?id=5064</A>
+
+ Summary: blog is crashing with the latest firefox 11.0.
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: blog.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">scsijon at lamiaworks.com.au</A>
+
+
+Can you let know whoever looks after the blog that it is crashing with the
+latest firefox 11.0.
+
+Not immediately on getting a page up, but when the loading is finished.
+
+If I interupt it's downloading with the stop button it's ok for that page.
+
+--
+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="001860.html">[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders
+</A></li>
+ <LI>Next message: <A HREF="001864.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1861">[ date ]</a>
+ <a href="thread.html#1861">[ thread ]</a>
+ <a href="subject.html#1861">[ subject ]</a>
+ <a href="author.html#1861">[ 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/2012-March/001862.html b/zarb-ml/mageia-webteam/2012-March/001862.html
new file mode 100644
index 000000000..cb9a38130
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001862.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forum helper colours
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%20Forum%20helper%20colours&In-Reply-To=%3C4F6BEA7D.3000801%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001865.html">
+ <LINK REL="Next" HREF="001863.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forum helper colours</H1>
+ <B>loqo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%20Forum%20helper%20colours&In-Reply-To=%3C4F6BEA7D.3000801%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Forum helper colours">hoverflydesign at googlemail.com
+ </A><BR>
+ <I>Fri Mar 23 04:14:05 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001865.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI>Next message: <A HREF="001863.html">[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1862">[ date ]</a>
+ <a href="thread.html#1862">[ thread ]</a>
+ <a href="subject.html#1862">[ subject ]</a>
+ <a href="author.html#1862">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi all!
+
+I'm loqo and I'm the newest helper on the Mageia forums. I'm a 39yr old
+professional game developer from the UK. I use Mageia (1st edition)
+full-time on my production PC for home and work.
+
+I noticed that forum members who are in teams have different coloured
+names. The helpers *should* be purple/magenta but we aren't. Is this an
+easy to fix? It would be good for new community members to know which
+people are there specifically to help them!
+;)
+
+Warmest regards,
+loqo
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001865.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI>Next message: <A HREF="001863.html">[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1862">[ date ]</a>
+ <a href="thread.html#1862">[ thread ]</a>
+ <a href="subject.html#1862">[ subject ]</a>
+ <a href="author.html#1862">[ 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/2012-March/001863.html b/zarb-ml/mageia-webteam/2012-March/001863.html
new file mode 100644
index 000000000..51e3e6841
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001863.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia
+ </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-marketing%5D%20Google%2B%20on%20Planet%20Mageia&In-Reply-To=%3C4F6BECC6.3050501%40gmx.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001862.html">
+ <LINK REL="Next" HREF="001866.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia</H1>
+ <B>Sebastian sebsebseb</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-marketing%5D%20Google%2B%20on%20Planet%20Mageia&In-Reply-To=%3C4F6BECC6.3050501%40gmx.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia">sebsebseb_mageia at gmx.com
+ </A><BR>
+ <I>Fri Mar 23 04:23:50 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001862.html">[Mageia-webteam] Forum helper colours
+</A></li>
+ <LI>Next message: <A HREF="001866.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1863">[ date ]</a>
+ <a href="thread.html#1863">[ thread ]</a>
+ <a href="subject.html#1863">[ subject ]</a>
+ <a href="author.html#1863">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 23/03/12 02:45, Josh King (dotmil) wrote:
+&gt;<i> On 03/22/2012 09:41 PM, Sebastian sebsebseb wrote:
+</I>&gt;&gt;<i> Loqo typed:
+</I>&gt;&gt;&gt;<i> Just a thought: can we add the Mageia Google+ pages to the planet?
+</I>&gt;&gt;&gt;<i> (<A HREF="http://planet.mageia.org/en/">http://planet.mageia.org/en/</A>)
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> It should really be in the &quot;Mageia on the web&quot; section with Twitter,
+</I>&gt;&gt;&gt;<i> Facebook, etc.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> The Mageia group should be there as well: <A HREF="http://identi.ca/group/mageia">http://identi.ca/group/mageia</A>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> The Mageia account <A HREF="http://identi.ca/mageia">http://identi.ca/mageia</A> should always send the news
+</I>&gt;&gt;<i> to the group as well! Using !Mageia or with the lower cased letter
+</I>&gt;&gt;<i> !mageia instead, and this is an issue I have wanted sorted out for over
+</I>&gt;&gt;<i> a year, but it still hasn't been solved.
+</I>&gt;<i>
+</I>&gt;<i> Maybe open these as a bug request with the web team? Thats what I've
+</I>&gt;<i> done in the past
+</I>&gt;<i>
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-marketing mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-marketing at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-marketing">https://www.mageia.org/mailman/listinfo/mageia-marketing</A>
+</I>I have been on the webteam mailing list for quite awhile, but not sent
+an email there yet, as of typing, but this will be my first.
+
+When I mentioned the Identica issue on IRC before last year, I was
+suggested to go to the marketing team mailing list or web team. Already
+done so with the marketing and that's not got the issue solved, but
+hopefully sending this email to the webteam mailing list will help.
+
+More information regarding Mageia and social networking sites:
+<A HREF="https://www.mageia.org/pipermail/mageia-marketing/2012-March/000667.html">https://www.mageia.org/pipermail/mageia-marketing/2012-March/000667.html</A>
+
+ From Sebastian sebsebseb
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001862.html">[Mageia-webteam] Forum helper colours
+</A></li>
+ <LI>Next message: <A HREF="001866.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1863">[ date ]</a>
+ <a href="thread.html#1863">[ thread ]</a>
+ <a href="subject.html#1863">[ subject ]</a>
+ <a href="author.html#1863">[ 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/2012-March/001864.html b/zarb-ml/mageia-webteam/2012-March/001864.html
new file mode 100644
index 000000000..17b41331b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001864.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.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%205064%5D%20blog%20is%20crashing%20with%20the%20latest%0A%09firefox%2011.0.&In-Reply-To=%3C20120323075518.92415425F6%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="001861.html">
+ <LINK REL="Next" HREF="001865.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205064%5D%20blog%20is%20crashing%20with%20the%20latest%0A%09firefox%2011.0.&In-Reply-To=%3C20120323075518.92415425F6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 23 08:55:18 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001861.html">[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI>Next message: <A HREF="001865.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1864">[ date ]</a>
+ <a href="thread.html#1864">[ thread ]</a>
+ <a href="subject.html#1864">[ subject ]</a>
+ <a href="author.html#1864">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5064">https://bugs.mageia.org/show_bug.cgi?id=5064</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>
+
+--- Comment #1 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; 2012-03-23 08:55:18 CET ---
+Did you file a bug report at Mozilla?
+
+--
+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="001861.html">[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI>Next message: <A HREF="001865.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1864">[ date ]</a>
+ <a href="thread.html#1864">[ thread ]</a>
+ <a href="subject.html#1864">[ subject ]</a>
+ <a href="author.html#1864">[ 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/2012-March/001865.html b/zarb-ml/mageia-webteam/2012-March/001865.html
new file mode 100644
index 000000000..8c3164b6a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001865.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.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%205064%5D%20blog%20is%20crashing%20with%20the%20latest%0A%09firefox%2011.0.&In-Reply-To=%3C20120323085639.C25FF42434%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="001864.html">
+ <LINK REL="Next" HREF="001862.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205064%5D%20blog%20is%20crashing%20with%20the%20latest%0A%09firefox%2011.0.&In-Reply-To=%3C20120323085639.C25FF42434%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Mar 23 09:56:39 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001864.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI>Next message: <A HREF="001862.html">[Mageia-webteam] Forum helper colours
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1865">[ date ]</a>
+ <a href="thread.html#1865">[ thread ]</a>
+ <a href="subject.html#1865">[ subject ]</a>
+ <a href="author.html#1865">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5064">https://bugs.mageia.org/show_bug.cgi?id=5064</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|NEW |UNCONFIRMED
+ Keywords| |NEEDINFO
+ Severity|normal |major
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+ Ever Confirmed|1 |0
+
+--- Comment #2 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-03-23 10:56:39 CET ---
+Could not reproduce here with Firefox 11.0 either. Could you:
+
+* report your exact system config (OS, version, Firefox version and build - see
+about:buildconfig)
+* report the matching crash log (see about:crashes) or track in the log what
+could have triggered the crash.
+
+In the meantime, I'll check what could see strange in the blog behaviour.
+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="001864.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A></li>
+ <LI>Next message: <A HREF="001862.html">[Mageia-webteam] Forum helper colours
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1865">[ date ]</a>
+ <a href="thread.html#1865">[ thread ]</a>
+ <a href="subject.html#1865">[ subject ]</a>
+ <a href="author.html#1865">[ 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/2012-March/001866.html b/zarb-ml/mageia-webteam/2012-March/001866.html
new file mode 100644
index 000000000..7e89829d3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001866.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Help configuring mageia.it dns
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20configuring%20mageia.it%20dns&In-Reply-To=%3C4F704B5C.5070300%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001863.html">
+ <LINK REL="Next" HREF="001867.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Help configuring mageia.it dns</H1>
+ <B>Matteo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20configuring%20mageia.it%20dns&In-Reply-To=%3C4F704B5C.5070300%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Help configuring mageia.it dns">pasotti.matteo at gmail.com
+ </A><BR>
+ <I>Mon Mar 26 12:56:28 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001863.html">[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia
+</A></li>
+ <LI>Next message: <A HREF="001867.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1866">[ date ]</a>
+ <a href="thread.html#1866">[ thread ]</a>
+ <a href="subject.html#1866">[ subject ]</a>
+ <a href="author.html#1866">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+Hello,
+I need some help configuring the mageia.it dns to make it refer to
+mageia.org.
+Previously I made the redirection manipulating http headers using php,
+now I can only work with dns fields and I'm facing some problem.
+
+I get this error:
+- ------------------------------------
+Not Found
+
+The requested URL /cgi-sys/defaultwebpage.cgi was not found on this
+server.
+Apache/2.2.14 (Mandriva Linux/PREFORK-1.6mdv2010.0) Server at
+www.mageia.org Port 80
+- ------------------------------------
+
+I don't know what I'm doing wrong.
+Thanks in advance.
+- --
+Matteo
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.11 (GNU/Linux)
+Comment: Using GnuPG with Mozilla - <A HREF="http://enigmail.mozdev.org/">http://enigmail.mozdev.org/</A>
+
+iQEcBAEBAgAGBQJPcEtYAAoJED3LowjDDWbNvTMIAIrrWQIqtQJWhV4z1uk4T9o3
+b8mBFFbbdrv4F6L0RQhBmMdFdlcRn6t/yVicRU8vbOolcSYqAwR2Jr97HZ+ldqNl
+KVXEg447+QML1kXAVYc2JlhMcObiWgnW2GG1ITx4QqPn0yYEVcIaDM0wK10+nfEs
+eU+yvIuKy2mt8xZ5uQHhrcWWUnnpheVo5eFwotT9e16Alf1t7h9o+/D4eo41UgrR
+htD+lAviJqZ2IP2JSIrMEaE9lUTRII97eZP8F5LoLdUWpwj0aqnY2Ev8S+5IlBdA
+syvxOGRHfxPvjUt8zgO2gZut+qh9gceJjAT3We6XLbSchf2Iksoa9II/S7EVDhM=
+=FV5U
+-----END PGP SIGNATURE-----
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001863.html">[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia
+</A></li>
+ <LI>Next message: <A HREF="001867.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1866">[ date ]</a>
+ <a href="thread.html#1866">[ thread ]</a>
+ <a href="subject.html#1866">[ subject ]</a>
+ <a href="author.html#1866">[ 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/2012-March/001867.html b/zarb-ml/mageia-webteam/2012-March/001867.html
new file mode 100644
index 000000000..7c6e797a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001867.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Help configuring mageia.it dns
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20configuring%20mageia.it%20dns&In-Reply-To=%3CCANa9xwubhTrxeAkFYps4QB6Hj9qF9BWBzQEttKpv9%3DymeRQ%3D_Q%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="001866.html">
+ <LINK REL="Next" HREF="001868.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Help configuring mageia.it dns</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20configuring%20mageia.it%20dns&In-Reply-To=%3CCANa9xwubhTrxeAkFYps4QB6Hj9qF9BWBzQEttKpv9%3DymeRQ%3D_Q%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Help configuring mageia.it dns">rda at mageia.org
+ </A><BR>
+ <I>Mon Mar 26 13:28:41 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001866.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI>Next message: <A HREF="001868.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1867">[ date ]</a>
+ <a href="thread.html#1867">[ thread ]</a>
+ <a href="subject.html#1867">[ subject ]</a>
+ <a href="author.html#1867">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi Matteo,
+
+On Mon, Mar 26, 2012 at 12:56, Matteo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pasotti.matteo at gmail.com</A>&gt; wrote:
+&gt;<i> I get this error:
+</I>&gt;<i> - ------------------------------------
+</I>&gt;<i> Not Found
+</I>&gt;<i>
+</I>&gt;<i> The requested URL /cgi-sys/defaultwebpage.cgi was not found on this
+</I>&gt;<i> server.
+</I>&gt;<i> Apache/2.2.14 (Mandriva Linux/PREFORK-1.6mdv2010.0) Server at
+</I>&gt;<i> www.mageia.org Port 80
+</I>&gt;<i> - ------------------------------------
+</I>
+It looks like you are redirecting users to
+www.mageia.org/cgi-sys/defaultwebpage.cgi instead of
+www.mageia.org/it/ .
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001866.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI>Next message: <A HREF="001868.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1867">[ date ]</a>
+ <a href="thread.html#1867">[ thread ]</a>
+ <a href="subject.html#1867">[ subject ]</a>
+ <a href="author.html#1867">[ 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/2012-March/001868.html b/zarb-ml/mageia-webteam/2012-March/001868.html
new file mode 100644
index 000000000..e83270e6f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001868.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Help configuring mageia.it dns
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20configuring%20mageia.it%20dns&In-Reply-To=%3C4F7066A4.2020500%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001867.html">
+ <LINK REL="Next" HREF="001869.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Help configuring mageia.it dns</H1>
+ <B>Matteo</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20configuring%20mageia.it%20dns&In-Reply-To=%3C4F7066A4.2020500%40gmail.com%3E"
+ TITLE="[Mageia-webteam] Help configuring mageia.it dns">pasotti.matteo at gmail.com
+ </A><BR>
+ <I>Mon Mar 26 14:52:52 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001867.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI>Next message: <A HREF="001869.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1868">[ date ]</a>
+ <a href="thread.html#1868">[ thread ]</a>
+ <a href="subject.html#1868">[ subject ]</a>
+ <a href="author.html#1868">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+Il 26/03/2012 13:28, Romain d'Alverny ha scritto:
+&gt;<i> Hi Matteo,
+</I>&gt;<i>
+</I>&gt;<i> On Mon, Mar 26, 2012 at 12:56, Matteo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pasotti.matteo at gmail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> I get this error:
+</I>&gt;&gt;<i> - ------------------------------------
+</I>&gt;&gt;<i> Not Found
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> The requested URL /cgi-sys/defaultwebpage.cgi was not found on this
+</I>&gt;&gt;<i> server.
+</I>&gt;&gt;<i> Apache/2.2.14 (Mandriva Linux/PREFORK-1.6mdv2010.0) Server at
+</I>&gt;&gt;<i> www.mageia.org Port 80
+</I>&gt;&gt;<i> - ------------------------------------
+</I>&gt;<i>
+</I>&gt;<i> It looks like you are redirecting users to
+</I>&gt;<i> www.mageia.org/cgi-sys/defaultwebpage.cgi instead of
+</I>&gt;<i> www.mageia.org/it/ .
+</I>
+Hi Romain,
+I don't redirect user to that page, I think it's something related to
+the webserver configuration.
+If you dig www.mageia.it you can see that the www entry refers to
+www.mageia.org.
+The dns entries cannot contain strings with slashes.
+I'm missing something obvious/important maybe, but what? :-)
+- --
+Matteo
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.11 (GNU/Linux)
+Comment: Using GnuPG with Mozilla - <A HREF="http://enigmail.mozdev.org/">http://enigmail.mozdev.org/</A>
+
+iQEcBAEBAgAGBQJPcGahAAoJED3LowjDDWbN6qUH/2G7O6oUcdR2zpVabqEX7xpJ
+90i4q2cobR07jbQI6krvXavh1L40H1EoHlT2qlalUVD3H+7+Rnyt8Q7Mq+K/BQ3K
+TiLj2Mhwq6iWX77oTvaH1VSx7ruONg9J+zruy38+2SxMDK16wSYto4/+5NrXC2gN
+s0flluWmM/ajCmLodzuAZR2alNA+ZpGruqMzdv5u5EyFtTfP2sXcNgvOJRC7UNrp
+MdeqyE+jCpGFYkLxi5uucc8cXcaFN8uQ6f4X6SSAA2cLZB+vhXLKZ1PIZLo1Xpqw
+LQVpA5Eu0PpZRsOVObg2G8f02Yfn8MG3JwvnaaPtvb9vLxmXWUaa3YElBlgEwyg=
+=7BNv
+-----END PGP SIGNATURE-----
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001867.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI>Next message: <A HREF="001869.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1868">[ date ]</a>
+ <a href="thread.html#1868">[ thread ]</a>
+ <a href="subject.html#1868">[ subject ]</a>
+ <a href="author.html#1868">[ 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/2012-March/001869.html b/zarb-ml/mageia-webteam/2012-March/001869.html
new file mode 100644
index 000000000..4197c8c0d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001869.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Help configuring mageia.it dns
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20configuring%20mageia.it%20dns&In-Reply-To=%3CCANa9xwswhFYBySJO0Oqqd09Y-c0XffAyMRZKxM9fVnPuNAU%3D5A%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="001868.html">
+ <LINK REL="Next" HREF="001870.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Help configuring mageia.it dns</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Help%20configuring%20mageia.it%20dns&In-Reply-To=%3CCANa9xwswhFYBySJO0Oqqd09Y-c0XffAyMRZKxM9fVnPuNAU%3D5A%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Help configuring mageia.it dns">rda at mageia.org
+ </A><BR>
+ <I>Mon Mar 26 15:15:34 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001868.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI>Next message: <A HREF="001870.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1869">[ date ]</a>
+ <a href="thread.html#1869">[ thread ]</a>
+ <a href="subject.html#1869">[ subject ]</a>
+ <a href="author.html#1869">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Mon, Mar 26, 2012 at 14:52, Matteo &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pasotti.matteo at gmail.com</A>&gt; wrote:
+&gt;<i> I don't redirect user to that page, I think it's something related to
+</I>&gt;<i> the webserver configuration.
+</I>&gt;<i> If you dig www.mageia.it you can see that the www entry refers to
+</I>&gt;<i> www.mageia.org.
+</I>&gt;<i> The dns entries cannot contain strings with slashes.
+</I>&gt;<i> I'm missing something obvious/important maybe, but what? :-)
+</I>
+I don't know. :-) actually I don't find how you can get the
+/cgi-sys/defaultwebpage.cgi path when redirected.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001868.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI>Next message: <A HREF="001870.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1869">[ date ]</a>
+ <a href="thread.html#1869">[ thread ]</a>
+ <a href="subject.html#1869">[ subject ]</a>
+ <a href="author.html#1869">[ 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/2012-March/001870.html b/zarb-ml/mageia-webteam/2012-March/001870.html
new file mode 100644
index 000000000..6cb1f97fc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001870.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120327034801.5D4A042495%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="001869.html">
+ <LINK REL="Next" HREF="001871.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120327034801.5D4A042495%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 27 05:48:01 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001869.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI>Next message: <A HREF="001871.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1870">[ date ]</a>
+ <a href="thread.html#1870">[ thread ]</a>
+ <a href="subject.html#1870">[ subject ]</a>
+ <a href="author.html#1870">[ 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>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-sysadm at mageia.org</A>
+
+--- Comment #28 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-03-27 07:48:01 CEST ---
+(In reply to comment #27)
+&gt;<i> yes we wil go to 4.2 directly. I started a thread on mageia-sysadm to talk
+</I>&gt;<i> about how to proceed
+</I>
+Now that the urge to update the forum software has fallen away (because there
+are no missed security updates, see
+<A HREF="https://www.mageia.org/pipermail/mageia-sysadm/2012-March/004328.html">https://www.mageia.org/pipermail/mageia-sysadm/2012-March/004328.html</A>):
+
+Can upgrading bugzilla please get a higher priority than updating the forum
+software? There are security updates our bugzilla missed, as mentioned by
+Fr&#233;d&#233;ric, from Bugzilla upstream, in comment 15 and comment 22
+
+Besides, being able to find the bugs described in comment 17, would help the
+work of the Bug Squad :)
+
+--
+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="001869.html">[Mageia-webteam] Help configuring mageia.it dns
+</A></li>
+ <LI>Next message: <A HREF="001871.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1870">[ date ]</a>
+ <a href="thread.html#1870">[ thread ]</a>
+ <a href="subject.html#1870">[ subject ]</a>
+ <a href="author.html#1870">[ 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/2012-March/001871.html b/zarb-ml/mageia-webteam/2012-March/001871.html
new file mode 100644
index 000000000..7d652a85e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001871.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120327052611.EB55C4253D%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="001870.html">
+ <LINK REL="Next" HREF="001872.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120327052611.EB55C4253D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 27 07:26:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001870.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001872.html">[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1871">[ date ]</a>
+ <a href="thread.html#1871">[ thread ]</a>
+ <a href="subject.html#1871">[ subject ]</a>
+ <a href="author.html#1871">[ 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>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Keywords| |Security
+ Severity|enhancement |normal
+
+--
+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="001870.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001872.html">[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1871">[ date ]</a>
+ <a href="thread.html#1871">[ thread ]</a>
+ <a href="subject.html#1871">[ subject ]</a>
+ <a href="author.html#1871">[ 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/2012-March/001872.html b/zarb-ml/mageia-webteam/2012-March/001872.html
new file mode 100644
index 000000000..e7b4a38c4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001872.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+ </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%205135%5D%20%5BNew%5D%0A%20https%3A//releases.mageia.org/api/a/testing-i586%20should%20be%20updated%20for%0A%20testing%20mgaaplet%20prior%20to%20mga2%20release&In-Reply-To=%3Cbug-5135-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="001871.html">
+ <LINK REL="Next" HREF="001873.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205135%5D%20%5BNew%5D%0A%20https%3A//releases.mageia.org/api/a/testing-i586%20should%20be%20updated%20for%0A%20testing%20mgaaplet%20prior%20to%20mga2%20release&In-Reply-To=%3Cbug-5135-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 27 17:21:21 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001871.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001873.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1872">[ date ]</a>
+ <a href="thread.html#1872">[ thread ]</a>
+ <a href="subject.html#1872">[ subject ]</a>
+ <a href="author.html#1872">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5135">https://bugs.mageia.org/show_bug.cgi?id=5135</A>
+
+ Summary: <A HREF="https://releases.mageia.org/api/a/testing-i586">https://releases.mageia.org/api/a/testing-i586</A> should
+ be updated for testing mgaaplet prior to mga2 release
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">thierry.vignaud at gmail.com</A>
+
+
+<A HREF="https://releases.mageia.org/api/a/testing-i586">https://releases.mageia.org/api/a/testing-i586</A> should be updated for testing
+mgaaplet prior to mga2 release
+
+<A HREF="https://releases.mageia.org/api/a/testing-*">https://releases.mageia.org/api/a/testing-*</A> should list mga2 so that people can
+start testing mgaapplet --testing
+
+--
+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="001871.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="001873.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1872">[ date ]</a>
+ <a href="thread.html#1872">[ thread ]</a>
+ <a href="subject.html#1872">[ subject ]</a>
+ <a href="author.html#1872">[ 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/2012-March/001873.html b/zarb-ml/mageia-webteam/2012-March/001873.html
new file mode 100644
index 000000000..3935fa209
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001873.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+ </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%205135%5D%0A%20https%3A//releases.mageia.org/api/a/testing-i586%20should%20be%20updated%20for%0A%20testing%20mgaaplet%20prior%20to%20mga2%20release&In-Reply-To=%3C20120327152135.46051426CF%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="001872.html">
+ <LINK REL="Next" HREF="001874.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205135%5D%0A%20https%3A//releases.mageia.org/api/a/testing-i586%20should%20be%20updated%20for%0A%20testing%20mgaaplet%20prior%20to%20mga2%20release&In-Reply-To=%3C20120327152135.46051426CF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 27 17:21:35 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001872.html">[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+ <LI>Next message: <A HREF="001874.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1873">[ date ]</a>
+ <a href="thread.html#1873">[ thread ]</a>
+ <a href="subject.html#1873">[ subject ]</a>
+ <a href="author.html#1873">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5135">https://bugs.mageia.org/show_bug.cgi?id=5135</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
+----------------------------------------------------------------------------
+ Platform|i586 |All
+ Priority|Normal |release_blocker
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ennael1 at gmail.com</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="001872.html">[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+ <LI>Next message: <A HREF="001874.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1873">[ date ]</a>
+ <a href="thread.html#1873">[ thread ]</a>
+ <a href="subject.html#1873">[ subject ]</a>
+ <a href="author.html#1873">[ 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/2012-March/001874.html b/zarb-ml/mageia-webteam/2012-March/001874.html
new file mode 100644
index 000000000..2bdddb200
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/001874.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+ </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%205135%5D%0A%20https%3A//releases.mageia.org/api/a/testing-i586%20should%20be%20updated%20for%0A%20testing%20mgaaplet%20prior%20to%20mga2%20release&In-Reply-To=%3C20120327153109.154AB426DE%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="001873.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205135%5D%0A%20https%3A//releases.mageia.org/api/a/testing-i586%20should%20be%20updated%20for%0A%20testing%20mgaaplet%20prior%20to%20mga2%20release&In-Reply-To=%3C20120327153109.154AB426DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Mar 27 17:31:09 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001873.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1874">[ date ]</a>
+ <a href="thread.html#1874">[ thread ]</a>
+ <a href="subject.html#1874">[ subject ]</a>
+ <a href="author.html#1874">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5135">https://bugs.mageia.org/show_bug.cgi?id=5135</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-03-27 17:31:09 CEST ---
+Done.
+
+--
+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="001873.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1874">[ date ]</a>
+ <a href="thread.html#1874">[ thread ]</a>
+ <a href="subject.html#1874">[ subject ]</a>
+ <a href="author.html#1874">[ 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/2012-March/author.html b/zarb-ml/mageia-webteam/2012-March/author.html
new file mode 100644
index 000000000..997ee40cd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/author.html
@@ -0,0 +1,367 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam March 2012 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>March 2012 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 Mar 1 17:15:23 CET 2012</i><br>
+ <b>Ending:</b> <i>Tue Mar 27 17:31:09 CEST 2012</i><br>
+ <b>Messages:</b> 64<p>
+ <ul>
+
+<LI><A HREF="001831.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1831">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001828.html">[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1828">&nbsp;</A>
+<I>Feth Arezki
+</I>
+
+<LI><A HREF="001834.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1834">&nbsp;</A>
+<I>Feth Arezki
+</I>
+
+<LI><A HREF="001859.html">[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders
+</A><A NAME="1859">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001860.html">[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders
+</A><A NAME="1860">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001864.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1864">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001839.html">[Mageia-webteam] [Bug 4979] [New] no connect update distrib1
+</A><A NAME="1839">&nbsp;</A>
+<I>Ertan Demir
+</I>
+
+<LI><A HREF="001847.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1847">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001853.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1853">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001855.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A><A NAME="1855">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001856.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1856">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001857.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="1857">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001811.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1811">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001823.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1823">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001826.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1826">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001832.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1832">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001835.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1835">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001840.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1840">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001841.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1841">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001843.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1843">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001842.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1842">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001845.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1845">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001850.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1850">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001829.html">[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing
+</A><A NAME="1829">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001814.html">[Mageia-webteam] [Bug 910] add a check box for security issue
+</A><A NAME="1814">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001815.html">[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl
+</A><A NAME="1815">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001816.html">[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects
+</A><A NAME="1816">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001817.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A><A NAME="1817">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001818.html">[Mageia-webteam] [Bug 3287] add header on the guided template
+</A><A NAME="1818">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001819.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1819">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001820.html">[Mageia-webteam] [Bug 3576] add the keyword Errata
+</A><A NAME="1820">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001821.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1821">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001822.html">[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page
+</A><A NAME="1822">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001849.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1849">&nbsp;</A>
+<I>Morgan Leijstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001851.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1851">&nbsp;</A>
+<I>Morgan Leijstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001866.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1866">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001868.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1868">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001813.html">[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1813">&nbsp;</A>
+<I>Pinco Pallo
+</I>
+
+<LI><A HREF="001827.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1827">&nbsp;</A>
+<I>Pinco Pallo
+</I>
+
+<LI><A HREF="001837.html">[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="1837">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001838.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="1838">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001852.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1852">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001830.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1830">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001833.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1833">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001848.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1848">&nbsp;</A>
+<I>Thomas Spuhler
+</I>
+
+<LI><A HREF="001854.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A><A NAME="1854">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001858.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="1858">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001872.html">[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1872">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001873.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1873">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001812.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1812">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001870.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1870">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001871.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1871">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001824.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1824">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001825.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1825">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001836.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1836">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001844.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1844">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001865.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1865">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001867.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1867">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001869.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1869">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001874.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1874">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001862.html">[Mageia-webteam] Forum helper colours
+</A><A NAME="1862">&nbsp;</A>
+<I>loqo
+</I>
+
+<LI><A HREF="001846.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1846">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<LI><A HREF="001861.html">[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1861">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<LI><A HREF="001863.html">[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia
+</A><A NAME="1863">&nbsp;</A>
+<I>Sebastian sebsebseb
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Mar 27 17:31:09 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Tue Mar 27 17:31:14 CEST 2012</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/2012-March/date.html b/zarb-ml/mageia-webteam/2012-March/date.html
new file mode 100644
index 000000000..1f32692a8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/date.html
@@ -0,0 +1,367 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam March 2012 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>March 2012 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 Mar 1 17:15:23 CET 2012</i><br>
+ <b>Ending:</b> <i>Tue Mar 27 17:31:09 CEST 2012</i><br>
+ <b>Messages:</b> 64<p>
+ <ul>
+
+<LI><A HREF="001811.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1811">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001812.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1812">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001813.html">[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1813">&nbsp;</A>
+<I>Pinco Pallo
+</I>
+
+<LI><A HREF="001814.html">[Mageia-webteam] [Bug 910] add a check box for security issue
+</A><A NAME="1814">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001815.html">[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl
+</A><A NAME="1815">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001816.html">[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects
+</A><A NAME="1816">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001817.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A><A NAME="1817">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001818.html">[Mageia-webteam] [Bug 3287] add header on the guided template
+</A><A NAME="1818">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001819.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1819">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001820.html">[Mageia-webteam] [Bug 3576] add the keyword Errata
+</A><A NAME="1820">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001821.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1821">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001822.html">[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page
+</A><A NAME="1822">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001823.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1823">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001824.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1824">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001825.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1825">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001826.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1826">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001827.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1827">&nbsp;</A>
+<I>Pinco Pallo
+</I>
+
+<LI><A HREF="001828.html">[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1828">&nbsp;</A>
+<I>Feth Arezki
+</I>
+
+<LI><A HREF="001829.html">[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing
+</A><A NAME="1829">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001830.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1830">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001831.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1831">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001832.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1832">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001833.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1833">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001834.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1834">&nbsp;</A>
+<I>Feth Arezki
+</I>
+
+<LI><A HREF="001835.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1835">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001836.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1836">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001837.html">[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="1837">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001838.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="1838">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001839.html">[Mageia-webteam] [Bug 4979] [New] no connect update distrib1
+</A><A NAME="1839">&nbsp;</A>
+<I>Ertan Demir
+</I>
+
+<LI><A HREF="001840.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1840">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001841.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1841">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001842.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1842">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001843.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1843">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001844.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1844">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001845.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1845">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001846.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1846">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<LI><A HREF="001847.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1847">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001848.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1848">&nbsp;</A>
+<I>Thomas Spuhler
+</I>
+
+<LI><A HREF="001849.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1849">&nbsp;</A>
+<I>Morgan Leijstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001850.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1850">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001851.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1851">&nbsp;</A>
+<I>Morgan Leijstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001852.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1852">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001853.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1853">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001854.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A><A NAME="1854">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001855.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A><A NAME="1855">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001856.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1856">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001857.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="1857">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001858.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="1858">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001859.html">[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders
+</A><A NAME="1859">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001860.html">[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders
+</A><A NAME="1860">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001861.html">[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1861">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<LI><A HREF="001862.html">[Mageia-webteam] Forum helper colours
+</A><A NAME="1862">&nbsp;</A>
+<I>loqo
+</I>
+
+<LI><A HREF="001863.html">[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia
+</A><A NAME="1863">&nbsp;</A>
+<I>Sebastian sebsebseb
+</I>
+
+<LI><A HREF="001864.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1864">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001865.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1865">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001866.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1866">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001867.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1867">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001868.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1868">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001869.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1869">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001870.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1870">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001871.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1871">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001872.html">[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1872">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001873.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1873">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001874.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1874">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Mar 27 17:31:09 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Tue Mar 27 17:31:14 CEST 2012</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/2012-March/index.html b/zarb-ml/mageia-webteam/2012-March/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-March/subject.html b/zarb-ml/mageia-webteam/2012-March/subject.html
new file mode 100644
index 000000000..f1c991af7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/subject.html
@@ -0,0 +1,367 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam March 2012 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>March 2012 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 Mar 1 17:15:23 CET 2012</i><br>
+ <b>Ending:</b> <i>Tue Mar 27 17:31:09 CEST 2012</i><br>
+ <b>Messages:</b> 64<p>
+ <ul>
+
+<LI><A HREF="001817.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A><A NAME="1817">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001816.html">[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects
+</A><A NAME="1816">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001821.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1821">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001818.html">[Mageia-webteam] [Bug 3287] add header on the guided template
+</A><A NAME="1818">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001815.html">[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl
+</A><A NAME="1815">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001857.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="1857">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001858.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="1858">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001847.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1847">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001848.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1848">&nbsp;</A>
+<I>Thomas Spuhler
+</I>
+
+<LI><A HREF="001849.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1849">&nbsp;</A>
+<I>Morgan Leijstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001850.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1850">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001851.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1851">&nbsp;</A>
+<I>Morgan Leijstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001853.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1853">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001856.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1856">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001854.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A><A NAME="1854">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<LI><A HREF="001855.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A><A NAME="1855">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="001812.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1812">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001820.html">[Mageia-webteam] [Bug 3576] add the keyword Errata
+</A><A NAME="1820">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001811.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1811">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001852.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1852">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001870.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1870">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001871.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1871">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001819.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1819">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001830.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1830">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001832.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1832">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001833.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1833">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<LI><A HREF="001813.html">[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1813">&nbsp;</A>
+<I>Pinco Pallo
+</I>
+
+<LI><A HREF="001823.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1823">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001824.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1824">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001825.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1825">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001826.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1826">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001827.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1827">&nbsp;</A>
+<I>Pinco Pallo
+</I>
+
+<LI><A HREF="001828.html">[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1828">&nbsp;</A>
+<I>Feth Arezki
+</I>
+
+<LI><A HREF="001831.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1831">&nbsp;</A>
+<I>AL13N
+</I>
+
+<LI><A HREF="001834.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1834">&nbsp;</A>
+<I>Feth Arezki
+</I>
+
+<LI><A HREF="001835.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1835">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001836.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1836">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001829.html">[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing
+</A><A NAME="1829">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001837.html">[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="1837">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001838.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="1838">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001841.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1841">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001844.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1844">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001846.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1846">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<LI><A HREF="001839.html">[Mageia-webteam] [Bug 4979] [New] no connect update distrib1
+</A><A NAME="1839">&nbsp;</A>
+<I>Ertan Demir
+</I>
+
+<LI><A HREF="001840.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1840">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001842.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1842">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001843.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1843">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001845.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1845">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="001859.html">[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders
+</A><A NAME="1859">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001860.html">[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders
+</A><A NAME="1860">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001861.html">[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1861">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<LI><A HREF="001864.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1864">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="001865.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1865">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001872.html">[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1872">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001873.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1873">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="001874.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1874">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001822.html">[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page
+</A><A NAME="1822">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001814.html">[Mageia-webteam] [Bug 910] add a check box for security issue
+</A><A NAME="1814">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<LI><A HREF="001863.html">[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia
+</A><A NAME="1863">&nbsp;</A>
+<I>Sebastian sebsebseb
+</I>
+
+<LI><A HREF="001862.html">[Mageia-webteam] Forum helper colours
+</A><A NAME="1862">&nbsp;</A>
+<I>loqo
+</I>
+
+<LI><A HREF="001866.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1866">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001867.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1867">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001868.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1868">&nbsp;</A>
+<I>Matteo
+</I>
+
+<LI><A HREF="001869.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1869">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Mar 27 17:31:09 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Tue Mar 27 17:31:14 CEST 2012</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/2012-March/thread.html b/zarb-ml/mageia-webteam/2012-March/thread.html
new file mode 100644
index 000000000..f27c03393
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-March/thread.html
@@ -0,0 +1,451 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam March 2012 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>March 2012 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 Mar 1 17:15:23 CET 2012</i><br>
+ <b>Ending:</b> <i>Tue Mar 27 17:31:09 CEST 2012</i><br>
+ <b>Messages:</b> 64<p>
+ <ul>
+
+<!--0 01330618523- -->
+<LI><A HREF="001811.html">[Mageia-webteam] [Bug 3674] No good FAQ link for Mageia identity management
+</A><A NAME="1811">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01330795030- -->
+<LI><A HREF="001812.html">[Mageia-webteam] [Bug 3515] Wiki returns invalid certificate
+</A><A NAME="1812">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01331072173- -->
+<LI><A HREF="001813.html">[Mageia-webteam] [Bug 4831] [New] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1813">&nbsp;</A>
+<I>Pinco Pallo
+</I>
+
+<UL>
+<!--1 01331072173-01331121064- -->
+<LI><A HREF="001823.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1823">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01331072173-01331125616- -->
+<LI><A HREF="001824.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1824">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01331072173-01331157121- -->
+<LI><A HREF="001825.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1825">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01331072173-01331159137- -->
+<LI><A HREF="001826.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1826">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01331072173-01331199610- -->
+<LI><A HREF="001827.html">[Mageia-webteam] [Bug 4831] The url for registration confirmation and password reset is not entirely an internet address
+</A><A NAME="1827">&nbsp;</A>
+<I>Pinco Pallo
+</I>
+
+</UL>
+<!--0 01331115347- -->
+<LI><A HREF="001814.html">[Mageia-webteam] [Bug 910] add a check box for security issue
+</A><A NAME="1814">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<!--0 01331115357- -->
+<LI><A HREF="001815.html">[Mageia-webteam] [Bug 3288] add an cronjob for collectstats.pl
+</A><A NAME="1815">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<!--0 01331115386- -->
+<LI><A HREF="001816.html">[Mageia-webteam] [Bug 13] add component name or package name in notification mail subjects
+</A><A NAME="1816">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<!--0 01331115431- -->
+<LI><A HREF="001817.html">[Mageia-webteam] [Bug 1386] add distrib links to first page
+</A><A NAME="1817">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<!--0 01331115451- -->
+<LI><A HREF="001818.html">[Mageia-webteam] [Bug 3287] add header on the guided template
+</A><A NAME="1818">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<!--0 01331115505- -->
+<LI><A HREF="001819.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1819">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<!--0 01331115510- -->
+<LI><A HREF="001820.html">[Mageia-webteam] [Bug 3576] add the keyword Errata
+</A><A NAME="1820">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<!--0 01331115519- -->
+<LI><A HREF="001821.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1821">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<!--0 01331115647- -->
+<LI><A HREF="001822.html">[Mageia-webteam] [Bug 543] allow to promote a user directly from the user edition page
+</A><A NAME="1822">&nbsp;</A>
+<I>Dan Joita
+</I>
+
+<!--0 01331480181- -->
+<LI><A HREF="001828.html">[Mageia-webteam] [Bug 4876] [New] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1828">&nbsp;</A>
+<I>Feth Arezki
+</I>
+
+<UL>
+<!--1 01331480181-01331502747- -->
+<LI><A HREF="001831.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1831">&nbsp;</A>
+<I>AL13N
+</I>
+
+<!--1 01331480181-01331503681- -->
+<LI><A HREF="001834.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1834">&nbsp;</A>
+<I>Feth Arezki
+</I>
+
+<!--1 01331480181-01331504326- -->
+<LI><A HREF="001835.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1835">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01331480181-01331547000- -->
+<LI><A HREF="001836.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1836">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01331497044- -->
+<LI><A HREF="001829.html">[Mageia-webteam] [Bug 4885] [New] Mageia bugzilla favicon missing
+</A><A NAME="1829">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--0 01331501498- -->
+<LI><A HREF="001830.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1830">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01331502876- -->
+<LI><A HREF="001832.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1832">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01331503368- -->
+<LI><A HREF="001833.html">[Mageia-webteam] [Bug 4483] add the Graphical Reports feature
+</A><A NAME="1833">&nbsp;</A>
+<I>Michael Scherer
+</I>
+
+<!--0 01331579034- -->
+<LI><A HREF="001837.html">[Mageia-webteam] [Bug 4911] [New] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="1837">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<UL>
+<!--1 01331579034-01331579072- -->
+<LI><A HREF="001838.html">[Mageia-webteam] [Bug 4911] IPv6 addresses on wiki &quot;personal tools&quot; mess up the layout
+</A><A NAME="1838">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+</UL>
+<!--0 01331894173- -->
+<LI><A HREF="001839.html">[Mageia-webteam] [Bug 4979] [New] no connect update distrib1
+</A><A NAME="1839">&nbsp;</A>
+<I>Ertan Demir
+</I>
+
+<UL>
+<!--1 01331894173-01331917786- -->
+<LI><A HREF="001840.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1840">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01331894173-01331930219- -->
+<LI><A HREF="001842.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1842">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--1 01331894173-01331930944- -->
+<LI><A HREF="001843.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1843">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01331894173-01331937661- -->
+<LI><A HREF="001845.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1845">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+</UL>
+<!--0 01331927329- -->
+<LI><A HREF="001841.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1841">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01331937348- -->
+<LI><A HREF="001844.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1844">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01331942436- -->
+<LI><A HREF="001846.html">[Mageia-webteam] [Bug 4966] Wired Network-based install CD &gt; error404
+</A><A NAME="1846">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<!--0 01331985591- -->
+<LI><A HREF="001847.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1847">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01331997843- -->
+<LI><A HREF="001848.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1848">&nbsp;</A>
+<I>Thomas Spuhler
+</I>
+
+<!--0 01331998499- -->
+<LI><A HREF="001849.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1849">&nbsp;</A>
+<I>Morgan Leijstr&#195;&#182;m
+</I>
+
+<!--0 01332002122- -->
+<LI><A HREF="001850.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1850">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--0 01332013756- -->
+<LI><A HREF="001851.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1851">&nbsp;</A>
+<I>Morgan Leijstr&#195;&#182;m
+</I>
+
+<!--0 01332136186- -->
+<LI><A HREF="001852.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1852">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--0 01332156170- -->
+<LI><A HREF="001853.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1853">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01332240320- -->
+<LI><A HREF="001854.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A><A NAME="1854">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--0 01332247007- -->
+<LI><A HREF="001855.html">[Mageia-webteam] [Bug 3381] [WISH] easy tool for Mageia ISO creation
+</A><A NAME="1855">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01332247056- -->
+<LI><A HREF="001856.html">[Mageia-webteam] [Bug 3381] [WISH] At least have this under consideration as this is a great idea how to let experienced people create their own iso &amp; then boot it with much less issues
+</A><A NAME="1856">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01332247097- -->
+<LI><A HREF="001857.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="1857">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01332251043- -->
+<LI><A HREF="001858.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="1858">&nbsp;</A>
+<I>Samuel VERSCHELDE
+</I>
+
+<!--0 01332319468- -->
+<LI><A HREF="001859.html">[Mageia-webteam] [Bug 5039] [New] Give forum admin permissions to doc team leaders
+</A><A NAME="1859">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01332319468-01332319537- -->
+<LI><A HREF="001860.html">[Mageia-webteam] [Bug 5039] Give forum admin permissions to doc team leaders
+</A><A NAME="1860">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+<!--0 01332469858- -->
+<LI><A HREF="001861.html">[Mageia-webteam] [Bug 5064] [New] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1861">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<UL>
+<!--1 01332469858-01332489318- -->
+<LI><A HREF="001864.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1864">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<!--1 01332469858-01332492999- -->
+<LI><A HREF="001865.html">[Mageia-webteam] [Bug 5064] blog is crashing with the latest firefox 11.0.
+</A><A NAME="1865">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01332472445- -->
+<LI><A HREF="001862.html">[Mageia-webteam] Forum helper colours
+</A><A NAME="1862">&nbsp;</A>
+<I>loqo
+</I>
+
+<!--0 01332473030- -->
+<LI><A HREF="001863.html">[Mageia-webteam] [Mageia-marketing] Google+ on Planet Mageia
+</A><A NAME="1863">&nbsp;</A>
+<I>Sebastian sebsebseb
+</I>
+
+<!--0 01332759388- -->
+<LI><A HREF="001866.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1866">&nbsp;</A>
+<I>Matteo
+</I>
+
+<UL>
+<!--1 01332759388-01332761321- -->
+<LI><A HREF="001867.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1867">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01332759388-01332761321-01332766372- -->
+<LI><A HREF="001868.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1868">&nbsp;</A>
+<I>Matteo
+</I>
+
+<UL>
+<!--3 01332759388-01332761321-01332766372-01332767734- -->
+<LI><A HREF="001869.html">[Mageia-webteam] Help configuring mageia.it dns
+</A><A NAME="1869">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01332820081- -->
+<LI><A HREF="001870.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1870">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01332825971- -->
+<LI><A HREF="001871.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1871">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01332861681- -->
+<LI><A HREF="001872.html">[Mageia-webteam] [Bug 5135] [New] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1872">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<UL>
+<!--1 01332861681-01332861695- -->
+<LI><A HREF="001873.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1873">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--1 01332861681-01332862269- -->
+<LI><A HREF="001874.html">[Mageia-webteam] [Bug 5135] https://releases.mageia.org/api/a/testing-i586 should be updated for testing mgaaplet prior to mga2 release
+</A><A NAME="1874">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Mar 27 17:31:09 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Tue Mar 27 17:31:14 CEST 2012</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/2012-May.txt.gz b/zarb-ml/mageia-webteam/2012-May.txt.gz
new file mode 100644
index 000000000..b06e66574
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-May/001904.html b/zarb-ml/mageia-webteam/2012-May/001904.html
new file mode 100644
index 000000000..213595ce3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001904.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5751] [New] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+ </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%205751%5D%20%5BNew%5D%20GIMP-2.8.0-1%20from%20Mageia%20Core%0A%20Updates%20Testing%20requires%20BABL%20version%200.1.10%20or%20later%2C%0A%20it%20looks%20like%20cauldron%20only%20has%200.1.6.&In-Reply-To=%3Cbug-5751-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="Next" HREF="001905.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5751] [New] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.</H1>
+ <B>Italo Ramirez</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205751%5D%20%5BNew%5D%20GIMP-2.8.0-1%20from%20Mageia%20Core%0A%20Updates%20Testing%20requires%20BABL%20version%200.1.10%20or%20later%2C%0A%20it%20looks%20like%20cauldron%20only%20has%200.1.6.&In-Reply-To=%3Cbug-5751-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5751] [New] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 4 19:17:56 CEST 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="001905.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1904">[ date ]</a>
+ <a href="thread.html#1904">[ thread ]</a>
+ <a href="subject.html#1904">[ subject ]</a>
+ <a href="author.html#1904">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5751">https://bugs.mageia.org/show_bug.cgi?id=5751</A>
+
+ Summary: GIMP-2.8.0-1 from Mageia Core Updates Testing requires
+ BABL version 0.1.10 or later, it looks like cauldron
+ only has 0.1.6.
+ Product: Infrastructure
+ Version: unspecified
+ Platform: x86_64
+ URL: <A HREF="http://imgh.us/MGA2Beta3_Gimp-2.8.no.runing.png">http://imgh.us/MGA2Beta3_Gimp-2.8.no.runing.png</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">gualadrake 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>
+ RPM Package: <A HREF="http://mirror.yandex.ru/mageia/distrib/cauldron/SRPMS/">http://mirror.yandex.ru/mageia/distrib/cauldron/SRPMS/</A>
+ core/updates_testing/gimp-2.8.0-1.mga2.src.rpm
+
+
+Description of problem: GIMP-2.8.0-1 from Mageia Core Updates Testing not
+runing, it requires BABL version 0.1.10 or later.
+
+
+Version-Release number of selected component (if applicable): GIMP version
+2.8.0-1 (unificated windows)
+
+
+How reproducible: installing
+<A HREF="http://mirror.yandex.ru/mageia/distrib/cauldron/x86_64/media/core/updates_testing/gimp-2.8.0-1.mga2.x86_64.rpm">http://mirror.yandex.ru/mageia/distrib/cauldron/x86_64/media/core/updates_testing/gimp-2.8.0-1.mga2.x86_64.rpm</A>
+and then run it from the menu.
+
+--
+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>Next message: <A HREF="001905.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1904">[ date ]</a>
+ <a href="thread.html#1904">[ thread ]</a>
+ <a href="subject.html#1904">[ subject ]</a>
+ <a href="author.html#1904">[ 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/2012-May/001905.html b/zarb-ml/mageia-webteam/2012-May/001905.html
new file mode 100644
index 000000000..a2e7d9bf9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001905.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+ </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%205751%5D%20GIMP-2.8.0-1%20from%20Mageia%20Core%20Updates%0A%20Testing%20requires%20BABL%20version%200.1.10%20or%20later%2C%0A%20it%20looks%20like%20cauldron%20only%20has%200.1.6.&In-Reply-To=%3C20120504173727.6A4FA4437B%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="001904.html">
+ <LINK REL="Next" HREF="001906.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205751%5D%20GIMP-2.8.0-1%20from%20Mageia%20Core%20Updates%0A%20Testing%20requires%20BABL%20version%200.1.10%20or%20later%2C%0A%20it%20looks%20like%20cauldron%20only%20has%200.1.6.&In-Reply-To=%3C20120504173727.6A4FA4437B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 4 19:37:27 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001904.html">[Mageia-webteam] [Bug 5751] [New] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI>Next message: <A HREF="001906.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1905">[ date ]</a>
+ <a href="thread.html#1905">[ thread ]</a>
+ <a href="subject.html#1905">[ subject ]</a>
+ <a href="author.html#1905">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5751">https://bugs.mageia.org/show_bug.cgi?id=5751</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Mageia
+ Version|unspecified |Cauldron
+ Component|Bugzilla |RPM Packages
+ Target Milestone|--- |Mageia 2
+ RPM Package|<A HREF="http://mirror.yandex.ru/mag">http://mirror.yandex.ru/mag</A> |gimp-2.8.0-1.mga2.src.rpm
+ |eia/distrib/cauldron/SRPMS/ |
+ |core/updates_testing/gimp-2 |
+ |.8.0-1.mga2.src.rpm |
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-04 19:37:27 CEST ---
+you should not install a package in this way, better enable the testing,
+thenurpmi gimp
+
+The needed package is in the same repository,
+ls pub/cauldron/x86_64/media/core/updates_testing/lib64b*
+pub/cauldron/x86_64/media/core/updates_testing/lib64babl0.1_0-0.1.10-1.mga2.x86_64.rpm
+pub/cauldron/x86_64/media/core/updates_testing/lib64babl0.1-devel-0.1.10-1.mga2.x86_64.rpm
+
+from thomas on irc &quot;but gimp should have versioned requires on it as it really
+needs it&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 on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001904.html">[Mageia-webteam] [Bug 5751] [New] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI>Next message: <A HREF="001906.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1905">[ date ]</a>
+ <a href="thread.html#1905">[ thread ]</a>
+ <a href="subject.html#1905">[ subject ]</a>
+ <a href="author.html#1905">[ 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/2012-May/001906.html b/zarb-ml/mageia-webteam/2012-May/001906.html
new file mode 100644
index 000000000..98f5fb8df
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001906.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+ </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%205751%5D%20GIMP-2.8.0-1%20from%20Mageia%20Core%20Updates%0A%20Testing%20requires%20BABL%20version%200.1.10%20or%20later%2C%0A%20it%20looks%20like%20cauldron%20only%20has%200.1.6.&In-Reply-To=%3C20120504173800.788C14437B%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="001905.html">
+ <LINK REL="Next" HREF="001907.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205751%5D%20GIMP-2.8.0-1%20from%20Mageia%20Core%20Updates%0A%20Testing%20requires%20BABL%20version%200.1.10%20or%20later%2C%0A%20it%20looks%20like%20cauldron%20only%20has%200.1.6.&In-Reply-To=%3C20120504173800.788C14437B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 4 19:38:00 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001905.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI>Next message: <A HREF="001907.html">[Mageia-webteam] [Bug 5776] [New] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1906">[ date ]</a>
+ <a href="thread.html#1906">[ thread ]</a>
+ <a href="subject.html#1906">[ subject ]</a>
+ <a href="author.html#1906">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5751">https://bugs.mageia.org/show_bug.cgi?id=5751</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">fundawang 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> |
+
+--
+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="001905.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI>Next message: <A HREF="001907.html">[Mageia-webteam] [Bug 5776] [New] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1906">[ date ]</a>
+ <a href="thread.html#1906">[ thread ]</a>
+ <a href="subject.html#1906">[ subject ]</a>
+ <a href="author.html#1906">[ 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/2012-May/001907.html b/zarb-ml/mageia-webteam/2012-May/001907.html
new file mode 100644
index 000000000..530667cf6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001907.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5776] [New] firefox segfaults
+ </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%205776%5D%20%5BNew%5D%20firefox%20segfaults&In-Reply-To=%3Cbug-5776-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="001906.html">
+ <LINK REL="Next" HREF="001908.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5776] [New] firefox segfaults</H1>
+ <B>Forrest White</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205776%5D%20%5BNew%5D%20firefox%20segfaults&In-Reply-To=%3Cbug-5776-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5776] [New] firefox segfaults">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 6 21:02:38 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001906.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI>Next message: <A HREF="001908.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1907">[ date ]</a>
+ <a href="thread.html#1907">[ thread ]</a>
+ <a href="subject.html#1907">[ subject ]</a>
+ <a href="author.html#1907">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5776">https://bugs.mageia.org/show_bug.cgi?id=5776</A>
+
+ Summary: firefox segfaults
+ Product: Infrastructure
+ Version: unspecified
+ Platform: x86_64
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ 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">forrestw at frontiernet.net</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>
+
+
+Description of problem:
+firefox 10 segfaults upon launch
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+everytime I try to run firefox via konsole it segfaults does not launch using
+icon either
+
+
+Steps to Reproduce:
+1. open Konsole firefox and get segfault
+2.
+3.
+
+--
+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="001906.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A></li>
+ <LI>Next message: <A HREF="001908.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1907">[ date ]</a>
+ <a href="thread.html#1907">[ thread ]</a>
+ <a href="subject.html#1907">[ subject ]</a>
+ <a href="author.html#1907">[ 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/2012-May/001908.html b/zarb-ml/mageia-webteam/2012-May/001908.html
new file mode 100644
index 000000000..b0c284fe1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001908.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5776] firefox segfaults
+ </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%205776%5D%20firefox%20segfaults&In-Reply-To=%3C20120506190341.B108E4439B%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="001907.html">
+ <LINK REL="Next" HREF="001909.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5776] firefox segfaults</H1>
+ <B>Forrest White</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205776%5D%20firefox%20segfaults&In-Reply-To=%3C20120506190341.B108E4439B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5776] firefox segfaults">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 6 21:03:41 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001907.html">[Mageia-webteam] [Bug 5776] [New] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001909.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1908">[ date ]</a>
+ <a href="thread.html#1908">[ thread ]</a>
+ <a href="subject.html#1908">[ subject ]</a>
+ <a href="author.html#1908">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5776">https://bugs.mageia.org/show_bug.cgi?id=5776</A>
+
+Forrest White &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">forrestw at frontiernet.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Target Milestone|--- |Mageia 2
+
+--- Comment #1 from Forrest White &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">forrestw at frontiernet.net</A>&gt; 2012-05-06 23:03:41 CEST ---
+this is under a full install of mageia 2 beta 3
+
+--
+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="001907.html">[Mageia-webteam] [Bug 5776] [New] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001909.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1908">[ date ]</a>
+ <a href="thread.html#1908">[ thread ]</a>
+ <a href="subject.html#1908">[ subject ]</a>
+ <a href="author.html#1908">[ 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/2012-May/001909.html b/zarb-ml/mageia-webteam/2012-May/001909.html
new file mode 100644
index 000000000..f9bde2ba2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001909.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5776] firefox segfaults
+ </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%205776%5D%20firefox%20segfaults&In-Reply-To=%3C20120506191628.D7FBE4439B%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="001908.html">
+ <LINK REL="Next" HREF="001910.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5776] firefox segfaults</H1>
+ <B>Sander Lepik</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205776%5D%20firefox%20segfaults&In-Reply-To=%3C20120506191628.D7FBE4439B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5776] firefox segfaults">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 6 21:16:28 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001908.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001910.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1909">[ date ]</a>
+ <a href="thread.html#1909">[ thread ]</a>
+ <a href="subject.html#1909">[ subject ]</a>
+ <a href="author.html#1909">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5776">https://bugs.mageia.org/show_bug.cgi?id=5776</A>
+
+Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>
+
+--- Comment #2 from Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; 2012-05-06 23:16:28 CEST ---
+Did you test with fresh profile?
+
+--
+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="001908.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001910.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1909">[ date ]</a>
+ <a href="thread.html#1909">[ thread ]</a>
+ <a href="subject.html#1909">[ subject ]</a>
+ <a href="author.html#1909">[ 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/2012-May/001910.html b/zarb-ml/mageia-webteam/2012-May/001910.html
new file mode 100644
index 000000000..9a9686ecc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001910.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5776] firefox segfaults
+ </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%205776%5D%20firefox%20segfaults&In-Reply-To=%3C20120507002536.4B8C7443B8%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="001909.html">
+ <LINK REL="Next" HREF="001911.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5776] firefox segfaults</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205776%5D%20firefox%20segfaults&In-Reply-To=%3C20120507002536.4B8C7443B8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5776] firefox segfaults">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 7 02:25:36 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001909.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001911.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1910">[ date ]</a>
+ <a href="thread.html#1910">[ thread ]</a>
+ <a href="subject.html#1910">[ subject ]</a>
+ <a href="author.html#1910">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5776">https://bugs.mageia.org/show_bug.cgi?id=5776</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Product|Infrastructure |Mageia
+ Version|unspecified |Cauldron
+ Keywords| |NEEDINFO
+ Component|Bugzilla |RPM Packages
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+ RPM Package| |firefox
+
+--
+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="001909.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001911.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1910">[ date ]</a>
+ <a href="thread.html#1910">[ thread ]</a>
+ <a href="subject.html#1910">[ subject ]</a>
+ <a href="author.html#1910">[ 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/2012-May/001911.html b/zarb-ml/mageia-webteam/2012-May/001911.html
new file mode 100644
index 000000000..e034227cb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001911.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5776] firefox segfaults
+ </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%205776%5D%20firefox%20segfaults&In-Reply-To=%3C20120507002605.98511443B6%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="001910.html">
+ <LINK REL="Next" HREF="001912.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5776] firefox segfaults</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205776%5D%20firefox%20segfaults&In-Reply-To=%3C20120507002605.98511443B6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5776] firefox segfaults">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 7 02:26:05 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001910.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001912.html">[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1911">[ date ]</a>
+ <a href="thread.html#1911">[ thread ]</a>
+ <a href="subject.html#1911">[ subject ]</a>
+ <a href="author.html#1911">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5776">https://bugs.mageia.org/show_bug.cgi?id=5776</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ 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> |
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-07 04:26:05 CEST ---
+And what is the segfault ?
+
+--
+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="001910.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001912.html">[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1911">[ date ]</a>
+ <a href="thread.html#1911">[ thread ]</a>
+ <a href="subject.html#1911">[ subject ]</a>
+ <a href="author.html#1911">[ 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/2012-May/001912.html b/zarb-ml/mageia-webteam/2012-May/001912.html
new file mode 100644
index 000000000..d200ed174
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001912.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated
+ </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%205807%5D%20%5BNew%5D%20Languages%20for%20Europe%201%20LiveCDs%0A%09should%20be%20updated&In-Reply-To=%3Cbug-5807-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="001911.html">
+ <LINK REL="Next" HREF="001913.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated</H1>
+ <B>Filip Komar</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205807%5D%20%5BNew%5D%20Languages%20for%20Europe%201%20LiveCDs%0A%09should%20be%20updated&In-Reply-To=%3Cbug-5807-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 9 15:57:18 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001911.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001913.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1912">[ date ]</a>
+ <a href="thread.html#1912">[ thread ]</a>
+ <a href="subject.html#1912">[ subject ]</a>
+ <a href="author.html#1912">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5807">https://bugs.mageia.org/show_bug.cgi?id=5807</A>
+
+ Summary: Languages for Europe 1 LiveCDs should be updated
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/2/">http://www.mageia.org/fr/2/</A>
+ 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">filip.komar at gmail.com</A>
+
+
+Description of problem:
+
+Since Slovenian is added to RC LiveCDs this should be refreshed.
+
+--
+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="001911.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A></li>
+ <LI>Next message: <A HREF="001913.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1912">[ date ]</a>
+ <a href="thread.html#1912">[ thread ]</a>
+ <a href="subject.html#1912">[ subject ]</a>
+ <a href="author.html#1912">[ 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/2012-May/001913.html b/zarb-ml/mageia-webteam/2012-May/001913.html
new file mode 100644
index 000000000..fcc25436b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001913.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+ </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%205807%5D%20Languages%20for%20Europe%201%20LiveCDs%20should%0A%09be%20updated&In-Reply-To=%3C20120509172748.06EF244443%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="001912.html">
+ <LINK REL="Next" HREF="001914.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205807%5D%20Languages%20for%20Europe%201%20LiveCDs%20should%0A%09be%20updated&In-Reply-To=%3C20120509172748.06EF244443%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 9 19:27:47 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001912.html">[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI>Next message: <A HREF="001914.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1913">[ date ]</a>
+ <a href="thread.html#1913">[ thread ]</a>
+ <a href="subject.html#1913">[ subject ]</a>
+ <a href="author.html#1913">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5807">https://bugs.mageia.org/show_bug.cgi?id=5807</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-05-09 19:27:48 CEST ---
+Fixed.
+
+LiveCDs languages are now automatically sourced from the downloads catalog,
+which in turn is updated from built ISOs at each 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001912.html">[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI>Next message: <A HREF="001914.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1913">[ date ]</a>
+ <a href="thread.html#1913">[ thread ]</a>
+ <a href="subject.html#1913">[ subject ]</a>
+ <a href="author.html#1913">[ 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/2012-May/001914.html b/zarb-ml/mageia-webteam/2012-May/001914.html
new file mode 100644
index 000000000..e2a0d3e61
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001914.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+ </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%205807%5D%20Languages%20for%20Europe%201%20LiveCDs%20should%0A%09be%20updated&In-Reply-To=%3C20120509175939.451F04445B%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="001913.html">
+ <LINK REL="Next" HREF="001915.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated</H1>
+ <B>Filip Komar</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205807%5D%20Languages%20for%20Europe%201%20LiveCDs%20should%0A%09be%20updated&In-Reply-To=%3C20120509175939.451F04445B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 9 19:59:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001913.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI>Next message: <A HREF="001915.html">[Mageia-webteam] Web site, a few updates pending, open for comments
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1914">[ date ]</a>
+ <a href="thread.html#1914">[ thread ]</a>
+ <a href="subject.html#1914">[ subject ]</a>
+ <a href="author.html#1914">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5807">https://bugs.mageia.org/show_bug.cgi?id=5807</A>
+
+Filip Komar &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">filip.komar at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">filip.komar at gmail.com</A>
+
+--- Comment #2 from Filip Komar &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">filip.komar at gmail.com</A>&gt; 2012-05-09 19:59:39 CEST ---
+Great. Thanks Romain.
+
+--
+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="001913.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI>Next message: <A HREF="001915.html">[Mageia-webteam] Web site, a few updates pending, open for comments
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1914">[ date ]</a>
+ <a href="thread.html#1914">[ thread ]</a>
+ <a href="subject.html#1914">[ subject ]</a>
+ <a href="author.html#1914">[ 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/2012-May/001915.html b/zarb-ml/mageia-webteam/2012-May/001915.html
new file mode 100644
index 000000000..ed87a7795
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001915.html
@@ -0,0 +1,138 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Web site, a few updates pending, open for comments
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Web%20site%2C%20a%20few%20updates%20pending%2C%20open%20for%20comments&In-Reply-To=%3CCANa9xwsQsK88LW%3D7a1OhH0TP3s3T45VGbuSTypyU4iAS%3DWH-cg%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="001914.html">
+ <LINK REL="Next" HREF="001916.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Web site, a few updates pending, open for comments</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Web%20site%2C%20a%20few%20updates%20pending%2C%20open%20for%20comments&In-Reply-To=%3CCANa9xwsQsK88LW%3D7a1OhH0TP3s3T45VGbuSTypyU4iAS%3DWH-cg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Web site, a few updates pending, open for comments">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri May 11 16:45:41 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001914.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI>Next message: <A HREF="001916.html">[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1915">[ date ]</a>
+ <a href="thread.html#1915">[ thread ]</a>
+ <a href="subject.html#1915">[ subject ]</a>
+ <a href="author.html#1915">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+(xposted on mageia-webteam and mageia-marketing, I'll track answers on
+both lists)
+
+I'm working on a few changes on the Web site:
+
+ a. (related to below) a new global top navbar, that's consistent
+across all mageia.org; a preview is available here:
+<A HREF="http://www.mageia.org/en/about/?testnav=1">http://www.mageia.org/en/about/?testnav=1</A> ; documentation for
+using/spreading it is available here: <A HREF="http://www.mageia.org/_nav/">http://www.mageia.org/_nav/</A> ;
+improvements brought by this new design:
+ - it's consistent and can be consistently deployed and updated in
+all mageia.org sites and apps (using the javascript snippet);
+ - it embeds the Mageia project logo, so branding is consistent too;
+ - it structures and highlights how the mageia.org Web at large is organized.
+
+ b. (related to above) a more obvious site map, a preview is available
+here: <A HREF="http://www.mageia.org/fr/map/?testnav=1">http://www.mageia.org/fr/map/?testnav=1</A> ; there are several
+(new) sections here that are not ready/do no exist yet; and parts of
+the existing contents need to be reorganized; but this will give you
+an idea; it's the Community and Contribute sections that need a lot of
+thought and work; the site map is organized in 6 sections:
+ - About Mageia (learning about the project and NPO - that's the
+institutional part of the site)
+ - Downloads (learning about and getting the software, updates, etc.)
+ - Support
+ - Community (what's happening, who is in this project, what are the
+tools at hand)
+ - Contribute (what one can do in the project)
+ - You (one's user account and facilities with Mageia)
+
+ c. as introduced above, a new Community section with its own home
+page (mageia.org/community or shorthand mageia.org/coop or ?): that's
+where contributors and active users will want to go for what's in the
+community, who is there, doing what, and what can be done; this
+section's landing page is to summarize news (blog, planet, calendar),
+activities (forum, bugzilla, buildsystem, teams reports)
+
+ d. change how people get to mageia.org:
+ 1. the home page of www.mageia.org will focus and provide a single
+major call to action: get Mageia; with a few, lower contrast other
+actions (more info, contribute). Preview here:
+<A HREF="http://i.imgur.com/nDlwK.png">http://i.imgur.com/nDlwK.png</A> (not on par with Mageia bg design, I'm
+still not sure how to integrate it properly); the rationale is:
+ - most people coming to www.mageia.org/ leave quickly;
+ - for (most) new/casual visitors, we tell them the main story:
+download and use Mageia;
+ - for other visitors, with a goal, we propose them shortlinks
+to: Support, Community and About Mageia.Org sections
+
+ 2. loading the browser in Mageia currently sends you to
+start.mageia.org which in turn redirects to www.mageia.org; I'd like
+to change that so that start.mageia.org goes to
+www.mageia.org/community/
+ 3. given these changes, in the new navigation bar, clicking on the
+logo/home position would not redirect to the c.1. home (which is
+targetted to fresh/new visitors) neither /community, but to /map which
+provides a large, top-view of what's available in mageia.org Web site.
+That's quite a change from usual navigation practices (although it is
+used sometimes), and I'm not 100% confident yet, but I think it's
+worth trying something a bit different.
+
+
+There's still a lot of improvements in this (and other topic not
+reached here, such as www pages layout in general), and I suspect some
+of the proposed changes above won't make it for some people.
+
+Among other noticeable, shipped changes:
+ - rewritten <A HREF="http://www.mageia.org/en/about/">http://www.mageia.org/en/about/</A> to better introduce the
+whole section;
+ - added <A HREF="http://www.mageia.org/en/about/constitution/">http://www.mageia.org/en/about/constitution/</A>
+ - consolidated code for <A HREF="http://www.mageia.org/en/about/reports/">http://www.mageia.org/en/about/reports/</A>
+ - consolidated code for the downloads (in the background, still need
+to articulate 1 and 2 pages and listings)
+ - download redirector page
+(<A HREF="http://www.mageia.org/en/downloads/get/?q=Mageia-2-rc-i586-DVD.iso&amp;torrent=1&amp;testnav=1">http://www.mageia.org/en/downloads/get/?q=Mageia-2-rc-i586-DVD.iso&amp;torrent=1&amp;testnav=1</A>
+for instance) has room for two major call for action, once the
+download is running (those would be: 1) what to do with the file once
+download is complete, and 2) how to contribute back to the project ?)
+
+Quick feedback welcome, so I can know what can be shipped for 2
+official release or not.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001914.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A></li>
+ <LI>Next message: <A HREF="001916.html">[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1915">[ date ]</a>
+ <a href="thread.html#1915">[ thread ]</a>
+ <a href="subject.html#1915">[ subject ]</a>
+ <a href="author.html#1915">[ 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/2012-May/001916.html b/zarb-ml/mageia-webteam/2012-May/001916.html
new file mode 100644
index 000000000..506a75625
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001916.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar
+ </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%205893%5D%20%5BNew%5D%20%5BSuggestion%5D%20Donate%20bar%20and%0A%09navigation%20bar&In-Reply-To=%3Cbug-5893-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="001915.html">
+ <LINK REL="Next" HREF="001917.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar</H1>
+ <B>Arnaud Vacquier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205893%5D%20%5BNew%5D%20%5BSuggestion%5D%20Donate%20bar%20and%0A%09navigation%20bar&In-Reply-To=%3Cbug-5893-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 14 03:48:06 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001915.html">[Mageia-webteam] Web site, a few updates pending, open for comments
+</A></li>
+ <LI>Next message: <A HREF="001917.html">[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1916">[ date ]</a>
+ <a href="thread.html#1916">[ thread ]</a>
+ <a href="subject.html#1916">[ subject ]</a>
+ <a href="author.html#1916">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5893">https://bugs.mageia.org/show_bug.cgi?id=5893</A>
+
+ Summary: [Suggestion] Donate bar and navigation bar
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Normal
+ Component: All
+ 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">inster.css at gmail.com</A>
+
+
+Hi,
+
+Sorry for my bad english, i have 2 littles suggestion for Mageia Website.
+
+
+1- Donate Bar :
+
+I see on Gnome : <A HREF="http://www.gnome.org/">http://www.gnome.org/</A>
+A donate bar, it is very good for communauty see how many money mageai needs
+for 2012,2013...
+
+Because, many people can thing &quot;Mageia has a lot of money&quot;
+
+
+1b- When mageia shop for goodies ? :p
+
+2- Navigation bar :
+
+On Blog english, there is navigation bar (donate, blog, forum...) :
+<A HREF="http://blog.mageia.org/en/">http://blog.mageia.org/en/</A>
+
+But not for other language :(
+
+Thank you,
+Arnaud
+
+--
+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="001915.html">[Mageia-webteam] Web site, a few updates pending, open for comments
+</A></li>
+ <LI>Next message: <A HREF="001917.html">[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1916">[ date ]</a>
+ <a href="thread.html#1916">[ thread ]</a>
+ <a href="subject.html#1916">[ subject ]</a>
+ <a href="author.html#1916">[ 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/2012-May/001917.html b/zarb-ml/mageia-webteam/2012-May/001917.html
new file mode 100644
index 000000000..d11b6e3e2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001917.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar
+ </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%205893%5D%20%5BSuggestion%5D%20Donate%20bar%20and%20navigation%0A%09bar&In-Reply-To=%3C20120514073545.1DE1D4463D%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="001916.html">
+ <LINK REL="Next" HREF="001918.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205893%5D%20%5BSuggestion%5D%20Donate%20bar%20and%20navigation%0A%09bar&In-Reply-To=%3C20120514073545.1DE1D4463D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 14 09:35:45 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001916.html">[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar
+</A></li>
+ <LI>Next message: <A HREF="001918.html">[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1917">[ date ]</a>
+ <a href="thread.html#1917">[ thread ]</a>
+ <a href="subject.html#1917">[ subject ]</a>
+ <a href="author.html#1917">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5893">https://bugs.mageia.org/show_bug.cgi?id=5893</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ 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; 2012-05-14 09:35:45 CEST ---
+Well, that's two/three reports here :)
+
+1. Donate bar: yes, a bar (on the very page, that's to be redesigned anyway)
+and maybe on a landing page, would be an improvement. Contributions welcome (on
+mageia-webteam@ list).
+
+1b. Not planned yet, that's a whole topic in itself (getting the purpose and
+the designs right, finding the right provider, having it owned by Mageia.org or
+distributed among other entities, etc.). Feel free to open a dedicated bug
+about it.
+
+2. Nav bar: yes again. There's a new one in the works that will allow better
+dissemination and synchronisation of it (see <A HREF="http://www.mageia.org/_nav/">http://www.mageia.org/_nav/</A> for
+doc).
+
+--
+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="001916.html">[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar
+</A></li>
+ <LI>Next message: <A HREF="001918.html">[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1917">[ date ]</a>
+ <a href="thread.html#1917">[ thread ]</a>
+ <a href="subject.html#1917">[ subject ]</a>
+ <a href="author.html#1917">[ 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/2012-May/001918.html b/zarb-ml/mageia-webteam/2012-May/001918.html
new file mode 100644
index 000000000..4f3987f46
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001918.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3384] Rethinking the global navigation bar
+ </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%203384%5D%20Rethinking%20the%20global%20navigation%20bar&In-Reply-To=%3C20120514171149.9FC5244576%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="001917.html">
+ <LINK REL="Next" HREF="001919.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203384%5D%20Rethinking%20the%20global%20navigation%20bar&In-Reply-To=%3C20120514171149.9FC5244576%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 14 19:11:49 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001917.html">[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar
+</A></li>
+ <LI>Next message: <A HREF="001919.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1918">[ date ]</a>
+ <a href="thread.html#1918">[ thread ]</a>
+ <a href="subject.html#1918">[ subject ]</a>
+ <a href="author.html#1918">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3384">https://bugs.mageia.org/show_bug.cgi?id=3384</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|NEW |ASSIGNED
+ AssignedTo|<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">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; 2012-05-14 19:11:49 CEST ---
+A sample candidate has been made available.
+
+See it tested (temporary URL) at <A HREF="http://www.mageia.org/en/about/?testnav=1">http://www.mageia.org/en/about/?testnav=1</A>
+
+Documentation about its use is available: <A HREF="http://www.mageia.org/_nav/">http://www.mageia.org/_nav/</A> (see code
+in <A HREF="http://svnweb.mageia.org/web/www/trunk/_nav/">http://svnweb.mageia.org/web/www/trunk/_nav/</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="001917.html">[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar
+</A></li>
+ <LI>Next message: <A HREF="001919.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1918">[ date ]</a>
+ <a href="thread.html#1918">[ thread ]</a>
+ <a href="subject.html#1918">[ subject ]</a>
+ <a href="author.html#1918">[ 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/2012-May/001919.html b/zarb-ml/mageia-webteam/2012-May/001919.html
new file mode 100644
index 000000000..b81c49204
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001919.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] identity.mageia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20identity.mageia.org&In-Reply-To=%3CCANa9xwv-f2eAskoMdsMJGvzWVv-%2B9yWOCXo0BVybzp6ij9hcCA%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="001918.html">
+ <LINK REL="Next" HREF="001920.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] identity.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20identity.mageia.org&In-Reply-To=%3CCANa9xwv-f2eAskoMdsMJGvzWVv-%2B9yWOCXo0BVybzp6ij9hcCA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] identity.mageia.org">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue May 15 11:23:03 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001918.html">[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar
+</A></li>
+ <LI>Next message: <A HREF="001920.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1919">[ date ]</a>
+ <a href="thread.html#1919">[ thread ]</a>
+ <a href="subject.html#1919">[ subject ]</a>
+ <a href="author.html#1919">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I'm considering apply the attached patch for identity/trunk.
+
+Applying the new global nav here means inserting a JS snippet that
+will fetch update current document HTML and CSS code (see doc at
+<A HREF="http://www.mageia.org/_nav/">http://www.mageia.org/_nav/</A>) (uses jQuery and custom JS code, see
+<A HREF="http://www.mageia.org/_nav/js/source.js">http://www.mageia.org/_nav/js/source.js</A>).
+
+Any comment? security wise, actually, because this would be extended
+to other parts of mageia.org (the main point I see is the need to
+tightly control this service source code to avoid any malicious use of
+it to sniff out info - that may require moving this service to a
+separate repository/host, but I may be missing something else).
+
+Thanks.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001918.html">[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar
+</A></li>
+ <LI>Next message: <A HREF="001920.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1919">[ date ]</a>
+ <a href="thread.html#1919">[ thread ]</a>
+ <a href="subject.html#1919">[ subject ]</a>
+ <a href="author.html#1919">[ 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/2012-May/001920.html b/zarb-ml/mageia-webteam/2012-May/001920.html
new file mode 100644
index 000000000..1215a023c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001920.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] identity.mageia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20identity.mageia.org&In-Reply-To=%3C4FB22A62.1030801%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001919.html">
+ <LINK REL="Next" HREF="001924.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] identity.mageia.org</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20identity.mageia.org&In-Reply-To=%3C4FB22A62.1030801%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] identity.mageia.org">maat-ml at vilarem.net
+ </A><BR>
+ <I>Tue May 15 12:05:22 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001919.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001924.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1920">[ date ]</a>
+ <a href="thread.html#1920">[ thread ]</a>
+ <a href="subject.html#1920">[ subject ]</a>
+ <a href="author.html#1920">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+Le 15/05/2012 11:23, Romain d'Alverny a &#233;crit :
+&gt;<i> I'm considering apply the attached patch for identity/trunk.
+</I>&gt;<i>
+</I>&gt;<i> Applying the new global nav here means inserting a JS snippet that
+</I>&gt;<i> will fetch update current document HTML and CSS code (see doc at
+</I>&gt;<i> <A HREF="http://www.mageia.org/_nav/">http://www.mageia.org/_nav/</A>) (uses jQuery and custom JS code, see
+</I>&gt;<i> <A HREF="http://www.mageia.org/_nav/js/source.js">http://www.mageia.org/_nav/js/source.js</A>).
+</I>&gt;<i>
+</I>&gt;<i> Any comment? security wise, actually, because this would be extended
+</I>&gt;<i> to other parts of mageia.org (the main point I see is the need to
+</I>&gt;<i> tightly control this service source code to avoid any malicious use of
+</I>&gt;<i> it to sniff out info - that may require moving this service to a
+</I>&gt;<i> separate repository/host, but I may be missing something else).
+</I>&gt;<i>
+</I>&gt;<i> Thanks.
+</I>&gt;<i>
+</I>
+cool the common menu but we could find that menu's height make it a
+little bit &quot;space consuming&quot; in particular for laptops with not-so-high
+screens
+
+just a side note idea : why not syncing the menu with cron and rsync or
+cron and git submodule ?
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001919.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001924.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1920">[ date ]</a>
+ <a href="thread.html#1920">[ thread ]</a>
+ <a href="subject.html#1920">[ subject ]</a>
+ <a href="author.html#1920">[ 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/2012-May/001921.html b/zarb-ml/mageia-webteam/2012-May/001921.html
new file mode 100644
index 000000000..a8010129f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001921.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5915] [New] doc.mageia.org
+ </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%205915%5D%20%5BNew%5D%20doc.mageia.org&In-Reply-To=%3Cbug-5915-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="001929.html">
+ <LINK REL="Next" HREF="001922.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5915] [New] doc.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205915%5D%20%5BNew%5D%20doc.mageia.org&In-Reply-To=%3Cbug-5915-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5915] [New] doc.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 15 12:20:46 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001929.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001922.html">[Mageia-webteam] [Bug 5915] doc.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1921">[ date ]</a>
+ <a href="thread.html#1921">[ thread ]</a>
+ <a href="subject.html#1921">[ subject ]</a>
+ <a href="author.html#1921">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5915">https://bugs.mageia.org/show_bug.cgi?id=5915</A>
+
+ Summary: doc.mageia.org
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">rdalverny at gmail.com</A>
+
+
+We need a place to host Mageia documentation (currently, installer-related doc,
+hosted for dev at <A HREF="http://docteam.mageia.nl/">http://docteam.mageia.nl/</A>).
+
+We'd need a doc.mageia.org Web host, mirror <A HREF="svn://svn.mageia.org/svn/web/doc/">svn://svn.mageia.org/svn/web/doc/</A>
+(no trunk/tags/branches).
+
+--
+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="001929.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001922.html">[Mageia-webteam] [Bug 5915] doc.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1921">[ date ]</a>
+ <a href="thread.html#1921">[ thread ]</a>
+ <a href="subject.html#1921">[ subject ]</a>
+ <a href="author.html#1921">[ 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/2012-May/001922.html b/zarb-ml/mageia-webteam/2012-May/001922.html
new file mode 100644
index 000000000..a0ef1c4f9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001922.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5915] doc.mageia.org
+ </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%205915%5D%20doc.mageia.org&In-Reply-To=%3C20120515102211.78DE7445C6%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="001921.html">
+ <LINK REL="Next" HREF="001930.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5915] doc.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205915%5D%20doc.mageia.org&In-Reply-To=%3C20120515102211.78DE7445C6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5915] doc.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 15 12:22:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001921.html">[Mageia-webteam] [Bug 5915] [New] doc.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001930.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1922">[ date ]</a>
+ <a href="thread.html#1922">[ thread ]</a>
+ <a href="subject.html#1922">[ subject ]</a>
+ <a href="author.html#1922">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5915">https://bugs.mageia.org/show_bug.cgi?id=5915</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">mageia-sysadm at mageia.org</A>
+ Target Milestone|--- |Mageia 2
+
+--
+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="001921.html">[Mageia-webteam] [Bug 5915] [New] doc.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001930.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1922">[ date ]</a>
+ <a href="thread.html#1922">[ thread ]</a>
+ <a href="subject.html#1922">[ subject ]</a>
+ <a href="author.html#1922">[ 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/2012-May/001923.html b/zarb-ml/mageia-webteam/2012-May/001923.html
new file mode 100644
index 000000000..63b837131
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001923.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+ </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-sysadm%5D%20identity.mageia.org&In-Reply-To=%3C20120515112125.GL21938%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="001927.html">
+ <LINK REL="Next" HREF="001925.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] identity.mageia.org</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20identity.mageia.org&In-Reply-To=%3C20120515112125.GL21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] identity.mageia.org">boklm at mars-attacks.org
+ </A><BR>
+ <I>Tue May 15 13:21:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001927.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001925.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1923">[ date ]</a>
+ <a href="thread.html#1923">[ thread ]</a>
+ <a href="subject.html#1923">[ subject ]</a>
+ <a href="author.html#1923">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, 15 May 2012, Romain d'Alverny wrote:
+
+&gt;<i> I'm considering apply the attached patch for identity/trunk.
+</I>
+It seems attachement is missing.
+
+&gt;<i>
+</I>&gt;<i> Applying the new global nav here means inserting a JS snippet that
+</I>&gt;<i> will fetch update current document HTML and CSS code (see doc at
+</I>&gt;<i> <A HREF="http://www.mageia.org/_nav/">http://www.mageia.org/_nav/</A>) (uses jQuery and custom JS code, see
+</I>&gt;<i> <A HREF="http://www.mageia.org/_nav/js/source.js">http://www.mageia.org/_nav/js/source.js</A>).
+</I>&gt;<i>
+</I>&gt;<i> Any comment? security wise, actually, because this would be extended
+</I>&gt;<i> to other parts of mageia.org (the main point I see is the need to
+</I>&gt;<i> tightly control this service source code to avoid any malicious use of
+</I>&gt;<i> it to sniff out info - that may require moving this service to a
+</I>&gt;<i> separate repository/host, but I may be missing something else).
+</I>
+Ok, so we need to remember to keep this hosted on a secure server, and
+control commits on this. Maybe this would be better to move it outside
+www on its own repository, and use an URL like <A HREF="http://nav.mageia.org/">http://nav.mageia.org/</A> ?
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001927.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001925.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1923">[ date ]</a>
+ <a href="thread.html#1923">[ thread ]</a>
+ <a href="subject.html#1923">[ subject ]</a>
+ <a href="author.html#1923">[ 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/2012-May/001924.html b/zarb-ml/mageia-webteam/2012-May/001924.html
new file mode 100644
index 000000000..80c45278c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001924.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] identity.mageia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20identity.mageia.org&In-Reply-To=%3CCANa9xwu4E1gnZ6uZyjQ%2Ba8efc%2BECZLnv0nnf9aVxQuhVdodRtQ%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="001920.html">
+ <LINK REL="Next" HREF="001927.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] identity.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20identity.mageia.org&In-Reply-To=%3CCANa9xwu4E1gnZ6uZyjQ%2Ba8efc%2BECZLnv0nnf9aVxQuhVdodRtQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] identity.mageia.org">rda at mageia.org
+ </A><BR>
+ <I>Tue May 15 13:29:13 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001920.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001927.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1924">[ date ]</a>
+ <a href="thread.html#1924">[ thread ]</a>
+ <a href="subject.html#1924">[ subject ]</a>
+ <a href="author.html#1924">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, May 15, 2012 at 12:05 PM, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+&gt;<i> cool the common menu but we could find that menu's height make it a little
+</I>&gt;<i> bit &quot;space consuming&quot; in particular for laptops with not-so-high screens
+</I>
+The design goal for the whole site (because it's a long path) is to
+make branding more obvious (so it has to have a minimum height so that
+the logo fits in), make each page of content more focused on its very
+purpose (removing unnecessary stuff, using more negative space and
+contrast).
+
+That, plus the growing resolution of screens (95% have one higher than
+1024x), and incoming touch devices, makes it possible to try a larger
+navigation bar.
+
+&gt;<i> just a side note idea : why not syncing the menu with cron and rsync or cron
+</I>&gt;<i> and git submodule ?
+</I>
+It's lighter and easier to deploy and maintain this way.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001920.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001927.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1924">[ date ]</a>
+ <a href="thread.html#1924">[ thread ]</a>
+ <a href="subject.html#1924">[ subject ]</a>
+ <a href="author.html#1924">[ 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/2012-May/001925.html b/zarb-ml/mageia-webteam/2012-May/001925.html
new file mode 100644
index 000000000..a846057e5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001925.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+ </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-sysadm%5D%20identity.mageia.org&In-Reply-To=%3CCANa9xwt7LHAgGeuWPGW4pOhif1foKubNMEP4F7d%2B9HxjzRwoVg%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="001923.html">
+ <LINK REL="Next" HREF="001926.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] identity.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20identity.mageia.org&In-Reply-To=%3CCANa9xwt7LHAgGeuWPGW4pOhif1foKubNMEP4F7d%2B9HxjzRwoVg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] identity.mageia.org">rda at mageia.org
+ </A><BR>
+ <I>Tue May 15 13:30:36 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001923.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001926.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1925">[ date ]</a>
+ <a href="thread.html#1925">[ thread ]</a>
+ <a href="subject.html#1925">[ subject ]</a>
+ <a href="author.html#1925">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, May 15, 2012 at 1:21 PM, nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; wrote:
+&gt;<i> On Tue, 15 May 2012, Romain d'Alverny wrote:
+</I>&gt;<i>
+</I>&gt;&gt;<i> I'm considering apply the attached patch for identity/trunk.
+</I>&gt;<i>
+</I>&gt;<i> It seems attachement is missing.
+</I>
+Ah, right. Attached.
+
+&gt;&gt;<i> Any comment? security wise, actually, because this would be extended
+</I>&gt;&gt;<i> to other parts of mageia.org (the main point I see is the need to
+</I>&gt;&gt;<i> tightly control this service source code to avoid any malicious use of
+</I>&gt;&gt;<i> it to sniff out info - that may require moving this service to a
+</I>&gt;&gt;<i> separate repository/host, but I may be missing something else).
+</I>&gt;<i>
+</I>&gt;<i> Ok, so we need to remember to keep this hosted on a secure server, and
+</I>&gt;<i> control commits on this. Maybe this would be better to move it outside
+</I>&gt;<i> www on its own repository, and use an URL like <A HREF="http://nav.mageia.org/">http://nav.mageia.org/</A> ?
+</I>
+Yep. If it can be setup, I welcome that. For svn, under
+svn.mageia.org/svn/web/nav then?
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: add_global_nav.diff
+Type: application/octet-stream
+Size: 2090 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-webteam/attachments/20120515/05b33f74/attachment.obj&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001923.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001926.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1925">[ date ]</a>
+ <a href="thread.html#1925">[ thread ]</a>
+ <a href="subject.html#1925">[ subject ]</a>
+ <a href="author.html#1925">[ 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/2012-May/001926.html b/zarb-ml/mageia-webteam/2012-May/001926.html
new file mode 100644
index 000000000..40f8e91ce
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001926.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+ </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-sysadm%5D%20%20%20identity.mageia.org&In-Reply-To=%3C20120515113556.GM21938%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="001925.html">
+ <LINK REL="Next" HREF="001928.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] identity.mageia.org</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20%20identity.mageia.org&In-Reply-To=%3C20120515113556.GM21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] identity.mageia.org">boklm at mars-attacks.org
+ </A><BR>
+ <I>Tue May 15 13:35:56 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001925.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001928.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1926">[ date ]</a>
+ <a href="thread.html#1926">[ thread ]</a>
+ <a href="subject.html#1926">[ subject ]</a>
+ <a href="author.html#1926">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, 15 May 2012, Romain d'Alverny wrote:
+
+&gt;<i> &gt;&gt; Any comment? security wise, actually, because this would be extended
+</I>&gt;<i> &gt;&gt; to other parts of mageia.org (the main point I see is the need to
+</I>&gt;<i> &gt;&gt; tightly control this service source code to avoid any malicious use of
+</I>&gt;<i> &gt;&gt; it to sniff out info - that may require moving this service to a
+</I>&gt;<i> &gt;&gt; separate repository/host, but I may be missing something else).
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Ok, so we need to remember to keep this hosted on a secure server, and
+</I>&gt;<i> &gt; control commits on this. Maybe this would be better to move it outside
+</I>&gt;<i> &gt; www on its own repository, and use an URL like <A HREF="http://nav.mageia.org/">http://nav.mageia.org/</A> ?
+</I>&gt;<i>
+</I>&gt;<i> Yep. If it can be setup, I welcome that. For svn, under
+</I>&gt;<i> svn.mageia.org/svn/web/nav then?
+</I>
+Ok, we can do that. I will add nav.mageia.org.
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001925.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001928.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1926">[ date ]</a>
+ <a href="thread.html#1926">[ thread ]</a>
+ <a href="subject.html#1926">[ subject ]</a>
+ <a href="author.html#1926">[ 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/2012-May/001927.html b/zarb-ml/mageia-webteam/2012-May/001927.html
new file mode 100644
index 000000000..e6b2ab7b1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001927.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] identity.mageia.org
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20identity.mageia.org&In-Reply-To=%3CCANa9xwt_muQb_kzbDQY-4pPfVcjDbuC59__dNH%3D%2BWpfN9qYtXA%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="001924.html">
+ <LINK REL="Next" HREF="001923.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] identity.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20identity.mageia.org&In-Reply-To=%3CCANa9xwt_muQb_kzbDQY-4pPfVcjDbuC59__dNH%3D%2BWpfN9qYtXA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] identity.mageia.org">rda at mageia.org
+ </A><BR>
+ <I>Tue May 15 14:46:35 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001924.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001923.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1927">[ date ]</a>
+ <a href="thread.html#1927">[ thread ]</a>
+ <a href="subject.html#1927">[ subject ]</a>
+ <a href="author.html#1927">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, May 15, 2012 at 1:29 PM, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt; wrote:
+&gt;<i> On Tue, May 15, 2012 at 12:05 PM, 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;<i> cool the common menu but we could find that menu's height make it a little
+</I>&gt;&gt;<i> bit &quot;space consuming&quot; in particular for laptops with not-so-high screens
+</I>&gt;<i>
+</I>&gt;<i> The design goal for the whole site (because it's a long path) [...]
+</I>
+But of course, this deployment is two-fold:
+ - setting up the service and deployment scheme, so updates propagate easily;
+ - the very navigation itself (content and design - so changes,
+refinements to this design are not out of question).
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001924.html">[Mageia-webteam] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001923.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1927">[ date ]</a>
+ <a href="thread.html#1927">[ thread ]</a>
+ <a href="subject.html#1927">[ subject ]</a>
+ <a href="author.html#1927">[ 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/2012-May/001928.html b/zarb-ml/mageia-webteam/2012-May/001928.html
new file mode 100644
index 000000000..8e8c0874f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001928.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+ </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-sysadm%5D%20%20%20identity.mageia.org&In-Reply-To=%3C20120515154348.GN21938%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="001926.html">
+ <LINK REL="Next" HREF="001929.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] identity.mageia.org</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20%20identity.mageia.org&In-Reply-To=%3C20120515154348.GN21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] identity.mageia.org">boklm at mars-attacks.org
+ </A><BR>
+ <I>Tue May 15 17:43:48 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001926.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001929.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1928">[ date ]</a>
+ <a href="thread.html#1928">[ thread ]</a>
+ <a href="subject.html#1928">[ subject ]</a>
+ <a href="author.html#1928">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, 15 May 2012, nicolas vigier wrote:
+
+&gt;<i> On Tue, 15 May 2012, Romain d'Alverny wrote:
+</I>&gt;<i>
+</I>&gt;<i> &gt; &gt;&gt; Any comment? security wise, actually, because this would be extended
+</I>&gt;<i> &gt; &gt;&gt; to other parts of mageia.org (the main point I see is the need to
+</I>&gt;<i> &gt; &gt;&gt; tightly control this service source code to avoid any malicious use of
+</I>&gt;<i> &gt; &gt;&gt; it to sniff out info - that may require moving this service to a
+</I>&gt;<i> &gt; &gt;&gt; separate repository/host, but I may be missing something else).
+</I>&gt;<i> &gt; &gt;
+</I>&gt;<i> &gt; &gt; Ok, so we need to remember to keep this hosted on a secure server, and
+</I>&gt;<i> &gt; &gt; control commits on this. Maybe this would be better to move it outside
+</I>&gt;<i> &gt; &gt; www on its own repository, and use an URL like <A HREF="http://nav.mageia.org/">http://nav.mageia.org/</A> ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Yep. If it can be setup, I welcome that. For svn, under
+</I>&gt;<i> &gt; svn.mageia.org/svn/web/nav then?
+</I>&gt;<i>
+</I>&gt;<i> Ok, we can do that. I will add nav.mageia.org.
+</I>
+Ok it's done. Files can be added to svn.mageia.org/svn/web/nav.
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001926.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001929.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1928">[ date ]</a>
+ <a href="thread.html#1928">[ thread ]</a>
+ <a href="subject.html#1928">[ subject ]</a>
+ <a href="author.html#1928">[ 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/2012-May/001929.html b/zarb-ml/mageia-webteam/2012-May/001929.html
new file mode 100644
index 000000000..aa47501ba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001929.html
@@ -0,0 +1,59 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+ </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-sysadm%5D%20%20identity.mageia.org&In-Reply-To=%3CCANa9xwv3Qkx16JRhi2eFt%3DEsYtbYVW4tuW%3Db%3Dh3F3OKtcsp8Ew%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="001928.html">
+ <LINK REL="Next" HREF="001921.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-sysadm] identity.mageia.org</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-sysadm%5D%20%20identity.mageia.org&In-Reply-To=%3CCANa9xwv3Qkx16JRhi2eFt%3DEsYtbYVW4tuW%3Db%3Dh3F3OKtcsp8Ew%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-sysadm] identity.mageia.org">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue May 15 18:27:27 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001928.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001921.html">[Mageia-webteam] [Bug 5915] [New] doc.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1929">[ date ]</a>
+ <a href="thread.html#1929">[ thread ]</a>
+ <a href="subject.html#1929">[ subject ]</a>
+ <a href="author.html#1929">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, May 15, 2012 at 5:43 PM, nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; wrote:
+&gt;<i> Ok it's done. Files can be added to svn.mageia.org/svn/web/nav.
+</I>
+Thanks boklm!
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001928.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001921.html">[Mageia-webteam] [Bug 5915] [New] doc.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1929">[ date ]</a>
+ <a href="thread.html#1929">[ thread ]</a>
+ <a href="subject.html#1929">[ subject ]</a>
+ <a href="author.html#1929">[ 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/2012-May/001930.html b/zarb-ml/mageia-webteam/2012-May/001930.html
new file mode 100644
index 000000000..3d1dda854
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001930.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+ </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%204885%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3C20120516122030.5D01544698%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="001922.html">
+ <LINK REL="Next" HREF="001931.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204885%5D%20Mageia%20bugzilla%20favicon%20missing&In-Reply-To=%3C20120516122030.5D01544698%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 16 14:20:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001922.html">[Mageia-webteam] [Bug 5915] doc.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001931.html">[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1930">[ date ]</a>
+ <a href="thread.html#1930">[ thread ]</a>
+ <a href="subject.html#1930">[ subject ]</a>
+ <a href="author.html#1930">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4885">https://bugs.mageia.org/show_bug.cgi?id=4885</A>
+
+--- Comment #1 from Barry Jackson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">zen25000 at zen.co.uk</A>&gt; 2012-05-16 14:20:30 CEST ---
+Ping ;)
+
+--
+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="001922.html">[Mageia-webteam] [Bug 5915] doc.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="001931.html">[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1930">[ date ]</a>
+ <a href="thread.html#1930">[ thread ]</a>
+ <a href="subject.html#1930">[ subject ]</a>
+ <a href="author.html#1930">[ 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/2012-May/001931.html b/zarb-ml/mageia-webteam/2012-May/001931.html
new file mode 100644
index 000000000..11af0b631
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001931.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about 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%205972%5D%20%5BNew%5D%20404%20error%20on%20Chinese%20about%20page&In-Reply-To=%3Cbug-5972-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="001930.html">
+ <LINK REL="Next" HREF="001932.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page</H1>
+ <B>Malo Deni&#195;&#169;lou</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205972%5D%20%5BNew%5D%20404%20error%20on%20Chinese%20about%20page&In-Reply-To=%3Cbug-5972-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 19 00:30:29 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001930.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="001932.html">[Mageia-webteam] [Bug 5972] 404 error on Chinese about page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1931">[ date ]</a>
+ <a href="thread.html#1931">[ thread ]</a>
+ <a href="subject.html#1931">[ subject ]</a>
+ <a href="author.html#1931">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5972">https://bugs.mageia.org/show_bug.cgi?id=5972</A>
+
+ Summary: 404 error on Chinese about page
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/zh-cn/about/">http://www.mageia.org/zh-cn/about/</A>
+ 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">malo at doc.ic.ac.uk</A>
+
+
+Description of problem:
+When viewing the mageia website in Chinese (whether simplified or not),
+clicking on about gives a 404 error.
+
+--
+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="001930.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A></li>
+ <LI>Next message: <A HREF="001932.html">[Mageia-webteam] [Bug 5972] 404 error on Chinese about page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1931">[ date ]</a>
+ <a href="thread.html#1931">[ thread ]</a>
+ <a href="subject.html#1931">[ subject ]</a>
+ <a href="author.html#1931">[ 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/2012-May/001932.html b/zarb-ml/mageia-webteam/2012-May/001932.html
new file mode 100644
index 000000000..fdeaa31b9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001932.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5972] 404 error on Chinese about 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%205972%5D%20404%20error%20on%20Chinese%20about%20page&In-Reply-To=%3C20120519104614.223B14479D%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="001931.html">
+ <LINK REL="Next" HREF="001933.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5972] 404 error on Chinese about page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205972%5D%20404%20error%20on%20Chinese%20about%20page&In-Reply-To=%3C20120519104614.223B14479D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5972] 404 error on Chinese about page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 19 12:46:14 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001931.html">[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page
+</A></li>
+ <LI>Next message: <A HREF="001933.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1932">[ date ]</a>
+ <a href="thread.html#1932">[ thread ]</a>
+ <a href="subject.html#1932">[ subject ]</a>
+ <a href="author.html#1932">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5972">https://bugs.mageia.org/show_bug.cgi?id=5972</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-05-19 14:46:14 CEST ---
+Fixed. However there's no translation for this right now (the page itself in
+English is still a draft version.
+
+--
+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="001931.html">[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page
+</A></li>
+ <LI>Next message: <A HREF="001933.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1932">[ date ]</a>
+ <a href="thread.html#1932">[ thread ]</a>
+ <a href="subject.html#1932">[ subject ]</a>
+ <a href="author.html#1932">[ 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/2012-May/001933.html b/zarb-ml/mageia-webteam/2012-May/001933.html
new file mode 100644
index 000000000..4d7d9e20c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001933.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+ </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%205620%5D%20Add%20a%20direct%20link%20to%20the%20errata%20%28for%0A%09the%20release%29&In-Reply-To=%3C20120522200911.0C4D244813%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="001932.html">
+ <LINK REL="Next" HREF="001934.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%205620%5D%20Add%20a%20direct%20link%20to%20the%20errata%20%28for%0A%09the%20release%29&In-Reply-To=%3C20120522200911.0C4D244813%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 22 22:09:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001932.html">[Mageia-webteam] [Bug 5972] 404 error on Chinese about page
+</A></li>
+ <LI>Next message: <A HREF="001934.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1933">[ date ]</a>
+ <a href="thread.html#1933">[ thread ]</a>
+ <a href="subject.html#1933">[ subject ]</a>
+ <a href="author.html#1933">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=5620">https://bugs.mageia.org/show_bug.cgi?id=5620</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #2 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-22 22:09:10 CEST ---
+there is enough link now, 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="001932.html">[Mageia-webteam] [Bug 5972] 404 error on Chinese about page
+</A></li>
+ <LI>Next message: <A HREF="001934.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1933">[ date ]</a>
+ <a href="thread.html#1933">[ thread ]</a>
+ <a href="subject.html#1933">[ subject ]</a>
+ <a href="author.html#1933">[ 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/2012-May/001934.html b/zarb-ml/mageia-webteam/2012-May/001934.html
new file mode 100644
index 000000000..166f548bf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001934.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3383] Navbar only on en blog
+ </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%203383%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3C20120522212010.37D61448A6%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="001933.html">
+ <LINK REL="Next" HREF="001935.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3383] Navbar only on en blog</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203383%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3C20120522212010.37D61448A6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3383] Navbar only on en blog">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 22 23:20:10 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001933.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI>Next message: <A HREF="001935.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1934">[ date ]</a>
+ <a href="thread.html#1934">[ thread ]</a>
+ <a href="subject.html#1934">[ subject ]</a>
+ <a href="author.html#1934">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3383">https://bugs.mageia.org/show_bug.cgi?id=3383</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-22 23:20:08 CEST ---
+fixed with the new navbar
+
+--
+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="001933.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A></li>
+ <LI>Next message: <A HREF="001935.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1934">[ date ]</a>
+ <a href="thread.html#1934">[ thread ]</a>
+ <a href="subject.html#1934">[ subject ]</a>
+ <a href="author.html#1934">[ 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/2012-May/001935.html b/zarb-ml/mageia-webteam/2012-May/001935.html
new file mode 100644
index 000000000..71ffa113f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001935.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3383] Navbar only on en blog
+ </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%203383%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3C20120522212904.E7E42448AB%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="001934.html">
+ <LINK REL="Next" HREF="001936.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3383] Navbar only on en blog</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203383%5D%20Navbar%20only%20on%20en%20blog&In-Reply-To=%3C20120522212904.E7E42448AB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3383] Navbar only on en blog">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 22 23:29:04 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001934.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI>Next message: <A HREF="001936.html">[Mageia-webteam] [Bug 6032] [New] a Mageia motto
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1935">[ date ]</a>
+ <a href="thread.html#1935">[ thread ]</a>
+ <a href="subject.html#1935">[ subject ]</a>
+ <a href="author.html#1935">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3383">https://bugs.mageia.org/show_bug.cgi?id=3383</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-22 23:29:04 CEST ---
+en and fr are ok. Other blogs need the &lt;script&gt; tag to be propagated in each
+template. I mailed blogteam about that.
+
+--
+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="001934.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI>Next message: <A HREF="001936.html">[Mageia-webteam] [Bug 6032] [New] a Mageia motto
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1935">[ date ]</a>
+ <a href="thread.html#1935">[ thread ]</a>
+ <a href="subject.html#1935">[ subject ]</a>
+ <a href="author.html#1935">[ 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/2012-May/001936.html b/zarb-ml/mageia-webteam/2012-May/001936.html
new file mode 100644
index 000000000..f6c26163d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001936.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6032] [New] a Mageia motto
+ </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%206032%5D%20%5BNew%5D%20a%20Mageia%20motto&In-Reply-To=%3Cbug-6032-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="001935.html">
+ <LINK REL="Next" HREF="001972.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6032] [New] a Mageia motto</H1>
+ <B>Otto S&#195;&#161;</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206032%5D%20%5BNew%5D%20a%20Mageia%20motto&In-Reply-To=%3Cbug-6032-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6032] [New] a Mageia motto">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 04:10:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001935.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI>Next message: <A HREF="001972.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1936">[ date ]</a>
+ <a href="thread.html#1936">[ thread ]</a>
+ <a href="subject.html#1936">[ subject ]</a>
+ <a href="author.html#1936">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6032">https://bugs.mageia.org/show_bug.cgi?id=6032</A>
+
+ Summary: a Mageia motto
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="https://forums.mageia.org/en/viewtopic.php?f=5&amp;t=2476">https://forums.mageia.org/en/viewtopic.php?f=5&amp;t=2476</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">ottosa at gmail.com</A>
+
+
+I have created a mageia motto at mageia facebook at
+<A HREF="http://www.facebook.com/Mageia?sk=wall&amp;filter=2">http://www.facebook.com/Mageia?sk=wall&amp;filter=2</A>
+Some users liked it . The motto is the following:
+[b][i]Mageia is the present and the future![/i][/b]
+Thus I woud like to include it on Mageia 3 on buggzilla.
+Cheers.
+
+PS:Please appologize if I placed at the wrong place.
+
+--
+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="001935.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A></li>
+ <LI>Next message: <A HREF="001972.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1936">[ date ]</a>
+ <a href="thread.html#1936">[ thread ]</a>
+ <a href="subject.html#1936">[ subject ]</a>
+ <a href="author.html#1936">[ 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/2012-May/001937.html b/zarb-ml/mageia-webteam/2012-May/001937.html
new file mode 100644
index 000000000..a0838e882
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001937.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+ </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%206035%5D%20mgaapplet-upgrade-helper%0A%20--new_distribution_version%3D2%20no%20upgrade%20or%20error&In-Reply-To=%3C20120523062304.38BC14489C%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="001976.html">
+ <LINK REL="Next" HREF="001938.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206035%5D%20mgaapplet-upgrade-helper%0A%20--new_distribution_version%3D2%20no%20upgrade%20or%20error&In-Reply-To=%3C20120523062304.38BC14489C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:23:04 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001976.html">[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto
+</A></li>
+ <LI>Next message: <A HREF="001938.html">[Mageia-webteam] [Bug 6036] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1937">[ date ]</a>
+ <a href="thread.html#1937">[ thread ]</a>
+ <a href="subject.html#1937">[ subject ]</a>
+ <a href="author.html#1937">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6035">https://bugs.mageia.org/show_bug.cgi?id=6035</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</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="001976.html">[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto
+</A></li>
+ <LI>Next message: <A HREF="001938.html">[Mageia-webteam] [Bug 6036] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1937">[ date ]</a>
+ <a href="thread.html#1937">[ thread ]</a>
+ <a href="subject.html#1937">[ subject ]</a>
+ <a href="author.html#1937">[ 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/2012-May/001938.html b/zarb-ml/mageia-webteam/2012-May/001938.html
new file mode 100644
index 000000000..928c85626
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001938.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6036] [New] The french page is in english
+ </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%206036%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6036-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="001937.html">
+ <LINK REL="Next" HREF="001953.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6036] [New] The french page is in english</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206036%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6036-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6036] [New] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:36:36 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001937.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI>Next message: <A HREF="001953.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1938">[ date ]</a>
+ <a href="thread.html#1938">[ thread ]</a>
+ <a href="subject.html#1938">[ subject ]</a>
+ <a href="author.html#1938">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6036">https://bugs.mageia.org/show_bug.cgi?id=6036</A>
+
+ Summary: The french page is in english
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/about/">http://www.mageia.org/fr/about/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+The french page isn't translated
+
+--
+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="001937.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI>Next message: <A HREF="001953.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1938">[ date ]</a>
+ <a href="thread.html#1938">[ thread ]</a>
+ <a href="subject.html#1938">[ subject ]</a>
+ <a href="author.html#1938">[ 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/2012-May/001939.html b/zarb-ml/mageia-webteam/2012-May/001939.html
new file mode 100644
index 000000000..52d7a36ba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001939.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6037] [New] The french page is in english
+ </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%206037%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6037-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="001970.html">
+ <LINK REL="Next" HREF="001959.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6037] [New] The french page is in english</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206037%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6037-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6037] [New] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:38:20 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001970.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001959.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1939">[ date ]</a>
+ <a href="thread.html#1939">[ thread ]</a>
+ <a href="subject.html#1939">[ subject ]</a>
+ <a href="author.html#1939">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6037">https://bugs.mageia.org/show_bug.cgi?id=6037</A>
+
+ Summary: The french page is in english
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/2/">http://www.mageia.org/fr/2/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+the french page isn't in french
+
+--
+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="001970.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001959.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1939">[ date ]</a>
+ <a href="thread.html#1939">[ thread ]</a>
+ <a href="subject.html#1939">[ subject ]</a>
+ <a href="author.html#1939">[ 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/2012-May/001940.html b/zarb-ml/mageia-webteam/2012-May/001940.html
new file mode 100644
index 000000000..bc2230751
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001940.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6038] [New] The french page is in english
+ </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%206038%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6038-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="001993.html">
+ <LINK REL="Next" HREF="001954.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6038] [New] The french page is in english</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206038%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6038-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6038] [New] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:39:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001993.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001954.html">[Mageia-webteam] [Bug 6038] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1940">[ date ]</a>
+ <a href="thread.html#1940">[ thread ]</a>
+ <a href="subject.html#1940">[ subject ]</a>
+ <a href="author.html#1940">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6038">https://bugs.mageia.org/show_bug.cgi?id=6038</A>
+
+ Summary: The french page is in english
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/downloads/">http://www.mageia.org/fr/downloads/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+The french page is in english
+
+--
+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="001993.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001954.html">[Mageia-webteam] [Bug 6038] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1940">[ date ]</a>
+ <a href="thread.html#1940">[ thread ]</a>
+ <a href="subject.html#1940">[ subject ]</a>
+ <a href="author.html#1940">[ 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/2012-May/001941.html b/zarb-ml/mageia-webteam/2012-May/001941.html
new file mode 100644
index 000000000..43ded5570
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001941.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6039] [New] The french page is in english
+ </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%206039%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6039-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="001954.html">
+ <LINK REL="Next" HREF="001968.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6039] [New] The french page is in english</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206039%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6039-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6039] [New] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:40:18 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001954.html">[Mageia-webteam] [Bug 6038] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001968.html">[Mageia-webteam] [Bug 6039] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1941">[ date ]</a>
+ <a href="thread.html#1941">[ thread ]</a>
+ <a href="subject.html#1941">[ subject ]</a>
+ <a href="author.html#1941">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6039">https://bugs.mageia.org/show_bug.cgi?id=6039</A>
+
+ Summary: The french page is in english
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/for-pc/">http://www.mageia.org/fr/for-pc/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+The french page is in english
+
+--
+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="001954.html">[Mageia-webteam] [Bug 6038] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001968.html">[Mageia-webteam] [Bug 6039] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1941">[ date ]</a>
+ <a href="thread.html#1941">[ thread ]</a>
+ <a href="subject.html#1941">[ subject ]</a>
+ <a href="author.html#1941">[ 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/2012-May/001942.html b/zarb-ml/mageia-webteam/2012-May/001942.html
new file mode 100644
index 000000000..f155c29ef
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001942.html
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6040] [New] The french page is in english
+ </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%206040%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6040-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="001968.html">
+ <LINK REL="Next" HREF="001944.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6040] [New] The french page is in english</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206040%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3Cbug-6040-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6040] [New] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:41:07 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001968.html">[Mageia-webteam] [Bug 6039] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001944.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1942">[ date ]</a>
+ <a href="thread.html#1942">[ thread ]</a>
+ <a href="subject.html#1942">[ subject ]</a>
+ <a href="author.html#1942">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6040">https://bugs.mageia.org/show_bug.cgi?id=6040</A>
+
+ Summary: The french page is in english
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/for-server/">http://www.mageia.org/fr/for-server/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+The french page is in english
+
+--
+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="001968.html">[Mageia-webteam] [Bug 6039] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001944.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1942">[ date ]</a>
+ <a href="thread.html#1942">[ thread ]</a>
+ <a href="subject.html#1942">[ subject ]</a>
+ <a href="author.html#1942">[ 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/2012-May/001943.html b/zarb-ml/mageia-webteam/2012-May/001943.html
new file mode 100644
index 000000000..01cbbe344
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001943.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french
+ </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%206041%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english%20and%0A%09titles%20in%20french&In-Reply-To=%3Cbug-6041-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="001966.html">
+ <LINK REL="Next" HREF="001964.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206041%5D%20%5BNew%5D%20The%20french%20page%20is%20in%20english%20and%0A%09titles%20in%20french&In-Reply-To=%3Cbug-6041-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:42:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001966.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001964.html">[Mageia-webteam] [Bug 6041] The french page is in english and titles in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1943">[ date ]</a>
+ <a href="thread.html#1943">[ thread ]</a>
+ <a href="subject.html#1943">[ subject ]</a>
+ <a href="author.html#1943">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6041">https://bugs.mageia.org/show_bug.cgi?id=6041</A>
+
+ Summary: The french page is in english and titles in french
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/community/">http://www.mageia.org/fr/community/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+The french page is in english and titles in french
+
+--
+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="001966.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001964.html">[Mageia-webteam] [Bug 6041] The french page is in english and titles in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1943">[ date ]</a>
+ <a href="thread.html#1943">[ thread ]</a>
+ <a href="subject.html#1943">[ subject ]</a>
+ <a href="author.html#1943">[ 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/2012-May/001944.html b/zarb-ml/mageia-webteam/2012-May/001944.html
new file mode 100644
index 000000000..89ff8a4fb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001944.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6040] The french page is in english
+ </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%206040%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120523064352.941DB44813%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="001942.html">
+ <LINK REL="Next" HREF="001966.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6040] The french page is in english</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206040%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120523064352.941DB44813%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6040] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:43:52 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001942.html">[Mageia-webteam] [Bug 6040] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001966.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1944">[ date ]</a>
+ <a href="thread.html#1944">[ thread ]</a>
+ <a href="subject.html#1944">[ subject ]</a>
+ <a href="author.html#1944">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6040">https://bugs.mageia.org/show_bug.cgi?id=6040</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-23 08:43:52 CEST ---
+(for all you bugs, maybe you can attach the translation since it was not done
+iirc)
+
+--
+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="001942.html">[Mageia-webteam] [Bug 6040] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001966.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1944">[ date ]</a>
+ <a href="thread.html#1944">[ thread ]</a>
+ <a href="subject.html#1944">[ subject ]</a>
+ <a href="author.html#1944">[ 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/2012-May/001945.html b/zarb-ml/mageia-webteam/2012-May/001945.html
new file mode 100644
index 000000000..03bd70963
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001945.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french
+ </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%206042%5D%20%5BNew%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3Cbug-6042-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="001964.html">
+ <LINK REL="Next" HREF="001955.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206042%5D%20%5BNew%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3Cbug-6042-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:44:38 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001964.html">[Mageia-webteam] [Bug 6041] The french page is in english and titles in french
+</A></li>
+ <LI>Next message: <A HREF="001955.html">[Mageia-webteam] [Bug 6042] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1945">[ date ]</a>
+ <a href="thread.html#1945">[ thread ]</a>
+ <a href="subject.html#1945">[ subject ]</a>
+ <a href="author.html#1945">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6042">https://bugs.mageia.org/show_bug.cgi?id=6042</A>
+
+ Summary: the sub-menu isn't in french
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/downloads/">http://www.mageia.org/fr/downloads/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+the sub-menu isn't in french
+
+--
+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="001964.html">[Mageia-webteam] [Bug 6041] The french page is in english and titles in french
+</A></li>
+ <LI>Next message: <A HREF="001955.html">[Mageia-webteam] [Bug 6042] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1945">[ date ]</a>
+ <a href="thread.html#1945">[ thread ]</a>
+ <a href="subject.html#1945">[ subject ]</a>
+ <a href="author.html#1945">[ 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/2012-May/001946.html b/zarb-ml/mageia-webteam/2012-May/001946.html
new file mode 100644
index 000000000..f3f45bad4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001946.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french
+ </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%206043%5D%20%5BNew%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3Cbug-6043-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="001955.html">
+ <LINK REL="Next" HREF="001962.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206043%5D%20%5BNew%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3Cbug-6043-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:45:42 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001955.html">[Mageia-webteam] [Bug 6042] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001962.html">[Mageia-webteam] [Bug 6043] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1946">[ date ]</a>
+ <a href="thread.html#1946">[ thread ]</a>
+ <a href="subject.html#1946">[ subject ]</a>
+ <a href="author.html#1946">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6043">https://bugs.mageia.org/show_bug.cgi?id=6043</A>
+
+ Summary: the sub-menu isn't in french
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/2/">http://www.mageia.org/fr/2/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+the sub-menu isn't in french
+
+--
+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="001955.html">[Mageia-webteam] [Bug 6042] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001962.html">[Mageia-webteam] [Bug 6043] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1946">[ date ]</a>
+ <a href="thread.html#1946">[ thread ]</a>
+ <a href="subject.html#1946">[ subject ]</a>
+ <a href="author.html#1946">[ 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/2012-May/001947.html b/zarb-ml/mageia-webteam/2012-May/001947.html
new file mode 100644
index 000000000..502da0d69
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001947.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french
+ </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%206044%5D%20%5BNew%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3Cbug-6044-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="001962.html">
+ <LINK REL="Next" HREF="001960.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206044%5D%20%5BNew%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3Cbug-6044-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:46:19 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001962.html">[Mageia-webteam] [Bug 6043] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001960.html">[Mageia-webteam] [Bug 6044] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1947">[ date ]</a>
+ <a href="thread.html#1947">[ thread ]</a>
+ <a href="subject.html#1947">[ subject ]</a>
+ <a href="author.html#1947">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6044">https://bugs.mageia.org/show_bug.cgi?id=6044</A>
+
+ Summary: the sub-menu isn't in french
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/for-pc/">http://www.mageia.org/fr/for-pc/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+the sub-menu isn't in french
+
+--
+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="001962.html">[Mageia-webteam] [Bug 6043] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001960.html">[Mageia-webteam] [Bug 6044] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1947">[ date ]</a>
+ <a href="thread.html#1947">[ thread ]</a>
+ <a href="subject.html#1947">[ subject ]</a>
+ <a href="author.html#1947">[ 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/2012-May/001948.html b/zarb-ml/mageia-webteam/2012-May/001948.html
new file mode 100644
index 000000000..2704ed922
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001948.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french
+ </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%206045%5D%20%5BNew%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3Cbug-6045-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="001960.html">
+ <LINK REL="Next" HREF="001958.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french</H1>
+ <B>mammig linux</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206045%5D%20%5BNew%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3Cbug-6045-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 08:47:02 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001960.html">[Mageia-webteam] [Bug 6044] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001958.html">[Mageia-webteam] [Bug 6045] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1948">[ date ]</a>
+ <a href="thread.html#1948">[ thread ]</a>
+ <a href="subject.html#1948">[ subject ]</a>
+ <a href="author.html#1948">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6045">https://bugs.mageia.org/show_bug.cgi?id=6045</A>
+
+ Summary: the sub-menu isn't in french
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://www.mageia.org/fr/for-server/">http://www.mageia.org/fr/for-server/</A>
+ 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">mammig.linux at gmail.com</A>
+
+
+the sub-menu isn't in french
+
+--
+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="001960.html">[Mageia-webteam] [Bug 6044] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001958.html">[Mageia-webteam] [Bug 6045] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1948">[ date ]</a>
+ <a href="thread.html#1948">[ thread ]</a>
+ <a href="subject.html#1948">[ subject ]</a>
+ <a href="author.html#1948">[ 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/2012-May/001949.html b/zarb-ml/mageia-webteam/2012-May/001949.html
new file mode 100644
index 000000000..c33a8176b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001949.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+ </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%206035%5D%20mgaapplet-upgrade-helper%0A%20--new_distribution_version%3D2%20no%20upgrade%20or%20error&In-Reply-To=%3C20120523082539.6602844889%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="001958.html">
+ <LINK REL="Next" HREF="001950.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206035%5D%20mgaapplet-upgrade-helper%0A%20--new_distribution_version%3D2%20no%20upgrade%20or%20error&In-Reply-To=%3C20120523082539.6602844889%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 10:25:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001958.html">[Mageia-webteam] [Bug 6045] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001950.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1949">[ date ]</a>
+ <a href="thread.html#1949">[ thread ]</a>
+ <a href="subject.html#1949">[ subject ]</a>
+ <a href="author.html#1949">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6035">https://bugs.mageia.org/show_bug.cgi?id=6035</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">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; 2012-05-23 10:25:39 CEST ---
+Release 2 has been added to api now. Can you try again ?
+
+--
+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="001958.html">[Mageia-webteam] [Bug 6045] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001950.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1949">[ date ]</a>
+ <a href="thread.html#1949">[ thread ]</a>
+ <a href="subject.html#1949">[ subject ]</a>
+ <a href="author.html#1949">[ 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/2012-May/001950.html b/zarb-ml/mageia-webteam/2012-May/001950.html
new file mode 100644
index 000000000..362e38ed1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001950.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+ </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%206035%5D%20mgaapplet-upgrade-helper%0A%20--new_distribution_version%3D2%20no%20upgrade%20or%20error&In-Reply-To=%3C20120523084151.CEA754487F%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="001949.html">
+ <LINK REL="Next" HREF="001951.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error</H1>
+ <B>Jeff Robins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206035%5D%20mgaapplet-upgrade-helper%0A%20--new_distribution_version%3D2%20no%20upgrade%20or%20error&In-Reply-To=%3C20120523084151.CEA754487F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 10:41:51 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001949.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI>Next message: <A HREF="001951.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1950">[ date ]</a>
+ <a href="thread.html#1950">[ thread ]</a>
+ <a href="subject.html#1950">[ subject ]</a>
+ <a href="author.html#1950">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6035">https://bugs.mageia.org/show_bug.cgi?id=6035</A>
+
+--- Comment #3 from Jeff Robins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jeffrobinsSAE at gmail.com</A>&gt; 2012-05-23 10:41:51 CEST ---
+Unfortunately I needed to start the upgrade and the upgrade worked once I used
+the proper switch/option, so I started the upgrade process. I'd rather not
+take a chance and quit the process. I'm on package 1374 of 2210.
+
+After looking at Manuel's post he may have missed that I used the wrong
+switch/option when I ran it initially (I spelled out the whole word
+&quot;distribution&quot;). I'm just reporting that the program doesn't provide an error
+and provides a misleading output when the wrong switches/options are used.
+
+I had a look at the mgaapplet-upgrade-helper script and it just looks like
+there is no check for invalid switches/options.
+
+Thank you,
+
+Jeff
+
+--
+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="001949.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI>Next message: <A HREF="001951.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1950">[ date ]</a>
+ <a href="thread.html#1950">[ thread ]</a>
+ <a href="subject.html#1950">[ subject ]</a>
+ <a href="author.html#1950">[ 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/2012-May/001951.html b/zarb-ml/mageia-webteam/2012-May/001951.html
new file mode 100644
index 000000000..79b8701ea
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001951.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+ </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%206035%5D%20mgaapplet-upgrade-helper%0A%20--new_distribution_version%3D2%20no%20upgrade%20or%20error&In-Reply-To=%3C20120523090045.2AE5E44893%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="001950.html">
+ <LINK REL="Next" HREF="001952.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206035%5D%20mgaapplet-upgrade-helper%0A%20--new_distribution_version%3D2%20no%20upgrade%20or%20error&In-Reply-To=%3C20120523090045.2AE5E44893%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 11:00:45 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001950.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI>Next message: <A HREF="001952.html">[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1951">[ date ]</a>
+ <a href="thread.html#1951">[ thread ]</a>
+ <a href="subject.html#1951">[ subject ]</a>
+ <a href="author.html#1951">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6035">https://bugs.mageia.org/show_bug.cgi?id=6035</A>
+
+--- Comment #4 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-23 11:00:45 CEST ---
+My bad, it seems the option was changed since 2010.2 sorry :/
+
+<A HREF="http://svnweb.mageia.org/soft/mgaonline/trunk/mgaapplet-upgrade-helper?revision=4158&amp;view=markup">http://svnweb.mageia.org/soft/mgaonline/trunk/mgaapplet-upgrade-helper?revision=4158&amp;view=markup</A>
+
+48 $::rpmdrake_options{$1}[0] = $2;
+49 } elsif ($opt =~ /--new_distro_version=(.*)/) {
+50 $new_distro_version = $1;
+
+with mgaapplet-upgrade-helper --new_distro_version=2 it works fine
+
+/me change the wiki
+
+--
+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="001950.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI>Next message: <A HREF="001952.html">[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1951">[ date ]</a>
+ <a href="thread.html#1951">[ thread ]</a>
+ <a href="subject.html#1951">[ subject ]</a>
+ <a href="author.html#1951">[ 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/2012-May/001952.html b/zarb-ml/mageia-webteam/2012-May/001952.html
new file mode 100644
index 000000000..d6829fcc1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001952.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch
+ </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%206035%5D%20check%20the%20option%20of%0A%20mgaapplet-upgrade-helper%20before%20the%20launch&In-Reply-To=%3C20120523090322.606FE44898%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="001951.html">
+ <LINK REL="Next" HREF="001971.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206035%5D%20check%20the%20option%20of%0A%20mgaapplet-upgrade-helper%20before%20the%20launch&In-Reply-To=%3C20120523090322.606FE44898%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 11:03:22 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001951.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI>Next message: <A HREF="001971.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1952">[ date ]</a>
+ <a href="thread.html#1952">[ thread ]</a>
+ <a href="subject.html#1952">[ subject ]</a>
+ <a href="author.html#1952">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6035">https://bugs.mageia.org/show_bug.cgi?id=6035</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|mgaapplet-upgrade-helper |check the option of
+ |--new_distribution_version= |mgaapplet-upgrade-helper
+ |2 no upgrade or error |before the launch
+ Keywords| |Junior_job
+ Severity|major |enhancement
+ Priority|High |Normal
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.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">thierry.vignaud at gmail.com</A>
+ RPM Package| |mgaonline
+
+--- Comment #5 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-23 11:03:21 CEST ---
+ok sorry all
+
+--
+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="001951.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI>Next message: <A HREF="001971.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1952">[ date ]</a>
+ <a href="thread.html#1952">[ thread ]</a>
+ <a href="subject.html#1952">[ subject ]</a>
+ <a href="author.html#1952">[ 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/2012-May/001953.html b/zarb-ml/mageia-webteam/2012-May/001953.html
new file mode 100644
index 000000000..a1d6c560c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001953.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6036] The french page is in english
+ </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%206036%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120523161857.701D84486D%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="001938.html">
+ <LINK REL="Next" HREF="001956.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6036] The french page is in english</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206036%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120523161857.701D84486D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6036] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 18:18:57 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001938.html">[Mageia-webteam] [Bug 6036] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001956.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1953">[ date ]</a>
+ <a href="thread.html#1953">[ thread ]</a>
+ <a href="subject.html#1953">[ subject ]</a>
+ <a href="author.html#1953">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6036">https://bugs.mageia.org/show_bug.cgi?id=6036</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-05-23 18:18:57 CEST ---
+Fixed. .lang file available for other locales too in
+trunk/langs/en/about.en.lang
+
+--
+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="001938.html">[Mageia-webteam] [Bug 6036] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001956.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1953">[ date ]</a>
+ <a href="thread.html#1953">[ thread ]</a>
+ <a href="subject.html#1953">[ subject ]</a>
+ <a href="author.html#1953">[ 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/2012-May/001954.html b/zarb-ml/mageia-webteam/2012-May/001954.html
new file mode 100644
index 000000000..ebaf67282
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001954.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6038] The french page is in english
+ </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%206038%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120523161912.90C2244847%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="001940.html">
+ <LINK REL="Next" HREF="001941.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6038] The french page is in english</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206038%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120523161912.90C2244847%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6038] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 18:19:12 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001940.html">[Mageia-webteam] [Bug 6038] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001941.html">[Mageia-webteam] [Bug 6039] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1954">[ date ]</a>
+ <a href="thread.html#1954">[ thread ]</a>
+ <a href="subject.html#1954">[ subject ]</a>
+ <a href="author.html#1954">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6038">https://bugs.mageia.org/show_bug.cgi?id=6038</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-05-23 18:19:12 CEST ---
+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="001940.html">[Mageia-webteam] [Bug 6038] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001941.html">[Mageia-webteam] [Bug 6039] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1954">[ date ]</a>
+ <a href="thread.html#1954">[ thread ]</a>
+ <a href="subject.html#1954">[ subject ]</a>
+ <a href="author.html#1954">[ 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/2012-May/001955.html b/zarb-ml/mageia-webteam/2012-May/001955.html
new file mode 100644
index 000000000..5e51fc570
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001955.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6042] the sub-menu isn't in french
+ </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%206042%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3C20120523161933.5C4DA4486D%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="001945.html">
+ <LINK REL="Next" HREF="001946.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6042] the sub-menu isn't in french</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206042%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3C20120523161933.5C4DA4486D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6042] the sub-menu isn't in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 23 18:19:33 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001945.html">[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001946.html">[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1955">[ date ]</a>
+ <a href="thread.html#1955">[ thread ]</a>
+ <a href="subject.html#1955">[ subject ]</a>
+ <a href="author.html#1955">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6042">https://bugs.mageia.org/show_bug.cgi?id=6042</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|NEW |RESOLVED
+ Resolution| |FIXED
+ 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; 2012-05-23 18:19:33 CEST ---
+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="001945.html">[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001946.html">[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1955">[ date ]</a>
+ <a href="thread.html#1955">[ thread ]</a>
+ <a href="subject.html#1955">[ subject ]</a>
+ <a href="author.html#1955">[ 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/2012-May/001956.html b/zarb-ml/mageia-webteam/2012-May/001956.html
new file mode 100644
index 000000000..b7c873e47
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001956.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6036] The french page is in english
+ </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%206036%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120523223340.52AF7447F7%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="001953.html">
+ <LINK REL="Next" HREF="001957.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6036] The french page is in english</H1>
+ <B>Bogdan Gruescu</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206036%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120523223340.52AF7447F7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6036] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 00:33:40 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001953.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001957.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1956">[ date ]</a>
+ <a href="thread.html#1956">[ thread ]</a>
+ <a href="subject.html#1956">[ subject ]</a>
+ <a href="author.html#1956">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6036">https://bugs.mageia.org/show_bug.cgi?id=6036</A>
+
+Bogdan Gruescu &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">gruescubogdan at aol.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">gruescubogdan at aol.com</A>
+
+--- Comment #2 from Bogdan Gruescu &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">gruescubogdan at aol.com</A>&gt; 2012-05-24 00:33:39 CEST ---
+The French page is indeed fixed, but for the majority of languages the issue
+persists.
+
+--
+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="001953.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001957.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1956">[ date ]</a>
+ <a href="thread.html#1956">[ thread ]</a>
+ <a href="subject.html#1956">[ subject ]</a>
+ <a href="author.html#1956">[ 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/2012-May/001957.html b/zarb-ml/mageia-webteam/2012-May/001957.html
new file mode 100644
index 000000000..8b527ffba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001957.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6036] The french page is in english
+ </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%206036%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524071756.E1228446D2%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="001956.html">
+ <LINK REL="Next" HREF="001970.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6036] The french page is in english</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206036%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524071756.E1228446D2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6036] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:17:56 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001956.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001970.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1957">[ date ]</a>
+ <a href="thread.html#1957">[ thread ]</a>
+ <a href="subject.html#1957">[ subject ]</a>
+ <a href="author.html#1957">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6036">https://bugs.mageia.org/show_bug.cgi?id=6036</A>
+
+--- Comment #3 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 09:17:56 CEST ---
+One at a time, please. :)
+
+--
+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="001956.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001970.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1957">[ date ]</a>
+ <a href="thread.html#1957">[ thread ]</a>
+ <a href="subject.html#1957">[ subject ]</a>
+ <a href="author.html#1957">[ 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/2012-May/001958.html b/zarb-ml/mageia-webteam/2012-May/001958.html
new file mode 100644
index 000000000..2bafe2c30
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001958.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6045] the sub-menu isn't in french
+ </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%206045%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3C20120524073122.A980C446D1%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="001948.html">
+ <LINK REL="Next" HREF="001949.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6045] the sub-menu isn't in french</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206045%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3C20120524073122.A980C446D1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6045] the sub-menu isn't in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:31:22 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001948.html">[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001949.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1958">[ date ]</a>
+ <a href="thread.html#1958">[ thread ]</a>
+ <a href="subject.html#1958">[ subject ]</a>
+ <a href="author.html#1958">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6045">https://bugs.mageia.org/show_bug.cgi?id=6045</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |DUPLICATE
+
+--- Comment #1 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:31:22 CEST ---
+Hi mammig, thanks for your reports. I'm merging these reports into one.
+
+*** This bug has been marked as a duplicate of bug 6037 ***
+
+--
+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="001948.html">[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001949.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1958">[ date ]</a>
+ <a href="thread.html#1958">[ thread ]</a>
+ <a href="subject.html#1958">[ subject ]</a>
+ <a href="author.html#1958">[ 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/2012-May/001959.html b/zarb-ml/mageia-webteam/2012-May/001959.html
new file mode 100644
index 000000000..101c97377
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001959.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6037] The french page is in english
+ </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%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073123.0AEFB447F7%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="001939.html">
+ <LINK REL="Next" HREF="001961.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6037] The french page is in english</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073123.0AEFB447F7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6037] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:31:23 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001939.html">[Mageia-webteam] [Bug 6037] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001961.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1959">[ date ]</a>
+ <a href="thread.html#1959">[ thread ]</a>
+ <a href="subject.html#1959">[ subject ]</a>
+ <a href="author.html#1959">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6037">https://bugs.mageia.org/show_bug.cgi?id=6037</A>
+
+--- Comment #1 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:31:22 CEST ---
+*** Bug 6045 has been marked as a duplicate of this bug. ***
+
+--
+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="001939.html">[Mageia-webteam] [Bug 6037] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001961.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1959">[ date ]</a>
+ <a href="thread.html#1959">[ thread ]</a>
+ <a href="subject.html#1959">[ subject ]</a>
+ <a href="author.html#1959">[ 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/2012-May/001960.html b/zarb-ml/mageia-webteam/2012-May/001960.html
new file mode 100644
index 000000000..b1707e104
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001960.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6044] the sub-menu isn't in french
+ </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%206044%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3C20120524073158.54BDF446D1%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="001947.html">
+ <LINK REL="Next" HREF="001948.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6044] the sub-menu isn't in french</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206044%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3C20120524073158.54BDF446D1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6044] the sub-menu isn't in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:31:58 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001947.html">[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001948.html">[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1960">[ date ]</a>
+ <a href="thread.html#1960">[ thread ]</a>
+ <a href="subject.html#1960">[ subject ]</a>
+ <a href="author.html#1960">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6044">https://bugs.mageia.org/show_bug.cgi?id=6044</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |DUPLICATE
+
+--- Comment #1 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:31:58 CEST ---
+dup
+
+*** This bug has been marked as a duplicate of bug 6037 ***
+
+--
+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="001947.html">[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001948.html">[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1960">[ date ]</a>
+ <a href="thread.html#1960">[ thread ]</a>
+ <a href="subject.html#1960">[ subject ]</a>
+ <a href="author.html#1960">[ 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/2012-May/001961.html b/zarb-ml/mageia-webteam/2012-May/001961.html
new file mode 100644
index 000000000..0e48614f5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001961.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6037] The french page is in english
+ </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%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073158.AEB26446D2%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="001959.html">
+ <LINK REL="Next" HREF="001963.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6037] The french page is in english</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073158.AEB26446D2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6037] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:31:58 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001959.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001963.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1961">[ date ]</a>
+ <a href="thread.html#1961">[ thread ]</a>
+ <a href="subject.html#1961">[ subject ]</a>
+ <a href="author.html#1961">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6037">https://bugs.mageia.org/show_bug.cgi?id=6037</A>
+
+--- Comment #2 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:31:58 CEST ---
+*** Bug 6044 has been marked as a duplicate of this bug. ***
+
+--
+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="001959.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001963.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1961">[ date ]</a>
+ <a href="thread.html#1961">[ thread ]</a>
+ <a href="subject.html#1961">[ subject ]</a>
+ <a href="author.html#1961">[ 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/2012-May/001962.html b/zarb-ml/mageia-webteam/2012-May/001962.html
new file mode 100644
index 000000000..e01f03c8e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001962.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6043] the sub-menu isn't in french
+ </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%206043%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3C20120524073225.34C4D446D2%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="001946.html">
+ <LINK REL="Next" HREF="001947.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6043] the sub-menu isn't in french</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206043%5D%20the%20sub-menu%20isn%27t%20in%20french&In-Reply-To=%3C20120524073225.34C4D446D2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6043] the sub-menu isn't in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:32:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001946.html">[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001947.html">[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1962">[ date ]</a>
+ <a href="thread.html#1962">[ thread ]</a>
+ <a href="subject.html#1962">[ subject ]</a>
+ <a href="author.html#1962">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6043">https://bugs.mageia.org/show_bug.cgi?id=6043</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |DUPLICATE
+
+--- Comment #1 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:32:25 CEST ---
+dup
+
+*** This bug has been marked as a duplicate of bug 6037 ***
+
+--
+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="001946.html">[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french
+</A></li>
+ <LI>Next message: <A HREF="001947.html">[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1962">[ date ]</a>
+ <a href="thread.html#1962">[ thread ]</a>
+ <a href="subject.html#1962">[ subject ]</a>
+ <a href="author.html#1962">[ 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/2012-May/001963.html b/zarb-ml/mageia-webteam/2012-May/001963.html
new file mode 100644
index 000000000..d39880f97
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001963.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6037] The french page is in english
+ </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%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073225.8A527446C7%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="001961.html">
+ <LINK REL="Next" HREF="001965.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6037] The french page is in english</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073225.8A527446C7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6037] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:32:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001961.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001965.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1963">[ date ]</a>
+ <a href="thread.html#1963">[ thread ]</a>
+ <a href="subject.html#1963">[ subject ]</a>
+ <a href="author.html#1963">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6037">https://bugs.mageia.org/show_bug.cgi?id=6037</A>
+
+--- Comment #3 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:32:25 CEST ---
+*** Bug 6043 has been marked as a duplicate of this bug. ***
+
+--
+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="001961.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001965.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1963">[ date ]</a>
+ <a href="thread.html#1963">[ thread ]</a>
+ <a href="subject.html#1963">[ subject ]</a>
+ <a href="author.html#1963">[ 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/2012-May/001964.html b/zarb-ml/mageia-webteam/2012-May/001964.html
new file mode 100644
index 000000000..46e59959b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001964.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6041] The french page is in english and titles in french
+ </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%206041%5D%20The%20french%20page%20is%20in%20english%20and%0A%09titles%20in%20french&In-Reply-To=%3C20120524073245.940B54467F%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="001943.html">
+ <LINK REL="Next" HREF="001945.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6041] The french page is in english and titles in french</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206041%5D%20The%20french%20page%20is%20in%20english%20and%0A%09titles%20in%20french&In-Reply-To=%3C20120524073245.940B54467F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6041] The french page is in english and titles in french">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:32:45 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001943.html">[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french
+</A></li>
+ <LI>Next message: <A HREF="001945.html">[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1964">[ date ]</a>
+ <a href="thread.html#1964">[ thread ]</a>
+ <a href="subject.html#1964">[ subject ]</a>
+ <a href="author.html#1964">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6041">https://bugs.mageia.org/show_bug.cgi?id=6041</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |DUPLICATE
+
+--- Comment #1 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 11:32:45 CEST ---
+dup
+
+*** This bug has been marked as a duplicate of bug 6037 ***
+
+--
+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="001943.html">[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french
+</A></li>
+ <LI>Next message: <A HREF="001945.html">[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1964">[ date ]</a>
+ <a href="thread.html#1964">[ thread ]</a>
+ <a href="subject.html#1964">[ subject ]</a>
+ <a href="author.html#1964">[ 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/2012-May/001965.html b/zarb-ml/mageia-webteam/2012-May/001965.html
new file mode 100644
index 000000000..416660de4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001965.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6037] The french page is in english
+ </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%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073245.F11AB44485%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="001963.html">
+ <LINK REL="Next" HREF="001967.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6037] The french page is in english</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073245.F11AB44485%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6037] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:32:45 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001963.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001967.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1965">[ date ]</a>
+ <a href="thread.html#1965">[ thread ]</a>
+ <a href="subject.html#1965">[ subject ]</a>
+ <a href="author.html#1965">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6037">https://bugs.mageia.org/show_bug.cgi?id=6037</A>
+
+--- Comment #4 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 11:32:45 CEST ---
+*** Bug 6041 has been marked as a duplicate of this bug. ***
+
+--
+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="001963.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001967.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1965">[ date ]</a>
+ <a href="thread.html#1965">[ thread ]</a>
+ <a href="subject.html#1965">[ subject ]</a>
+ <a href="author.html#1965">[ 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/2012-May/001966.html b/zarb-ml/mageia-webteam/2012-May/001966.html
new file mode 100644
index 000000000..2816ef246
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001966.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6040] The french page is in english
+ </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%206040%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073309.81772446D1%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="001944.html">
+ <LINK REL="Next" HREF="001943.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6040] The french page is in english</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206040%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073309.81772446D1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6040] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:33:09 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001944.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001943.html">[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1966">[ date ]</a>
+ <a href="thread.html#1966">[ thread ]</a>
+ <a href="subject.html#1966">[ subject ]</a>
+ <a href="author.html#1966">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6040">https://bugs.mageia.org/show_bug.cgi?id=6040</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |DUPLICATE
+
+--- Comment #2 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:33:09 CEST ---
+dup
+
+*** This bug has been marked as a duplicate of bug 6037 ***
+
+--
+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="001944.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001943.html">[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1966">[ date ]</a>
+ <a href="thread.html#1966">[ thread ]</a>
+ <a href="subject.html#1966">[ subject ]</a>
+ <a href="author.html#1966">[ 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/2012-May/001967.html b/zarb-ml/mageia-webteam/2012-May/001967.html
new file mode 100644
index 000000000..dc9ddabd3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001967.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6037] The french page is in english
+ </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%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073309.E6D8144878%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="001965.html">
+ <LINK REL="Next" HREF="001969.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6037] The french page is in english</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073309.E6D8144878%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6037] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:33:09 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001965.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001969.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1967">[ date ]</a>
+ <a href="thread.html#1967">[ thread ]</a>
+ <a href="subject.html#1967">[ subject ]</a>
+ <a href="author.html#1967">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6037">https://bugs.mageia.org/show_bug.cgi?id=6037</A>
+
+--- Comment #5 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:33:09 CEST ---
+*** Bug 6040 has been marked as a duplicate of this bug. ***
+
+--
+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="001965.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001969.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1967">[ date ]</a>
+ <a href="thread.html#1967">[ thread ]</a>
+ <a href="subject.html#1967">[ subject ]</a>
+ <a href="author.html#1967">[ 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/2012-May/001968.html b/zarb-ml/mageia-webteam/2012-May/001968.html
new file mode 100644
index 000000000..5312a053b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001968.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6039] The french page is in english
+ </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%206039%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073331.A31AC446B1%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="001941.html">
+ <LINK REL="Next" HREF="001942.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6039] The french page is in english</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206039%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073331.A31AC446B1%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6039] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:33:31 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001941.html">[Mageia-webteam] [Bug 6039] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001942.html">[Mageia-webteam] [Bug 6040] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1968">[ date ]</a>
+ <a href="thread.html#1968">[ thread ]</a>
+ <a href="subject.html#1968">[ subject ]</a>
+ <a href="author.html#1968">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6039">https://bugs.mageia.org/show_bug.cgi?id=6039</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |DUPLICATE
+
+--- Comment #1 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:33:31 CEST ---
+dup
+
+*** This bug has been marked as a duplicate of bug 6037 ***
+
+--
+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="001941.html">[Mageia-webteam] [Bug 6039] [New] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001942.html">[Mageia-webteam] [Bug 6040] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1968">[ date ]</a>
+ <a href="thread.html#1968">[ thread ]</a>
+ <a href="subject.html#1968">[ subject ]</a>
+ <a href="author.html#1968">[ 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/2012-May/001969.html b/zarb-ml/mageia-webteam/2012-May/001969.html
new file mode 100644
index 000000000..227caae75
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001969.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6037] The french page is in english
+ </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%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073332.0DE3544485%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="001967.html">
+ <LINK REL="Next" HREF="001993.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6037] The french page is in english</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524073332.0DE3544485%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6037] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 09:33:32 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001967.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001993.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1969">[ date ]</a>
+ <a href="thread.html#1969">[ thread ]</a>
+ <a href="subject.html#1969">[ subject ]</a>
+ <a href="author.html#1969">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6037">https://bugs.mageia.org/show_bug.cgi?id=6037</A>
+
+--- Comment #6 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-24 09:33:31 CEST ---
+*** Bug 6039 has been marked as a duplicate of this bug. ***
+
+--
+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="001967.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001993.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1969">[ date ]</a>
+ <a href="thread.html#1969">[ thread ]</a>
+ <a href="subject.html#1969">[ subject ]</a>
+ <a href="author.html#1969">[ 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/2012-May/001970.html b/zarb-ml/mageia-webteam/2012-May/001970.html
new file mode 100644
index 000000000..9b71fb474
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001970.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6036] The french page is in english
+ </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%206036%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524093836.49F8144857%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="001957.html">
+ <LINK REL="Next" HREF="001939.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6036] The french page is in english</H1>
+ <B>Bogdan Gruescu</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206036%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120524093836.49F8144857%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6036] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 11:38:36 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001957.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001939.html">[Mageia-webteam] [Bug 6037] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1970">[ date ]</a>
+ <a href="thread.html#1970">[ thread ]</a>
+ <a href="subject.html#1970">[ subject ]</a>
+ <a href="author.html#1970">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6036">https://bugs.mageia.org/show_bug.cgi?id=6036</A>
+
+--- Comment #4 from Bogdan Gruescu &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">gruescubogdan at aol.com</A>&gt; 2012-05-24 11:38:35 CEST ---
+Sure, thanks for confirmation :)
+
+Just a suggestion for the future (I'm trying to be constructive): add only a
+paragraph translated in the corresponding language with a message like this:
+
+&quot;Translation work is in progress and will be added soon. The English variant is
+available here ...&quot;
+
+to be displayed instead until the work is finished.
+
+--
+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="001957.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001939.html">[Mageia-webteam] [Bug 6037] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1970">[ date ]</a>
+ <a href="thread.html#1970">[ thread ]</a>
+ <a href="subject.html#1970">[ subject ]</a>
+ <a href="author.html#1970">[ 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/2012-May/001971.html b/zarb-ml/mageia-webteam/2012-May/001971.html
new file mode 100644
index 000000000..26ae9db3a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001971.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in 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%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20120524135722.DEF50447AA%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="001952.html">
+ <LINK REL="Next" HREF="001973.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201118%5D%20Make%20it%20possible%20to%20add%20language%0A%20specific%20i18n%20mls%20as%20assignees%20in%20bugzilla&In-Reply-To=%3C20120524135722.DEF50447AA%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 15:57:22 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001952.html">[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch
+</A></li>
+ <LI>Next message: <A HREF="001973.html">[Mageia-webteam] [Bug 6070] [New] identity-trunk is random
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1971">[ date ]</a>
+ <a href="thread.html#1971">[ thread ]</a>
+ <a href="subject.html#1971">[ subject ]</a>
+ <a href="author.html#1971">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1118">https://bugs.mageia.org/show_bug.cgi?id=1118</A>
+
+--- Comment #8 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-24 15:57:22 CEST ---
+would be also better for the translator, since most of them don't read the
+global ml.
+
+--
+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="001952.html">[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch
+</A></li>
+ <LI>Next message: <A HREF="001973.html">[Mageia-webteam] [Bug 6070] [New] identity-trunk is random
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1971">[ date ]</a>
+ <a href="thread.html#1971">[ thread ]</a>
+ <a href="subject.html#1971">[ subject ]</a>
+ <a href="author.html#1971">[ 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/2012-May/001972.html b/zarb-ml/mageia-webteam/2012-May/001972.html
new file mode 100644
index 000000000..5977d7533
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001972.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6032] a Mageia motto
+ </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%206032%5D%20a%20Mageia%20motto&In-Reply-To=%3C20120524171521.1767944707%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="001936.html">
+ <LINK REL="Next" HREF="001975.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6032] a Mageia motto</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206032%5D%20a%20Mageia%20motto&In-Reply-To=%3C20120524171521.1767944707%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6032] a Mageia motto">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 19:15:21 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001936.html">[Mageia-webteam] [Bug 6032] [New] a Mageia motto
+</A></li>
+ <LI>Next message: <A HREF="001975.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1972">[ date ]</a>
+ <a href="thread.html#1972">[ thread ]</a>
+ <a href="subject.html#1972">[ subject ]</a>
+ <a href="author.html#1972">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6032">https://bugs.mageia.org/show_bug.cgi?id=6032</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Keywords| |NEEDINFO
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-24 21:15:21 CEST ---
+Hello, I don't understand your request, can you explain a bit more ?
+
+--
+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="001936.html">[Mageia-webteam] [Bug 6032] [New] a Mageia motto
+</A></li>
+ <LI>Next message: <A HREF="001975.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1972">[ date ]</a>
+ <a href="thread.html#1972">[ thread ]</a>
+ <a href="subject.html#1972">[ subject ]</a>
+ <a href="author.html#1972">[ 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/2012-May/001973.html b/zarb-ml/mageia-webteam/2012-May/001973.html
new file mode 100644
index 000000000..94d5ebaf9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001973.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6070] [New] identity-trunk is random
+ </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%206070%5D%20%5BNew%5D%20identity-trunk%20is%20random&In-Reply-To=%3Cbug-6070-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="001971.html">
+ <LINK REL="Next" HREF="001974.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6070] [New] identity-trunk is random</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206070%5D%20%5BNew%5D%20identity-trunk%20is%20random&In-Reply-To=%3Cbug-6070-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6070] [New] identity-trunk is random">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 19:17:34 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001971.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001974.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1973">[ date ]</a>
+ <a href="thread.html#1973">[ thread ]</a>
+ <a href="subject.html#1973">[ subject ]</a>
+ <a href="author.html#1973">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6070">https://bugs.mageia.org/show_bug.cgi?id=6070</A>
+
+ Summary: identity-trunk is random
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://identity-trunk.mageia.org">http://identity-trunk.mageia.org</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">rdalverny at gmail.com</A>
+
+
+Description of problem:
+
+When connecting to identity-trunk with Chrome or Firefox, it answers randomly a
+404 or 500 error.
+
+However, it works for other people. And from a workstation where it fails with
+a browser, it works with curl.
+
+This prevents making sure identity/trunk code is stable enough to be merged
+back to identity/live, and to improve the app in general.
+
+--
+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="001971.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A></li>
+ <LI>Next message: <A HREF="001974.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1973">[ date ]</a>
+ <a href="thread.html#1973">[ thread ]</a>
+ <a href="subject.html#1973">[ subject ]</a>
+ <a href="author.html#1973">[ 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/2012-May/001974.html b/zarb-ml/mageia-webteam/2012-May/001974.html
new file mode 100644
index 000000000..a903ec094
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001974.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6070] identity-trunk is random
+ </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%206070%5D%20identity-trunk%20is%20random&In-Reply-To=%3C20120524172234.84DCA4489B%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="001973.html">
+ <LINK REL="Next" HREF="001977.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6070] identity-trunk is random</H1>
+ <B>R&#195;&#169;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206070%5D%20identity-trunk%20is%20random&In-Reply-To=%3C20120524172234.84DCA4489B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6070] identity-trunk is random">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 19:22:34 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001973.html">[Mageia-webteam] [Bug 6070] [New] identity-trunk is random
+</A></li>
+ <LI>Next message: <A HREF="001977.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1974">[ date ]</a>
+ <a href="thread.html#1974">[ thread ]</a>
+ <a href="subject.html#1974">[ subject ]</a>
+ <a href="author.html#1974">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6070">https://bugs.mageia.org/show_bug.cgi?id=6070</A>
+
+R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>
+
+--- Comment #1 from R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>&gt; 2012-05-24 19:22:34 CEST ---
+On my ex-Cauldron-now-Mageia-2 workstation, I get the 404 and 500 errors issue
+with Chromium and Konqueror, but it works okay with Firefox.
+
+--
+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="001973.html">[Mageia-webteam] [Bug 6070] [New] identity-trunk is random
+</A></li>
+ <LI>Next message: <A HREF="001977.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1974">[ date ]</a>
+ <a href="thread.html#1974">[ thread ]</a>
+ <a href="subject.html#1974">[ subject ]</a>
+ <a href="author.html#1974">[ 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/2012-May/001975.html b/zarb-ml/mageia-webteam/2012-May/001975.html
new file mode 100644
index 000000000..7cbd4e58d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001975.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6032] a Mageia motto
+ </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%206032%5D%20a%20Mageia%20motto&In-Reply-To=%3C20120524175652.672A6446EC%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="001972.html">
+ <LINK REL="Next" HREF="001976.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6032] a Mageia motto</H1>
+ <B>Otto S&#195;&#161;</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206032%5D%20a%20Mageia%20motto&In-Reply-To=%3C20120524175652.672A6446EC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6032] a Mageia motto">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 19:56:52 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001972.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A></li>
+ <LI>Next message: <A HREF="001976.html">[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1975">[ date ]</a>
+ <a href="thread.html#1975">[ thread ]</a>
+ <a href="subject.html#1975">[ subject ]</a>
+ <a href="author.html#1975">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6032">https://bugs.mageia.org/show_bug.cgi?id=6032</A>
+
+--- Comment #2 from Otto S&#225; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ottosa at gmail.com</A>&gt; 2012-05-24 19:56:52 CEST ---
+(In reply to comment #1)
+&gt;<i> Hello, I don't understand your request, can you explain a bit more ?
+</I>
+Dear Manuel Hiebel,
+I created a phrase in the Facebok of the Mageia that symbolizes the spirit of
+the Mageia. It would be a type of a &#8220;marketing&#8221; of the distro like a saying.
+Generally, companies have saying or mottos like this: &#8220;satisfaction guarantted
+or money back&#8221;. It&#8217;s a phrase that it&#8217;s the company meaning in few words.The
+Merrian Webster&#8217; dictionary tranlates the motto as the following meaning: a
+sentence, phrase, or word inscribed on something as appropriate to or
+indicative of its character or use. The prase, motto or saying to the Mageia is
+the following:
+&#8220;Mageia is the present and the future.&#8221; The users at the facebook liked this
+motto. It means Mageia is the present because of its quality and stability for
+the reason Mageia is at the top of distrowatch (at 7th. Position now). The
+other distos at start of mageia didn&#8217;t believe it.They desdained Mageia. The
+future be cause Mageia is a community, an organization and came to stay with us
+and offer the best in the future.Thus, if you choose it, It could be included
+for the Mageia 3 as a signal.It&#8217;s just a suggestion. I hope you get me now.
+Cheers.
+Otto S&#225; from Mageia Brazil.
+
+--
+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="001972.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A></li>
+ <LI>Next message: <A HREF="001976.html">[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1975">[ date ]</a>
+ <a href="thread.html#1975">[ thread ]</a>
+ <a href="subject.html#1975">[ subject ]</a>
+ <a href="author.html#1975">[ 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/2012-May/001976.html b/zarb-ml/mageia-webteam/2012-May/001976.html
new file mode 100644
index 000000000..418484b14
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001976.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto
+ </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%206032%5D%20%22Mageia%20is%20the%20present%20and%20the%20future%22%0A%09a%20Mageia%20motto&In-Reply-To=%3C20120524180331.08D0944827%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="001975.html">
+ <LINK REL="Next" HREF="001937.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206032%5D%20%22Mageia%20is%20the%20present%20and%20the%20future%22%0A%09a%20Mageia%20motto&In-Reply-To=%3C20120524180331.08D0944827%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 20:03:31 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001975.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A></li>
+ <LI>Next message: <A HREF="001937.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1976">[ date ]</a>
+ <a href="thread.html#1976">[ thread ]</a>
+ <a href="subject.html#1976">[ subject ]</a>
+ <a href="author.html#1976">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6032">https://bugs.mageia.org/show_bug.cgi?id=6032</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|a Mageia motto |&quot;Mageia is the present and
+ | |the future&quot; a Mageia motto
+ Product|Websites |Mageia
+ Version|trunk |Cauldron
+ Component|identity.mageia.org |Release (media or process)
+ AssignedTo|<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">bugsquad at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ Target Milestone|--- |Mageia 3
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-24 20:03:30 CEST ---
+Ok I understand now better thanks, you have some examples where this can be
+showed ?
+
+Maybe can also mail the marketing team about that:
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-marketing">https://www.mageia.org/mailman/listinfo/mageia-marketing</A>
+
+since we can't add them like the other team.
+
+--
+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="001975.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A></li>
+ <LI>Next message: <A HREF="001937.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1976">[ date ]</a>
+ <a href="thread.html#1976">[ thread ]</a>
+ <a href="subject.html#1976">[ subject ]</a>
+ <a href="author.html#1976">[ 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/2012-May/001977.html b/zarb-ml/mageia-webteam/2012-May/001977.html
new file mode 100644
index 000000000..eef43e2c7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001977.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+ </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%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20120524205226.3BAB044731%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="001974.html">
+ <LINK REL="Next" HREF="001978.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20419%5D%20Define%2C%0A%09discuss%20and%20implement%20website%28s%29%20direction%20doc&In-Reply-To=%3C20120524205226.3BAB044731%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 22:52:26 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001974.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI>Next message: <A HREF="001978.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1977">[ date ]</a>
+ <a href="thread.html#1977">[ thread ]</a>
+ <a href="subject.html#1977">[ subject ]</a>
+ <a href="author.html#1977">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</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|NEW |RESOLVED
+ Resolution| |OLD
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 22:52:25 CEST ---
+This will likely be rediscussed later in an other 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="001974.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A></li>
+ <LI>Next message: <A HREF="001978.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1977">[ date ]</a>
+ <a href="thread.html#1977">[ thread ]</a>
+ <a href="subject.html#1977">[ subject ]</a>
+ <a href="author.html#1977">[ 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/2012-May/001978.html b/zarb-ml/mageia-webteam/2012-May/001978.html
new file mode 100644
index 000000000..5bd9923cd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001978.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+ </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%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120524205815.801A444826%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="001977.html">
+ <LINK REL="Next" HREF="001979.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204876%5D%20Downloaded%20net%20install%20iso%20is%20always%0A%09named%20%22boot.iso%22&In-Reply-To=%3C20120524205815.801A444826%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 22:58:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001977.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001979.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1978">[ date ]</a>
+ <a href="thread.html#1978">[ thread ]</a>
+ <a href="subject.html#1978">[ subject ]</a>
+ <a href="author.html#1978">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4876">https://bugs.mageia.org/show_bug.cgi?id=4876</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
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+--- Comment #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 22:58:15 CEST ---
+ISO size report is now automatic when we update the list of new ISOs.
+
+Reporting the right name/version/release/build (that is, naming it differently
+than boot.iso in the very repository) is not in my reach.
+
+This is something that should be open against the distribution itself, for
+packagers to consider.
+
+--
+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="001977.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A></li>
+ <LI>Next message: <A HREF="001979.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1978">[ date ]</a>
+ <a href="thread.html#1978">[ thread ]</a>
+ <a href="subject.html#1978">[ subject ]</a>
+ <a href="author.html#1978">[ 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/2012-May/001979.html b/zarb-ml/mageia-webteam/2012-May/001979.html
new file mode 100644
index 000000000..b575c07cd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001979.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+ </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%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20120524212326.02E1344827%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="001978.html">
+ <LINK REL="Next" HREF="001980.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203737%5D%20Blog%20entry%20contains%20large%0A%09multi-megabyte%20images&In-Reply-To=%3C20120524212326.02E1344827%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:23:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001978.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001980.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1979">[ date ]</a>
+ <a href="thread.html#1979">[ thread ]</a>
+ <a href="subject.html#1979">[ subject ]</a>
+ <a href="author.html#1979">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3737">https://bugs.mageia.org/show_bug.cgi?id=3737</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|NEW |RESOLVED
+ Resolution| |WONTFIX
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #6 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 23:23:25 CEST ---
+wontfix
+
+--
+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="001978.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A></li>
+ <LI>Next message: <A HREF="001980.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1979">[ date ]</a>
+ <a href="thread.html#1979">[ thread ]</a>
+ <a href="subject.html#1979">[ subject ]</a>
+ <a href="author.html#1979">[ 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/2012-May/001980.html b/zarb-ml/mageia-webteam/2012-May/001980.html
new file mode 100644
index 000000000..9317ed171
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001980.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+ </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%202565%5D%20add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120524212412.C95844471A%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="001979.html">
+ <LINK REL="Next" HREF="001981.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%202565%5D%20add%20to%20Mageia%201%20release%20notes%20and%20to%0A%20news/blog%20that%20it%20has%20KDE%204.6.5%20updates&In-Reply-To=%3C20120524212412.C95844471A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:24:12 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001979.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001981.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1980">[ date ]</a>
+ <a href="thread.html#1980">[ thread ]</a>
+ <a href="subject.html#1980">[ subject ]</a>
+ <a href="author.html#1980">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=2565">https://bugs.mageia.org/show_bug.cgi?id=2565</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|NEW |RESOLVED
+ Resolution| |OLD
+
+--- Comment #15 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 23:24:13 CEST ---
+old
+
+--
+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="001979.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A></li>
+ <LI>Next message: <A HREF="001981.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1980">[ date ]</a>
+ <a href="thread.html#1980">[ thread ]</a>
+ <a href="subject.html#1980">[ subject ]</a>
+ <a href="author.html#1980">[ 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/2012-May/001981.html b/zarb-ml/mageia-webteam/2012-May/001981.html
new file mode 100644
index 000000000..2179c574f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001981.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+ </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%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120524212511.E181C44796%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="001980.html">
+ <LINK REL="Next" HREF="001982.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120524212511.E181C44796%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:25:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001980.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001982.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1981">[ date ]</a>
+ <a href="thread.html#1981">[ thread ]</a>
+ <a href="subject.html#1981">[ subject ]</a>
+ <a href="author.html#1981">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4016">https://bugs.mageia.org/show_bug.cgi?id=4016</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 23:25:12 CEST ---
+Do you still reproduce this, or may we close the bug?
+
+--
+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="001980.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A></li>
+ <LI>Next message: <A HREF="001982.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1981">[ date ]</a>
+ <a href="thread.html#1981">[ thread ]</a>
+ <a href="subject.html#1981">[ subject ]</a>
+ <a href="author.html#1981">[ 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/2012-May/001982.html b/zarb-ml/mageia-webteam/2012-May/001982.html
new file mode 100644
index 000000000..60422b1d9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001982.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] SSL for checksums
+ </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%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20120524212834.71EAD44826%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="001981.html">
+ <LINK REL="Next" HREF="001983.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] SSL for checksums</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20120524212834.71EAD44826%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:28:34 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001981.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001983.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1982">[ date ]</a>
+ <a href="thread.html#1982">[ thread ]</a>
+ <a href="subject.html#1982">[ subject ]</a>
+ <a href="author.html#1982">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</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 #5 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 23:28:34 CEST ---
+<A HREF="https://www.mageia.org/">https://www.mageia.org/</A> is available, but not used as default. Checksums are
+indeed directly provided, but I don't see an easy case to make the visitor
+switch to https here.
+
+--
+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="001981.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001983.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1982">[ date ]</a>
+ <a href="thread.html#1982">[ thread ]</a>
+ <a href="subject.html#1982">[ subject ]</a>
+ <a href="author.html#1982">[ 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/2012-May/001983.html b/zarb-ml/mageia-webteam/2012-May/001983.html
new file mode 100644
index 000000000..54234ccee
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001983.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+ </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%201665%5D%20with%20some%20browser%20and%20some%20languages%2C%0A%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3C20120524212914.C40C544782%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="001982.html">
+ <LINK REL="Next" HREF="001984.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201665%5D%20with%20some%20browser%20and%20some%20languages%2C%0A%20the%20end%20of%20the%20top%20menu%20is%20mask%20with%20the%20language%20selection%20list&In-Reply-To=%3C20120524212914.C40C544782%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:29:14 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001982.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001984.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1983">[ date ]</a>
+ <a href="thread.html#1983">[ thread ]</a>
+ <a href="subject.html#1983">[ subject ]</a>
+ <a href="author.html#1983">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1665">https://bugs.mageia.org/show_bug.cgi?id=1665</A>
+
+--- Comment #3 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 23:29:14 CEST ---
+Navbar changed. A priori, the problem stays so far. I may experiment with CSS
+media queries.
+
+--
+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="001982.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001984.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1983">[ date ]</a>
+ <a href="thread.html#1983">[ thread ]</a>
+ <a href="subject.html#1983">[ subject ]</a>
+ <a href="author.html#1983">[ 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/2012-May/001984.html b/zarb-ml/mageia-webteam/2012-May/001984.html
new file mode 100644
index 000000000..7f238e415
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001984.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+ </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%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20120524213051.92DA744826%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="001983.html">
+ <LINK REL="Next" HREF="001985.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201945%5D%20When%20language%20is%20set%20at%20French%2C%0A%20links%20%22forum%22%20on%20different%20page%20may%20send%20to%20different%20forums.&In-Reply-To=%3C20120524213051.92DA744826%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:30:51 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001983.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="001985.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1984">[ date ]</a>
+ <a href="thread.html#1984">[ thread ]</a>
+ <a href="subject.html#1984">[ subject ]</a>
+ <a href="author.html#1984">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1945">https://bugs.mageia.org/show_bug.cgi?id=1945</A>
+
+--- Comment #10 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 23:30:51 CEST ---
+Could you check the situation (www.m.o got some updates) and report existing
+issues or close this bug please? 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="001983.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A></li>
+ <LI>Next message: <A HREF="001985.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1984">[ date ]</a>
+ <a href="thread.html#1984">[ thread ]</a>
+ <a href="subject.html#1984">[ subject ]</a>
+ <a href="author.html#1984">[ 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/2012-May/001985.html b/zarb-ml/mageia-webteam/2012-May/001985.html
new file mode 100644
index 000000000..89849835f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001985.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+ </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%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20120524213125.3B57544777%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="001984.html">
+ <LINK REL="Next" HREF="001986.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201762%5D%20Missing%20informations%20on%20download%0A%20webpage%20%28DVD%20free/CD%20non-free%29&In-Reply-To=%3C20120524213125.3B57544777%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:31:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001984.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001986.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1985">[ date ]</a>
+ <a href="thread.html#1985">[ thread ]</a>
+ <a href="subject.html#1985">[ subject ]</a>
+ <a href="author.html#1985">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1762">https://bugs.mageia.org/show_bug.cgi?id=1762</A>
+
+--- Comment #8 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-24 23:31:25 CEST ---
+Mageia 2 got released. How does it compare now?
+
+--
+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="001984.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A></li>
+ <LI>Next message: <A HREF="001986.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1985">[ date ]</a>
+ <a href="thread.html#1985">[ thread ]</a>
+ <a href="subject.html#1985">[ subject ]</a>
+ <a href="author.html#1985">[ 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/2012-May/001986.html b/zarb-ml/mageia-webteam/2012-May/001986.html
new file mode 100644
index 000000000..e8a71dd6b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001986.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+ </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%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120524214702.AC745443B3%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="001985.html">
+ <LINK REL="Next" HREF="001987.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click</H1>
+ <B>Patricia Fraser</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120524214702.AC745443B3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:47:02 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001985.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001987.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1986">[ date ]</a>
+ <a href="thread.html#1986">[ thread ]</a>
+ <a href="subject.html#1986">[ subject ]</a>
+ <a href="author.html#1986">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4016">https://bugs.mageia.org/show_bug.cgi?id=4016</A>
+
+--- Comment #5 from Patricia Fraser &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">trish at thefrasers.org</A>&gt; 2012-05-24 23:47:02 CEST ---
+Alas, yes - clicking on the link directly gets me a 403.
+
+--
+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="001985.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A></li>
+ <LI>Next message: <A HREF="001987.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1986">[ date ]</a>
+ <a href="thread.html#1986">[ thread ]</a>
+ <a href="subject.html#1986">[ subject ]</a>
+ <a href="author.html#1986">[ 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/2012-May/001987.html b/zarb-ml/mageia-webteam/2012-May/001987.html
new file mode 100644
index 000000000..7caac2df0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001987.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+ </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%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120524214806.920BC44576%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="001986.html">
+ <LINK REL="Next" HREF="001988.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click</H1>
+ <B>Patricia Fraser</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120524214806.920BC44576%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:48:06 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001986.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001988.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1987">[ date ]</a>
+ <a href="thread.html#1987">[ thread ]</a>
+ <a href="subject.html#1987">[ subject ]</a>
+ <a href="author.html#1987">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4016">https://bugs.mageia.org/show_bug.cgi?id=4016</A>
+
+--- Comment #6 from Patricia Fraser &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">trish at thefrasers.org</A>&gt; 2012-05-24 23:48:06 CEST ---
+This happens both from the Charter page and from the link above on this
+Bugzilla page, by the way.
+
+--
+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="001986.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001988.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1987">[ date ]</a>
+ <a href="thread.html#1987">[ thread ]</a>
+ <a href="subject.html#1987">[ subject ]</a>
+ <a href="author.html#1987">[ 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/2012-May/001988.html b/zarb-ml/mageia-webteam/2012-May/001988.html
new file mode 100644
index 000000000..6dcea1dc0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001988.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] SSL for checksums
+ </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%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20120524215328.D601C44826%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="001987.html">
+ <LINK REL="Next" HREF="001989.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] SSL for checksums</H1>
+ <B>Jeff Robins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20120524215328.D601C44826%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 24 23:53:28 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001987.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001989.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1988">[ date ]</a>
+ <a href="thread.html#1988">[ thread ]</a>
+ <a href="subject.html#1988">[ subject ]</a>
+ <a href="author.html#1988">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+
+Jeff Robins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jeffrobinsSAE at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jeffrobinsSAE at gmail.com</A>
+
+--- Comment #6 from Jeff Robins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">jeffrobinsSAE at gmail.com</A>&gt; 2012-05-24 23:53:28 CEST ---
+This is really easy with PHP. I have example code somewhere, but I there
+should be plenty of code on the net.
+
+I'm not sure if there is a simple way to do it with Apache unless you use a
+scripting language.
+
+--
+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="001987.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001989.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1988">[ date ]</a>
+ <a href="thread.html#1988">[ thread ]</a>
+ <a href="subject.html#1988">[ subject ]</a>
+ <a href="author.html#1988">[ 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/2012-May/001989.html b/zarb-ml/mageia-webteam/2012-May/001989.html
new file mode 100644
index 000000000..7a3c3dde3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001989.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 1512] SSL for checksums
+ </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%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20120525074056.EB3893FA3B%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="001988.html">
+ <LINK REL="Next" HREF="001990.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 1512] SSL for checksums</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%201512%5D%20SSL%20for%20checksums&In-Reply-To=%3C20120525074056.EB3893FA3B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 1512] SSL for checksums">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 25 09:40:56 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001988.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001990.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1989">[ date ]</a>
+ <a href="thread.html#1989">[ thread ]</a>
+ <a href="subject.html#1989">[ subject ]</a>
+ <a href="author.html#1989">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=1512">https://bugs.mageia.org/show_bug.cgi?id=1512</A>
+
+--- Comment #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-25 09:40:56 CEST ---
+I know that. :-p What I mean is that the user flow is the following:
+
+a) lands on home, goes to downloads page
+b) lands on downloads page, click to get a specific ISO/file
+c) langs on the download page redirector which shows various info about
+download, including the checksums, then redirects in JS to the very file to
+download.
+
+We can't force/control whether the user is using https in a) and b). We could
+force the link to https for c) but is it worth the load? (why not, there's
+plenty of things to improve the website perf anyway).
+
+--
+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="001988.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001990.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1989">[ date ]</a>
+ <a href="thread.html#1989">[ thread ]</a>
+ <a href="subject.html#1989">[ subject ]</a>
+ <a href="author.html#1989">[ 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/2012-May/001990.html b/zarb-ml/mageia-webteam/2012-May/001990.html
new file mode 100644
index 000000000..149015f4b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001990.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+ </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%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120525090707.8169B4471D%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="001989.html">
+ <LINK REL="Next" HREF="001991.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204016%5D%20Public%20link%20produces%20%22403%20Forbidden%22%20on%0A%09click&In-Reply-To=%3C20120525090707.8169B4471D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 25 11:07:07 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001989.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001991.html">[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1990">[ date ]</a>
+ <a href="thread.html#1990">[ thread ]</a>
+ <a href="subject.html#1990">[ subject ]</a>
+ <a href="author.html#1990">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4016">https://bugs.mageia.org/show_bug.cgi?id=4016</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|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #7 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-25 11:07:07 CEST ---
+Oh right. Sorry. Thanks. 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="001989.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A></li>
+ <LI>Next message: <A HREF="001991.html">[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1990">[ date ]</a>
+ <a href="thread.html#1990">[ thread ]</a>
+ <a href="subject.html#1990">[ subject ]</a>
+ <a href="author.html#1990">[ 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/2012-May/001991.html b/zarb-ml/mageia-webteam/2012-May/001991.html
new file mode 100644
index 000000000..5fcf0b65e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001991.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name
+ </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%204876%5D%20rename%20%22boot.iso%22%20to%20a%20better%20name&In-Reply-To=%3C20120525091339.CEC5C44760%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="001990.html">
+ <LINK REL="Next" HREF="001992.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204876%5D%20rename%20%22boot.iso%22%20to%20a%20better%20name&In-Reply-To=%3C20120525091339.CEC5C44760%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 25 11:13:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001990.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001992.html">[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1991">[ date ]</a>
+ <a href="thread.html#1991">[ thread ]</a>
+ <a href="subject.html#1991">[ subject ]</a>
+ <a href="author.html#1991">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4876">https://bugs.mageia.org/show_bug.cgi?id=4876</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|Downloaded net install iso |rename &quot;boot.iso&quot; to a
+ |is always named &quot;boot.iso&quot; |better name
+ Product|Websites |Mageia
+ Version|trunk |Cauldron
+ Status|ASSIGNED |NEW
+ Severity|minor |enhancement
+ Component|www.mageia.org |Release (media or process)
+ AssignedTo|<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">bugsquad at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ RPM Package| |drakx-installer-binaries
+
+--- Comment #6 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-25 11:13:39 CEST ---
+ok
+
+--
+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="001990.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A></li>
+ <LI>Next message: <A HREF="001992.html">[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1991">[ date ]</a>
+ <a href="thread.html#1991">[ thread ]</a>
+ <a href="subject.html#1991">[ subject ]</a>
+ <a href="author.html#1991">[ 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/2012-May/001992.html b/zarb-ml/mageia-webteam/2012-May/001992.html
new file mode 100644
index 000000000..266a98bc5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001992.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report
+ </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%206084%5D%20%5BNew%5D%20Design%20an%20up-to-date%20graphical%0A%09donation%20bar%20report&In-Reply-To=%3Cbug-6084-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="001991.html">
+ <LINK REL="Next" HREF="001994.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206084%5D%20%5BNew%5D%20Design%20an%20up-to-date%20graphical%0A%09donation%20bar%20report&In-Reply-To=%3Cbug-6084-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 25 14:56:17 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001991.html">[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name
+</A></li>
+ <LI>Next message: <A HREF="001994.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1992">[ date ]</a>
+ <a href="thread.html#1992">[ thread ]</a>
+ <a href="subject.html#1992">[ subject ]</a>
+ <a href="author.html#1992">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6084">https://bugs.mageia.org/show_bug.cgi?id=6084</A>
+
+ Summary: Design an up-to-date graphical donation bar report
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ 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">rdalverny at gmail.com</A>
+
+
+Donations to the project are possible from the website
+(<A HREF="http://www.mageia.org/en/donate/">http://www.mageia.org/en/donate/</A>).
+
+A financial report is available from <A HREF="http://www.mageia.org/en/about/reports/.">http://www.mageia.org/en/about/reports/.</A>
+
+However, the whole thing is not very informative. We should have a way to
+define:
+ - a donation target (amount to collect to a given date), with target
+assignements;
+ - current progress;
+ - have a simple grahical bar reporting the progress.
+
+So there's two things here:
+ - design the bar and implement it in HTML/CSS (requirement: no flash, no img,
+only CSS)
+ - design and implement a way to manage incoming donations more automatically.
+
+--
+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="001991.html">[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name
+</A></li>
+ <LI>Next message: <A HREF="001994.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1992">[ date ]</a>
+ <a href="thread.html#1992">[ thread ]</a>
+ <a href="subject.html#1992">[ subject ]</a>
+ <a href="author.html#1992">[ 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/2012-May/001993.html b/zarb-ml/mageia-webteam/2012-May/001993.html
new file mode 100644
index 000000000..9fcbe739c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001993.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6037] The french page is in english
+ </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%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120525133555.9B3A0447C7%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="001969.html">
+ <LINK REL="Next" HREF="001940.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6037] The french page is in english</H1>
+ <B>R&#195;&#169;mi Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206037%5D%20The%20french%20page%20is%20in%20english&In-Reply-To=%3C20120525133555.9B3A0447C7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6037] The french page is in english">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 25 15:35:55 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001969.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001940.html">[Mageia-webteam] [Bug 6038] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1993">[ date ]</a>
+ <a href="thread.html#1993">[ thread ]</a>
+ <a href="subject.html#1993">[ subject ]</a>
+ <a href="author.html#1993">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6037">https://bugs.mageia.org/show_bug.cgi?id=6037</A>
+
+R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>
+
+--- Comment #7 from R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remi at verschelde.fr</A>&gt; 2012-05-25 15:35:55 CEST ---
+Please do not open so many bug reports for a work which is still in progress.
+One bug report with links to all untranslated pages would have been sufficient.
+
+The website translation relies on .lang files that Romain is currently busy
+generating. As of today, some pages can already be translated, see:
+<A HREF="http://www.mageia.org/langs/report.php">http://www.mageia.org/langs/report.php</A> (more information about www localization
+can be found on the mageia-i18n ML[1]).
+
+On a general basis, the process would be to download the French .lang files
+from the Subversion repository[2], to complete the translation and to send it
+back to the mageia-i18n ML. Since we are a numerous team, we could also put the
+content of the .lang files on bn.parinux.org so that the translations can be
+proofread by other translators.
+
+[1] <A HREF="https://www.mageia.org/pipermail/mageia-i18n/2012-May/002884.html">https://www.mageia.org/pipermail/mageia-i18n/2012-May/002884.html</A>
+[2] <A HREF="http://svnweb.mageia.org/web/www/trunk/langs/fr/">http://svnweb.mageia.org/web/www/trunk/langs/fr/</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="001969.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A></li>
+ <LI>Next message: <A HREF="001940.html">[Mageia-webteam] [Bug 6038] [New] The french page is in english
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1993">[ date ]</a>
+ <a href="thread.html#1993">[ thread ]</a>
+ <a href="subject.html#1993">[ subject ]</a>
+ <a href="author.html#1993">[ 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/2012-May/001994.html b/zarb-ml/mageia-webteam/2012-May/001994.html
new file mode 100644
index 000000000..3f7fcc134
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001994.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+ </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%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120525203805.CE4AC448AB%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="001992.html">
+ <LINK REL="Next" HREF="001995.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204555%5D%20Migrate%20page%20does%20not%20contain%0A%20instructions%20how%20to%20run%20mgaapplet&In-Reply-To=%3C20120525203805.CE4AC448AB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri May 25 22:38:05 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001992.html">[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report
+</A></li>
+ <LI>Next message: <A HREF="001995.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1994">[ date ]</a>
+ <a href="thread.html#1994">[ thread ]</a>
+ <a href="subject.html#1994">[ subject ]</a>
+ <a href="author.html#1994">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4555">https://bugs.mageia.org/show_bug.cgi?id=4555</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |OLD
+
+--- Comment #6 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-25 22:38:05 CEST ---
+not valid anymore
+
+--
+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="001992.html">[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report
+</A></li>
+ <LI>Next message: <A HREF="001995.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1994">[ date ]</a>
+ <a href="thread.html#1994">[ thread ]</a>
+ <a href="subject.html#1994">[ subject ]</a>
+ <a href="author.html#1994">[ 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/2012-May/001995.html b/zarb-ml/mageia-webteam/2012-May/001995.html
new file mode 100644
index 000000000..7704d96d0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001995.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+ </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%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120526110329.1D203449B0%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="001994.html">
+ <LINK REL="Next" HREF="001996.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%204979%5D%20can%27t%20connect%20mirror%20for%20the%20update%0A%09after%20the%20install&In-Reply-To=%3C20120526110329.1D203449B0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 26 13:03:29 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001994.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001996.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1995">[ date ]</a>
+ <a href="thread.html#1995">[ thread ]</a>
+ <a href="subject.html#1995">[ subject ]</a>
+ <a href="author.html#1995">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=4979">https://bugs.mageia.org/show_bug.cgi?id=4979</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Keywords| |NEEDINFO
+
+--- Comment #7 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-05-26 13:03:29 CEST ---
+Hi,
+
+This bug was filed against cauldron, but we do not have cauldron at the moment.
+
+Please report whether this bug is still valid for Mageia 2.
+
+Thanks :)
+
+Cheers,
+marja
+
+--
+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="001994.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A></li>
+ <LI>Next message: <A HREF="001996.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1995">[ date ]</a>
+ <a href="thread.html#1995">[ thread ]</a>
+ <a href="subject.html#1995">[ subject ]</a>
+ <a href="author.html#1995">[ 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/2012-May/001996.html b/zarb-ml/mageia-webteam/2012-May/001996.html
new file mode 100644
index 000000000..8fc3cfacf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001996.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20120526110418.B306D44C2E%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="001995.html">
+ <LINK REL="Next" HREF="001997.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20120526110418.B306D44C2E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 26 13:04:18 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001995.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001997.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1996">[ date ]</a>
+ <a href="thread.html#1996">[ thread ]</a>
+ <a href="subject.html#1996">[ subject ]</a>
+ <a href="author.html#1996">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Keywords| |NEEDINFO
+
+--- Comment #15 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-05-26 13:04:18 CEST ---
+Hi,
+
+This bug was filed against cauldron, but we do not have cauldron at the moment.
+
+Please report whether this bug is still valid for Mageia 2.
+
+Thanks :)
+
+Cheers,
+marja
+
+--
+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="001995.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A></li>
+ <LI>Next message: <A HREF="001997.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1996">[ date ]</a>
+ <a href="thread.html#1996">[ thread ]</a>
+ <a href="subject.html#1996">[ subject ]</a>
+ <a href="author.html#1996">[ 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/2012-May/001997.html b/zarb-ml/mageia-webteam/2012-May/001997.html
new file mode 100644
index 000000000..b193a0b0f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001997.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20120526153721.B8F7C44985%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="001996.html">
+ <LINK REL="Next" HREF="001998.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20120526153721.B8F7C44985%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat May 26 17:37:21 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001996.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="001998.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1997">[ date ]</a>
+ <a href="thread.html#1997">[ thread ]</a>
+ <a href="subject.html#1997">[ subject ]</a>
+ <a href="author.html#1997">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</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
+----------------------------------------------------------------------------
+ Product|Mageia |Infrastructure
+ Version|Cauldron |unspecified
+ Severity|normal |enhancement
+ Component|RPM Packages |Others
+ AssignedTo|<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>
+
+--- Comment #16 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-26 17:37:21 CEST ---
+This is not relevant to Cauldron only, changing product.
+
+--
+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="001996.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="001998.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1997">[ date ]</a>
+ <a href="thread.html#1997">[ thread ]</a>
+ <a href="subject.html#1997">[ subject ]</a>
+ <a href="author.html#1997">[ 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/2012-May/001998.html b/zarb-ml/mageia-webteam/2012-May/001998.html
new file mode 100644
index 000000000..0e3c3def7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001998.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120527095037.26E8D4467F%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="001997.html">
+ <LINK REL="Next" HREF="001999.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120527095037.26E8D4467F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 27 11:50:37 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001997.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="001999.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1998">[ date ]</a>
+ <a href="thread.html#1998">[ thread ]</a>
+ <a href="subject.html#1998">[ subject ]</a>
+ <a href="author.html#1998">[ 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 #30 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-05-27 11:50:37 CEST ---
+is it possible to implement bugzilla 4 soon? now that mageia 2 is ready and
+cauldron will open again, we could have the feature that allows to handle bugs
+that affect different version of the distro, without dulpicating them manually.
+
+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="001997.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="001999.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1998">[ date ]</a>
+ <a href="thread.html#1998">[ thread ]</a>
+ <a href="subject.html#1998">[ subject ]</a>
+ <a href="author.html#1998">[ 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/2012-May/001999.html b/zarb-ml/mageia-webteam/2012-May/001999.html
new file mode 100644
index 000000000..7e91cfbc6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/001999.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120527100615.119CE44776%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="001998.html">
+ <LINK REL="Next" HREF="002000.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.2&In-Reply-To=%3C20120527100615.119CE44776%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun May 27 12:06:15 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001998.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002000.html">[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1999">[ date ]</a>
+ <a href="thread.html#1999">[ thread ]</a>
+ <a href="subject.html#1999">[ subject ]</a>
+ <a href="author.html#1999">[ 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>
+
+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">boklm at mars-attacks.org</A>
+
+--- Comment #31 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-05-27 12:06:15 CEST ---
+It is in TODO list.
+
+--
+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="001998.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002000.html">[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1999">[ date ]</a>
+ <a href="thread.html#1999">[ thread ]</a>
+ <a href="subject.html#1999">[ subject ]</a>
+ <a href="author.html#1999">[ 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/2012-May/002000.html b/zarb-ml/mageia-webteam/2012-May/002000.html
new file mode 100644
index 000000000..a328d03da
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002000.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20%5BNew%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3Cbug-6121-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="001999.html">
+ <LINK REL="Next" HREF="002001.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20%5BNew%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3Cbug-6121-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 28 00:09:24 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001999.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002001.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2000">[ date ]</a>
+ <a href="thread.html#2000">[ thread ]</a>
+ <a href="subject.html#2000">[ subject ]</a>
+ <a href="author.html#2000">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</A>
+
+ Summary: CLI upgrade Mageia1 to Mageia2
+ Product: Websites
+ Version: trunk
+ Platform: x86_64
+ 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">kbergen at telus.net</A>
+
+
+Description of problem:
+More than one pass needed for CLI upgrade.
+
+
+How reproducible: Upgrade using the suggested
+&quot;urpmi --replacefiles --auto-update --auto&quot;
+at a CLI.
+
+
+Steps to Reproduce:
+1.Change repositories from Mageia1 to Mageia2
+2.Run
+&quot;urpmi --replacefiles --auto-update --auto&quot;
+as per instructions
+ In my case 316 packages were upgraded then urpmi restarted and another 2659
+started upgrading which is normal behaviour.
+ I noticed that several times I would see Installing and a list of packages
+downloaded but no Preparing and no actual installing, it would just go on to
+downloading the next series of packages.
+3.Run
+&quot;urpmi --replacefiles --auto-update --auto&quot;
+again.
+ Again in my case, 1240 packages were upgraded. These packages appeared to be
+cached as they started installing with no downloading.
+
+
+It is my belief that the CLI upgrade instructions should be changed to suggest
+running
+&quot;urpmi --replacefiles --auto-update --auto&quot;
+at least twice.
+
+--
+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="001999.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002001.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2000">[ date ]</a>
+ <a href="thread.html#2000">[ thread ]</a>
+ <a href="subject.html#2000">[ subject ]</a>
+ <a href="author.html#2000">[ 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/2012-May/002001.html b/zarb-ml/mageia-webteam/2012-May/002001.html
new file mode 100644
index 000000000..4bd82ec58
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002001.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120527232639.C548344922%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="002000.html">
+ <LINK REL="Next" HREF="002002.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Florian Hubold</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120527232639.C548344922%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 28 01:26:39 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002000.html">[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002002.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2001">[ date ]</a>
+ <a href="thread.html#2001">[ thread ]</a>
+ <a href="subject.html#2001">[ subject ]</a>
+ <a href="author.html#2001">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</A>
+
+Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>
+
+--- Comment #1 from Florian Hubold &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doktor5000 at arcor.de</A>&gt; 2012-05-28 01:26:39 CEST ---
+For reference, <A HREF="http://www.mageia.org/en/1/migrate/">http://www.mageia.org/en/1/migrate/</A> should be copied/updated for
+mga2
+Or is there some other documentation you are referring to?
+
+--
+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="002000.html">[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002002.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2001">[ date ]</a>
+ <a href="thread.html#2001">[ thread ]</a>
+ <a href="subject.html#2001">[ subject ]</a>
+ <a href="author.html#2001">[ 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/2012-May/002002.html b/zarb-ml/mageia-webteam/2012-May/002002.html
new file mode 100644
index 000000000..3f7517b53
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002002.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120528004231.960E9448DD%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="002001.html">
+ <LINK REL="Next" HREF="002003.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120528004231.960E9448DD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 28 02:42:31 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002001.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002003.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2002">[ date ]</a>
+ <a href="thread.html#2002">[ thread ]</a>
+ <a href="subject.html#2002">[ subject ]</a>
+ <a href="author.html#2002">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</A>
+
+--- Comment #2 from Ken Bergen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>&gt; 2012-05-28 02:42:31 CEST ---
+<A HREF="https://wiki.mageia.org/en/Mageia_2_Release_Notes#Upgrading_from_Mageia_1">https://wiki.mageia.org/en/Mageia_2_Release_Notes#Upgrading_from_Mageia_1</A>
+
+But I see that that's in the wiki and I can update that myself.
+
+Of course when <A HREF="http://www.mageia.org/en/1/migrate/">http://www.mageia.org/en/1/migrate/</A> is copied/updated to
+/2/upgrade/ the advice to run the command twice should be included there.
+
+--
+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="002001.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002003.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2002">[ date ]</a>
+ <a href="thread.html#2002">[ thread ]</a>
+ <a href="subject.html#2002">[ subject ]</a>
+ <a href="author.html#2002">[ 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/2012-May/002003.html b/zarb-ml/mageia-webteam/2012-May/002003.html
new file mode 100644
index 000000000..cdc75aff0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002003.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120528092059.661B944942%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="002002.html">
+ <LINK REL="Next" HREF="002006.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120528092059.661B944942%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 28 11:20:59 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002002.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002006.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2003">[ date ]</a>
+ <a href="thread.html#2003">[ thread ]</a>
+ <a href="subject.html#2003">[ subject ]</a>
+ <a href="author.html#2003">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</A>
+
+--- Comment #3 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel at hiebel.eu</A>&gt; 2012-05-28 11:20:59 CEST ---
+this seems not a but for me,
+
+for 2. this is normal since urpmi install first the needed package for urpmi
+
+for 3. have you log ? I'm pretty there was a fail
+
+--
+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="002002.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002006.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2003">[ date ]</a>
+ <a href="thread.html#2003">[ thread ]</a>
+ <a href="subject.html#2003">[ subject ]</a>
+ <a href="author.html#2003">[ 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/2012-May/002004.html b/zarb-ml/mageia-webteam/2012-May/002004.html
new file mode 100644
index 000000000..5a71e63f4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002004.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on
+ </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%206132%5D%20%5BNew%5D%20nav%20bar%20must%20not%20shake%20the%20page%0A%09it%27s%20on&In-Reply-To=%3Cbug-6132-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="002006.html">
+ <LINK REL="Next" HREF="002005.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206132%5D%20%5BNew%5D%20nav%20bar%20must%20not%20shake%20the%20page%0A%09it%27s%20on&In-Reply-To=%3Cbug-6132-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 28 15:34:41 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002006.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002005.html">[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2004">[ date ]</a>
+ <a href="thread.html#2004">[ thread ]</a>
+ <a href="subject.html#2004">[ subject ]</a>
+ <a href="author.html#2004">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6132">https://bugs.mageia.org/show_bug.cgi?id=6132</A>
+
+ Summary: nav bar must not shake the page it's on
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: nav.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>
+
+
+When inserted in JS mode, the nav bar slides down to appear in the page, after
+the page is loaded (defined behaviour).
+
+It makes the whole page slide/move once loaded and is not pleasing neither easy
+to the eye.
+
+--
+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="002006.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002005.html">[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2004">[ date ]</a>
+ <a href="thread.html#2004">[ thread ]</a>
+ <a href="subject.html#2004">[ subject ]</a>
+ <a href="author.html#2004">[ 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/2012-May/002005.html b/zarb-ml/mageia-webteam/2012-May/002005.html
new file mode 100644
index 000000000..c04ac510a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002005.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on
+ </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%206132%5D%20nav%20bar%20must%20not%20shake%20the%20page%20it%27s%20on&In-Reply-To=%3C20120528133651.EF17B448AB%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="002004.html">
+ <LINK REL="Next" HREF="002007.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206132%5D%20nav%20bar%20must%20not%20shake%20the%20page%20it%27s%20on&In-Reply-To=%3C20120528133651.EF17B448AB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 28 15:36:51 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002004.html">[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on
+</A></li>
+ <LI>Next message: <A HREF="002007.html">[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2005">[ date ]</a>
+ <a href="thread.html#2005">[ thread ]</a>
+ <a href="subject.html#2005">[ subject ]</a>
+ <a href="author.html#2005">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6132">https://bugs.mageia.org/show_bug.cgi?id=6132</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
+----------------------------------------------------------------------------
+ Platform|i586 |All
+ Status|NEW |ASSIGNED
+ Severity|normal |minor
+ AssignedTo|<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">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; 2012-05-28 15:36:52 CEST ---
+Two ways to fix that at least:
+ * use a server-side script to insert the navbar directly from the page;
+requires some background work and caching;
+ * change the receiving page style, so that there is a reserved, fixed space
+for the nav bar to load afterwise; the already loaded content will not move
+then.
+
+--
+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="002004.html">[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on
+</A></li>
+ <LI>Next message: <A HREF="002007.html">[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2005">[ date ]</a>
+ <a href="thread.html#2005">[ thread ]</a>
+ <a href="subject.html#2005">[ subject ]</a>
+ <a href="author.html#2005">[ 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/2012-May/002006.html b/zarb-ml/mageia-webteam/2012-May/002006.html
new file mode 100644
index 000000000..c52ebe21f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002006.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+ </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%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120528193013.DC68F44949%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="002003.html">
+ <LINK REL="Next" HREF="002004.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206121%5D%20CLI%20upgrade%20Mageia1%20to%20Mageia2&In-Reply-To=%3C20120528193013.DC68F44949%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 28 21:30:13 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002003.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002004.html">[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2006">[ date ]</a>
+ <a href="thread.html#2006">[ thread ]</a>
+ <a href="subject.html#2006">[ subject ]</a>
+ <a href="author.html#2006">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6121">https://bugs.mageia.org/show_bug.cgi?id=6121</A>
+
+--- Comment #4 from Ken Bergen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>&gt; 2012-05-28 21:30:13 CEST ---
+(In reply to comment #3)
+&gt;<i> this seems not a but for me,
+</I>&gt;<i>
+</I>&gt;<i> for 2. this is normal since urpmi install first the needed package for urpmi
+</I>&gt;<i>
+</I>&gt;<i> for 3. have you log ? I'm pretty there was a fail
+</I>
+For 2, As I said 316 packages were installed then urpmi restarted saying it
+was installing 2659 packages. It only installed 1419 of those and ended without
+an error message.
+
+For 3. Unfortunately I have no logs as I re-installed Mageia1.
+
+I'll do a clean install of 1 on a new disc then upgrade to 2 in the next days
+and attach any error logs I find here.
+
+--
+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="002003.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A></li>
+ <LI>Next message: <A HREF="002004.html">[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2006">[ date ]</a>
+ <a href="thread.html#2006">[ thread ]</a>
+ <a href="subject.html#2006">[ subject ]</a>
+ <a href="author.html#2006">[ 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/2012-May/002007.html b/zarb-ml/mageia-webteam/2012-May/002007.html
new file mode 100644
index 000000000..5d104f081
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002007.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank 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%206139%5D%20%5BNew%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%0A%20opera%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3Cbug-6139-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="002005.html">
+ <LINK REL="Next" HREF="002008.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206139%5D%20%5BNew%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%0A%20opera%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3Cbug-6139-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 28 23:28:44 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002005.html">[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on
+</A></li>
+ <LI>Next message: <A HREF="002008.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2007">[ date ]</a>
+ <a href="thread.html#2007">[ thread ]</a>
+ <a href="subject.html#2007">[ subject ]</a>
+ <a href="author.html#2007">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6139">https://bugs.mageia.org/show_bug.cgi?id=6139</A>
+
+ Summary: Having &lt;style after &lt;body causes opera to display the
+ page as a blank page.
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="https://wiki.mageia.org/en/Cauldron">https://wiki.mageia.org/en/Cauldron</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">davidwhodgins at gmail.com</A>
+
+
+After loading the above page in opera 11.64, the page displays blank.
+
+In order to view the page in opera, I have right click on the page,
+select view source (which I have configured to use gedit), then
+move the lines from &lt;style&gt; to &lt;/style, that occur just after
+the &lt;body class=... line, to be before the &lt;/head&gt; line. This seems
+to happen with most wiki pages, so I guess there is a template used
+to create new pages, that contains this error.
+
+style sections are supposed to be in the head section, not the body section.
+
+--
+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="002005.html">[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on
+</A></li>
+ <LI>Next message: <A HREF="002008.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2007">[ date ]</a>
+ <a href="thread.html#2007">[ thread ]</a>
+ <a href="subject.html#2007">[ subject ]</a>
+ <a href="author.html#2007">[ 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/2012-May/002008.html b/zarb-ml/mageia-webteam/2012-May/002008.html
new file mode 100644
index 000000000..59d8ee609
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002008.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank 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%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120528215318.B02E044804%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="002007.html">
+ <LINK REL="Next" HREF="002009.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120528215318.B02E044804%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon May 28 23:53:18 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002007.html">[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002009.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2008">[ date ]</a>
+ <a href="thread.html#2008">[ thread ]</a>
+ <a href="subject.html#2008">[ subject ]</a>
+ <a href="author.html#2008">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6139">https://bugs.mageia.org/show_bug.cgi?id=6139</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; 2012-05-28 23:53:18 CEST ---
+(In reply to comment #0)
+&gt;<i> style sections are supposed to be in the head section, not the body section.
+</I>
+Indeed. But a browser breaking on this is likely to misrender a lot of sites;
+actually, that's the first time I hear about a browser that strict.
+
+Does it break on <A HREF="http://www.mageia.org/en/downloads/">http://www.mageia.org/en/downloads/</A> as well?
+
+As for fixing this very point (style in body), agreed. There's a pending update
+on the navbar that changes that. Or I can push a fix, but not before Wednesday
+evening.
+
+--
+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="002007.html">[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002009.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2008">[ date ]</a>
+ <a href="thread.html#2008">[ thread ]</a>
+ <a href="subject.html#2008">[ subject ]</a>
+ <a href="author.html#2008">[ 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/2012-May/002009.html b/zarb-ml/mageia-webteam/2012-May/002009.html
new file mode 100644
index 000000000..145e645ef
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002009.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank 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%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120529060030.5CD954483A%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="002008.html">
+ <LINK REL="Next" HREF="002010.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.</H1>
+ <B>Remco Rijnders</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120529060030.5CD954483A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 29 08:00:30 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002008.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002010.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2009">[ date ]</a>
+ <a href="thread.html#2009">[ thread ]</a>
+ <a href="subject.html#2009">[ subject ]</a>
+ <a href="author.html#2009">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6139">https://bugs.mageia.org/show_bug.cgi?id=6139</A>
+
+Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">anssi.hannula at iki.fi</A>
+
+--- Comment #2 from Remco Rijnders &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">remco at webconquest.com</A>&gt; 2012-05-29 08:00:30 CEST ---
+Dave, would you be willing to file a report for this with Opera?
+
+--
+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="002008.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002010.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2009">[ date ]</a>
+ <a href="thread.html#2009">[ thread ]</a>
+ <a href="subject.html#2009">[ subject ]</a>
+ <a href="author.html#2009">[ 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/2012-May/002010.html b/zarb-ml/mageia-webteam/2012-May/002010.html
new file mode 100644
index 000000000..11cbbe333
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002010.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank 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%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120529071537.128C9448A0%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="002009.html">
+ <LINK REL="Next" HREF="002013.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120529071537.128C9448A0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 29 09:15:37 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002009.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002013.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2010">[ date ]</a>
+ <a href="thread.html#2010">[ thread ]</a>
+ <a href="subject.html#2010">[ subject ]</a>
+ <a href="author.html#2010">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6139">https://bugs.mageia.org/show_bug.cgi?id=6139</A>
+
+--- Comment #3 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2012-05-29 09:15:37 CEST ---
+Bug DSK-364780 submitted to opera.
+
+<A HREF="http://www.mageia.org/en/downloads/">http://www.mageia.org/en/downloads/</A> displays ok. Looking at the
+source, I'm very surprised, as it also has style after start of
+body. Perhaps the comment in between the body and style tags
+triggers the bug in opera.
+
+I mentioned in the bug report to opera that the site
+<A HREF="https://wiki.mageia.org/en/Cauldron">https://wiki.mageia.org/en/Cauldron</A> would likely be fixed
+on Wednesday, and included a link to this bug report.
+
+I've gotten used to switching to firefox, for most wiki sites,
+and only today took the time to figure out what the problem was.
+It isn't only Mageia wiki sites I've had trouble with, and not
+all wiki pages on Mageia show the problem.
+
+--
+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="002009.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002013.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2010">[ date ]</a>
+ <a href="thread.html#2010">[ thread ]</a>
+ <a href="subject.html#2010">[ subject ]</a>
+ <a href="author.html#2010">[ 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/2012-May/002011.html b/zarb-ml/mageia-webteam/2012-May/002011.html
new file mode 100644
index 000000000..4f33fa407
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002011.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6150] [New] Community page display in IE8
+ </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%206150%5D%20%5BNew%5D%20Community%20page%20display%20in%20IE8&In-Reply-To=%3Cbug-6150-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="002015.html">
+ <LINK REL="Next" HREF="002012.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6150] [New] Community page display in IE8</H1>
+ <B>Carolyn Rowse</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206150%5D%20%5BNew%5D%20Community%20page%20display%20in%20IE8&In-Reply-To=%3Cbug-6150-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 6150] [New] Community page display in IE8">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 29 14:51:46 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002015.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002012.html">[Mageia-webteam] [Bug 6150] Community page display in IE8
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2011">[ date ]</a>
+ <a href="thread.html#2011">[ thread ]</a>
+ <a href="subject.html#2011">[ subject ]</a>
+ <a href="author.html#2011">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6150">https://bugs.mageia.org/show_bug.cgi?id=6150</A>
+
+ Summary: Community page display in IE8
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ 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">isolde at crowse.plus.com</A>
+
+
+Description of problem:
+
+This is only a small thing, but I thought I'd mention it. Browsing the Mageia
+website from the office, where we have IE8, I noticed that on the Community
+page in the top-left corner where the logo is, there is the official word
+&quot;mageia&quot; and also &quot;Mageia&quot; in a smaller font, one on top of the other.
+
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+View Community web page in IE8
+
+Steps to Reproduce:
+1. go to www.mageia.org/en
+2. click on link to &quot;Community&quot; at bottom of page
+3.
+
+--
+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="002015.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002012.html">[Mageia-webteam] [Bug 6150] Community page display in IE8
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2011">[ date ]</a>
+ <a href="thread.html#2011">[ thread ]</a>
+ <a href="subject.html#2011">[ subject ]</a>
+ <a href="author.html#2011">[ 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/2012-May/002012.html b/zarb-ml/mageia-webteam/2012-May/002012.html
new file mode 100644
index 000000000..b8168b5db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002012.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6150] Community page display in IE8
+ </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%206150%5D%20Community%20page%20display%20in%20IE8&In-Reply-To=%3C20120529152911.889D044957%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="002011.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6150] Community page display in IE8</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206150%5D%20Community%20page%20display%20in%20IE8&In-Reply-To=%3C20120529152911.889D044957%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6150] Community page display in IE8">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue May 29 17:29:11 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002011.html">[Mageia-webteam] [Bug 6150] [New] Community page display in IE8
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2012">[ date ]</a>
+ <a href="thread.html#2012">[ thread ]</a>
+ <a href="subject.html#2012">[ subject ]</a>
+ <a href="author.html#2012">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6150">https://bugs.mageia.org/show_bug.cgi?id=6150</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|NEW |ASSIGNED
+ AssignedTo|<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">rdalverny at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="002011.html">[Mageia-webteam] [Bug 6150] [New] Community page display in IE8
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2012">[ date ]</a>
+ <a href="thread.html#2012">[ thread ]</a>
+ <a href="subject.html#2012">[ subject ]</a>
+ <a href="author.html#2012">[ 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/2012-May/002013.html b/zarb-ml/mageia-webteam/2012-May/002013.html
new file mode 100644
index 000000000..647675b82
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002013.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank 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%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120530140454.0FA8B4498F%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="002010.html">
+ <LINK REL="Next" HREF="002014.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120530140454.0FA8B4498F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed May 30 16:04:54 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002010.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002014.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2013">[ date ]</a>
+ <a href="thread.html#2013">[ thread ]</a>
+ <a href="subject.html#2013">[ subject ]</a>
+ <a href="author.html#2013">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6139">https://bugs.mageia.org/show_bug.cgi?id=6139</A>
+
+--- Comment #4 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-05-30 16:04:53 CEST ---
+(In reply to comment #3)
+&gt;<i> Bug DSK-364780 submitted to opera.
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://www.mageia.org/en/downloads/">http://www.mageia.org/en/downloads/</A> displays ok.
+</I>&gt;<i> [...]
+</I>&gt;<i> It isn't only Mageia wiki sites I've had trouble with, and not
+</I>&gt;<i> all wiki pages on Mageia show the problem.
+</I>
+So it's very unlikely that this (style within body, however wrong it is a
+practice) is the source of the bug.
+
+--
+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="002010.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002014.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2013">[ date ]</a>
+ <a href="thread.html#2013">[ thread ]</a>
+ <a href="subject.html#2013">[ subject ]</a>
+ <a href="author.html#2013">[ 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/2012-May/002014.html b/zarb-ml/mageia-webteam/2012-May/002014.html
new file mode 100644
index 000000000..2d2a4c555
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002014.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank 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%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120530221049.E969F449DE%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="002013.html">
+ <LINK REL="Next" HREF="002015.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120530221049.E969F449DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 31 00:10:49 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002013.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002015.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2014">[ date ]</a>
+ <a href="thread.html#2014">[ thread ]</a>
+ <a href="subject.html#2014">[ subject ]</a>
+ <a href="author.html#2014">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6139">https://bugs.mageia.org/show_bug.cgi?id=6139</A>
+
+--- Comment #5 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2012-05-31 00:10:49 CEST ---
+(In reply to comment #4)
+&gt;<i> So it's very unlikely that this (style within body, however wrong it is a
+</I>&gt;<i> practice) is the source of the bug.
+</I>
+Agreed. While moving the style into the head section does fix it for this
+particular page, figuring out exactly what combination of things triggers
+the bug, isn't going to be easy.
+
+--
+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="002013.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002015.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2014">[ date ]</a>
+ <a href="thread.html#2014">[ thread ]</a>
+ <a href="subject.html#2014">[ subject ]</a>
+ <a href="author.html#2014">[ 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/2012-May/002015.html b/zarb-ml/mageia-webteam/2012-May/002015.html
new file mode 100644
index 000000000..7eada41f0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/002015.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank 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%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120530221248.7BC1A449DE%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="002014.html">
+ <LINK REL="Next" HREF="002011.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.</H1>
+ <B>Dave Hodgins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206139%5D%20Having%20%3Cstyle%20after%20%3Cbody%20causes%20opera%0A%20to%20display%20the%20page%20as%20a%20blank%20page.&In-Reply-To=%3C20120530221248.7BC1A449DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu May 31 00:12:48 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002014.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002011.html">[Mageia-webteam] [Bug 6150] [New] Community page display in IE8
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2015">[ date ]</a>
+ <a href="thread.html#2015">[ thread ]</a>
+ <a href="subject.html#2015">[ subject ]</a>
+ <a href="author.html#2015">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6139">https://bugs.mageia.org/show_bug.cgi?id=6139</A>
+
+--- Comment #6 from Dave Hodgins &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">davidwhodgins at gmail.com</A>&gt; 2012-05-31 00:12:48 CEST ---
+I also see the same problem, and the same fix works for
+<A HREF="https://wiki.mageia.org/en/Testing_procedure_for_libxml2">https://wiki.mageia.org/en/Testing_procedure_for_libxml2</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="002014.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A></li>
+ <LI>Next message: <A HREF="002011.html">[Mageia-webteam] [Bug 6150] [New] Community page display in IE8
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2015">[ date ]</a>
+ <a href="thread.html#2015">[ thread ]</a>
+ <a href="subject.html#2015">[ subject ]</a>
+ <a href="author.html#2015">[ 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/2012-May/author.html b/zarb-ml/mageia-webteam/2012-May/author.html
new file mode 100644
index 000000000..63a358811
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/author.html
@@ -0,0 +1,607 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam May 2012 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>May 2012 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>Fri May 4 19:17:56 CEST 2012</i><br>
+ <b>Ending:</b> <i>Thu May 31 00:12:48 CEST 2012</i><br>
+ <b>Messages:</b> 112<p>
+ <ul>
+
+<LI><A HREF="001998.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1998">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002000.html">[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2000">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002002.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2002">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002006.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2006">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="001931.html">[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page
+</A><A NAME="1931">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<LI><A HREF="001986.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1986">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001987.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1987">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001956.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1956">&nbsp;</A>
+<I>Bogdan Gruescu
+</I>
+
+<LI><A HREF="001970.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1970">&nbsp;</A>
+<I>Bogdan Gruescu
+</I>
+
+<LI><A HREF="001905.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1905">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001906.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1906">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001910.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1910">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001911.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1911">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001933.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1933">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001934.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1934">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001937.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1937">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001944.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A><A NAME="1944">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001951.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1951">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001952.html">[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch
+</A><A NAME="1952">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001971.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1971">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001972.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A><A NAME="1972">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001976.html">[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto
+</A><A NAME="1976">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001991.html">[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name
+</A><A NAME="1991">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001994.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1994">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002003.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2003">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002007.html">[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2007">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002010.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2010">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002014.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2014">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002015.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2015">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002001.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2001">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="001930.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="1930">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001912.html">[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1912">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<LI><A HREF="001914.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1914">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<LI><A HREF="001909.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1909">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001920.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1920">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="001904.html">[Mageia-webteam] [Bug 5751] [New] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1904">&nbsp;</A>
+<I>Italo Ramirez
+</I>
+
+<LI><A HREF="001958.html">[Mageia-webteam] [Bug 6045] the sub-menu isn't in french
+</A><A NAME="1958">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001959.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1959">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001960.html">[Mageia-webteam] [Bug 6044] the sub-menu isn't in french
+</A><A NAME="1960">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001961.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1961">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001962.html">[Mageia-webteam] [Bug 6043] the sub-menu isn't in french
+</A><A NAME="1962">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001963.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1963">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001964.html">[Mageia-webteam] [Bug 6041] The french page is in english and titles in french
+</A><A NAME="1964">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001965.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1965">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001966.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A><A NAME="1966">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001967.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1967">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001968.html">[Mageia-webteam] [Bug 6039] The french page is in english
+</A><A NAME="1968">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001969.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1969">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="002009.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2009">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001950.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1950">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<LI><A HREF="001988.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1988">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<LI><A HREF="002011.html">[Mageia-webteam] [Bug 6150] [New] Community page display in IE8
+</A><A NAME="2011">&nbsp;</A>
+<I>Carolyn Rowse
+</I>
+
+<LI><A HREF="001936.html">[Mageia-webteam] [Bug 6032] [New] a Mageia motto
+</A><A NAME="1936">&nbsp;</A>
+<I>Otto S&#195;&#161;
+</I>
+
+<LI><A HREF="001975.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A><A NAME="1975">&nbsp;</A>
+<I>Otto S&#195;&#161;
+</I>
+
+<LI><A HREF="001916.html">[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar
+</A><A NAME="1916">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="001974.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="1974">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001993.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1993">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001949.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1949">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001999.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1999">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001995.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1995">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001996.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1996">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001907.html">[Mageia-webteam] [Bug 5776] [New] firefox segfaults
+</A><A NAME="1907">&nbsp;</A>
+<I>Forrest White
+</I>
+
+<LI><A HREF="001908.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1908">&nbsp;</A>
+<I>Forrest White
+</I>
+
+<LI><A HREF="001913.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1913">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001915.html">[Mageia-webteam] Web site, a few updates pending, open for comments
+</A><A NAME="1915">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001917.html">[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar
+</A><A NAME="1917">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001918.html">[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar
+</A><A NAME="1918">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001919.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1919">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001921.html">[Mageia-webteam] [Bug 5915] [New] doc.mageia.org
+</A><A NAME="1921">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001922.html">[Mageia-webteam] [Bug 5915] doc.mageia.org
+</A><A NAME="1922">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001924.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1924">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001925.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1925">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001927.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1927">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001929.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1929">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001932.html">[Mageia-webteam] [Bug 5972] 404 error on Chinese about page
+</A><A NAME="1932">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001935.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1935">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001953.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1953">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001954.html">[Mageia-webteam] [Bug 6038] The french page is in english
+</A><A NAME="1954">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001955.html">[Mageia-webteam] [Bug 6042] the sub-menu isn't in french
+</A><A NAME="1955">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001957.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1957">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001973.html">[Mageia-webteam] [Bug 6070] [New] identity-trunk is random
+</A><A NAME="1973">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001977.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1977">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001978.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1978">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001979.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1979">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001980.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1980">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001981.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1981">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001982.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1982">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001983.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1983">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001984.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1984">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001985.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1985">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001989.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1989">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001990.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1990">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001992.html">[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report
+</A><A NAME="1992">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001997.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1997">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002004.html">[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on
+</A><A NAME="2004">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002005.html">[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on
+</A><A NAME="2005">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002008.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2008">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002012.html">[Mageia-webteam] [Bug 6150] Community page display in IE8
+</A><A NAME="2012">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002013.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2013">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001938.html">[Mageia-webteam] [Bug 6036] [New] The french page is in english
+</A><A NAME="1938">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001939.html">[Mageia-webteam] [Bug 6037] [New] The french page is in english
+</A><A NAME="1939">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001940.html">[Mageia-webteam] [Bug 6038] [New] The french page is in english
+</A><A NAME="1940">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001941.html">[Mageia-webteam] [Bug 6039] [New] The french page is in english
+</A><A NAME="1941">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001942.html">[Mageia-webteam] [Bug 6040] [New] The french page is in english
+</A><A NAME="1942">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001943.html">[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french
+</A><A NAME="1943">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001945.html">[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french
+</A><A NAME="1945">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001946.html">[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french
+</A><A NAME="1946">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001947.html">[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french
+</A><A NAME="1947">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001948.html">[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french
+</A><A NAME="1948">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001923.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1923">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001926.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1926">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001928.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1928">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu May 31 00:12:48 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Thu May 31 00:12:56 CEST 2012</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/2012-May/date.html b/zarb-ml/mageia-webteam/2012-May/date.html
new file mode 100644
index 000000000..3b57d489a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/date.html
@@ -0,0 +1,607 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam May 2012 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>May 2012 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>Fri May 4 19:17:56 CEST 2012</i><br>
+ <b>Ending:</b> <i>Thu May 31 00:12:48 CEST 2012</i><br>
+ <b>Messages:</b> 112<p>
+ <ul>
+
+<LI><A HREF="001904.html">[Mageia-webteam] [Bug 5751] [New] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1904">&nbsp;</A>
+<I>Italo Ramirez
+</I>
+
+<LI><A HREF="001905.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1905">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001906.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1906">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001907.html">[Mageia-webteam] [Bug 5776] [New] firefox segfaults
+</A><A NAME="1907">&nbsp;</A>
+<I>Forrest White
+</I>
+
+<LI><A HREF="001908.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1908">&nbsp;</A>
+<I>Forrest White
+</I>
+
+<LI><A HREF="001909.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1909">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001910.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1910">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001911.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1911">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001912.html">[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1912">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<LI><A HREF="001913.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1913">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001914.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1914">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<LI><A HREF="001915.html">[Mageia-webteam] Web site, a few updates pending, open for comments
+</A><A NAME="1915">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001916.html">[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar
+</A><A NAME="1916">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="001917.html">[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar
+</A><A NAME="1917">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001918.html">[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar
+</A><A NAME="1918">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001919.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1919">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001920.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1920">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="001921.html">[Mageia-webteam] [Bug 5915] [New] doc.mageia.org
+</A><A NAME="1921">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001922.html">[Mageia-webteam] [Bug 5915] doc.mageia.org
+</A><A NAME="1922">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001923.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1923">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001924.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1924">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001925.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1925">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001926.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1926">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001927.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1927">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001928.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1928">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001929.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1929">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001930.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="1930">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001931.html">[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page
+</A><A NAME="1931">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<LI><A HREF="001932.html">[Mageia-webteam] [Bug 5972] 404 error on Chinese about page
+</A><A NAME="1932">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001933.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1933">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001934.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1934">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001935.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1935">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001936.html">[Mageia-webteam] [Bug 6032] [New] a Mageia motto
+</A><A NAME="1936">&nbsp;</A>
+<I>Otto S&#195;&#161;
+</I>
+
+<LI><A HREF="001937.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1937">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001938.html">[Mageia-webteam] [Bug 6036] [New] The french page is in english
+</A><A NAME="1938">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001939.html">[Mageia-webteam] [Bug 6037] [New] The french page is in english
+</A><A NAME="1939">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001940.html">[Mageia-webteam] [Bug 6038] [New] The french page is in english
+</A><A NAME="1940">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001941.html">[Mageia-webteam] [Bug 6039] [New] The french page is in english
+</A><A NAME="1941">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001942.html">[Mageia-webteam] [Bug 6040] [New] The french page is in english
+</A><A NAME="1942">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001943.html">[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french
+</A><A NAME="1943">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001944.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A><A NAME="1944">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001945.html">[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french
+</A><A NAME="1945">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001946.html">[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french
+</A><A NAME="1946">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001947.html">[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french
+</A><A NAME="1947">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001948.html">[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french
+</A><A NAME="1948">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001949.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1949">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001950.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1950">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<LI><A HREF="001951.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1951">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001952.html">[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch
+</A><A NAME="1952">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001953.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1953">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001954.html">[Mageia-webteam] [Bug 6038] The french page is in english
+</A><A NAME="1954">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001955.html">[Mageia-webteam] [Bug 6042] the sub-menu isn't in french
+</A><A NAME="1955">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001956.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1956">&nbsp;</A>
+<I>Bogdan Gruescu
+</I>
+
+<LI><A HREF="001957.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1957">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001958.html">[Mageia-webteam] [Bug 6045] the sub-menu isn't in french
+</A><A NAME="1958">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001959.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1959">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001960.html">[Mageia-webteam] [Bug 6044] the sub-menu isn't in french
+</A><A NAME="1960">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001961.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1961">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001962.html">[Mageia-webteam] [Bug 6043] the sub-menu isn't in french
+</A><A NAME="1962">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001963.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1963">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001964.html">[Mageia-webteam] [Bug 6041] The french page is in english and titles in french
+</A><A NAME="1964">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001965.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1965">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001966.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A><A NAME="1966">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001967.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1967">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001968.html">[Mageia-webteam] [Bug 6039] The french page is in english
+</A><A NAME="1968">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001969.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1969">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001970.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1970">&nbsp;</A>
+<I>Bogdan Gruescu
+</I>
+
+<LI><A HREF="001971.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1971">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001972.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A><A NAME="1972">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001973.html">[Mageia-webteam] [Bug 6070] [New] identity-trunk is random
+</A><A NAME="1973">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001974.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="1974">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001975.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A><A NAME="1975">&nbsp;</A>
+<I>Otto S&#195;&#161;
+</I>
+
+<LI><A HREF="001976.html">[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto
+</A><A NAME="1976">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001977.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1977">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001978.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1978">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001979.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1979">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001980.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1980">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001981.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1981">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001982.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1982">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001983.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1983">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001984.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1984">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001985.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1985">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001986.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1986">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001987.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1987">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001988.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1988">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<LI><A HREF="001989.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1989">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001990.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1990">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001991.html">[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name
+</A><A NAME="1991">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001992.html">[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report
+</A><A NAME="1992">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001993.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1993">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001994.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1994">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001995.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1995">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001996.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1996">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001997.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1997">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001998.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1998">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001999.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1999">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002000.html">[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2000">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002001.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2001">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="002002.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2002">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002003.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2003">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002004.html">[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on
+</A><A NAME="2004">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002005.html">[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on
+</A><A NAME="2005">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002006.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2006">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002007.html">[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2007">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002008.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2008">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002009.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2009">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="002010.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2010">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002011.html">[Mageia-webteam] [Bug 6150] [New] Community page display in IE8
+</A><A NAME="2011">&nbsp;</A>
+<I>Carolyn Rowse
+</I>
+
+<LI><A HREF="002012.html">[Mageia-webteam] [Bug 6150] Community page display in IE8
+</A><A NAME="2012">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002013.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2013">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002014.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2014">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002015.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2015">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu May 31 00:12:48 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Thu May 31 00:12:56 CEST 2012</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/2012-May/index.html b/zarb-ml/mageia-webteam/2012-May/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-May/subject.html b/zarb-ml/mageia-webteam/2012-May/subject.html
new file mode 100644
index 000000000..14ea55a16
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/subject.html
@@ -0,0 +1,607 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam May 2012 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>May 2012 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>Fri May 4 19:17:56 CEST 2012</i><br>
+ <b>Ending:</b> <i>Thu May 31 00:12:48 CEST 2012</i><br>
+ <b>Messages:</b> 112<p>
+ <ul>
+
+<LI><A HREF="001971.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1971">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001982.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1982">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001988.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1988">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<LI><A HREF="001989.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1989">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001983.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1983">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001985.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1985">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001984.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1984">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001980.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1980">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001996.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1996">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001997.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1997">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001934.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1934">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001935.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1935">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001918.html">[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar
+</A><A NAME="1918">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001979.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1979">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001981.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1981">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001986.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1986">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001987.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1987">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<LI><A HREF="001990.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1990">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001998.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1998">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="001999.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1999">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001977.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1977">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001994.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1994">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001978.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1978">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001991.html">[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name
+</A><A NAME="1991">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001930.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="1930">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<LI><A HREF="001995.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1995">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="001933.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1933">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001904.html">[Mageia-webteam] [Bug 5751] [New] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1904">&nbsp;</A>
+<I>Italo Ramirez
+</I>
+
+<LI><A HREF="001905.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1905">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001906.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1906">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001907.html">[Mageia-webteam] [Bug 5776] [New] firefox segfaults
+</A><A NAME="1907">&nbsp;</A>
+<I>Forrest White
+</I>
+
+<LI><A HREF="001908.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1908">&nbsp;</A>
+<I>Forrest White
+</I>
+
+<LI><A HREF="001909.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1909">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="001910.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1910">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001911.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1911">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001912.html">[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1912">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<LI><A HREF="001913.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1913">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001914.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1914">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<LI><A HREF="001916.html">[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar
+</A><A NAME="1916">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="001917.html">[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar
+</A><A NAME="1917">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001921.html">[Mageia-webteam] [Bug 5915] [New] doc.mageia.org
+</A><A NAME="1921">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001922.html">[Mageia-webteam] [Bug 5915] doc.mageia.org
+</A><A NAME="1922">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001932.html">[Mageia-webteam] [Bug 5972] 404 error on Chinese about page
+</A><A NAME="1932">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001931.html">[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page
+</A><A NAME="1931">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<LI><A HREF="001976.html">[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto
+</A><A NAME="1976">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001936.html">[Mageia-webteam] [Bug 6032] [New] a Mageia motto
+</A><A NAME="1936">&nbsp;</A>
+<I>Otto S&#195;&#161;
+</I>
+
+<LI><A HREF="001972.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A><A NAME="1972">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001975.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A><A NAME="1975">&nbsp;</A>
+<I>Otto S&#195;&#161;
+</I>
+
+<LI><A HREF="001952.html">[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch
+</A><A NAME="1952">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001937.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1937">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001949.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1949">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="001950.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1950">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<LI><A HREF="001951.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1951">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001938.html">[Mageia-webteam] [Bug 6036] [New] The french page is in english
+</A><A NAME="1938">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001953.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1953">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001956.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1956">&nbsp;</A>
+<I>Bogdan Gruescu
+</I>
+
+<LI><A HREF="001957.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1957">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001970.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1970">&nbsp;</A>
+<I>Bogdan Gruescu
+</I>
+
+<LI><A HREF="001939.html">[Mageia-webteam] [Bug 6037] [New] The french page is in english
+</A><A NAME="1939">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001959.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1959">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001961.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1961">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001963.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1963">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001965.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1965">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001967.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1967">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001969.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1969">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001993.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1993">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001940.html">[Mageia-webteam] [Bug 6038] [New] The french page is in english
+</A><A NAME="1940">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001954.html">[Mageia-webteam] [Bug 6038] The french page is in english
+</A><A NAME="1954">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001941.html">[Mageia-webteam] [Bug 6039] [New] The french page is in english
+</A><A NAME="1941">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001968.html">[Mageia-webteam] [Bug 6039] The french page is in english
+</A><A NAME="1968">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001942.html">[Mageia-webteam] [Bug 6040] [New] The french page is in english
+</A><A NAME="1942">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001944.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A><A NAME="1944">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="001966.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A><A NAME="1966">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001943.html">[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french
+</A><A NAME="1943">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001964.html">[Mageia-webteam] [Bug 6041] The french page is in english and titles in french
+</A><A NAME="1964">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001945.html">[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french
+</A><A NAME="1945">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001955.html">[Mageia-webteam] [Bug 6042] the sub-menu isn't in french
+</A><A NAME="1955">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001946.html">[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french
+</A><A NAME="1946">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001962.html">[Mageia-webteam] [Bug 6043] the sub-menu isn't in french
+</A><A NAME="1962">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001947.html">[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french
+</A><A NAME="1947">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001960.html">[Mageia-webteam] [Bug 6044] the sub-menu isn't in french
+</A><A NAME="1960">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001948.html">[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french
+</A><A NAME="1948">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<LI><A HREF="001958.html">[Mageia-webteam] [Bug 6045] the sub-menu isn't in french
+</A><A NAME="1958">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="001973.html">[Mageia-webteam] [Bug 6070] [New] identity-trunk is random
+</A><A NAME="1973">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001974.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="1974">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+<LI><A HREF="001992.html">[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report
+</A><A NAME="1992">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002000.html">[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2000">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002001.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2001">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<LI><A HREF="002002.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2002">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002003.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2003">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002006.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2006">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002004.html">[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on
+</A><A NAME="2004">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002005.html">[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on
+</A><A NAME="2005">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002007.html">[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2007">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002008.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2008">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002009.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2009">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<LI><A HREF="002010.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2010">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002013.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2013">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002014.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2014">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002015.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2015">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<LI><A HREF="002011.html">[Mageia-webteam] [Bug 6150] [New] Community page display in IE8
+</A><A NAME="2011">&nbsp;</A>
+<I>Carolyn Rowse
+</I>
+
+<LI><A HREF="002012.html">[Mageia-webteam] [Bug 6150] Community page display in IE8
+</A><A NAME="2012">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001926.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1926">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001928.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1928">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001929.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1929">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001923.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1923">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<LI><A HREF="001925.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1925">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001919.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1919">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001920.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1920">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<LI><A HREF="001924.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1924">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001927.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1927">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="001915.html">[Mageia-webteam] Web site, a few updates pending, open for comments
+</A><A NAME="1915">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu May 31 00:12:48 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Thu May 31 00:12:56 CEST 2012</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/2012-May/thread.html b/zarb-ml/mageia-webteam/2012-May/thread.html
new file mode 100644
index 000000000..bf5455522
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-May/thread.html
@@ -0,0 +1,773 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam May 2012 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>May 2012 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>Fri May 4 19:17:56 CEST 2012</i><br>
+ <b>Ending:</b> <i>Thu May 31 00:12:48 CEST 2012</i><br>
+ <b>Messages:</b> 112<p>
+ <ul>
+
+<!--0 01336151876- -->
+<LI><A HREF="001904.html">[Mageia-webteam] [Bug 5751] [New] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1904">&nbsp;</A>
+<I>Italo Ramirez
+</I>
+
+<UL>
+<!--1 01336151876-01336153047- -->
+<LI><A HREF="001905.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1905">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01336151876-01336153080- -->
+<LI><A HREF="001906.html">[Mageia-webteam] [Bug 5751] GIMP-2.8.0-1 from Mageia Core Updates Testing requires BABL version 0.1.10 or later, it looks like cauldron only has 0.1.6.
+</A><A NAME="1906">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01336330958- -->
+<LI><A HREF="001907.html">[Mageia-webteam] [Bug 5776] [New] firefox segfaults
+</A><A NAME="1907">&nbsp;</A>
+<I>Forrest White
+</I>
+
+<UL>
+<!--1 01336330958-01336331021- -->
+<LI><A HREF="001908.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1908">&nbsp;</A>
+<I>Forrest White
+</I>
+
+<!--1 01336330958-01336331788- -->
+<LI><A HREF="001909.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1909">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<!--1 01336330958-01336350336- -->
+<LI><A HREF="001910.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1910">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01336330958-01336350365- -->
+<LI><A HREF="001911.html">[Mageia-webteam] [Bug 5776] firefox segfaults
+</A><A NAME="1911">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01336571838- -->
+<LI><A HREF="001912.html">[Mageia-webteam] [Bug 5807] [New] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1912">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+<UL>
+<!--1 01336571838-01336584467- -->
+<LI><A HREF="001913.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1913">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01336571838-01336586379- -->
+<LI><A HREF="001914.html">[Mageia-webteam] [Bug 5807] Languages for Europe 1 LiveCDs should be updated
+</A><A NAME="1914">&nbsp;</A>
+<I>Filip Komar
+</I>
+
+</UL>
+<!--0 01336747541- -->
+<LI><A HREF="001915.html">[Mageia-webteam] Web site, a few updates pending, open for comments
+</A><A NAME="1915">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01336960086- -->
+<LI><A HREF="001916.html">[Mageia-webteam] [Bug 5893] [New] [Suggestion] Donate bar and navigation bar
+</A><A NAME="1916">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<UL>
+<!--1 01336960086-01336980945- -->
+<LI><A HREF="001917.html">[Mageia-webteam] [Bug 5893] [Suggestion] Donate bar and navigation bar
+</A><A NAME="1917">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01337015509- -->
+<LI><A HREF="001918.html">[Mageia-webteam] [Bug 3384] Rethinking the global navigation bar
+</A><A NAME="1918">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337073783- -->
+<LI><A HREF="001919.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1919">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01337073783-01337076322- -->
+<LI><A HREF="001920.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1920">&nbsp;</A>
+<I>Ma&#226;t
+</I>
+
+<UL>
+<!--2 01337073783-01337076322-01337081353- -->
+<LI><A HREF="001924.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1924">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--3 01337073783-01337076322-01337081353-01337085995- -->
+<LI><A HREF="001927.html">[Mageia-webteam] identity.mageia.org
+</A><A NAME="1927">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+<!--1 01337073783-01337080885- -->
+<LI><A HREF="001923.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1923">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<UL>
+<!--2 01337073783-01337080885-01337081436- -->
+<LI><A HREF="001925.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1925">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--3 01337073783-01337080885-01337081436-01337081756- -->
+<LI><A HREF="001926.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1926">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<!--3 01337073783-01337080885-01337081436-01337081756-01337096628- -->
+<LI><A HREF="001928.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1928">&nbsp;</A>
+<I>nicolas vigier
+</I>
+
+<!--3 01337073783-01337080885-01337081436-01337081756-01337096628-01337099247- -->
+<LI><A HREF="001929.html">[Mageia-webteam] [Mageia-sysadm] identity.mageia.org
+</A><A NAME="1929">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01337077246- -->
+<LI><A HREF="001921.html">[Mageia-webteam] [Bug 5915] [New] doc.mageia.org
+</A><A NAME="1921">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01337077246-01337077331- -->
+<LI><A HREF="001922.html">[Mageia-webteam] [Bug 5915] doc.mageia.org
+</A><A NAME="1922">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01337170830- -->
+<LI><A HREF="001930.html">[Mageia-webteam] [Bug 4885] Mageia bugzilla favicon missing
+</A><A NAME="1930">&nbsp;</A>
+<I>Barry Jackson
+</I>
+
+<!--0 01337380229- -->
+<LI><A HREF="001931.html">[Mageia-webteam] [Bug 5972] [New] 404 error on Chinese about page
+</A><A NAME="1931">&nbsp;</A>
+<I>Malo Deni&#195;&#169;lou
+</I>
+
+<UL>
+<!--1 01337380229-01337424374- -->
+<LI><A HREF="001932.html">[Mageia-webteam] [Bug 5972] 404 error on Chinese about page
+</A><A NAME="1932">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01337717351- -->
+<LI><A HREF="001933.html">[Mageia-webteam] [Bug 5620] Add a direct link to the errata (for the release)
+</A><A NAME="1933">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01337721610- -->
+<LI><A HREF="001934.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1934">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01337722144- -->
+<LI><A HREF="001935.html">[Mageia-webteam] [Bug 3383] Navbar only on en blog
+</A><A NAME="1935">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337739015- -->
+<LI><A HREF="001936.html">[Mageia-webteam] [Bug 6032] [New] a Mageia motto
+</A><A NAME="1936">&nbsp;</A>
+<I>Otto S&#195;&#161;
+</I>
+
+<UL>
+<!--1 01337739015-01337879721- -->
+<LI><A HREF="001972.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A><A NAME="1972">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01337739015-01337882212- -->
+<LI><A HREF="001975.html">[Mageia-webteam] [Bug 6032] a Mageia motto
+</A><A NAME="1975">&nbsp;</A>
+<I>Otto S&#195;&#161;
+</I>
+
+<!--1 01337739015-01337882611- -->
+<LI><A HREF="001976.html">[Mageia-webteam] [Bug 6032] &quot;Mageia is the present and the future&quot; a Mageia motto
+</A><A NAME="1976">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01337754184- -->
+<LI><A HREF="001937.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1937">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01337754996- -->
+<LI><A HREF="001938.html">[Mageia-webteam] [Bug 6036] [New] The french page is in english
+</A><A NAME="1938">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337754996-01337789937- -->
+<LI><A HREF="001953.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1953">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01337754996-01337812420- -->
+<LI><A HREF="001956.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1956">&nbsp;</A>
+<I>Bogdan Gruescu
+</I>
+
+<!--1 01337754996-01337843876- -->
+<LI><A HREF="001957.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1957">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01337754996-01337852316- -->
+<LI><A HREF="001970.html">[Mageia-webteam] [Bug 6036] The french page is in english
+</A><A NAME="1970">&nbsp;</A>
+<I>Bogdan Gruescu
+</I>
+
+</UL>
+<!--0 01337755100- -->
+<LI><A HREF="001939.html">[Mageia-webteam] [Bug 6037] [New] The french page is in english
+</A><A NAME="1939">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337755100-01337844683- -->
+<LI><A HREF="001959.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1959">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01337755100-01337844718- -->
+<LI><A HREF="001961.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1961">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01337755100-01337844745- -->
+<LI><A HREF="001963.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1963">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01337755100-01337844765- -->
+<LI><A HREF="001965.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1965">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01337755100-01337844789- -->
+<LI><A HREF="001967.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1967">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01337755100-01337844812- -->
+<LI><A HREF="001969.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1969">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01337755100-01337952955- -->
+<LI><A HREF="001993.html">[Mageia-webteam] [Bug 6037] The french page is in english
+</A><A NAME="1993">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+</UL>
+<!--0 01337755170- -->
+<LI><A HREF="001940.html">[Mageia-webteam] [Bug 6038] [New] The french page is in english
+</A><A NAME="1940">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337755170-01337789952- -->
+<LI><A HREF="001954.html">[Mageia-webteam] [Bug 6038] The french page is in english
+</A><A NAME="1954">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01337755218- -->
+<LI><A HREF="001941.html">[Mageia-webteam] [Bug 6039] [New] The french page is in english
+</A><A NAME="1941">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337755218-01337844811- -->
+<LI><A HREF="001968.html">[Mageia-webteam] [Bug 6039] The french page is in english
+</A><A NAME="1968">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+</UL>
+<!--0 01337755267- -->
+<LI><A HREF="001942.html">[Mageia-webteam] [Bug 6040] [New] The french page is in english
+</A><A NAME="1942">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337755267-01337755432- -->
+<LI><A HREF="001944.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A><A NAME="1944">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01337755267-01337844789- -->
+<LI><A HREF="001966.html">[Mageia-webteam] [Bug 6040] The french page is in english
+</A><A NAME="1966">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+</UL>
+<!--0 01337755359- -->
+<LI><A HREF="001943.html">[Mageia-webteam] [Bug 6041] [New] The french page is in english and titles in french
+</A><A NAME="1943">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337755359-01337844765- -->
+<LI><A HREF="001964.html">[Mageia-webteam] [Bug 6041] The french page is in english and titles in french
+</A><A NAME="1964">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+</UL>
+<!--0 01337755478- -->
+<LI><A HREF="001945.html">[Mageia-webteam] [Bug 6042] [New] the sub-menu isn't in french
+</A><A NAME="1945">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337755478-01337789973- -->
+<LI><A HREF="001955.html">[Mageia-webteam] [Bug 6042] the sub-menu isn't in french
+</A><A NAME="1955">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01337755542- -->
+<LI><A HREF="001946.html">[Mageia-webteam] [Bug 6043] [New] the sub-menu isn't in french
+</A><A NAME="1946">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337755542-01337844745- -->
+<LI><A HREF="001962.html">[Mageia-webteam] [Bug 6043] the sub-menu isn't in french
+</A><A NAME="1962">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+</UL>
+<!--0 01337755579- -->
+<LI><A HREF="001947.html">[Mageia-webteam] [Bug 6044] [New] the sub-menu isn't in french
+</A><A NAME="1947">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337755579-01337844718- -->
+<LI><A HREF="001960.html">[Mageia-webteam] [Bug 6044] the sub-menu isn't in french
+</A><A NAME="1960">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+</UL>
+<!--0 01337755622- -->
+<LI><A HREF="001948.html">[Mageia-webteam] [Bug 6045] [New] the sub-menu isn't in french
+</A><A NAME="1948">&nbsp;</A>
+<I>mammig linux
+</I>
+
+<UL>
+<!--1 01337755622-01337844682- -->
+<LI><A HREF="001958.html">[Mageia-webteam] [Bug 6045] the sub-menu isn't in french
+</A><A NAME="1958">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+</UL>
+<!--0 01337761539- -->
+<LI><A HREF="001949.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1949">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01337762511- -->
+<LI><A HREF="001950.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1950">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<!--0 01337763645- -->
+<LI><A HREF="001951.html">[Mageia-webteam] [Bug 6035] mgaapplet-upgrade-helper --new_distribution_version=2 no upgrade or error
+</A><A NAME="1951">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01337763802- -->
+<LI><A HREF="001952.html">[Mageia-webteam] [Bug 6035] check the option of mgaapplet-upgrade-helper before the launch
+</A><A NAME="1952">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01337867842- -->
+<LI><A HREF="001971.html">[Mageia-webteam] [Bug 1118] Make it possible to add language specific i18n mls as assignees in bugzilla
+</A><A NAME="1971">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01337879854- -->
+<LI><A HREF="001973.html">[Mageia-webteam] [Bug 6070] [New] identity-trunk is random
+</A><A NAME="1973">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01337879854-01337880154- -->
+<LI><A HREF="001974.html">[Mageia-webteam] [Bug 6070] identity-trunk is random
+</A><A NAME="1974">&nbsp;</A>
+<I>R&#195;&#169;mi Verschelde
+</I>
+
+</UL>
+<!--0 01337892746- -->
+<LI><A HREF="001977.html">[Mageia-webteam] [Bug 419] Define, discuss and implement website(s) direction doc
+</A><A NAME="1977">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337893095- -->
+<LI><A HREF="001978.html">[Mageia-webteam] [Bug 4876] Downloaded net install iso is always named &quot;boot.iso&quot;
+</A><A NAME="1978">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337894605- -->
+<LI><A HREF="001979.html">[Mageia-webteam] [Bug 3737] Blog entry contains large multi-megabyte images
+</A><A NAME="1979">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337894652- -->
+<LI><A HREF="001980.html">[Mageia-webteam] [Bug 2565] add to Mageia 1 release notes and to news/blog that it has KDE 4.6.5 updates
+</A><A NAME="1980">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337894711- -->
+<LI><A HREF="001981.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1981">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337894914- -->
+<LI><A HREF="001982.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1982">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337894954- -->
+<LI><A HREF="001983.html">[Mageia-webteam] [Bug 1665] with some browser and some languages, the end of the top menu is mask with the language selection list
+</A><A NAME="1983">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337895051- -->
+<LI><A HREF="001984.html">[Mageia-webteam] [Bug 1945] When language is set at French, links &quot;forum&quot; on different page may send to different forums.
+</A><A NAME="1984">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337895085- -->
+<LI><A HREF="001985.html">[Mageia-webteam] [Bug 1762] Missing informations on download webpage (DVD free/CD non-free)
+</A><A NAME="1985">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337896022- -->
+<LI><A HREF="001986.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1986">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<!--0 01337896086- -->
+<LI><A HREF="001987.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1987">&nbsp;</A>
+<I>Patricia Fraser
+</I>
+
+<!--0 01337896408- -->
+<LI><A HREF="001988.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1988">&nbsp;</A>
+<I>Jeff Robins
+</I>
+
+<!--0 01337931656- -->
+<LI><A HREF="001989.html">[Mageia-webteam] [Bug 1512] SSL for checksums
+</A><A NAME="1989">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337936827- -->
+<LI><A HREF="001990.html">[Mageia-webteam] [Bug 4016] Public link produces &quot;403 Forbidden&quot; on click
+</A><A NAME="1990">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337937219- -->
+<LI><A HREF="001991.html">[Mageia-webteam] [Bug 4876] rename &quot;boot.iso&quot; to a better name
+</A><A NAME="1991">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01337950577- -->
+<LI><A HREF="001992.html">[Mageia-webteam] [Bug 6084] [New] Design an up-to-date graphical donation bar report
+</A><A NAME="1992">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01337978285- -->
+<LI><A HREF="001994.html">[Mageia-webteam] [Bug 4555] Migrate page does not contain instructions how to run mgaapplet
+</A><A NAME="1994">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01338030209- -->
+<LI><A HREF="001995.html">[Mageia-webteam] [Bug 4979] can't connect mirror for the update after the install
+</A><A NAME="1995">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01338030258- -->
+<LI><A HREF="001996.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1996">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01338046641- -->
+<LI><A HREF="001997.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="1997">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01338112237- -->
+<LI><A HREF="001998.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1998">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01338113175- -->
+<LI><A HREF="001999.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="1999">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01338156564- -->
+<LI><A HREF="002000.html">[Mageia-webteam] [Bug 6121] [New] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2000">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<UL>
+<!--1 01338156564-01338161199- -->
+<LI><A HREF="002001.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2001">&nbsp;</A>
+<I>Florian Hubold
+</I>
+
+<!--1 01338156564-01338165751- -->
+<LI><A HREF="002002.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2002">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<!--1 01338156564-01338196859- -->
+<LI><A HREF="002003.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2003">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--1 01338156564-01338233413- -->
+<LI><A HREF="002006.html">[Mageia-webteam] [Bug 6121] CLI upgrade Mageia1 to Mageia2
+</A><A NAME="2006">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+</UL>
+<!--0 01338212081- -->
+<LI><A HREF="002004.html">[Mageia-webteam] [Bug 6132] [New] nav bar must not shake the page it's on
+</A><A NAME="2004">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01338212081-01338212211- -->
+<LI><A HREF="002005.html">[Mageia-webteam] [Bug 6132] nav bar must not shake the page it's on
+</A><A NAME="2005">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01338240524- -->
+<LI><A HREF="002007.html">[Mageia-webteam] [Bug 6139] [New] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2007">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<UL>
+<!--1 01338240524-01338241998- -->
+<LI><A HREF="002008.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2008">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01338240524-01338271230- -->
+<LI><A HREF="002009.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2009">&nbsp;</A>
+<I>Remco Rijnders
+</I>
+
+<!--1 01338240524-01338275737- -->
+<LI><A HREF="002010.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2010">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--1 01338240524-01338386694- -->
+<LI><A HREF="002013.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2013">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01338240524-01338415849- -->
+<LI><A HREF="002014.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2014">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+<!--1 01338240524-01338415968- -->
+<LI><A HREF="002015.html">[Mageia-webteam] [Bug 6139] Having &lt;style after &lt;body causes opera to display the page as a blank page.
+</A><A NAME="2015">&nbsp;</A>
+<I>Dave Hodgins
+</I>
+
+</UL>
+<!--0 01338295906- -->
+<LI><A HREF="002011.html">[Mageia-webteam] [Bug 6150] [New] Community page display in IE8
+</A><A NAME="2011">&nbsp;</A>
+<I>Carolyn Rowse
+</I>
+
+<UL>
+<!--1 01338295906-01338305351- -->
+<LI><A HREF="002012.html">[Mageia-webteam] [Bug 6150] Community page display in IE8
+</A><A NAME="2012">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu May 31 00:12:48 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Thu May 31 00:12:56 CEST 2012</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/2012-November.txt.gz b/zarb-ml/mageia-webteam/2012-November.txt.gz
new file mode 100644
index 000000000..765c04ba1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-November/002204.html b/zarb-ml/mageia-webteam/2012-November/002204.html
new file mode 100644
index 000000000..195441de9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002204.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+ </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%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20121104111209.12C3746C44%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="002205.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia</H1>
+ <B>jon scsi</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20121104111209.12C3746C44%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 4 12:12:09 CET 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="002205.html">[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2204">[ date ]</a>
+ <a href="thread.html#2204">[ thread ]</a>
+ <a href="subject.html#2204">[ subject ]</a>
+ <a href="author.html#2204">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+jon scsi &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">scsijon at lamiaworks.com.au</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">scsijon at lamiaworks.com.au</A>
+
+--- Comment #17 from jon scsi &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">scsijon at lamiaworks.com.au</A>&gt; 2012-11-04 12:12:08 CET ---
+Alternately, you could do what Puppy Linux does and have a configurable base
+design package (called woof2), work out what kernel and appliaction packages
+you want, download them automatically, build them, and then build a
+distribution with the mageia packages that you want and come out with an iso
+and dev.sfs. It all lives on your own workstation so you can 'play' with it to
+your heart's content until you have it how you want it. It also means you can
+build your own applications and inbuild them too see if they are what you want.
+
+There are of course some serious differances between mageia and a Mage2 Puppy,
+such as we run in root as were only involved with 'desktops' and do work on the
+'smaller is better' idealogy.
+
+We already have a mandrake/mageia Puppy clone called 'drake1' and i'm trying at
+the moment to create a new 'mage2' Puppy clone. My old Development box had some
+'soft ram' and I didn't know it was stuffing my later backups up until the box
+died (naturally) so i'm starting again.
+[url]<A HREF="http://www.lamiaworks.com.au/puppy_qt.html[/url">http://www.lamiaworks.com.au/puppy_qt.html[/url</A>] gives you an idea of
+where I am at, although the Beta's are to be taken with a grain of salt as they
+will be replaced! The Package lists give you an idea of what's in it from
+mageia as well as what we keep as the puppy basics.
+
+And yes I have built with the Opensuse Studio (my background was SuSE), but I
+prefer a more hands on approach like that puppy uses.
+
+regards
+scsijon
+
+--
+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>Next message: <A HREF="002205.html">[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2204">[ date ]</a>
+ <a href="thread.html#2204">[ thread ]</a>
+ <a href="subject.html#2204">[ subject ]</a>
+ <a href="author.html#2204">[ 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/2012-November/002205.html b/zarb-ml/mageia-webteam/2012-November/002205.html
new file mode 100644
index 000000000..a1df7aaee
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002205.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation
+ </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%207974%5D%20%5BNew%5D%20Make%20a%20footer%20in%20Calenco%20for%0A%20future%20official%20online%20documentation&In-Reply-To=%3Cbug-7974-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="002204.html">
+ <LINK REL="Next" HREF="002206.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207974%5D%20%5BNew%5D%20Make%20a%20footer%20in%20Calenco%20for%0A%20future%20official%20online%20documentation&In-Reply-To=%3Cbug-7974-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 4 16:52:30 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002204.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI>Next message: <A HREF="002206.html">[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2205">[ date ]</a>
+ <a href="thread.html#2205">[ thread ]</a>
+ <a href="subject.html#2205">[ subject ]</a>
+ <a href="author.html#2205">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7974">https://bugs.mageia.org/show_bug.cgi?id=7974</A>
+
+ Summary: Make a footer in Calenco for future official online
+ documentation
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://doc.mageia.org/installer/2/en/content/selectKey">http://doc.mageia.org/installer/2/en/content/selectKey</A>
+ board.html
+ OS/Version: Linux
+ Status: ASSIGNED
+ Severity: normal
+ Priority: Normal
+ Component: Other
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-bugs at ml.mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</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">grenoya at zarb.org</A>
+
+
+Future versions of the official online documentation should contain a footer
+with the license on every page, because otherwise users who follow a link to
+another page than the first one, won't know about the license.
+
+See for instance:
+<A HREF="http://doc.mageia.org/installer/2/en/content/selectKeyboard.html">http://doc.mageia.org/installer/2/en/content/selectKeyboard.html</A>
+
+Now filing a bug report, because me knowing that this should be done didn't yet
+result in me (or someone else) making the needed changes in Calenco
+
+Anyone with docbook experience and with spare time who wants to work on this:
+docteam will welcome you with open arms :)
+
+--
+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="002204.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI>Next message: <A HREF="002206.html">[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2205">[ date ]</a>
+ <a href="thread.html#2205">[ thread ]</a>
+ <a href="subject.html#2205">[ subject ]</a>
+ <a href="author.html#2205">[ 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/2012-November/002206.html b/zarb-ml/mageia-webteam/2012-November/002206.html
new file mode 100644
index 000000000..691195978
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002206.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+ </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%207976%5D%20%5BNew%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3Cbug-7976-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="002205.html">
+ <LINK REL="Next" HREF="002214.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207976%5D%20%5BNew%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3Cbug-7976-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 4 17:14:36 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002205.html">[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation
+</A></li>
+ <LI>Next message: <A HREF="002214.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2206">[ date ]</a>
+ <a href="thread.html#2206">[ thread ]</a>
+ <a href="subject.html#2206">[ subject ]</a>
+ <a href="author.html#2206">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7976">https://bugs.mageia.org/show_bug.cgi?id=7976</A>
+
+ Summary: (Calenco) Make a good TOC for the online MCC help
+ while keeping one page per tool.
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: ASSIGNED
+ Severity: normal
+ Priority: Normal
+ Component: Other
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">doc-bugs at ml.mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+In Calenco, the online MCC help should be changed, so that each tool keeps its
+own help page, like here
+
+<A HREF="http://docteam.mageia.nl/en/MCC/content/">http://docteam.mageia.nl/en/MCC/content/</A>
+
+however, the TOC of the above example is messy and confusing, and should be
+like the one here
+
+<A HREF="http://waesvanm.home.xs4all.nl/MCC/content/">http://waesvanm.home.xs4all.nl/MCC/content/</A>
+
+(Unfortunately, in that example the pages about the tools have been merged,
+which led to some needed file names for the inline help being missing, and some
+pages are really too long now, so the way that example was done can't be used)
+
+--
+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="002205.html">[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation
+</A></li>
+ <LI>Next message: <A HREF="002214.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2206">[ date ]</a>
+ <a href="thread.html#2206">[ thread ]</a>
+ <a href="subject.html#2206">[ subject ]</a>
+ <a href="author.html#2206">[ 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/2012-November/002207.html b/zarb-ml/mageia-webteam/2012-November/002207.html
new file mode 100644
index 000000000..7ebda3d05
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002207.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121110122507.0A50B46B0B%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="002214.html">
+ <LINK REL="Next" HREF="002208.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121110122507.0A50B46B0B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Nov 10 13:25:07 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002214.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002208.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2207">[ date ]</a>
+ <a href="thread.html#2207">[ thread ]</a>
+ <a href="subject.html#2207">[ subject ]</a>
+ <a href="author.html#2207">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+--- Comment #17 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-11-10 13:25:06 CET ---
+(In reply to comment #13)
+&gt;<i> I won't be able to work on this for some time. You can assign it to webteam,
+</I>&gt;<i> it's left for someone to pick it up.
+</I>
+(In reply to comment #16)
+&gt;<i> This is not relevant to Cauldron only, changing product.
+</I>
+@ Romain,
+
+When the product was changed (btw, thanks for doing that), the assignee was
+automatically changed along with it. The assignee is now sysadmin-bugs. Do you
+want it to be assigned back to webteam, or to stay assigned to sysadminteam?
+
+--
+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="002214.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002208.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2207">[ date ]</a>
+ <a href="thread.html#2207">[ thread ]</a>
+ <a href="subject.html#2207">[ subject ]</a>
+ <a href="author.html#2207">[ 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/2012-November/002208.html b/zarb-ml/mageia-webteam/2012-November/002208.html
new file mode 100644
index 000000000..3dd3304b6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002208.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7784] no confirmation after money donation
+ </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%207784%5D%20no%20confirmation%20after%20money%20donation&In-Reply-To=%3C20121110125632.5D91A46AE2%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="002207.html">
+ <LINK REL="Next" HREF="002209.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7784] no confirmation after money donation</H1>
+ <B>Guillaume Lang</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207784%5D%20no%20confirmation%20after%20money%20donation&In-Reply-To=%3C20121110125632.5D91A46AE2%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7784] no confirmation after money donation">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Nov 10 13:56:32 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002207.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002209.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2208">[ date ]</a>
+ <a href="thread.html#2208">[ thread ]</a>
+ <a href="subject.html#2208">[ subject ]</a>
+ <a href="author.html#2208">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7784">https://bugs.mageia.org/show_bug.cgi?id=7784</A>
+
+--- Comment #2 from Guillaume Lang &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tux at pipot.net</A>&gt; 2012-11-10 13:56:32 CET ---
+Thanks for your answer. As I understand it, the average donation is rather
+large (50 euros or so ?). Full automation would be nice, but is it entirely
+unreasonable to send emails manually? I am fully aware that no matter how quick
+that is, someone must still spend time doing this. I just wish to put the
+situation in perspective with that of NGOs, where managing donations is a
+significant part of the work (not to mention the budget). My impression from
+afar is that donations are not considered a priority for Mageia, which may end
+up losing money for the project. Following on the habit of buying regularly the
+Powerpack to show support for Mandrake/Mandriva, I was firmly planning to give
+money every year to Mageia, but now I am not so sure anymore and that's very
+frustrating considering how nice a job you guys did with the distro.
+
+--
+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="002207.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002209.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2208">[ date ]</a>
+ <a href="thread.html#2208">[ thread ]</a>
+ <a href="subject.html#2208">[ subject ]</a>
+ <a href="author.html#2208">[ 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/2012-November/002209.html b/zarb-ml/mageia-webteam/2012-November/002209.html
new file mode 100644
index 000000000..9e4c2eece
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002209.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7784] no confirmation after money donation
+ </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%207784%5D%20no%20confirmation%20after%20money%20donation&In-Reply-To=%3C20121110211956.187B446B63%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="002208.html">
+ <LINK REL="Next" HREF="002210.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7784] no confirmation after money donation</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207784%5D%20no%20confirmation%20after%20money%20donation&In-Reply-To=%3C20121110211956.187B446B63%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7784] no confirmation after money donation">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Nov 10 22:19:56 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002208.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI>Next message: <A HREF="002210.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2209">[ date ]</a>
+ <a href="thread.html#2209">[ thread ]</a>
+ <a href="subject.html#2209">[ subject ]</a>
+ <a href="author.html#2209">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7784">https://bugs.mageia.org/show_bug.cgi?id=7784</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>
+
+--- Comment #3 from Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; 2012-11-10 22:19:55 CET ---
+
+(In reply to comment #0)
+&gt;<i> After making a wire transfer, there is no way to know if everything went fine.
+</I>
+It is possible to ask ;). I've done that, when I had doubts, and both Romain
+d'Alverny (the current treasurer) and Damien Lallement (the former treasurer)
+replied within very reasonable time (1~4 days).
+
+Of course confirming should be done without asking. It is good you wrote this
+bug report.
+
+However, the volunteers who can make that happen have a large workload,
+unfortunately including tasks that are even more urgent than fixing this.
+
+Maybe you'd like to consider contributing some of your time and talents to one
+of our teams <A HREF="https://wiki.mageia.org/en/Contributing">https://wiki.mageia.org/en/Contributing</A>
+You would undoubtedly make a difference :)
+
+The more hands we have on deck, the less the workload for each of us will be
+and the sooner this bug will get 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="002208.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI>Next message: <A HREF="002210.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2209">[ date ]</a>
+ <a href="thread.html#2209">[ thread ]</a>
+ <a href="subject.html#2209">[ subject ]</a>
+ <a href="author.html#2209">[ 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/2012-November/002210.html b/zarb-ml/mageia-webteam/2012-November/002210.html
new file mode 100644
index 000000000..aac25e7fe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002210.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121111133610.5A0AE46B8A%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="002209.html">
+ <LINK REL="Next" HREF="002211.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121111133610.5A0AE46B8A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 11 14:36:10 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002209.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI>Next message: <A HREF="002211.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2210">[ date ]</a>
+ <a href="thread.html#2210">[ thread ]</a>
+ <a href="subject.html#2210">[ subject ]</a>
+ <a href="author.html#2210">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</A>
+
+--- Comment #18 from Thierry Vignaud &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>&gt; 2012-11-11 14:36:09 CET ---
+Anyway we need some support on web site pior to being able to test patches...
+
+--
+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="002209.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI>Next message: <A HREF="002211.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2210">[ date ]</a>
+ <a href="thread.html#2210">[ thread ]</a>
+ <a href="subject.html#2210">[ subject ]</a>
+ <a href="author.html#2210">[ 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/2012-November/002211.html b/zarb-ml/mageia-webteam/2012-November/002211.html
new file mode 100644
index 000000000..7eddc88e7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002211.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121111134829.E39DA46ABC%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="002210.html">
+ <LINK REL="Next" HREF="002212.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121111134829.E39DA46ABC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 11 14:48:29 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002210.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002212.html">[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2211">[ date ]</a>
+ <a href="thread.html#2211">[ thread ]</a>
+ <a href="subject.html#2211">[ subject ]</a>
+ <a href="author.html#2211">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</A>
+
+--- Comment #19 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-11-11 15:48:29 CET ---
+What support do you need from the web site? (or do you mean, support from an
+installed mirrorbrain instance?)
+
+--
+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="002210.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002212.html">[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2211">[ date ]</a>
+ <a href="thread.html#2211">[ thread ]</a>
+ <a href="subject.html#2211">[ subject ]</a>
+ <a href="author.html#2211">[ 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/2012-November/002212.html b/zarb-ml/mageia-webteam/2012-November/002212.html
new file mode 100644
index 000000000..392e81a6f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002212.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org
+ </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%208045%5D%20%5BNew%5D%20There%20is%20no%20option%20to%20change%0A%20e-mail%20in%20bugs.mageia.org&In-Reply-To=%3Cbug-8045-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="002211.html">
+ <LINK REL="Next" HREF="002213.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org</H1>
+ <B>Palm Pre</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208045%5D%20%5BNew%5D%20There%20is%20no%20option%20to%20change%0A%20e-mail%20in%20bugs.mageia.org&In-Reply-To=%3Cbug-8045-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 11 16:48:27 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002211.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002213.html">[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2212">[ date ]</a>
+ <a href="thread.html#2212">[ thread ]</a>
+ <a href="subject.html#2212">[ subject ]</a>
+ <a href="author.html#2212">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8045">https://bugs.mageia.org/show_bug.cgi?id=8045</A>
+
+ Summary: There is no option to change e-mail in bugs.mageia.org
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=account">https://bugs.mageia.org/userprefs.cgi?tab=account</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">palm_pre_stl at yahoo.com</A>
+
+
+Description of problem: I was going to change my e-mail set for
+bugs.mageia.org. Unfortunatelly, user Preference --&gt; Name and Password doesn't
+have an option to change an e-mail. Bugzilla
+(<A HREF="http://www.bugzilla.org/docs/3.6/en/html/userpreferences.html">http://www.bugzilla.org/docs/3.6/en/html/userpreferences.html</A> #5.10.4) says
+&quot;... you can change your basic account information, including your password,
+email address and real name.&quot;
+
+Am I missing somthing?
+
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1.
+2.
+3.
+
+--
+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="002211.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002213.html">[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2212">[ date ]</a>
+ <a href="thread.html#2212">[ thread ]</a>
+ <a href="subject.html#2212">[ subject ]</a>
+ <a href="author.html#2212">[ 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/2012-November/002213.html b/zarb-ml/mageia-webteam/2012-November/002213.html
new file mode 100644
index 000000000..3161933dc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002213.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org
+ </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%208045%5D%20There%20is%20no%20option%20to%20change%20e-mail%20in%0A%09bugs.mageia.org&In-Reply-To=%3C20121111160756.4B85A46B8F%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="002212.html">
+ <LINK REL="Next" HREF="002215.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208045%5D%20There%20is%20no%20option%20to%20change%20e-mail%20in%0A%09bugs.mageia.org&In-Reply-To=%3C20121111160756.4B85A46B8F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 11 17:07:56 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002212.html">[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002215.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2213">[ date ]</a>
+ <a href="thread.html#2213">[ thread ]</a>
+ <a href="subject.html#2213">[ subject ]</a>
+ <a href="author.html#2213">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8045">https://bugs.mageia.org/show_bug.cgi?id=8045</A>
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; 2012-11-11 17:07:56 CET ---
+since our bugzilla use the ldap authentification, you need to change your email
+in <A HREF="https://identity.mageia.org/">https://identity.mageia.org/</A>
+
+note that it will also change your email on others service aka forums, sympa
+ml, wiki 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 the assignee for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002212.html">[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002215.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2213">[ date ]</a>
+ <a href="thread.html#2213">[ thread ]</a>
+ <a href="subject.html#2213">[ subject ]</a>
+ <a href="author.html#2213">[ 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/2012-November/002214.html b/zarb-ml/mageia-webteam/2012-November/002214.html
new file mode 100644
index 000000000..a1a849259
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002214.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+ </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%207976%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3C20121118101730.CA1E246E21%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="002206.html">
+ <LINK REL="Next" HREF="002207.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.</H1>
+ <B>Marja van Waes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207976%5D%20%28Calenco%29%20Make%20a%20good%20TOC%20for%20the%0A%20online%20MCC%20help%20while%20keeping%20one%20page%20per%20tool.&In-Reply-To=%3C20121118101730.CA1E246E21%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Nov 18 11:17:30 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002206.html">[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002207.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2214">[ date ]</a>
+ <a href="thread.html#2214">[ thread ]</a>
+ <a href="subject.html#2214">[ subject ]</a>
+ <a href="author.html#2214">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7976">https://bugs.mageia.org/show_bug.cgi?id=7976</A>
+
+Marja van Waes &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marja11 at xs4all.nl</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Priority|Normal |High
+
+--
+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="002206.html">[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A></li>
+ <LI>Next message: <A HREF="002207.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2214">[ date ]</a>
+ <a href="thread.html#2214">[ thread ]</a>
+ <a href="subject.html#2214">[ subject ]</a>
+ <a href="author.html#2214">[ 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/2012-November/002215.html b/zarb-ml/mageia-webteam/2012-November/002215.html
new file mode 100644
index 000000000..ebf2dfabe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002215.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121119225854.0345546C9D%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="002213.html">
+ <LINK REL="Next" HREF="002216.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121119225854.0345546C9D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Nov 19 23:58:53 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002213.html">[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002216.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2215">[ date ]</a>
+ <a href="thread.html#2215">[ thread ]</a>
+ <a href="subject.html#2215">[ subject ]</a>
+ <a href="author.html#2215">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</A>
+
+--- Comment #20 from Thierry Vignaud &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>&gt; 2012-11-20 00:58:53 CET ---
+Yes.
+@Christian Lohmaier: For geolocation vs timezone picking of mirrors, I think it
+would best to just do geolocation rather than asking one to manually pick its
+location.
+
+--
+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="002213.html">[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002216.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2215">[ date ]</a>
+ <a href="thread.html#2215">[ thread ]</a>
+ <a href="subject.html#2215">[ subject ]</a>
+ <a href="author.html#2215">[ 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/2012-November/002216.html b/zarb-ml/mageia-webteam/2012-November/002216.html
new file mode 100644
index 000000000..7a59e209a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002216.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121120002936.5B38F46D0D%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="002215.html">
+ <LINK REL="Next" HREF="002217.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone</H1>
+ <B>Christian Lohmaier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121120002936.5B38F46D0D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 20 01:29:36 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002215.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002217.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2216">[ date ]</a>
+ <a href="thread.html#2216">[ thread ]</a>
+ <a href="subject.html#2216">[ subject ]</a>
+ <a href="author.html#2216">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</A>
+
+--- Comment #21 from Christian Lohmaier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">lohmaier+mageia at googlemail.com</A>&gt; 2012-11-20 02:29:35 CET ---
+@Thierry: Picking timezone as in the bug mentioned in the initial description
+has nothing to do with mirrorbrain.
+
+Mirrorbrain does geolocation by IP, so depending on timezone is not necessary
+at all..
+
+I did create the patch for <A HREF="https://qa.mandriva.com/show_bug.cgi?id=56879">https://qa.mandriva.com/show_bug.cgi?id=56879</A>
+because Mandriva (and Mageia) does *not* use mirrorbrain, but instead *does*
+depend on the timezone.
+
+Currently, the $MIRRORLIST method uses the system's timezone-city as reference
+as to what mirror to use, and this is stupid, at least in central Europe (where
+there are many mirrors that are much closer than your country's capital city)
+
+
+To make it clear: Mirrorbrain doesn't depend on any user-configured stuff. It
+decides based on the IP that is used what mirror to chose. It does geolocation
+by IP.
+
+Ordered from worse to best:
+* location reference point is taken from the timezone (urpmi as it is now)
+* user has the option to manually specify his actual location (urpmi with
+patch, patch is available)
+* user doesn't have to bother, but closest mirror is assigned by having the
+downlaod-server examine the IP that is used to connect (mirrorbrain on server,
+no patch to urpmi necessary, but no mirrorbrain installed yet)
+
+If you meant that urpmi should query the geolocation on the user's machine and
+use that instead, this would be an alternative method, but of course without
+the other benefit that mirrorbrain would bring. And this way would also require
+Mageia to setup an appropriate service that would return the location on
+request (or you would have to require a geolocation-database package to
+installed on the user's system, not very nice....)
+
+--
+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="002215.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002217.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2216">[ date ]</a>
+ <a href="thread.html#2216">[ thread ]</a>
+ <a href="subject.html#2216">[ subject ]</a>
+ <a href="author.html#2216">[ 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/2012-November/002217.html b/zarb-ml/mageia-webteam/2012-November/002217.html
new file mode 100644
index 000000000..642cb2c17
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002217.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121120003933.27E9346D9E%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="002216.html">
+ <LINK REL="Next" HREF="002218.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%0A%20managemenet%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121120003933.27E9346D9E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 20 01:39:33 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002216.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002218.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2217">[ date ]</a>
+ <a href="thread.html#2217">[ thread ]</a>
+ <a href="subject.html#2217">[ subject ]</a>
+ <a href="author.html#2217">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</A>
+
+--- Comment #22 from Thierry Vignaud &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>&gt; 2012-11-20 01:39:32 CET ---
+That's exactly what I wrote.
+Using mirrorbrain is totally orthogonal and has nothing to do with the patches
+you posted for now
+
+--
+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="002216.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002218.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2217">[ date ]</a>
+ <a href="thread.html#2217">[ thread ]</a>
+ <a href="subject.html#2217">[ subject ]</a>
+ <a href="author.html#2217">[ 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/2012-November/002218.html b/zarb-ml/mageia-webteam/2012-November/002218.html
new file mode 100644
index 000000000..df3b16887
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002218.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone
+ </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%203166%5D%20use%20mirrorbrain%20for%20download%20management%0A%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121120062320.9C1BD46D99%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="002217.html">
+ <LINK REL="Next" HREF="002219.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203166%5D%20use%20mirrorbrain%20for%20download%20management%0A%20instead%20of%20broken%20mirror-choosing%20by%20timezone&In-Reply-To=%3C20121120062320.9C1BD46D99%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Nov 20 07:23:20 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002217.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002219.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2218">[ date ]</a>
+ <a href="thread.html#2218">[ thread ]</a>
+ <a href="subject.html#2218">[ subject ]</a>
+ <a href="author.html#2218">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3166">https://bugs.mageia.org/show_bug.cgi?id=3166</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
+----------------------------------------------------------------------------
+ Summary|use mirrorbrain for |use mirrorbrain for
+ |download managemenet |download management instead
+ |instead of broken |of broken mirror-choosing
+ |mirror-choosing by timezone |by 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="002217.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002219.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2218">[ date ]</a>
+ <a href="thread.html#2218">[ thread ]</a>
+ <a href="subject.html#2218">[ subject ]</a>
+ <a href="author.html#2218">[ 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/2012-November/002219.html b/zarb-ml/mageia-webteam/2012-November/002219.html
new file mode 100644
index 000000000..9f1367e0e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002219.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8254] secure irc server for the secteam
+ </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%208254%5D%20secure%20irc%20server%20for%20the%20secteam&In-Reply-To=%3C20121130170830.B192046E45%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="002218.html">
+ <LINK REL="Next" HREF="002220.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8254] secure irc server for the secteam</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208254%5D%20secure%20irc%20server%20for%20the%20secteam&In-Reply-To=%3C20121130170830.B192046E45%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8254] secure irc server for the secteam">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 30 18:08:30 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002218.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002220.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2219">[ date ]</a>
+ <a href="thread.html#2219">[ thread ]</a>
+ <a href="subject.html#2219">[ subject ]</a>
+ <a href="author.html#2219">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8254">https://bugs.mageia.org/show_bug.cgi?id=8254</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ QAContact| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ennael1 at gmail.com</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 QA contact for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002218.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone
+</A></li>
+ <LI>Next message: <A HREF="002220.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2219">[ date ]</a>
+ <a href="thread.html#2219">[ thread ]</a>
+ <a href="subject.html#2219">[ subject ]</a>
+ <a href="author.html#2219">[ 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/2012-November/002220.html b/zarb-ml/mageia-webteam/2012-November/002220.html
new file mode 100644
index 000000000..a0b49b118
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/002220.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8254] secure irc server for the secteam
+ </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%208254%5D%20secure%20irc%20server%20for%20the%20secteam&In-Reply-To=%3C20121130171650.387C846E6A%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="002219.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8254] secure irc server for the secteam</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208254%5D%20secure%20irc%20server%20for%20the%20secteam&In-Reply-To=%3C20121130171650.387C846E6A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 8254] secure irc server for the secteam">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Nov 30 18:16:50 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002219.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2220">[ date ]</a>
+ <a href="thread.html#2220">[ thread ]</a>
+ <a href="subject.html#2220">[ subject ]</a>
+ <a href="author.html#2220">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8254">https://bugs.mageia.org/show_bug.cgi?id=8254</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ AssignedTo|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A> |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bugsquad at mageia.org</A>
+ QAContact|<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A> |
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</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 QA contact for the bug.
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002219.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2220">[ date ]</a>
+ <a href="thread.html#2220">[ thread ]</a>
+ <a href="subject.html#2220">[ subject ]</a>
+ <a href="author.html#2220">[ 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/2012-November/author.html b/zarb-ml/mageia-webteam/2012-November/author.html
new file mode 100644
index 000000000..a24e97f69
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/author.html
@@ -0,0 +1,132 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2012 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 2012 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>Sun Nov 4 12:12:09 CET 2012</i><br>
+ <b>Ending:</b> <i>Fri Nov 30 18:16:50 CET 2012</i><br>
+ <b>Messages:</b> 17<p>
+ <ul>
+
+<LI><A HREF="002213.html">[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org
+</A><A NAME="2213">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002219.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A><A NAME="2219">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002220.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A><A NAME="2220">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002208.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2208">&nbsp;</A>
+<I>Guillaume Lang
+</I>
+
+<LI><A HREF="002216.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2216">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<LI><A HREF="002212.html">[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org
+</A><A NAME="2212">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="002210.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2210">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002215.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2215">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002217.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2217">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002218.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone
+</A><A NAME="2218">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002205.html">[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation
+</A><A NAME="2205">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002206.html">[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2206">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002207.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2207">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002209.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2209">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002214.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2214">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002211.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2211">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002204.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2204">&nbsp;</A>
+<I>jon scsi
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Nov 30 18:16:50 CET 2012</i><br>
+ <b>Archived on:</b> <i>Fri Nov 30 18:16:54 CET 2012</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/2012-November/date.html b/zarb-ml/mageia-webteam/2012-November/date.html
new file mode 100644
index 000000000..cbad2c3d4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/date.html
@@ -0,0 +1,132 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2012 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 2012 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>Sun Nov 4 12:12:09 CET 2012</i><br>
+ <b>Ending:</b> <i>Fri Nov 30 18:16:50 CET 2012</i><br>
+ <b>Messages:</b> 17<p>
+ <ul>
+
+<LI><A HREF="002204.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2204">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<LI><A HREF="002205.html">[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation
+</A><A NAME="2205">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002206.html">[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2206">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002207.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2207">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002208.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2208">&nbsp;</A>
+<I>Guillaume Lang
+</I>
+
+<LI><A HREF="002209.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2209">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002210.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2210">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002211.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2211">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002212.html">[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org
+</A><A NAME="2212">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="002213.html">[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org
+</A><A NAME="2213">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002214.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2214">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002215.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2215">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002216.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2216">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<LI><A HREF="002217.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2217">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002218.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone
+</A><A NAME="2218">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002219.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A><A NAME="2219">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002220.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A><A NAME="2220">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Nov 30 18:16:50 CET 2012</i><br>
+ <b>Archived on:</b> <i>Fri Nov 30 18:16:54 CET 2012</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/2012-November/index.html b/zarb-ml/mageia-webteam/2012-November/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-November/subject.html b/zarb-ml/mageia-webteam/2012-November/subject.html
new file mode 100644
index 000000000..783f068a0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/subject.html
@@ -0,0 +1,132 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2012 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 2012 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>Sun Nov 4 12:12:09 CET 2012</i><br>
+ <b>Ending:</b> <i>Fri Nov 30 18:16:50 CET 2012</i><br>
+ <b>Messages:</b> 17<p>
+ <ul>
+
+<LI><A HREF="002207.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2207">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002210.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2210">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002211.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2211">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002215.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2215">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002216.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2216">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<LI><A HREF="002217.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2217">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002218.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone
+</A><A NAME="2218">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002204.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2204">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<LI><A HREF="002208.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2208">&nbsp;</A>
+<I>Guillaume Lang
+</I>
+
+<LI><A HREF="002209.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2209">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002205.html">[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation
+</A><A NAME="2205">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002214.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2214">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002206.html">[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2206">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<LI><A HREF="002212.html">[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org
+</A><A NAME="2212">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<LI><A HREF="002213.html">[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org
+</A><A NAME="2213">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002219.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A><A NAME="2219">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002220.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A><A NAME="2220">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Nov 30 18:16:50 CET 2012</i><br>
+ <b>Archived on:</b> <i>Fri Nov 30 18:16:54 CET 2012</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/2012-November/thread.html b/zarb-ml/mageia-webteam/2012-November/thread.html
new file mode 100644
index 000000000..71e9c3c19
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-November/thread.html
@@ -0,0 +1,153 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2012 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 2012 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>Sun Nov 4 12:12:09 CET 2012</i><br>
+ <b>Ending:</b> <i>Fri Nov 30 18:16:50 CET 2012</i><br>
+ <b>Messages:</b> 17<p>
+ <ul>
+
+<!--0 01352027529- -->
+<LI><A HREF="002204.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2204">&nbsp;</A>
+<I>jon scsi
+</I>
+
+<!--0 01352044350- -->
+<LI><A HREF="002205.html">[Mageia-webteam] [Bug 7974] [New] Make a footer in Calenco for future official online documentation
+</A><A NAME="2205">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01352045676- -->
+<LI><A HREF="002206.html">[Mageia-webteam] [Bug 7976] [New] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2206">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<UL>
+<!--1 01352045676-01353233850- -->
+<LI><A HREF="002214.html">[Mageia-webteam] [Bug 7976] (Calenco) Make a good TOC for the online MCC help while keeping one page per tool.
+</A><A NAME="2214">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+</UL>
+<!--0 01352550307- -->
+<LI><A HREF="002207.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2207">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01352552192- -->
+<LI><A HREF="002208.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2208">&nbsp;</A>
+<I>Guillaume Lang
+</I>
+
+<!--0 01352582396- -->
+<LI><A HREF="002209.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2209">&nbsp;</A>
+<I>Marja van Waes
+</I>
+
+<!--0 01352640970- -->
+<LI><A HREF="002210.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2210">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--0 01352641709- -->
+<LI><A HREF="002211.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2211">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--0 01352648907- -->
+<LI><A HREF="002212.html">[Mageia-webteam] [Bug 8045] [New] There is no option to change e-mail in bugs.mageia.org
+</A><A NAME="2212">&nbsp;</A>
+<I>Palm Pre
+</I>
+
+<UL>
+<!--1 01352648907-01352650076- -->
+<LI><A HREF="002213.html">[Mageia-webteam] [Bug 8045] There is no option to change e-mail in bugs.mageia.org
+</A><A NAME="2213">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+</UL>
+<!--0 01353365933- -->
+<LI><A HREF="002215.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2215">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--0 01353371376- -->
+<LI><A HREF="002216.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2216">&nbsp;</A>
+<I>Christian Lohmaier
+</I>
+
+<!--0 01353371973- -->
+<LI><A HREF="002217.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download managemenet instead of broken mirror-choosing by timezone
+</A><A NAME="2217">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--0 01353392600- -->
+<LI><A HREF="002218.html">[Mageia-webteam] [Bug 3166] use mirrorbrain for download management instead of broken mirror-choosing by timezone
+</A><A NAME="2218">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--0 01354295310- -->
+<LI><A HREF="002219.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A><A NAME="2219">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<!--0 01354295810- -->
+<LI><A HREF="002220.html">[Mageia-webteam] [Bug 8254] secure irc server for the secteam
+</A><A NAME="2220">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Nov 30 18:16:50 CET 2012</i><br>
+ <b>Archived on:</b> <i>Fri Nov 30 18:16:54 CET 2012</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/2012-October.txt.gz b/zarb-ml/mageia-webteam/2012-October.txt.gz
new file mode 100644
index 000000000..d8e2907ec
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-October/002196.html b/zarb-ml/mageia-webteam/2012-October/002196.html
new file mode 100644
index 000000000..9ba7e7baf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/002196.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7784] [New] no confirmation after money donation
+ </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%207784%5D%20%5BNew%5D%20no%20confirmation%20after%20money%0A%09donation&In-Reply-To=%3Cbug-7784-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="Next" HREF="002197.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7784] [New] no confirmation after money donation</H1>
+ <B>Guillaume Lang</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207784%5D%20%5BNew%5D%20no%20confirmation%20after%20money%0A%09donation&In-Reply-To=%3Cbug-7784-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7784] [New] no confirmation after money donation">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Oct 13 13:35:46 CEST 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="002197.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2196">[ date ]</a>
+ <a href="thread.html#2196">[ thread ]</a>
+ <a href="subject.html#2196">[ subject ]</a>
+ <a href="author.html#2196">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7784">https://bugs.mageia.org/show_bug.cgi?id=7784</A>
+
+ Summary: no confirmation after money donation
+ 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">guillaume.lang at pipot.net</A>
+
+
+After making a wire transfer, there is no way to know if everything went fine.
+Combined to the lack of update on the donation page, this gives the impression
+that the money just disappeared and does not encourage to donate again. There
+are at least two ways to address the issue:
+* update the donation page.
+* even better: support the presence of an email address in the 'comment
+section' of the wire transfer, or some equivalent solution.
+
+Basically: Please give some sort of feedback, no matter how brief!
+
+Thanks a lot!
+
+How reproducible:
+Tried once (again next year!).
+
+Steps to Reproduce:
+1. Donate.
+2. Profit?
+
+--
+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>Next message: <A HREF="002197.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2196">[ date ]</a>
+ <a href="thread.html#2196">[ thread ]</a>
+ <a href="subject.html#2196">[ subject ]</a>
+ <a href="author.html#2196">[ 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/2012-October/002197.html b/zarb-ml/mageia-webteam/2012-October/002197.html
new file mode 100644
index 000000000..6d8722674
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/002197.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7784] no confirmation after money donation
+ </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%207784%5D%20no%20confirmation%20after%20money%20donation&In-Reply-To=%3C20121015173040.E91C84703A%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="002196.html">
+ <LINK REL="Next" HREF="002198.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7784] no confirmation after money donation</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207784%5D%20no%20confirmation%20after%20money%20donation&In-Reply-To=%3C20121015173040.E91C84703A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7784] no confirmation after money donation">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 15 19:30:40 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002196.html">[Mageia-webteam] [Bug 7784] [New] no confirmation after money donation
+</A></li>
+ <LI>Next message: <A HREF="002198.html">[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2197">[ date ]</a>
+ <a href="thread.html#2197">[ thread ]</a>
+ <a href="subject.html#2197">[ subject ]</a>
+ <a href="author.html#2197">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7784">https://bugs.mageia.org/show_bug.cgi?id=7784</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 Whiteboard| |OK
+ 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; 2012-10-15 19:30:40 CEST ---
+Thanks for the feedback. Agreed, there's a lot to do on the donation/report
+page and to confirm people for their donation.
+
+The donation page is not updated often, however the financial report is, on a
+monthly basis (except this month where I am slipping a bit).
+
+The culprit here is to find the least effort/best feedback solution, because
+we're a bit short on time/people to develop the donation scripts (through
+Paypal and wire and checks, and all that).
+
+--
+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="002196.html">[Mageia-webteam] [Bug 7784] [New] no confirmation after money donation
+</A></li>
+ <LI>Next message: <A HREF="002198.html">[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2197">[ date ]</a>
+ <a href="thread.html#2197">[ thread ]</a>
+ <a href="subject.html#2197">[ subject ]</a>
+ <a href="author.html#2197">[ 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/2012-October/002198.html b/zarb-ml/mageia-webteam/2012-October/002198.html
new file mode 100644
index 000000000..0e26935d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/002198.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents
+ </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%207818%5D%20%5BNew%5D%20http%3A//check.mageia.org/%20has%20no%0A%20/cauldron%20/2%20/1%20contents&In-Reply-To=%3Cbug-7818-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="002197.html">
+ <LINK REL="Next" HREF="002200.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents</H1>
+ <B>Shlomi Fish</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207818%5D%20%5BNew%5D%20http%3A//check.mageia.org/%20has%20no%0A%20/cauldron%20/2%20/1%20contents&In-Reply-To=%3Cbug-7818-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 16 21:08:19 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002197.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI>Next message: <A HREF="002200.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2198">[ date ]</a>
+ <a href="thread.html#2198">[ thread ]</a>
+ <a href="subject.html#2198">[ subject ]</a>
+ <a href="author.html#2198">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7818">https://bugs.mageia.org/show_bug.cgi?id=7818</A>
+
+ Summary: <A HREF="http://check.mageia.org/">http://check.mageia.org/</A> has no /cauldron /2 /1
+ contents
+ Product: Websites
+ Version: trunk
+ Platform: All
+ URL: <A HREF="http://check.mageia.org/cauldron/">http://check.mageia.org/cauldron/</A>
+ 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">shlomif at iglu.org.il</A>
+
+
+Description of problem:
+
+As reported on the mailing list, <A HREF="http://check.mageia.org/cauldron/">http://check.mageia.org/cauldron/</A> ,
+<A HREF="http://check.mageia.org/2/">http://check.mageia.org/2/</A> have no contents. Please restore them.
+
+How reproducible:
+
+Always.
+
+Steps to Reproduce:
+1. Go to <A HREF="http://check.mageia.org/">http://check.mageia.org/</A> .
+2. Follow one of the links.
+
+--
+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="002197.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A></li>
+ <LI>Next message: <A HREF="002200.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2198">[ date ]</a>
+ <a href="thread.html#2198">[ thread ]</a>
+ <a href="subject.html#2198">[ subject ]</a>
+ <a href="author.html#2198">[ 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/2012-October/002199.html b/zarb-ml/mageia-webteam/2012-October/002199.html
new file mode 100644
index 000000000..9c498667e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/002199.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+ </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%206890%5D%20Financial%20report%20%3A%20Link%20contact%20us%20break&In-Reply-To=%3C20121016194408.93A0446461%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="002201.html">
+ <LINK REL="Next" HREF="002202.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 6890] Financial report : Link contact us break</H1>
+ <B>Arnaud Vacquier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%206890%5D%20Financial%20report%20%3A%20Link%20contact%20us%20break&In-Reply-To=%3C20121016194408.93A0446461%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 6890] Financial report : Link contact us break">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 16 21:44:08 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002201.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI>Next message: <A HREF="002202.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2199">[ date ]</a>
+ <a href="thread.html#2199">[ thread ]</a>
+ <a href="subject.html#2199">[ subject ]</a>
+ <a href="author.html#2199">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=6890">https://bugs.mageia.org/show_bug.cgi?id=6890</A>
+
+--- Comment #2 from Arnaud Vacquier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">inster.css at gmail.com</A>&gt; 2012-10-16 21:44:08 CEST ---
+still break
+
+--
+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="002201.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI>Next message: <A HREF="002202.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2199">[ date ]</a>
+ <a href="thread.html#2199">[ thread ]</a>
+ <a href="subject.html#2199">[ subject ]</a>
+ <a href="author.html#2199">[ 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/2012-October/002200.html b/zarb-ml/mageia-webteam/2012-October/002200.html
new file mode 100644
index 000000000..3e80154cb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/002200.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+ </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%207818%5D%20http%3A//check.mageia.org/%20has%20no%0A%09/cauldron%20/2%20/1%20contents&In-Reply-To=%3C20121016195125.F2D4146703%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="002198.html">
+ <LINK REL="Next" HREF="002201.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207818%5D%20http%3A//check.mageia.org/%20has%20no%0A%09/cauldron%20/2%20/1%20contents&In-Reply-To=%3C20121016195125.F2D4146703%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Oct 16 21:51:25 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002198.html">[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI>Next message: <A HREF="002201.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2200">[ date ]</a>
+ <a href="thread.html#2200">[ thread ]</a>
+ <a href="subject.html#2200">[ subject ]</a>
+ <a href="author.html#2200">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7818">https://bugs.mageia.org/show_bug.cgi?id=7818</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">mageia-sysadm at mageia.org</A>,
+ | |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>
+
+--- Comment #1 from Thierry Vignaud &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>&gt; 2012-10-16 21:51:26 CEST ---
+Indeed
+
+--
+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="002198.html">[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI>Next message: <A HREF="002201.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2200">[ date ]</a>
+ <a href="thread.html#2200">[ thread ]</a>
+ <a href="subject.html#2200">[ subject ]</a>
+ <a href="author.html#2200">[ 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/2012-October/002201.html b/zarb-ml/mageia-webteam/2012-October/002201.html
new file mode 100644
index 000000000..f0a82bdd2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/002201.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+ </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%207818%5D%20http%3A//check.mageia.org/%20has%20no%0A%09/cauldron%20/2%20/1%20contents&In-Reply-To=%3C20121017073656.A30A746756%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="002200.html">
+ <LINK REL="Next" HREF="002199.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207818%5D%20http%3A//check.mageia.org/%20has%20no%0A%09/cauldron%20/2%20/1%20contents&In-Reply-To=%3C20121017073656.A30A746756%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Oct 17 09:36:56 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002200.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI>Next message: <A HREF="002199.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2201">[ date ]</a>
+ <a href="thread.html#2201">[ thread ]</a>
+ <a href="subject.html#2201">[ subject ]</a>
+ <a href="author.html#2201">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7818">https://bugs.mageia.org/show_bug.cgi?id=7818</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
+----------------------------------------------------------------------------
+ AssignedTo|<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">pterjan at gmail.com</A>
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</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="002200.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A></li>
+ <LI>Next message: <A HREF="002199.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2201">[ date ]</a>
+ <a href="thread.html#2201">[ thread ]</a>
+ <a href="subject.html#2201">[ subject ]</a>
+ <a href="author.html#2201">[ 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/2012-October/002202.html b/zarb-ml/mageia-webteam/2012-October/002202.html
new file mode 100644
index 000000000..14758e321
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/002202.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+ </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%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20121029091850.010A846A16%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="002199.html">
+ <LINK REL="Next" HREF="002203.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia</H1>
+ <B>Kristoffer Grundstr&#195;&#182;m</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20121029091850.010A846A16%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 29 10:18:49 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002199.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A></li>
+ <LI>Next message: <A HREF="002203.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2202">[ date ]</a>
+ <a href="thread.html#2202">[ thread ]</a>
+ <a href="subject.html#2202">[ subject ]</a>
+ <a href="author.html#2202">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #15 from Kristoffer Grundstr&#246;m &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kristoffer.grundstrom1983 at gmail.com</A>&gt; 2012-10-29 10:18:48 CET ---
+Is this still possible? It's been some time since I asked for this. I'll update
+the request on the mailinglist 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 the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002199.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A></li>
+ <LI>Next message: <A HREF="002203.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2202">[ date ]</a>
+ <a href="thread.html#2202">[ thread ]</a>
+ <a href="subject.html#2202">[ subject ]</a>
+ <a href="author.html#2202">[ 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/2012-October/002203.html b/zarb-ml/mageia-webteam/2012-October/002203.html
new file mode 100644
index 000000000..8ea233068
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/002203.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+ </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%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20121029092325.013C846A2C%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="002202.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%203381%5D%20%5BWISH%5D%20Adapt%20the%20OpenSuse%20Studio%20idea%0A%09to%20Mageia&In-Reply-To=%3C20121029092325.013C846A2C%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Oct 29 10:23:24 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002202.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2203">[ date ]</a>
+ <a href="thread.html#2203">[ thread ]</a>
+ <a href="subject.html#2203">[ subject ]</a>
+ <a href="author.html#2203">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=3381">https://bugs.mageia.org/show_bug.cgi?id=3381</A>
+
+--- Comment #16 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2012-10-29 10:23:24 CET ---
+It is possible. It may happend - if you find people to do it. It sounds like a
+cool idea. Just asking/wishing/suggesting is not 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 the assignee for the bug.
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002202.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2203">[ date ]</a>
+ <a href="thread.html#2203">[ thread ]</a>
+ <a href="subject.html#2203">[ subject ]</a>
+ <a href="author.html#2203">[ 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/2012-October/author.html b/zarb-ml/mageia-webteam/2012-October/author.html
new file mode 100644
index 000000000..aa2ca6a70
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/author.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2012 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 2012 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>Sat Oct 13 13:35:46 CEST 2012</i><br>
+ <b>Ending:</b> <i>Mon Oct 29 10:23:24 CET 2012</i><br>
+ <b>Messages:</b> 8<p>
+ <ul>
+
+<LI><A HREF="002198.html">[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2198">&nbsp;</A>
+<I>Shlomi Fish
+</I>
+
+<LI><A HREF="002202.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2202">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002196.html">[Mageia-webteam] [Bug 7784] [New] no confirmation after money donation
+</A><A NAME="2196">&nbsp;</A>
+<I>Guillaume Lang
+</I>
+
+<LI><A HREF="002199.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A><A NAME="2199">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002200.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2200">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002197.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2197">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002201.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2201">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002203.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2203">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Oct 29 10:23:24 CET 2012</i><br>
+ <b>Archived on:</b> <i>Mon Oct 29 10:23:28 CET 2012</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/2012-October/date.html b/zarb-ml/mageia-webteam/2012-October/date.html
new file mode 100644
index 000000000..8b63e80b7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/date.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2012 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 2012 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>Sat Oct 13 13:35:46 CEST 2012</i><br>
+ <b>Ending:</b> <i>Mon Oct 29 10:23:24 CET 2012</i><br>
+ <b>Messages:</b> 8<p>
+ <ul>
+
+<LI><A HREF="002196.html">[Mageia-webteam] [Bug 7784] [New] no confirmation after money donation
+</A><A NAME="2196">&nbsp;</A>
+<I>Guillaume Lang
+</I>
+
+<LI><A HREF="002197.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2197">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002198.html">[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2198">&nbsp;</A>
+<I>Shlomi Fish
+</I>
+
+<LI><A HREF="002199.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A><A NAME="2199">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002200.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2200">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002201.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2201">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002202.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2202">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002203.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2203">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Oct 29 10:23:24 CET 2012</i><br>
+ <b>Archived on:</b> <i>Mon Oct 29 10:23:28 CET 2012</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/2012-October/index.html b/zarb-ml/mageia-webteam/2012-October/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-October/subject.html b/zarb-ml/mageia-webteam/2012-October/subject.html
new file mode 100644
index 000000000..e4ebefe0b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/subject.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2012 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 2012 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>Sat Oct 13 13:35:46 CEST 2012</i><br>
+ <b>Ending:</b> <i>Mon Oct 29 10:23:24 CET 2012</i><br>
+ <b>Messages:</b> 8<p>
+ <ul>
+
+<LI><A HREF="002202.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2202">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<LI><A HREF="002203.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2203">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002199.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A><A NAME="2199">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<LI><A HREF="002196.html">[Mageia-webteam] [Bug 7784] [New] no confirmation after money donation
+</A><A NAME="2196">&nbsp;</A>
+<I>Guillaume Lang
+</I>
+
+<LI><A HREF="002197.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2197">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002198.html">[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2198">&nbsp;</A>
+<I>Shlomi Fish
+</I>
+
+<LI><A HREF="002200.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2200">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<LI><A HREF="002201.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2201">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Oct 29 10:23:24 CET 2012</i><br>
+ <b>Archived on:</b> <i>Mon Oct 29 10:23:28 CET 2012</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/2012-October/thread.html b/zarb-ml/mageia-webteam/2012-October/thread.html
new file mode 100644
index 000000000..f6ae93e78
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-October/thread.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2012 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 2012 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>Sat Oct 13 13:35:46 CEST 2012</i><br>
+ <b>Ending:</b> <i>Mon Oct 29 10:23:24 CET 2012</i><br>
+ <b>Messages:</b> 8<p>
+ <ul>
+
+<!--0 01350128146- -->
+<LI><A HREF="002196.html">[Mageia-webteam] [Bug 7784] [New] no confirmation after money donation
+</A><A NAME="2196">&nbsp;</A>
+<I>Guillaume Lang
+</I>
+
+<UL>
+<!--1 01350128146-01350322240- -->
+<LI><A HREF="002197.html">[Mageia-webteam] [Bug 7784] no confirmation after money donation
+</A><A NAME="2197">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01350414499- -->
+<LI><A HREF="002198.html">[Mageia-webteam] [Bug 7818] [New] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2198">&nbsp;</A>
+<I>Shlomi Fish
+</I>
+
+<UL>
+<!--1 01350414499-01350417085- -->
+<LI><A HREF="002200.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2200">&nbsp;</A>
+<I>Thierry Vignaud
+</I>
+
+<!--1 01350414499-01350459416- -->
+<LI><A HREF="002201.html">[Mageia-webteam] [Bug 7818] http://check.mageia.org/ has no /cauldron /2 /1 contents
+</A><A NAME="2201">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01350416648- -->
+<LI><A HREF="002199.html">[Mageia-webteam] [Bug 6890] Financial report : Link contact us break
+</A><A NAME="2199">&nbsp;</A>
+<I>Arnaud Vacquier
+</I>
+
+<!--0 01351502329- -->
+<LI><A HREF="002202.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2202">&nbsp;</A>
+<I>Kristoffer Grundstr&#195;&#182;m
+</I>
+
+<!--0 01351502604- -->
+<LI><A HREF="002203.html">[Mageia-webteam] [Bug 3381] [WISH] Adapt the OpenSuse Studio idea to Mageia
+</A><A NAME="2203">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Oct 29 10:23:24 CET 2012</i><br>
+ <b>Archived on:</b> <i>Mon Oct 29 10:23:28 CET 2012</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/2012-September.txt.gz b/zarb-ml/mageia-webteam/2012-September.txt.gz
new file mode 100644
index 000000000..b16599f21
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2012-September/002189.html b/zarb-ml/mageia-webteam/2012-September/002189.html
new file mode 100644
index 000000000..acc0904e8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/002189.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+ </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.2&In-Reply-To=%3C20120902132128.497BD45F28%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="002190.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2</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.2&In-Reply-To=%3C20120902132128.497BD45F28%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Sep 2 15:21:28 CEST 2012</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="002190.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2189">[ date ]</a>
+ <a href="thread.html#2189">[ thread ]</a>
+ <a href="subject.html#2189">[ subject ]</a>
+ <a href="author.html#2189">[ 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 #47 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2012-09-02 15:21:27 CEST ---
+in reply to comment #45
+
+are you saying that what is delaying the update is the test in a VM? if it
+isn't a difficult task i'm volunteering to test the upgrade.
+
+--
+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>Next message: <A HREF="002190.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2189">[ date ]</a>
+ <a href="thread.html#2189">[ thread ]</a>
+ <a href="subject.html#2189">[ subject ]</a>
+ <a href="author.html#2189">[ 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/2012-September/002190.html b/zarb-ml/mageia-webteam/2012-September/002190.html
new file mode 100644
index 000000000..06f226fa8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/002190.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+ </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%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120906163652.0CA0046201%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="002189.html">
+ <LINK REL="Next" HREF="002191.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207146%5D%20Remove%20ibiblio%20as%20ftp%20mirror%20for%20the%20iso&In-Reply-To=%3C20120906163652.0CA0046201%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Sep 6 18:36:52 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002189.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002191.html">[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2190">[ date ]</a>
+ <a href="thread.html#2190">[ thread ]</a>
+ <a href="subject.html#2190">[ subject ]</a>
+ <a href="author.html#2190">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7146">https://bugs.mageia.org/show_bug.cgi?id=7146</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">boklm at mars-attacks.org</A>
+
+--- Comment #4 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2012-09-06 18:36:51 CEST ---
+We should probably add support on mirrors.mageia.org for mirrors that don't
+provide ISOs.
+
+--
+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="002189.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A></li>
+ <LI>Next message: <A HREF="002191.html">[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2190">[ date ]</a>
+ <a href="thread.html#2190">[ thread ]</a>
+ <a href="subject.html#2190">[ subject ]</a>
+ <a href="author.html#2190">[ 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/2012-September/002191.html b/zarb-ml/mageia-webteam/2012-September/002191.html
new file mode 100644
index 000000000..0edfc1c38
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/002191.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible
+ </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%207491%5D%20%5BNew%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3Cbug-7491-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="002190.html">
+ <LINK REL="Next" HREF="002192.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible</H1>
+ <B>Jens Maucher</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207491%5D%20%5BNew%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3Cbug-7491-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Sep 16 13:25:29 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002190.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002192.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2191">[ date ]</a>
+ <a href="thread.html#2191">[ thread ]</a>
+ <a href="subject.html#2191">[ subject ]</a>
+ <a href="author.html#2191">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7491">https://bugs.mageia.org/show_bug.cgi?id=7491</A>
+
+ Summary: Font in ml.mageia.org is terrible
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ 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">defcon-linux at arcor.de</A>
+
+
+The font in sympa ins crabbed.
+I attached a screenshot what it looks like in Firefox on a fresh installed
+mga2.
+
+--
+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="002190.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A></li>
+ <LI>Next message: <A HREF="002192.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2191">[ date ]</a>
+ <a href="thread.html#2191">[ thread ]</a>
+ <a href="subject.html#2191">[ subject ]</a>
+ <a href="author.html#2191">[ 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/2012-September/002192.html b/zarb-ml/mageia-webteam/2012-September/002192.html
new file mode 100644
index 000000000..0557cdf83
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/002192.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+ </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%207491%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3C20120916112816.82B4846250%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="002191.html">
+ <LINK REL="Next" HREF="002193.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible</H1>
+ <B>Jens Maucher</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207491%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3C20120916112816.82B4846250%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Sep 16 13:28:16 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002191.html">[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible
+</A></li>
+ <LI>Next message: <A HREF="002193.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2192">[ date ]</a>
+ <a href="thread.html#2192">[ thread ]</a>
+ <a href="subject.html#2192">[ subject ]</a>
+ <a href="author.html#2192">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7491">https://bugs.mageia.org/show_bug.cgi?id=7491</A>
+
+--- Comment #1 from Jens Maucher &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">defcon-linux at arcor.de</A>&gt; 2012-09-16 13:28:16 CEST ---
+Created attachment 2802
+ --&gt; <A HREF="https://bugs.mageia.org/attachment.cgi?id=2802">https://bugs.mageia.org/attachment.cgi?id=2802</A>
+sympa
+
+--
+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="002191.html">[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible
+</A></li>
+ <LI>Next message: <A HREF="002193.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2192">[ date ]</a>
+ <a href="thread.html#2192">[ thread ]</a>
+ <a href="subject.html#2192">[ subject ]</a>
+ <a href="author.html#2192">[ 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/2012-September/002193.html b/zarb-ml/mageia-webteam/2012-September/002193.html
new file mode 100644
index 000000000..f5028ef7f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/002193.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+ </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%207491%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3C20120916113558.17B5546251%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="002192.html">
+ <LINK REL="Next" HREF="002194.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible</H1>
+ <B>Jens Maucher</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207491%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3C20120916113558.17B5546251%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Sep 16 13:35:58 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002192.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI>Next message: <A HREF="002194.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2193">[ date ]</a>
+ <a href="thread.html#2193">[ thread ]</a>
+ <a href="subject.html#2193">[ subject ]</a>
+ <a href="author.html#2193">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7491">https://bugs.mageia.org/show_bug.cgi?id=7491</A>
+
+--- Comment #2 from Jens Maucher &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">defcon-linux at arcor.de</A>&gt; 2012-09-16 13:35:58 CEST ---
+In the style.css are a lot of microsoft fonts, and AFAIK mageia didn't offer a
+rpm package of ms-fonts.
+Maybe it could be a solution to change this fonts to dejavu, bitstream or
+something else that is installed by default on workstations.
+
+Cheers
+
+--
+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="002192.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI>Next message: <A HREF="002194.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2193">[ date ]</a>
+ <a href="thread.html#2193">[ thread ]</a>
+ <a href="subject.html#2193">[ subject ]</a>
+ <a href="author.html#2193">[ 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/2012-September/002194.html b/zarb-ml/mageia-webteam/2012-September/002194.html
new file mode 100644
index 000000000..940263c99
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/002194.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+ </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%207491%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3C20120916115317.5A52346251%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="002193.html">
+ <LINK REL="Next" HREF="002195.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207491%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3C20120916115317.5A52346251%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Sep 16 13:53:17 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002193.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI>Next message: <A HREF="002195.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2194">[ date ]</a>
+ <a href="thread.html#2194">[ thread ]</a>
+ <a href="subject.html#2194">[ subject ]</a>
+ <a href="author.html#2194">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7491">https://bugs.mageia.org/show_bug.cgi?id=7491</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
+----------------------------------------------------------------------------
+ URL| |<A HREF="https://ml.mageia.org/">https://ml.mageia.org/</A>
+ Keywords| |Atelier
+ 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; 2012-09-16 13:53:17 CEST ---
+It looks like both a font-family and a font-size issue. But just this:
+
+--- style.css.orig 2012-09-16 13:51:07.000000000 +0200
++++ style.css 2012-09-16 13:51:20.000000000 +0200
+@@ -19,7 +19,7 @@
+ }
+
+ body {
+- font-size: 62.5%;
++ font-size: 80%;
+ background: #DEE7F7;
+ }
+
+improves a lot.
+
+--
+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="002193.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI>Next message: <A HREF="002195.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2194">[ date ]</a>
+ <a href="thread.html#2194">[ thread ]</a>
+ <a href="subject.html#2194">[ subject ]</a>
+ <a href="author.html#2194">[ 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/2012-September/002195.html b/zarb-ml/mageia-webteam/2012-September/002195.html
new file mode 100644
index 000000000..9d8bf610d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/002195.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+ </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%207491%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3C20120916123144.660334626A%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="002194.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible</H1>
+ <B>Jens Maucher</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%207491%5D%20Font%20in%20ml.mageia.org%20is%20terrible&In-Reply-To=%3C20120916123144.660334626A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Sep 16 14:31:44 CEST 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002194.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2195">[ date ]</a>
+ <a href="thread.html#2195">[ thread ]</a>
+ <a href="subject.html#2195">[ subject ]</a>
+ <a href="author.html#2195">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=7491">https://bugs.mageia.org/show_bug.cgi?id=7491</A>
+
+--- Comment #4 from Jens Maucher &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">defcon-linux at arcor.de</A>&gt; 2012-09-16 14:31:44 CEST ---
+I changed with firebug (firefox addon) the font-family to
+
+font-family: &quot;sans-serif&quot;;
+
+and it looks great. Just deleting Trebuchet and so on.
+
+--
+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="002194.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2195">[ date ]</a>
+ <a href="thread.html#2195">[ thread ]</a>
+ <a href="subject.html#2195">[ subject ]</a>
+ <a href="author.html#2195">[ 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/2012-September/author.html b/zarb-ml/mageia-webteam/2012-September/author.html
new file mode 100644
index 000000000..a1bce2c62
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/author.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam September 2012 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>September 2012 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>Sun Sep 2 15:21:28 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sun Sep 16 14:31:44 CEST 2012</i><br>
+ <b>Messages:</b> 7<p>
+ <ul>
+
+<LI><A HREF="002189.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2189">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002191.html">[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible
+</A><A NAME="2191">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002192.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2192">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002193.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2193">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002195.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2195">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002190.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2190">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002194.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2194">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Sep 16 14:31:44 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sun Sep 16 14:31:47 CEST 2012</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/2012-September/date.html b/zarb-ml/mageia-webteam/2012-September/date.html
new file mode 100644
index 000000000..8e5ce83dd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/date.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam September 2012 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>September 2012 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>Sun Sep 2 15:21:28 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sun Sep 16 14:31:44 CEST 2012</i><br>
+ <b>Messages:</b> 7<p>
+ <ul>
+
+<LI><A HREF="002189.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2189">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002190.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2190">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002191.html">[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible
+</A><A NAME="2191">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002192.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2192">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002193.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2193">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002194.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2194">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002195.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2195">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Sep 16 14:31:44 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sun Sep 16 14:31:47 CEST 2012</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/2012-September/index.html b/zarb-ml/mageia-webteam/2012-September/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2012-September/subject.html b/zarb-ml/mageia-webteam/2012-September/subject.html
new file mode 100644
index 000000000..e0dfdbddd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/subject.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam September 2012 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>September 2012 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>Sun Sep 2 15:21:28 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sun Sep 16 14:31:44 CEST 2012</i><br>
+ <b>Messages:</b> 7<p>
+ <ul>
+
+<LI><A HREF="002189.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2189">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<LI><A HREF="002190.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2190">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002191.html">[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible
+</A><A NAME="2191">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002192.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2192">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002193.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2193">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<LI><A HREF="002194.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2194">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="002195.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2195">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Sep 16 14:31:44 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sun Sep 16 14:31:47 CEST 2012</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/2012-September/thread.html b/zarb-ml/mageia-webteam/2012-September/thread.html
new file mode 100644
index 000000000..d4249585e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2012-September/thread.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam September 2012 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>September 2012 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>Sun Sep 2 15:21:28 CEST 2012</i><br>
+ <b>Ending:</b> <i>Sun Sep 16 14:31:44 CEST 2012</i><br>
+ <b>Messages:</b> 7<p>
+ <ul>
+
+<!--0 01346592088- -->
+<LI><A HREF="002189.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.2
+</A><A NAME="2189">&nbsp;</A>
+<I>Marcello Anni
+</I>
+
+<!--0 01346949412- -->
+<LI><A HREF="002190.html">[Mageia-webteam] [Bug 7146] Remove ibiblio as ftp mirror for the iso
+</A><A NAME="2190">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<!--0 01347794729- -->
+<LI><A HREF="002191.html">[Mageia-webteam] [Bug 7491] [New] Font in ml.mageia.org is terrible
+</A><A NAME="2191">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<UL>
+<!--1 01347794729-01347794896- -->
+<LI><A HREF="002192.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2192">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<!--1 01347794729-01347795358- -->
+<LI><A HREF="002193.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2193">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+<!--1 01347794729-01347796397- -->
+<LI><A HREF="002194.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2194">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--1 01347794729-01347798704- -->
+<LI><A HREF="002195.html">[Mageia-webteam] [Bug 7491] Font in ml.mageia.org is terrible
+</A><A NAME="2195">&nbsp;</A>
+<I>Jens Maucher
+</I>
+
+</UL>
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sun Sep 16 14:31:44 CEST 2012</i><br>
+ <b>Archived on:</b> <i>Sun Sep 16 14:31:47 CEST 2012</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/2013-April.txt.gz b/zarb-ml/mageia-webteam/2013-April.txt.gz
new file mode 100644
index 000000000..1e898d257
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2013-April/002436.html b/zarb-ml/mageia-webteam/2013-April/002436.html
new file mode 100644
index 000000000..1ae2fa61e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002436.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+ </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%209587%5D%20Unsubscribe%20from%0A%09packagers%40group.mageia.org&In-Reply-To=%3Cbug-9587-14-pEg5kHO48d%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+
+ <LINK REL="Next" HREF="002437.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209587%5D%20Unsubscribe%20from%0A%09packagers%40group.mageia.org&In-Reply-To=%3Cbug-9587-14-pEg5kHO48d%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 1 20:30:51 CEST 2013</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="002437.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2436">[ date ]</a>
+ <a href="thread.html#2436">[ thread ]</a>
+ <a href="subject.html#2436">[ subject ]</a>
+ <a href="author.html#2436">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9587">https://bugs.mageia.org/show_bug.cgi?id=9587</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">mageia-webteam at mageia.org</A>
+
+--
+You are receiving this mail because:
+You are on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="002437.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2436">[ date ]</a>
+ <a href="thread.html#2436">[ thread ]</a>
+ <a href="subject.html#2436">[ subject ]</a>
+ <a href="author.html#2436">[ 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/2013-April/002437.html b/zarb-ml/mageia-webteam/2013-April/002437.html
new file mode 100644
index 000000000..a34ed6caa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002437.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+ </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%209587%5D%20Unsubscribe%20from%0A%09packagers%40group.mageia.org&In-Reply-To=%3Cbug-9587-14-jV84eZnAbU%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="002436.html">
+ <LINK REL="Next" HREF="002438.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org</H1>
+ <B>Thomas Backlund</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209587%5D%20Unsubscribe%20from%0A%09packagers%40group.mageia.org&In-Reply-To=%3Cbug-9587-14-jV84eZnAbU%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 1 20:34:43 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002436.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002438.html">[Mageia-webteam] [Bug 9588] [New]: date search fails
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2437">[ date ]</a>
+ <a href="thread.html#2437">[ thread ]</a>
+ <a href="subject.html#2437">[ subject ]</a>
+ <a href="author.html#2437">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9587">https://bugs.mageia.org/show_bug.cgi?id=9587</A>
+
+Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>
+
+--- Comment #2 from Thomas Backlund &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmb at iki.fi</A>&gt; ---
+
+or maybe atleast set reply to the -dev ml
+
+--
+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="002436.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002438.html">[Mageia-webteam] [Bug 9588] [New]: date search fails
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2437">[ date ]</a>
+ <a href="thread.html#2437">[ thread ]</a>
+ <a href="subject.html#2437">[ subject ]</a>
+ <a href="author.html#2437">[ 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/2013-April/002438.html b/zarb-ml/mageia-webteam/2013-April/002438.html
new file mode 100644
index 000000000..229659a32
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002438.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9588] [New]: date search fails
+ </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%209588%5D%20%5BNew%5D%3A%20date%20search%20fails&In-Reply-To=%3Cbug-9588-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="002437.html">
+ <LINK REL="Next" HREF="002439.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9588] [New]: date search fails</H1>
+ <B>Scott Westlake</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209588%5D%20%5BNew%5D%3A%20date%20search%20fails&In-Reply-To=%3Cbug-9588-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9588] [New]: date search fails">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 1 22:35:52 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002437.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002439.html">[Mageia-webteam] [Bug 9588] date search fails
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2438">[ date ]</a>
+ <a href="thread.html#2438">[ thread ]</a>
+ <a href="subject.html#2438">[ subject ]</a>
+ <a href="author.html#2438">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9588">https://bugs.mageia.org/show_bug.cgi?id=9588</A>
+
+ Bug ID: 9588
+ Summary: date search fails
+ Classification: Unclassified
+ Product: Infrastructure
+ Version: unspecified
+ Hardware: All
+ OS: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: Bugzilla
+ Assignee: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ Reporter: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">westlake2012 at videotron.ca</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>
+
+Description of problem:
+- Bugzilla yields failure to return date-search results
+
+Version-Release number of selected component (if applicable):
+4.4rc2
+
+How reproducible:
+in search field &quot;-1d&quot;
+
+Steps to Reproduce:
+1. type &quot;-1d&quot; (meaning one day ago)
+2. Click on search button
+3.
+
+(I'm not an expert, but I'm thinking -1d can be typed alone in the search box)
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+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="002437.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002439.html">[Mageia-webteam] [Bug 9588] date search fails
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2438">[ date ]</a>
+ <a href="thread.html#2438">[ thread ]</a>
+ <a href="subject.html#2438">[ subject ]</a>
+ <a href="author.html#2438">[ 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/2013-April/002439.html b/zarb-ml/mageia-webteam/2013-April/002439.html
new file mode 100644
index 000000000..3dc6cab5f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002439.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9588] date search fails
+ </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%209588%5D%20date%20search%20fails&In-Reply-To=%3Cbug-9588-14-cDKLkivPZI%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="002438.html">
+ <LINK REL="Next" HREF="002440.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9588] date search fails</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209588%5D%20date%20search%20fails&In-Reply-To=%3Cbug-9588-14-cDKLkivPZI%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9588] date search fails">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 1 23:35:12 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002438.html">[Mageia-webteam] [Bug 9588] [New]: date search fails
+</A></li>
+ <LI>Next message: <A HREF="002440.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2439">[ date ]</a>
+ <a href="thread.html#2439">[ thread ]</a>
+ <a href="subject.html#2439">[ subject ]</a>
+ <a href="author.html#2439">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9588">https://bugs.mageia.org/show_bug.cgi?id=9588</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution|--- |INVALID
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; ---
+nope it can not see at the bugzilla test instance too
+<A HREF="https://landfill.bugzilla.org/bugzilla-4.4-branch/buglist.cgi?quicksearch=-1d">https://landfill.bugzilla.org/bugzilla-4.4-branch/buglist.cgi?quicksearch=-1d</A>
+
+cf <A HREF="https://bugs.mageia.org/page.cgi?id=quicksearch.html">https://bugs.mageia.org/page.cgi?id=quicksearch.html</A> for what is possible
+and what not
+
+you can also save your search to run them quickly
+
+--
+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="002438.html">[Mageia-webteam] [Bug 9588] [New]: date search fails
+</A></li>
+ <LI>Next message: <A HREF="002440.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2439">[ date ]</a>
+ <a href="thread.html#2439">[ thread ]</a>
+ <a href="subject.html#2439">[ subject ]</a>
+ <a href="author.html#2439">[ 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/2013-April/002440.html b/zarb-ml/mageia-webteam/2013-April/002440.html
new file mode 100644
index 000000000..344d5ceb6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002440.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+ </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%209587%5D%20Unsubscribe%20from%0A%09packagers%40group.mageia.org&In-Reply-To=%3Cbug-9587-14-EVnbzi93Ve%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="002439.html">
+ <LINK REL="Next" HREF="002441.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209587%5D%20Unsubscribe%20from%0A%09packagers%40group.mageia.org&In-Reply-To=%3Cbug-9587-14-EVnbzi93Ve%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 3 13:31:23 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002439.html">[Mageia-webteam] [Bug 9588] date search fails
+</A></li>
+ <LI>Next message: <A HREF="002441.html">[Mageia-webteam] [Bug 9622] [New]: Support questions asked in the wrong sub-forum.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2440">[ date ]</a>
+ <a href="thread.html#2440">[ thread ]</a>
+ <a href="subject.html#2440">[ subject ]</a>
+ <a href="author.html#2440">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9587">https://bugs.mageia.org/show_bug.cgi?id=9587</A>
+
+Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at gmail.com</A>
+
+--- Comment #3 from Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at gmail.com</A>&gt; ---
+All in all I found 5 - in words FIVE - threads in my gmail account, which were
+addressed to the packagers@ address, including the mail about this bug report,
+so I have to wonder...
+
+--
+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="002439.html">[Mageia-webteam] [Bug 9588] date search fails
+</A></li>
+ <LI>Next message: <A HREF="002441.html">[Mageia-webteam] [Bug 9622] [New]: Support questions asked in the wrong sub-forum.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2440">[ date ]</a>
+ <a href="thread.html#2440">[ thread ]</a>
+ <a href="subject.html#2440">[ subject ]</a>
+ <a href="author.html#2440">[ 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/2013-April/002441.html b/zarb-ml/mageia-webteam/2013-April/002441.html
new file mode 100644
index 000000000..f9a09835c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002441.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9622] [New]: Support questions asked in the wrong sub-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%209622%5D%20%5BNew%5D%3A%20Support%20questions%20asked%20in%20the%0A%09wrong%20sub-forum.&In-Reply-To=%3Cbug-9622-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="002440.html">
+ <LINK REL="Next" HREF="002445.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9622] [New]: Support questions asked in the wrong sub-forum.</H1>
+ <B>Ken Bergen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209622%5D%20%5BNew%5D%3A%20Support%20questions%20asked%20in%20the%0A%09wrong%20sub-forum.&In-Reply-To=%3Cbug-9622-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9622] [New]: Support questions asked in the wrong sub-forum.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 5 10:55:30 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002440.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002445.html">[Mageia-webteam] [Bug 9622] Support questions asked in the wrong sub-forum.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2441">[ date ]</a>
+ <a href="thread.html#2441">[ thread ]</a>
+ <a href="subject.html#2441">[ subject ]</a>
+ <a href="author.html#2441">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9622">https://bugs.mageia.org/show_bug.cgi?id=9622</A>
+
+ Bug ID: 9622
+ Summary: Support questions asked in the wrong sub-forum.
+ Classification: Unclassified
+ Product: Websites
+ Version: trunk
+ Hardware: All
+ OS: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: All
+ Assignee: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ Reporter: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">kbergen at telus.net</A>
+
+Description of problem:
+
+New users with a question to ask look down as far as
+
+&quot;Questions, tips &amp; tricks, tutorials...&quot;
+
+See &quot;Questions&quot; and ask their question there without looking farther down to
+&quot;Support&quot;.
+
+A fix would be to remove the word Question from the description.
+Another fix would be to make it clear that this is a place to give tips not to
+ask questions.
+
+Ken
+
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+You are receiving this mail because:
+You are the assignee for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002440.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A></li>
+ <LI>Next message: <A HREF="002445.html">[Mageia-webteam] [Bug 9622] Support questions asked in the wrong sub-forum.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2441">[ date ]</a>
+ <a href="thread.html#2441">[ thread ]</a>
+ <a href="subject.html#2441">[ subject ]</a>
+ <a href="author.html#2441">[ 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/2013-April/002442.html b/zarb-ml/mageia-webteam/2013-April/002442.html
new file mode 100644
index 000000000..868e9ea97
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002442.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+ </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%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3Cbug-8460-14-3nixm2XhWK%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="002445.html">
+ <LINK REL="Next" HREF="002443.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)</H1>
+ <B>Sander Lepik</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%208460%5D%20Firefox%20doesn%27t%20open%20localized%20Mageia%0A%20page%20%28indexhtml%20redirection%29&In-Reply-To=%3Cbug-8460-14-3nixm2XhWK%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 5 14:56:38 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002445.html">[Mageia-webteam] [Bug 9622] Support questions asked in the wrong sub-forum.
+</A></li>
+ <LI>Next message: <A HREF="002443.html">[Mageia-webteam] [Bug 9626] [New]: No more access to mailing lists
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2442">[ date ]</a>
+ <a href="thread.html#2442">[ thread ]</a>
+ <a href="subject.html#2442">[ subject ]</a>
+ <a href="author.html#2442">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=8460">https://bugs.mageia.org/show_bug.cgi?id=8460</A>
+
+Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>
+
+--- Comment #12 from Sander Lepik &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sander.lepik at eesti.ee</A>&gt; ---
+I think we can't do much here:
+<A HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=771999">https://bugzilla.mozilla.org/show_bug.cgi?id=771999</A>
+
+--
+You are receiving this mail because:
+You are the QA Contact for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002445.html">[Mageia-webteam] [Bug 9622] Support questions asked in the wrong sub-forum.
+</A></li>
+ <LI>Next message: <A HREF="002443.html">[Mageia-webteam] [Bug 9626] [New]: No more access to mailing lists
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2442">[ date ]</a>
+ <a href="thread.html#2442">[ thread ]</a>
+ <a href="subject.html#2442">[ subject ]</a>
+ <a href="author.html#2442">[ 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/2013-April/002443.html b/zarb-ml/mageia-webteam/2013-April/002443.html
new file mode 100644
index 000000000..c455d1e6c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002443.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9626] [New]: No more access to mailing lists
+ </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%209626%5D%20%5BNew%5D%3A%20No%20more%20access%20to%20mailing%20lists&In-Reply-To=%3Cbug-9626-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="002442.html">
+ <LINK REL="Next" HREF="002444.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9626] [New]: No more access to mailing lists</H1>
+ <B>Philippe Flat</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209626%5D%20%5BNew%5D%3A%20No%20more%20access%20to%20mailing%20lists&In-Reply-To=%3Cbug-9626-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9626] [New]: No more access to mailing lists">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 5 21:32:39 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002442.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002444.html">[Mageia-webteam] [Bug 9626] No more access to mailing lists
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2443">[ date ]</a>
+ <a href="thread.html#2443">[ thread ]</a>
+ <a href="subject.html#2443">[ subject ]</a>
+ <a href="author.html#2443">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9626">https://bugs.mageia.org/show_bug.cgi?id=9626</A>
+
+ Bug ID: 9626
+ Summary: No more access to mailing lists
+ Classification: Unclassified
+ Product: Websites
+ Version: trunk
+ Hardware: x86_64
+ OS: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: www.mageia.org
+ Assignee: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ Reporter: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">philippe.flat at orange.fr</A>
+
+Description of problem:
+
+
+Version-Release number of selected component (if applicable):
+When trying to go to mailing list, Firefox display an error message page:
+
+&quot;Bug in Mailman version 2.1.12
+
+We're sorry, we hit a bug!
+
+Please inform the webmaster for this site of this problem. Printing of
+traceback and other system information has been explicitly inhibited, but the
+webmaster can find this information in the Mailman error logs. &quot;
+
+
+How reproducible:
+Every time
+
+Steps to Reproduce:
+1.open <A HREF="http://www.mageia.org/en/community/">http://www.mageia.org/en/community/</A>
+2.click on mailing-lists
+3.
+
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+You are receiving this mail because:
+You are the assignee for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002442.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI>Next message: <A HREF="002444.html">[Mageia-webteam] [Bug 9626] No more access to mailing lists
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2443">[ date ]</a>
+ <a href="thread.html#2443">[ thread ]</a>
+ <a href="subject.html#2443">[ subject ]</a>
+ <a href="author.html#2443">[ 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/2013-April/002444.html b/zarb-ml/mageia-webteam/2013-April/002444.html
new file mode 100644
index 000000000..254ccdc74
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002444.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9626] No more access to mailing lists
+ </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%209626%5D%20No%20more%20access%20to%20mailing%20lists&In-Reply-To=%3Cbug-9626-14-PkPDM2xTRt%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="002443.html">
+ <LINK REL="Next" HREF="002446.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9626] No more access to mailing lists</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209626%5D%20No%20more%20access%20to%20mailing%20lists&In-Reply-To=%3Cbug-9626-14-PkPDM2xTRt%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9626] No more access to mailing lists">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 5 21:55:16 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002443.html">[Mageia-webteam] [Bug 9626] [New]: No more access to mailing lists
+</A></li>
+ <LI>Next message: <A HREF="002446.html">[Mageia-webteam] Mailing list migration: this list is closing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2444">[ date ]</a>
+ <a href="thread.html#2444">[ thread ]</a>
+ <a href="subject.html#2444">[ subject ]</a>
+ <a href="author.html#2444">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9626">https://bugs.mageia.org/show_bug.cgi?id=9626</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution|--- |DUPLICATE
+
+--- Comment #1 from Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; ---
+dup
+
+*** This bug has been marked as a duplicate of bug 9595 ***
+
+--
+You are receiving this mail because:
+You are the assignee for the bug.
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002443.html">[Mageia-webteam] [Bug 9626] [New]: No more access to mailing lists
+</A></li>
+ <LI>Next message: <A HREF="002446.html">[Mageia-webteam] Mailing list migration: this list is closing
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2444">[ date ]</a>
+ <a href="thread.html#2444">[ thread ]</a>
+ <a href="subject.html#2444">[ subject ]</a>
+ <a href="author.html#2444">[ 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/2013-April/002445.html b/zarb-ml/mageia-webteam/2013-April/002445.html
new file mode 100644
index 000000000..739a487a4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002445.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9622] Support questions asked in the wrong sub-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%209622%5D%20Support%20questions%20asked%20in%20the%20wrong%0A%09sub-forum.&In-Reply-To=%3Cbug-9622-14-MQNHrev018%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="002441.html">
+ <LINK REL="Next" HREF="002442.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9622] Support questions asked in the wrong sub-forum.</H1>
+ <B>Manuel Hiebel</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209622%5D%20Support%20questions%20asked%20in%20the%20wrong%0A%09sub-forum.&In-Reply-To=%3Cbug-9622-14-MQNHrev018%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9622] Support questions asked in the wrong sub-forum.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 6 23:11:20 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002441.html">[Mageia-webteam] [Bug 9622] [New]: Support questions asked in the wrong sub-forum.
+</A></li>
+ <LI>Next message: <A HREF="002442.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2445">[ date ]</a>
+ <a href="thread.html#2445">[ thread ]</a>
+ <a href="subject.html#2445">[ subject ]</a>
+ <a href="author.html#2445">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9622">https://bugs.mageia.org/show_bug.cgi?id=9622</A>
+
+Manuel Hiebel &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">manuel.mageia at hiebel.eu</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Assignee|<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">forums-bugs at ml.mageia.org</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="002441.html">[Mageia-webteam] [Bug 9622] [New]: Support questions asked in the wrong sub-forum.
+</A></li>
+ <LI>Next message: <A HREF="002442.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2445">[ date ]</a>
+ <a href="thread.html#2445">[ thread ]</a>
+ <a href="subject.html#2445">[ subject ]</a>
+ <a href="author.html#2445">[ 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/2013-April/002446.html b/zarb-ml/mageia-webteam/2013-April/002446.html
new file mode 100644
index 000000000..effb3a9cf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002446.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mailing list migration: this list is closing
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailing%20list%20migration%3A%20this%20list%20is%20closing&In-Reply-To=%3C5161acd0.8fYTa41vmzcodQpI%25sysadmin%40group.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002444.html">
+ <LINK REL="Next" HREF="002447.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mailing list migration: this list is closing</H1>
+ <B>Mageia Sysadmins</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mailing%20list%20migration%3A%20this%20list%20is%20closing&In-Reply-To=%3C5161acd0.8fYTa41vmzcodQpI%25sysadmin%40group.mageia.org%3E"
+ TITLE="[Mageia-webteam] Mailing list migration: this list is closing">sysadmin at group.mageia.org
+ </A><BR>
+ <I>Sun Apr 7 19:28:48 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002444.html">[Mageia-webteam] [Bug 9626] No more access to mailing lists
+</A></li>
+ <LI>Next message: <A HREF="002447.html">[Mageia-webteam] [Bug 9665] [New]: Testing the i18n-bugs mailing list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2446">[ date ]</a>
+ <a href="thread.html#2446">[ thread ]</a>
+ <a href="subject.html#2446">[ subject ]</a>
+ <a href="author.html#2446">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>When the Mageia project was started, it didn't have any server. Fortunatly
+people from zarb.org proposed to host the basic project infrastructure
+(mainly the website, wiki and mailing lists) until the project can have
+its own servers. Mageia.Org now have a few servers since October 2010
+(thanks to donations for the servers and Lost Oasis and Gandi for the
+hosting), but until now the existing mailing lists hosted by zarb.org
+had not been migrated to the Mageia mailing lists server. It is now time
+to do it and close this mailing list.
+
+This mailing list will be closed in coming hours and is now replaced by
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">atelier-discuss at ml.mageia.org.</A>
+
+The URL for the new list is :
+ <A HREF="https://ml.mageia.org/l/info/atelier-discuss">https://ml.mageia.org/l/info/atelier-discuss</A>
+
+You can find more details about mailing lists subscription and available
+lists on this page :
+&#160;&#160;&#160; <A HREF="https://wiki.mageia.org/en/Mailing_lists">https://wiki.mageia.org/en/Mailing_lists</A>
+
+The archives for the old mailing lists will be available on
+<A HREF="http://archives.mageia.org/">http://archives.mageia.org/</A> (in a few days).
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002444.html">[Mageia-webteam] [Bug 9626] No more access to mailing lists
+</A></li>
+ <LI>Next message: <A HREF="002447.html">[Mageia-webteam] [Bug 9665] [New]: Testing the i18n-bugs mailing list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2446">[ date ]</a>
+ <a href="thread.html#2446">[ thread ]</a>
+ <a href="subject.html#2446">[ subject ]</a>
+ <a href="author.html#2446">[ 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/2013-April/002447.html b/zarb-ml/mageia-webteam/2013-April/002447.html
new file mode 100644
index 000000000..74e0bd326
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002447.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9665] [New]: Testing the i18n-bugs mailing list
+ </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%209665%5D%20%5BNew%5D%3A%20Testing%20the%20i18n-bugs%20mailing%0A%09list&In-Reply-To=%3Cbug-9665-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="002446.html">
+ <LINK REL="Next" HREF="002448.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9665] [New]: Testing the i18n-bugs mailing list</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209665%5D%20%5BNew%5D%3A%20Testing%20the%20i18n-bugs%20mailing%0A%09list&In-Reply-To=%3Cbug-9665-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9665] [New]: Testing the i18n-bugs mailing list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 8 16:50:58 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002446.html">[Mageia-webteam] Mailing list migration: this list is closing
+</A></li>
+ <LI>Next message: <A HREF="002448.html">[Mageia-webteam] [Bug 9665] Testing the i18n-bugs mailing list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2447">[ date ]</a>
+ <a href="thread.html#2447">[ thread ]</a>
+ <a href="subject.html#2447">[ subject ]</a>
+ <a href="author.html#2447">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9665">https://bugs.mageia.org/show_bug.cgi?id=9665</A>
+
+ Bug ID: 9665
+ Summary: Testing the i18n-bugs mailing list
+ Classification: Unclassified
+ Product: Infrastructure
+ Version: unspecified
+ Hardware: i586
+ OS: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: Bugzilla
+ Assignee: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">i18n-bugs at ml.mageia.org</A>
+ Reporter: <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>
+
+This is a test.
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+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="002446.html">[Mageia-webteam] Mailing list migration: this list is closing
+</A></li>
+ <LI>Next message: <A HREF="002448.html">[Mageia-webteam] [Bug 9665] Testing the i18n-bugs mailing list
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2447">[ date ]</a>
+ <a href="thread.html#2447">[ thread ]</a>
+ <a href="subject.html#2447">[ subject ]</a>
+ <a href="author.html#2447">[ 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/2013-April/002448.html b/zarb-ml/mageia-webteam/2013-April/002448.html
new file mode 100644
index 000000000..f60eb7faa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002448.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9665] Testing the i18n-bugs mailing list
+ </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%209665%5D%20Testing%20the%20i18n-bugs%20mailing%20list&In-Reply-To=%3Cbug-9665-14-KBAMpjgHVk%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="002447.html">
+ <LINK REL="Next" HREF="002449.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9665] Testing the i18n-bugs mailing list</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%209665%5D%20Testing%20the%20i18n-bugs%20mailing%20list&In-Reply-To=%3Cbug-9665-14-KBAMpjgHVk%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9665] Testing the i18n-bugs mailing list">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 8 16:51:57 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002447.html">[Mageia-webteam] [Bug 9665] [New]: Testing the i18n-bugs mailing list
+</A></li>
+ <LI>Next message: <A HREF="002449.html">[Mageia-webteam] [Bug 9476] bugs.mageia.org mailing list puts XX in place of accented characters in sender field
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2448">[ date ]</a>
+ <a href="thread.html#2448">[ thread ]</a>
+ <a href="subject.html#2448">[ subject ]</a>
+ <a href="author.html#2448">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9665">https://bugs.mageia.org/show_bug.cgi?id=9665</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; ---
+Closing
+
+--
+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="002447.html">[Mageia-webteam] [Bug 9665] [New]: Testing the i18n-bugs mailing list
+</A></li>
+ <LI>Next message: <A HREF="002449.html">[Mageia-webteam] [Bug 9476] bugs.mageia.org mailing list puts XX in place of accented characters in sender field
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2448">[ date ]</a>
+ <a href="thread.html#2448">[ thread ]</a>
+ <a href="subject.html#2448">[ subject ]</a>
+ <a href="author.html#2448">[ 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/2013-April/002449.html b/zarb-ml/mageia-webteam/2013-April/002449.html
new file mode 100644
index 000000000..d05d97655
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/002449.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 9476] bugs.mageia.org mailing list puts XX in place of accented characters in sender field
+ </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%209476%5D%20bugs.mageia.org%20mailing%20list%20puts%20XX%20in%0A%20place%20of%20accented%20characters%20in%20sender%20field&In-Reply-To=%3Cbug-9476-14-NdQU5zG0ah%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="002448.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 9476] bugs.mageia.org mailing list puts XX in place of accented characters in sender field</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%209476%5D%20bugs.mageia.org%20mailing%20list%20puts%20XX%20in%0A%20place%20of%20accented%20characters%20in%20sender%20field&In-Reply-To=%3Cbug-9476-14-NdQU5zG0ah%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 9476] bugs.mageia.org mailing list puts XX in place of accented characters in sender field">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 8 18:03:05 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002448.html">[Mageia-webteam] [Bug 9665] Testing the i18n-bugs mailing list
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2449">[ date ]</a>
+ <a href="thread.html#2449">[ thread ]</a>
+ <a href="subject.html#2449">[ subject ]</a>
+ <a href="author.html#2449">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=9476">https://bugs.mageia.org/show_bug.cgi?id=9476</A>
+
+--- Comment #7 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; ---
+dmorgan: ping? Did you update the Mageia extension?
+
+--
+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="002448.html">[Mageia-webteam] [Bug 9665] Testing the i18n-bugs mailing list
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2449">[ date ]</a>
+ <a href="thread.html#2449">[ thread ]</a>
+ <a href="subject.html#2449">[ subject ]</a>
+ <a href="author.html#2449">[ 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/2013-April/author.html b/zarb-ml/mageia-webteam/2013-April/author.html
new file mode 100644
index 000000000..a2cb51fb5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/author.html
@@ -0,0 +1,117 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2013 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>April 2013 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>Mon Apr 1 20:30:51 CEST 2013</i><br>
+ <b>Ending:</b> <i>Mon Apr 8 18:03:05 CEST 2013</i><br>
+ <b>Messages:</b> 14<p>
+ <ul>
+
+<LI><A HREF="002437.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A><A NAME="2437">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="002441.html">[Mageia-webteam] [Bug 9622] [New]: Support questions asked in the wrong sub-forum.
+</A><A NAME="2441">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002449.html">[Mageia-webteam] [Bug 9476] bugs.mageia.org mailing list puts XX in place of accented characters in sender field
+</A><A NAME="2449">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+<LI><A HREF="002440.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A><A NAME="2440">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="002443.html">[Mageia-webteam] [Bug 9626] [New]: No more access to mailing lists
+</A><A NAME="2443">&nbsp;</A>
+<I>Philippe Flat
+</I>
+
+<LI><A HREF="002439.html">[Mageia-webteam] [Bug 9588] date search fails
+</A><A NAME="2439">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002444.html">[Mageia-webteam] [Bug 9626] No more access to mailing lists
+</A><A NAME="2444">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002445.html">[Mageia-webteam] [Bug 9622] Support questions asked in the wrong sub-forum.
+</A><A NAME="2445">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002442.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2442">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="002446.html">[Mageia-webteam] Mailing list migration: this list is closing
+</A><A NAME="2446">&nbsp;</A>
+<I>Mageia Sysadmins
+</I>
+
+<LI><A HREF="002436.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A><A NAME="2436">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002447.html">[Mageia-webteam] [Bug 9665] [New]: Testing the i18n-bugs mailing list
+</A><A NAME="2447">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002448.html">[Mageia-webteam] [Bug 9665] Testing the i18n-bugs mailing list
+</A><A NAME="2448">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002438.html">[Mageia-webteam] [Bug 9588] [New]: date search fails
+</A><A NAME="2438">&nbsp;</A>
+<I>Scott Westlake
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Apr 8 18:03:05 CEST 2013</i><br>
+ <b>Archived on:</b> <i>Mon Apr 8 18:03:13 CEST 2013</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/2013-April/date.html b/zarb-ml/mageia-webteam/2013-April/date.html
new file mode 100644
index 000000000..71e91c2de
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2013-April/date.html
@@ -0,0 +1,117 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam April 2013 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>April 2013 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>Mon Apr 1 20:30:51 CEST 2013</i><br>
+ <b>Ending:</b> <i>Mon Apr 8 18:03:05 CEST 2013</i><br>
+ <b>Messages:</b> 14<p>
+ <ul>
+
+<LI><A HREF="002436.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A><A NAME="2436">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002437.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A><A NAME="2437">&nbsp;</A>
+<I>Thomas Backlund
+</I>
+
+<LI><A HREF="002438.html">[Mageia-webteam] [Bug 9588] [New]: date search fails
+</A><A NAME="2438">&nbsp;</A>
+<I>Scott Westlake
+</I>
+
+<LI><A HREF="002439.html">[Mageia-webteam] [Bug 9588] date search fails
+</A><A NAME="2439">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002440.html">[Mageia-webteam] [Bug 9587] Unsubscribe from packagers at group.mageia.org
+</A><A NAME="2440">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="002441.html">[Mageia-webteam] [Bug 9622] [New]: Support questions asked in the wrong sub-forum.
+</A><A NAME="2441">&nbsp;</A>
+<I>Ken Bergen
+</I>
+
+<LI><A HREF="002442.html">[Mageia-webteam] [Bug 8460] Firefox doesn't open localized Mageia page (indexhtml redirection)
+</A><A NAME="2442">&nbsp;</A>
+<I>Sander Lepik
+</I>
+
+<LI><A HREF="002443.html">[Mageia-webteam] [Bug 9626] [New]: No more access to mailing lists
+</A><A NAME="2443">&nbsp;</A>
+<I>Philippe Flat
+</I>
+
+<LI><A HREF="002444.html">[Mageia-webteam] [Bug 9626] No more access to mailing lists
+</A><A NAME="2444">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002445.html">[Mageia-webteam] [Bug 9622] Support questions asked in the wrong sub-forum.
+</A><A NAME="2445">&nbsp;</A>
+<I>Manuel Hiebel
+</I>
+
+<LI><A HREF="002446.html">[Mageia-webteam] Mailing list migration: this list is closing
+</A><A NAME="2446">&nbsp;</A>
+<I>Mageia Sysadmins
+</I>
+
+<LI><A HREF="002447.html">[Mageia-webteam] [Bug 9665] [New]: Testing the i18n-bugs mailing list
+</A><A NAME="2447">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002448.html">[Mageia-webteam] [Bug 9665] Testing the i18n-bugs mailing list
+</A><A NAME="2448">&nbsp;</A>
+<I>Nicolas Vigier
+</I>
+
+<LI><A HREF="002449.html">[Mageia-webteam] [Bug 9476] bugs.mageia.org mailing list puts XX in place of accented characters in sender field
+</A><A NAME="2449">&nbsp;</A>
+<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Mon Apr 8 18:03:05 CEST 2013</i><br>
+ <b>Archived on:</b> <i>Mon Apr 8 18:03:13 CEST 2013</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>
+